summaryrefslogtreecommitdiff
path: root/debian
AgeCommit message (Collapse)Author
2008-09-23rename: Hide type field from rename form when renaming attachments.Joey Hess
2008-09-23changelogJoey Hess
2008-09-23rename, remove: Don't rely on a form parameter to tell whether the page ↵Joey Hess
should be treated as an attachment.
2008-09-23Add keepextension parameter to htmlize hook. (Willu)Joey Hess
2008-09-23Print a debug message if a page has multiple source files.Joey Hess
2008-09-20add missing page name sanity checkJoey Hess
2008-09-20edittemplate patch from WilluJoey Hess
* edittemplate: Default new page file type to the same type as the template. (willu) * edittemplate: Add "silent" parameter. (Willu) * edittemplate: Link to template, to allow creating it. (Willu)
2008-09-20Fix reversion in use of ikiwiki -verbose -setup with a setup file that ↵Joey Hess
enables syslog. Setup output is once again output to stdout in this case. Implemented by stashing the verbose/syslog values set in the setup file, and using those values in the generated wrappers, but not allowing them to take effect during the setup operation itself, so that command-line options, appearing before or after -setup, are honored. Also, some cleanups to how %config is generated for wrappers, removing some fields that do not need to be recorded inside the wrapper.
2008-09-19progress: Display an error if the progress cannot be parsed, and allow the ↵Joey Hess
percent parameter to only optionally end with "%".
2008-09-17store ctime for use by expiry codeJoey Hess
The expiry code does need to make sure to sort in ctime order, even if expiring by count, so it expires the right ones.
2008-09-17aggregate: Support atom feeds with only a summary element, and no content ↵Joey Hess
elements.
2008-09-17editdiff: Broken since 2.62 due to wrong syntax, now fixed.Joey Hess
2008-09-17aggregate: Allow expirecount to work on the first pass. (expireage still ↵Joey Hess
needs to wait for the pages to be rendered though)
2008-09-14releasing version 2.64Joey Hess
2008-09-14document code change in last commitJoey Hess
2008-09-12Removed old redirecton pages from basewiki (helponformatting, markdown, ↵Joey Hess
openid, pagespec, preprocessordirective, subpage, wikilink).
2008-09-11Removed the obsolete blog page from the basewiki. ikiwiki/blog still ↵Joey Hess
remains, but is now deprecated too.
2008-09-11license directive docs using basewiki licenseJoey Hess
2008-09-11listdirectives: Enable use of the directives underlay.Joey Hess
2008-09-11changelogJoey Hess
2008-09-11Improve error message if external plugin fails to load. Closes: #498458Joey Hess
2008-09-09goodstuff updateJoey Hess
* goodstuff: Remove otl plugin from the bundle since it needs a significant external dependency and is not commonly used. If you use otl, make sure you explicitly enable it now. * goodstuff: Add more, progress, and table plugins to the bundle.
2008-09-09img: Support sizes like 200x. Closes: #475149Joey Hess
2008-09-09Add allow_symlinks_before_srcdir to config so websetup doesn't eat it.Joey Hess
2008-09-09progress: New plugin to generate progress bars (willu)Joey Hess
2008-09-08ddate: Stop clobbering timeformat when not enabled.Joey Hess
2008-09-08Avoid uninitialised value when --dumpsetup is used and no srcdir/destdir ↵Joey Hess
specified.
2008-09-08releasing version 2.63Joey Hess
2008-09-05editpage: New core plugin factoring out page editing to allow disabling it ↵Joey Hess
if desired.
2008-09-05po/Makefile: update po files when the pot file has changed. Closes: #497951Joey Hess
2008-09-04For fine control over what characters are allowed, unescaped in source ↵Joey Hess
filenames, the wiki_file_chars setting is added. For example, set to "-[:alnum:]+/._" to disable colons from being used in source files (which can cause trouble om Windows).
2008-09-02table: Support header=column to make the table header be the first column of ↵Joey Hess
the data. (AlexandreDupas)
2008-09-01filecheck: Fall back to testing for binary or plain text files if no mime ↵Joey Hess
type is detected.
2008-09-01style.css: Add missing semicolon. Closes: #497176Joey Hess
2008-08-29Work around perl $_ scoping nonsense that caused breakage when loading ↵Joey Hess
external plugins.
2008-08-29Ignore failure to install files into /etc, in case install is running as ↵Joey Hess
non-root.
2008-08-29Typo. Closes: #497003Joey Hess
2008-08-28Set cookies HttpOnly.Joey Hess
2008-08-28releasing version 2.62.1Joey Hess
2008-08-28filecheck: Fixed two bits broken in move from attachment.Joey Hess
2008-08-27releasing version 2.62Joey Hess
2008-08-26autoindex: Avoid re-adding previously deleted (or renamed) pages.Joey Hess
2008-08-26color: New plugin from ptecza.Joey Hess
2008-08-25edittemplate: Don't wipe out edits on preview.Joey Hess
2008-08-25filecheck: New plugin factoring out the PageSpec additions that were ↵Joey Hess
originally part of the attachment plugin.
2008-08-25updateJoey Hess
2008-08-25rename pluginJoey Hess
I don't want to be stuck renameing it later if preprocessor directives are turned into postprocessor directives. Also, "directives" is shorter and clearer than "preprocessors".
2008-08-25updateJoey Hess
2008-08-24willu's teximg changesJoey Hess
* teximg: The prefix is configurable, and has changed to not include the nonstandard mhchem by default. (willu) * teximg: dvipng is used if available to render images. Its output is antialiased and better than dvips. If not available, the old dvips+convert chain will be used. (willu) * Drop suggests on texlive-science, add suggests on dvipng.
2008-08-23map: The fix for #449285 was buggy and broke display of parents in certian ↵Joey Hess
circumstances. The use of $dummy was not sufficient, because it only stuck around for the first element after a dummy parent, and was then lost. Instead, use a $addparent that contains the actual dummy parent, so it can be compared with the new item to see if we're still under that parent or have moved to another one.