aboutsummaryrefslogtreecommitdiff
path: root/debian
Commit message (Collapse)AuthorAge
* bzr: Fix dates for recentchanges.Joey Hess2008-11-11
|
* typoJoey Hess2008-11-10
|
* tag: Normalize tagbase so leading/trailing slashes in it don't break things.Joey Hess2008-11-10
|
* Add rel=nofollow to recentchanges_links for the same (weak) reasons it was ↵Joey Hess2008-11-10
| | | | earlier added to edit links.
* Fix the link() pagespec to match links that are internally recorded as absolute.Joey Hess2008-11-09
| | | | | | | | | | | | | | This fixes a problem exposed by the recent change to tags (a2839de9362187b67b0e3a564461e272e64fd9b4). That recorded tag links as absolute by including a leading slash in the link. The same could also be done with an absolute wikilink. In either case, link() would not match such links, unless the leading slash was included in the link to match. But that's not right, because pagespecs match absolute by default. So strip the leading slash. Note that to keep any existing `link(/foo)` pagespecs working after this change, the leading slash is removed from there, too.
* txt: Do not encode quotes when filtering the txt, as that broke later ↵Joey Hess2008-11-06
| | | | parsing of any directives on the page.
* meta: Plugin is now enabled by default since the basewiki uses it.Joey Hess2008-11-06
|
* aggregate: Try to query XML::Feed for the base url when derelevatising ↵Joey Hess2008-11-06
| | | | links. Since this needs the just released XML::Feed 0.3, as well as a not yet released XML::RSS, it will fall back to the old method if no xml:base info is available.
* releasing version 2.68Joey Hess2008-11-03
|
* reorgJoey Hess2008-10-31
|
* typoJoey Hess2008-10-31
|
* format: New plugin, allows embedding differntly formatted text inside a page ↵Joey Hess2008-10-31
| | | | (ie, otl inside a mdwn page, or syntax highlighted code inside a page).
* fix --setup --renderJoey Hess2008-10-30
| | | | In this mode, rebuild mode should not be on
* Preserve syslog setting when doing `ikiwiki -setup foo -dumpsetup bar`Joey Hess2008-10-29
| | | | | | | The syslog value from the setup file is purposfully ignored when doing ikiwiki -setup, so that it will output to stdout (while generating wrappers that do use the syslog). But that caused -dumpsetup to not preserve the syslog value from the setup file.
* fix preview of shortcutsJoey Hess2008-10-29
| | | | | Move shortcut processing back to checkconfig, and avoid it failing if the srcdir is not defined.
* git: Allow [[sha1_commit]] to be used in the diffurl, to support cgit.Joey Hess2008-10-27
|
* do no-op post_commit test in wrapperJoey Hess2008-10-26
| | | | | | | | | | | | | | | | | | | This speeds up web commits by 1/4th of a second or so, since perl does not have to start up for the post commit hook. perl's locking is completly FuBar, since it's impossible to tell what perl flock() really does, and thus difficult to write code in other languages that interoperates with perl's locking. (Let alone interoperating with existing fcntl locking from perl...) In this particular case, I think I was able to find a way to avoid the insanity, mostly. The C code does a true flock(2), and if perl is using an incompatable lock method that does not use the same locking primative at the kernel level, then the C code's test will fail, and it will go ahead and run the perl code. Then the perl code's test will test the right thing. On Debian, at least lately, perl's flock() does a true flock(2), so the optimisation does work.
* untrusted committers code seems to be fully workingJoey Hess2008-10-23
| | | | Still need to investigate possible races, and test some more.
* Optimise the no-op post-commit hook in the web edit case by skipping loading ↵Joey Hess2008-10-23
| | | | plugins. (Particularly a win when using external plugins.)
* Updated Danish translation from Jonas Smedegaard. Closes: #503117Joey Hess2008-10-23
|
* Updated Spanish translation from the ever vigilant Victor Moral.Joey Hess2008-10-22
|
* function injection overhaulJoey Hess2008-10-21
| | | | | | | | | | | Add an inject function, that can be used by plugins that want to replace one of ikiwiki's functions with their own version. (This is a scary thing that grubs through the symbol table, and replaces all exported occurances of a function with the injected version.) external: RPC functions can be injected to replace exported functions. Removed the stupid displaytime hook, and use injection instead.
* tag: When tagpage is set, force the links created by tagging to point at the ↵Joey Hess2008-10-20
| | | | | | | | | | | | toplevel tagpage, and not closer subpages. The html links already went there, but internally the links were not recorded as absolute, which could cause confusing backlinks etc. For example, with tagbase=tags, if blog/tags/bar existed and blog/foo was tagged bar, it would link to /tags/bar. But, the link would be recorded simply as a link to tags/bar, and so later blog/tags/bar would appear to have the backlink.
* inline: Only the last feed link was put on the page, fix this to include all ↵Joey Hess2008-10-20
| | | | feed links. So rss will be included along with atom, and pages with multiple feeds will get links added for all feeds.
* Use the pure perl Data::Dumper when generating setup files to ensure that ↵Joey Hess2008-10-19
| | | | | | | utf-8 characters are written out as such, and not as the encoded perl strings the C Data::Dumper produces. Note that the text produced by the C version was interpreted fine when ikiwiki loaded the setup file. But it was not user-friendly.
* Fix issue with utf-8 in wikiname breaking session cookies, by ↵Joey Hess2008-10-19
| | | | entity-encoding the wikiname in the session cookie.
* fix relativedate timezone inclusionJoey Hess2008-10-19
| | | | | | The machine parseable date needs to include a timezone. Also, simplified the interface for date display.
* Updated French translation. Closes: #502694Joey Hess2008-10-19
|
* tweak recentchanges permalink codeJoey Hess2008-10-17
| | | | Need to handle the case where url is not set.
* relativedate: New javascript-alicious plugin that makes all dates display ↵Joey Hess2008-10-17
| | | | relative, in a very nice way, if I say so myself.
* Add an underlay for javascript, and add ikiwiki.js containing some utility code.Joey Hess2008-10-17
| | | | | | | * Add an underlay for javascript, and add ikiwiki.js containing some utility code. * toggle: Stop embedding the full toggle code on each page using it, and move it to toggle.js in the javascript underlay.
* releasing version 2.67Joey Hess2008-10-17
|
* aggregate: Avoid bug that caused immediate expiration of items with a date ↵Joey Hess2008-10-16
| | | | in the future.
* inline: Use the feed's description in the rss and atom links. Closes: #502113Joey Hess2008-10-15
|
* inline: Allow MTIME to be used in inlinepage.tmpl.Joey Hess2008-10-14
|
* Pass HTTPS variable through the wrapper so that CGI->https can be used by ↵Joey Hess2008-10-13
| | | | plugins. Closes: #502047
* document google pluginJoey Hess2008-10-10
|
* orphans: Fix unquoted page name in regexp.Joey Hess2008-10-09
|
* lockedit: Support specifying which users (and IP addresses) a page is locked ↵Joey Hess2008-10-08
| | | | for. This supports most of the ACL type things users have been wanting to be done. Closes: #443346 (It does not control who can read a page, but that's out of scope for ikiwiki.)
* Updated Spanish translation from Victor Moral.Joey Hess2008-10-07
|
* remove: Avoid $_ breakage. (Stupid, stupid perl.)Joey Hess2008-10-06
| | | | | This avoids another one of those $_ scoping issues where a deep call to a function that changes $_ clobbers the array that is being looped over.
* releasing version 2.66Joey Hess2008-10-05
|
* fix lintian warningJoey Hess2008-10-05
|
* make set -eJoey Hess2008-10-05
|
* Updated French translation. Closes: #500929Joey Hess2008-10-02
|
* remove, rename: Allow acting on attachments as a page is being created.Joey Hess2008-10-02
|
* attachment: Support adding attachments to pages even as they are being created.Joey Hess2008-10-02
|
* inline: Fix handling of rootpage that doesn't exist.Joey Hess2008-10-01
| | | | | It makes sense to use bestlink to determine which page rootpage refers to, but if no page matches, just use the raw value.
* Merge branch 'master' into tovaJoey Hess2008-09-30
|\ | | | | | | | | | | Conflicts: debian/changelog
| * httpauth: Document that ikiwiki.cgi has to be in a directory subject to ↵Joey Hess2008-09-30
| | | | | | | | authentication. Closes: #500524