Opened 12 years ago
Last modified 5 years ago
#10872 new task
Add New Page and Link to current page
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Milestone: | unscheduled |
Component: | wiki system | Version: | 1.0dev |
Severity: | normal | Keywords: | new page |
Cc: | ethan.jucovy@…, ralph.phd@… | Branch: | |
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
Trac is a wonderful product with many great plugins. tags, menus, wanted page, git, announcer… And I wish it could be easier to add new pages.
Can I just click a button or link to add a new page, and enter the page name, then keying the content? Also if a checkbox option exists for link the new page to the previous, it would be perfect.
If the function already exist by any plugins or macros, please let me know. Plus, I would like to add the function/plugin to trac and release it.
But I don't know how to implement the plugin, anyone could help?
Attachments (0)
Change History (6)
comment:1 by , 12 years ago
Milestone: | → unscheduled |
---|
comment:2 by , 12 years ago
FYI Benjamin Lau has written a plugin that provides a [[NewPage()]]
wiki macro, which will render a form for creating a new wiki page: https://github.com/netjunki/trac-NewPageMacro
This doesn't satisfy all the OP's requirements (it's a wiki macro, not a nav element, so it would have to be added to every page somehow in order to be convenient; and it doesn't let you "link new page to previous") but it might be useful, or an inspiration .. it might be possible to get most of what you want by some trickery with this plugin + a wiki page template that includes the macro.
comment:3 by , 12 years ago
Cc: | added |
---|
comment:5 by , 5 years ago
Below is a lazy hack to add a "Create Child Page" button in Trac v1.4 (requires jQUery). It create the child page with a default name "NewPage", but you can rename it as needed after creating it. Add the code to the trac env footer template, e.g. PROJECT/templates/site_footer.html
. Restart the server, and you should be good to go.
<script> // adds a "create child page" button in wiki pages named "NewPage" // you can rename it after creating as needed. // url to creat/edit the new page var edit_url = window.location.href + "/NewPage?action=edit"; // check we're not on a page that has the "create" button already var pcheck = $('input[value="Create this page"]').length; // add child create button if (pcheck == 0){ $('form#modifypage').after($('<input type="button" value="Create Child Page" onClick="location.href=\'' + edit_url + '\';">')); } </script>
comment:6 by , 5 years ago
Cc: | added |
---|
Well, this kind of feature request had better been sent on the Trac-Users MailingList, as not many plugin developers follow the activity on this Trac.
It's a recurring topic though, and if someone has a good idea/patch proposal for integration of this feature in Trac proper, suggestions welcome.