aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki.pm
Commit message (Collapse)AuthorAge
* websetup: Allow enabling plugins listed in disable_plugins.Joey Hess2010-06-13
| | | | | | | | The bug here was that disabling a plugin included thru goodstuff, like htmlscrubber, caused it to be added to disable_plugins, and those plugins were never loaded, so could not be re-enabled. Fix by allowing them to be force loaded when appropriate. (Also that allows disabled plugins to still record their setup options when dumping a setup file.)
* When editing a page, show that page's sidebar. (Thanks, privat)Joey Hess2010-06-09
|
* Fix support for globbing in tagged() pagespecs.Joey Hess2010-06-09
| | | | | | | | | The linktype check was being done on the relativised link target, but %typedlinks uses the same link targets as %links, so that didn't work. I think the bug only appeared when tagbase was not set. This bugfix also let me factor out the common typedlink checking code.
* creation_day() etc use local time, not gmtime.Joey Hess2010-05-31
| | | | | | | | To match calendars, which use local time. Particularly important at the end of the month. I checked the history, and there seemed no good rationalle for the pagespecs to use gmtime.
* Fix a bug that prevented matching deleted comments, and so did not update ↵Joey Hess2010-05-18
| | | | | | | | | | | | | | pages that had contained them. Problem is that by the time rendering calls render_dependent, %pagesources has had deleted files removed from it. So match_comment's lookup of files in there to see if they had the _comment extension failed. I had to introduce a hash that temporarily holds filenames of deleted pages to fix this. Note that unlike comment(), internal() had avoided this pitfall by being defined to match both internal and non-internal pages.
* allow misctemplate callers to pass params to suppress actions etcJoey Hess2010-05-14
| | | | | Suppress disiplay of small search for on search results page, and of Prefrences link on prefs page.
* refactor template actionsJoey Hess2010-05-14
|
* enable action bar on misctemplatesJoey Hess2010-05-14
| | | | | | So RecentChanges shows on the action bar there, convert recentchanges to use new pageactions hook, with compatability code to avoid breaking old templates.
* Use xhtml friendly pubdate setting.Joey Hess2010-05-08
|
* fix undef warning when page() tests a deleted fileJoey Hess2010-05-07
|
* fix param passing to match_globJoey Hess2010-05-06
|
* move meat of type checking to match_page where it belongsJoey Hess2010-05-06
|
* refactorJoey Hess2010-05-05
|
* rename ispage variableJoey Hess2010-05-05
|
* remove unused indexlink function and template variableJoey Hess2010-05-05
|
* remove misc.tmpl checkingJoey Hess2010-05-05
| | | | | | Turns out that users with a modified page.tmpl need to modify it on upgrade, at least to add the FORCEBASEURL (so edit preview works), so there is no point in trying to retain compatability.
* allow search form visibility to be controlled on the templateJoey Hess2010-05-05
| | | | hide extrafooter from misctemplate display per default
* no more misc.tmplJoey Hess2010-05-05
| | | | | | | * Removed misc.tmpl. Now to theme ikiwiki, you only need to customise a single template, page.tmpl. * misc.tmpl will, however, still be read if a locally modified version exists. This is to avoid forcing users to update page.tmpl right now.
* Add parameter to displaytime to specify that it is a pubdate, and in html5 ↵Joey Hess2010-05-02
| | | | mode, use time tag.
* set html5 option as advanced for nowJoey Hess2010-05-01
|
* html5 optionJoey Hess2010-05-01
| | | | | | * Ikiwiki can be configured to generate html5 instead of the default xhtml 1.0. The html5 output mode is experimental, not yet fully standards compliant, and will be subject to rapid change.
* no need to use HTML::EntitiesJoey Hess2010-04-30
| | | | | That module is unused now. Long long ago, it used to be used to encode data in the index. Checked all modules, and every module that uses it imports it.
* TMPL_INCLUDE re-enabled for templates read from the templatedir. (But not ↵Joey Hess2010-04-28
| | | | in-wiki templates.)
* Add page() PageSpec, which is like glob() but matches only pages, not other ↵Joey Hess2010-04-26
| | | | files.
* Fix removal of rendered files in rebuild mode.Joey Hess2010-04-26
| | | | | | | | | | | Needed to handle the move of the .js files into ikiwiki/, but also this is a longstanding bug. Old pagemtime is not remembered in rebuild mode, and changing that would need a lot of changes. So instead, loop on pagectime, which is remembered. Change to remembering old pagesources info in rebuild mode. This seems safe enough.
* reword templatedir descriptionJoey Hess2010-04-24
|
* add support for mass dependenciesJoey Hess2010-04-24
| | | | Registered by passing "" as page name to add_depends.
* bugfixJoey Hess2010-04-24
|
* template() - return params in list contextJoey Hess2010-04-24
| | | | | I forgot CGI::Formbuilder's horrible interface that needs template parameters instead of a constructed object.
* bugfixJoey Hess2010-04-24
|
* fix return of tpageJoey Hess2010-04-23
|
* allow template pages to not be under templates/Joey Hess2010-04-23
|
* allow a bare page name to be specified as a templateJoey Hess2010-04-23
|
* refactor to remove template_paramsJoey Hess2010-04-22
| | | | template_file will be kept separate, since it needs to be memoized
* look for templates in srcdir and underlays, firstJoey Hess2010-04-22
| | | | | | | | | | | | | | | This entailed changing template_params; it no longer takes the template filename as its first parameter. Add template_depends to api and replace calls to template() with template_depends() in appropriate places, where a dependency should be added on the template. Other plugins don't use template(), so will need further work. Also, includes are disabled for security. Enabling includes only when using templates from the templatedir would be nice, but would add a lot of complexity to the implementation.
* remove add_templates optionJoey Hess2010-04-22
| | | | | Templates are moving into the srcdir, and will also be searched for in configured underlays, so this is redundant.
* only remove page from influences when influences are not staticJoey Hess2010-04-22
| | | | This matches what add_depends done
* Merge branch 'autotag'Joey Hess2010-04-22
|\
| * Merge branch 'master' into autotagJoey Hess2010-04-21
| |\ | | | | | | | | | | | | Conflicts: IkiWiki/Plugin/tag.pm
| * \ Merge branch 'master' into autotagJoey Hess2010-04-21
| |\ \
| * \ \ Merge branch 'master' into autotagJoey Hess2010-04-20
| |\ \ \
| * | | | refactor autofilesJoey Hess2010-04-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Made add_autofile take a generator function, and just register the autofile, for later possible creation. The testing is moved into Render, which allows cleaning up some stuff.
| * | | | whitespaceJoey Hess2010-04-17
| | | | |
| * | | | Merge remote branch 'davrieb/autotag' into autotagJoey Hess2010-04-17
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: IkiWiki.pm IkiWiki/Plugin/tag.pm
| | * | | | Make sure deleted tag pages don't get recreated.David Riebenbauer2010-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The reason to do this is basically a user interaction design decision. It is achieved by adding an entry, associated to the creating plugin, to %pagestate. To find out if files were deleted a new global hash %del_hash is %introduced.
| | * | | | Revert "Revert the effects of find_del_files() for (re)autoadded files."David Riebenbauer2010-04-03
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 31680111f0062f07727d14fcf291c98978ad5a2f.
| | * | | | Check for existence off srcfile in add_autofileDavid Riebenbauer2010-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add_autofile has to have checks, whether to create the file, anyway, so this will make things more consistent. Correcter check for the result of verify_src_file(). Cosmetic rename of a variable $addfile to $autofile.
| | * | | | Revert "Make srcfile() return undef, if the file isn't there."David Riebenbauer2010-02-03
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 1bde208ec9b915db0187030c33450b5accb4892c.
| | * | | | Export add_autofile() for use in Plugins.David Riebenbauer2010-02-02
| | | | | |
| | * | | | Revert the effects of find_del_files() for (re)autoadded files.David Riebenbauer2010-02-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also means that if autoadded files are deleted they will just be recreated.