aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
Commit message (Collapse)AuthorAge
* * Add handling of feeds for nested inlines, as well as support for aJoey Hess2007-10-25
| | | | | single page containing two different feeds. * Also fixed some places in inline that failed to use destpage correctly.
* only use half the max sizeJoey Hess2007-10-25
|
* * postsparkline: Avoid a confusing error message if no pages matchJoey Hess2007-10-24
| | | | and instead show an empty graph.
* fix foldingjoey2007-10-23
|
* explicitly use POSIXjoey2007-10-23
|
* * Add a calendar plugin, contributed by Manoj Srivastava.joey2007-10-23
| | | | | | | | | * Reformat calendar plugin to ikiwiki conventions. * The calendar plugin made *every* page depend on every other page, which seemed a wee tiny little bit overkill. Fixed the dependency calculations (I hope.) * Removed manual ctime statting code, and just have the calendar plugin use %pagectime.
* * If gitorigin_branch is set to the empty string, don't push or pull.joey2007-10-22
| | | | Useful for laptop clones of remote wikis.
* minor stylistic changesjoey2007-10-21
|
* * Correct a pair of logic errors that triggered if svnpath was empty.joey2007-10-21
|
* * Support git authors of the form "joey <joey>", which is common whenjoey2007-10-21
| | | | | importing from a svn repo.
* * Rewritten rst plugin by madduck is a python program that communicates withjoey2007-10-15
| | | | | | ikiwiki via XML RPC. This should be much faster than the old plugin that had to fork python for every rst page render. Note that if you use the rst plugin, you now need to have the RPC::XML perl module installed.
* untaint plugin filename, will be tainted if specified at the command linejoey2007-10-13
|
* * Fix strange stderr-hiding code in the git module, allow error messagesjoey2007-10-10
| | | | | to be passed on to stderr. Also fixes a potential bug, since git error meesages were treated as if they came from git stdout.
* * In the cgi edit path, reload the index file before rendering. A bugjoey2007-10-10
| | | | | | | | | | showed up where a web edit that added a page caused a near-concurrent web edit to fail in will_render. While it would be hard to reproduce this, my analysis is that the failing cgi started first, loaded the index file (prior to locking) then the other cgi created the new page and rendered it, and then the failing cgi choked on the new file when _it_ tried to render it. Ensuring that the index file is loaded after taking the lock will avoid this bug.
* * French translation update. Closes: #445923joey2007-10-10
| | | | * Fix --get-ctime with git, needed to remove srcdir from filename.
* * Tidy ctime debug output for git.joey2007-10-04
|
* * camelcase: Tighten regexp to avoid false positives. WikiWords are onlyjoey2007-09-28
| | | | linkified now if they are preceeded by whitespace.
* patch from madduck to fix thinkojoey2007-09-24
|
* * Save index after previewing page edit, since even previewing can createjoey2007-09-22
| | | | | | files in some situations, and this is appropriate in some cases, such as the teximg plugin's error log file. Such files will be automatically cleaned up at an appopriate later time.
* $common_prefix may never get definedjoey2007-09-22
|
* fix htmljoey2007-09-22
|
* make taglink support the same method for specifying link text as a regularjoey2007-09-22
| | | | | wikilink
* * img: Allow link=somepage to cause the image to link to a given page.joey2007-09-22
| | | | | Slight overriding of link, as link=no is still used to disable the linking entirely. Unless you have a page named "no"..
* * map: Render pages on the way to subpages whose parent pagesjoey2007-09-22
| | | | | | are not included in the map. Include special styling for such pages. * map: Remove common prefixes and don't over-indent. * Add class option to htmllink().
* * map: Render empty nodes on the way to subpages whose parent pagesjoey2007-09-21
| | | | | are not included in the map. * map: Fix valid html issue.
* * tag: Add taglink preprocessor directive, supporting visible tag links.joey2007-09-20
| | | | | * map: Fully specify paths to links to avoid issues when the bestlink didn't point to the correct page.
* * Add taglink preprocessor directive, supporting visible tag links.joey2007-09-20
| | | | Closes: #443344
* * table plugin: Actually specify the delimiter when parsing CSV.joey2007-09-16
| | | | | | * table plugin: The previous version broke WikiLinks inside quoted values. Fix this by linkifying CSV data after parsing it, while DSV data is still linkified before parsing.
* * table plugin: Actually specify the delimiter.joey2007-09-16
|
* bugfixesjoey2007-09-15
|
* if an inlined page has the same copyright or license as the page it'sjoey2007-09-14
| | | | | inlined into, don't display them twice
* * meta: Support license and copyright information. The information willjoey2007-09-14
| | | | | | be shown in the page footer. HTML will also be inserted that should support the rel=license microformat as well as the HTML spec's rel=copyright.
* * inline: add feedonly option, set feedonly=yes to get only the feed buttonjoey2007-09-13
| | | | but not inline the pages.
* * table: Text::CSV doesn't return decoded unicode (XS module); decode itsjoey2007-09-05
| | | | return values.
* * Correct generation of RFC 3339 format times for atom/rss feeds. Always usejoey2007-09-02
| | | | gmtime for these since a time zone is not specified.
* git.pm: Handle operating in sub-trees of a git repository.joshtriplett2007-08-30
| | | | | | | | | | When looking for git commits that affect the wiki, only include changes that affect the ikiwiki source directory. If that is not the top-level directory in this git repository, strip off the prefix as given by `git-rev-parse --show-prefix` from all names reported by git-log. Patch by Jamey Sharp <jamey@minilop.net>.
* git.pm: Renames from git-diff-tree aren't handled, so don't ask for them.joshtriplett2007-08-30
| | | | | Patch by Jamey Sharp <jamey@minilop.net>.
* Use git-log rather than the shell, git-rev-list, and git-diff-tree.joshtriplett2007-08-30
| | | | | Patch by Jamey Sharp <jamey@minilop.net>.
* use --style default for get_ctime toojoey2007-08-29
|
* * mercurial: Fix rcs_getctime (thanks, bma)joey2007-08-29
|
* thank goodness for test suitesjoey2007-08-29
|
* * mercurial: Pass --style defaults to hg log to ensure right format is used.joey2007-08-29
|
* * Tables containing links with a link text were misparsed, because the "|"joey2007-08-28
| | | | | | | in the wikilink looked like a table field separator. Avoid this ambiguity by linkifying the data before parsing it as a table. * Turn on allow_loose_quotes in the table plugin's Text::CSV object, so that links from wikilinks don't confuse the parser.
* * Support for looking in multiple directories for underlay files.joey2007-08-28
| | | | | | | * Plugins can add new directories to the search path with the add_underlay function. * Split out smiley underlay files into a separate underlay, so if the plugin isn't used, the wiki isn't bloated with all those files.
* * Add an editcontent hook.joey2007-08-26
|
* * Fix bug when blogging by cgi, introduced in last version.joey2007-08-26
|
* remove unncessesary and unused loop labelsjoey2007-08-24
|
* typojoey2007-08-24
|
* apply monotone patchjoey2007-08-24
|
* typojoey2007-08-23
|