-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- wip: Approval Mechanism - wip: Migrate from www/ - wip: build.json --> ESbuild - wip: breadcrumbs on show - wip: Wiki Sidebar (Converted Web Sidebar to tree) - wip: Hierarchial Sidebar - wip: docs search URL taken from the sidebars - wip: Attachments support in edit mode from portal too - wip: Rich Text Editor Support with attachment support - wip: Collapsible headers in sidebar - wip: Drag and drop support for sidebar in edit mode - wip: Custom script support in wiki settings - wip: Cached sidebar context - wip: Auto table of contents highlighting - wip: Two way communication between reviewer and patch raiser
- Loading branch information
1 parent
27139ca
commit 3fcf486
Showing
66 changed files
with
3,890 additions
and
251 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
tags | ||
wiki/docs/current | ||
wiki/public/css | ||
wiki/public/dist |
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 |
---|---|---|
|
@@ -11,6 +11,14 @@ | |
app_email = "[email protected]" | ||
app_license = "MIT" | ||
|
||
page_renderer = "wiki.wiki.doctype.wiki_page.wiki_renderer.WikiPageRenderer" | ||
|
||
website_route_rules = [ | ||
{"from_route": "/<path:wiki_page>/edit", "to_route": "/edit"}, | ||
{"from_route": "/<path:wiki_page>/new", "to_route": "/new"}, | ||
{"from_route": "/<path:wiki_page>/revisions", "to_route": "/revisions"}, | ||
] | ||
|
||
# Includes in <head> | ||
# ------------------ | ||
|
||
|
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
wiki.wiki.doctype.wiki_page.patches.set_allow_guest | ||
wiki.wiki.doctype.wiki_page.patches.delete_is_new |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"wiki/css/wiki.css": ["public/scss/wiki.scss"] | ||
} | ||
"wiki/css/wiki.css": ["public/scss/wiki.scss"], | ||
"wiki/js/wiki.min.js": ["www/editu.js"] | ||
} |
Oops, something went wrong.