aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
Commit message (Collapse)AuthorAge
* some fit and finish fixesJoey Hess2008-07-01
|
* only show one sig figJoey Hess2008-07-01
|
* display human sizesJoey Hess2008-07-01
|
* add both kinds of linksJoey Hess2008-07-01
|
* basic attachment listJoey Hess2008-07-01
|
* save attachments when page is saved tooJoey Hess2008-07-01
| | | | | A user might specify an attachment, but not click the upload button, and just save the whole page instead.
* check attachments in and refreshJoey Hess2008-07-01
|
* add allowed attachments field to admin prefsJoey Hess2008-07-01
|
* minor optimisationJoey Hess2008-07-01
|
* fix expensive move code pathJoey Hess2008-07-01
|
* better approach for cgi upload disablingJoey Hess2008-07-01
| | | | | Make it a config setting, this way subtle load order issues don't come into play. (As much?)
* bugfixesJoey Hess2008-07-01
|
* attachment locationJoey Hess2008-07-01
| | | | | Put the attachment in a subdir of the page it's attached to, unless that page is an "index" page.
* simplificationJoey Hess2008-07-01
|
* reorderJoey Hess2008-07-01
| | | | canedit should fail first as it's a less expensive and harder to pass test
* call check_caneditJoey Hess2008-07-01
| | | | Needed to prevent uploads of locked pages as attachments.
* bugfix; support pagetype of "0"Joey Hess2008-07-01
|
* copy the attachment into srcdirJoey Hess2008-07-01
|
* break out fast_file_copyJoey Hess2008-07-01
|
* fix some messagesJoey Hess2008-06-30
|
* add an ispage limitJoey Hess2008-06-30
|
* minor improvementsJoey Hess2008-06-30
|
* basic attachment plugin, unfinishedJoey Hess2008-06-30
| | | | | | Currently includes UI, and a few tests of the attachment, as well as the framework to extend pagespecs to test attachments. Does not actually save the file yet.
* disable cgi uploads earlierJoey Hess2008-06-30
| | | | | This allows plugins that want to enable uploads to do so by changing the value of $CGI::DISABLE_UPLOADS at some point before the cgi hook is run.
* remove unused editpage titleJoey Hess2008-06-30
| | | | | The title was set to editpage, but then always changed. And some code tested for this. Remove this dead code.
* Configure CGI.pm to disable file uploads by default.Joey Hess2008-06-30
|
* call format hooks when generating page previewsJoey Hess2008-06-28
| | | | | | | | | | | | * toc: Revert change in 2.45 that made it run at sanitize time. This breaks use of toc in a sidebar. * Call format hooks when generating page previews, thus fixing toc display there, as well as fixing inlins to again display in page previews, since it's started using format hooks. This also allows several other things, like embed, that use format hooks, to work during page preview time. * Format hooks should not rely on getting an entire html document, as they will only get the body during page preview. * toggle: Deal with preview mode when adding javascript.
* smiley: Generate links relative to the destpage. (Fixes a reversion from 2.41.)Joey Hess2008-06-28
|
* pagesources might not be populatedJoey Hess2008-06-24
|
* only convert urls if the module is installedJoey Hess2008-06-24
|
* formattingJoey Hess2008-06-24
|
* rename to txtJoey Hess2008-06-24
|
* initial versionJoey Hess2008-06-24
|
* Disable handling of "bare" links by the creole plugin.Bernd Zeimetz2008-06-24
| | | | | | This change needs libtext-wikicreole-perl (>= 0.05-2). Also removing custom link function, there's no need for it - if it is not defined, the unmodified markup will be returned.
* `template` option for aggregate.pm.Bernd Zeimetz2008-06-21
| | | | | Allows to specify the template file which is used to create the html pages.
* avoid creole parsing wikilinksJoey Hess2008-06-19
| | | | | ikiwiki already does, and escaped links should not be processed by creole after ikiwiki de-escapes them
* creole: New plugin from Bernd Zeimetz. Closes: #486930Joey Hess2008-06-19
|
* textile: The Text::Textile perl module has some regexps that fail if input ↵Joey Hess2008-06-16
| | | | is flagged as utf-8, but contains invalid characters such as 0x92. To prevent it from crashing, re-encode the content before calling it, which will ensure that it's really utf-8.
* meta: Store "description" in pagestate for use by other plugins.Joey Hess2008-06-15
| | | | map: Support show=description.
* bugfixes for show=titleJoey Hess2008-06-15
| | | | | | | | Can't sort by titles; the tree building logic requires that the list be sorted by page name. Setting linktext => $page is not the same as omitting it entirely. So some contortions to only set linktext when the page name is not being shown.
* check that parent hash exists, to avoid creating itJoey Hess2008-06-15
|
* note about titles and dependenciesJoey Hess2008-06-15
|
* style changesJoey Hess2008-06-15
| | | | | Reindented, moved a TODO from page to code, trimmed some unnecessary comments, and simplified the use of mkstemp.
* initial addJoey Hess2008-06-15
|
* map: Add a "show" parameter. "show=title" can be used to display page ↵Joey Hess2008-06-15
| | | | titles, rather than the default page name. Based on a patch from Jaldhar H. Vyas, Closes: #484510
* fix two build bugsJoey Hess2008-06-13
| | | | | | * ikiwiki-mass-rebuild: Make group list comparison more robust. * search: Work around xapian bug #486138 by only stemming locales in a whitelist.
* Don't generate empty title attributes, etc, and allow setting defaults for ↵Joey Hess2008-06-08
| | | | class and id too.
* img: Support captions.Joey Hess2008-06-07
|
* finishing touches on the new search pluginJoey Hess2008-06-04
| | | | | - Add a Help link. - If the pageterm is too long, hash it.
* set rebuild before loading pluginsJoey Hess2008-06-04
| | | | | This fixes a recent minor reversion caused by loading plugins earlier than the messages are printed. Some plugins might check if rebuild is set.