-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Search bar enhancements and Help page (#823)
- Implement one idea described in #822, more specifically: add a leading wildcard to the query when the term contains a dot ".". - Fixes #819 - Move the NotFoundLinker to the linker.py module because t's now used by the help page renderer. Simplify the readthedocs theme and fix an issue that prevented to use the search bar from the module index page and other summary pages.
- Loading branch information
1 parent
ad1fc12
commit 26cbc91
Showing
15 changed files
with
267 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
|
||
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1" lang="EN"> | ||
<meta name="pydoctor-template-version" content="1" /> | ||
|
||
<t:transparent t:render="head">Head</t:transparent> | ||
|
||
<body> | ||
|
||
<div t:render="header" /> | ||
|
||
<nav class="navbar navbar-default mainnavbar"> | ||
<t:transparent t:render="nav" /></nav> | ||
|
||
<div class="container-fluid"> | ||
|
||
<div class="page-header"> | ||
<h1 t:render="heading">Heading</h1> | ||
<div id="showPrivate"> | ||
<button class="btn btn-link" onclick="togglePrivate()">Toggle Private API</button> | ||
</div> | ||
</div> | ||
|
||
<div t:render="helpcontent" /> | ||
|
||
<hr /> | ||
|
||
<p> | ||
<a href="https://github.com/twisted/pydoctor/issues">Report a bug or suggest an enhancement</a> | ||
</p> | ||
|
||
</div> | ||
<footer class="container-fluid" t:render="footer" /> | ||
|
||
<script src="pydoctor.js" type='text/javascript'></script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.