Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-28 | two notify bug fixes: | joey | |
- run it after refreshing so that all the page info is current - convert filenames into page names before checking against glob | |||
2006-04-25 | implemented html sanitisation | joey | |
2006-04-25 | more double slash sanitisation, avoids another loop | joey | |
2006-04-24 | commit changes for email subscriptions | joey | |
2006-04-04 | proper binmode settings so that with -CSD, ikiwiki will support unicode | joey | |
however, due to robustness, that's not enabled by default yet | |||
2006-04-04 | use [:alnum:] | joey | |
2006-04-02 | - add <base> to cgi output, this is especially useful for output containing | joey | |
wikilinks since the urls should work now in more situations - drop --limit from svn log run, since a) it needs a fairly new svn and b) in some cases, it would limit it to too few entries to display the requested number of changes - Use driver:DB_File and not driver:db_file for better compatability with old versions of CGI::Session. - Note that HTML::Template 3.02.02 is needed. | |||
2006-03-29 | added --hyperestraier switch, which turns on search support | joey | |
(ok, the way I run estseek.cgi is admittedly pretty nasty, but it works..) | |||
2006-03-29 | improve fix for symlink attacks to check subdirectories for symlinks too | joey | |
before writing | |||
2006-03-29 | Implemented --underlaydir, and moved files provided by underlay out of doc | joey | |
so I don't need to maintain two copies anymore. You might also want to remove the files provided in the basewiki underlay from your wiki, if you have not created custom local versions of them, so that these pages will be automatically updated in future ikiwiki upgrades. | |||
2006-03-29 | css support | joey | |
2006-03-29 | don't escape . in titlepage conversion | joey | |
2006-03-29 | html validation fixes: | joey | |
- escape & in urls (also clean up cgi url generation) - since markdown wraps inlined pages in <p></p>, close and re-open the paragraph tags when generating the embedded html - added XHTML 1.0 doctypes to templates - fixed <hr /> and <br /> in templates - add an alt attribute to inline images, based on the WikiLink to the image. Allows things like [[my_image|img.png]] to customise alt text. | |||
2006-03-29 | Improved handling of wikilinks containing characters that are not allowed | joey | |
in filenames. Now converts to valid filenames automatically. Note, need to --refresh your wiki after updating to this version, if you use any pages with __nn__ in their names. | |||
2006-03-28 | support [[linktext|pagename]] links | joey | |
2006-03-28 | case insensative image filenames | joey | |
2006-03-26 | add --refresh and make it with with --setup | joey | |
2006-03-26 | added --getctime | joey | |
2006-03-24 | Take basename of page link when creating a link. Makes blog posts look | joey | |
better and I think it's ok. | |||
2006-03-24 | add blog post template | joey | |
2006-03-24 | default rss on | joey | |
2006-03-24 | fixes | joey | |
2006-03-24 | hold onto your hats, full-fledged blogging has arrived in ikiwiki! | joey | |
2006-03-23 | load index for all cgi scripts, fixes links on RecentChanges | joey | |
2006-03-23 | skip old format index file lines for now | joey | |
2006-03-23 | preserve ctimes across rebuilds | joey | |
2006-03-23 | Add file cretion times to the index file. | joey | |
(Note that it's not really the file creation time, just the first time ikiwiki saw it.) | |||
2006-03-23 | new index file format | joey | |
*warning* on upgrade to this version of ikiwiki, be sure to run --rebuild to regenerate the index | |||
2006-03-23 | add support for generating per-page rss feeds | joey | |
2006-03-23 | support arbitrary characters in page titles, via some ugly use of unicode | joey | |
character numbers | |||
2006-03-23 | oops | joey | |
2006-03-23 | foo | joey | |
2006-03-23 | move config setting into getopts | joey | |
2006-03-23 | prototyping improvements | joey | |
2006-03-23 | another sub, wow | joey | |
2006-03-23 | slightly better latout | joey | |
2006-03-23 | proper main sub and loadindex optimisation for cgis | joey | |
2006-03-23 | benchmarking suggests that meoization doesn't help even when doing a | joey | |
--rebuild, so remove it | |||
2006-03-23 | Getopt::Long is a huge, heavy perl module. So why use it? | joey | |
This {gross,amazing} hack makes all wrapped uses of ikiwiki forgo any option parsing at all. Options come in preparses via an env var from the wrapper. As a bonus, Wrapper.pm no longer needs to be updated when command line options are added to the program. Load time is sped up by around 10%. ikiwikiwrap --params is no longer supported by this change. You will need to rebuild your wrappers to take advantage of it. | |||
2006-03-23 | Major code reoganisation, splitting up the single big file. The two goals | joey | |
kept in mind during this are a) to reduce load time for common cases like cgi and post-commit and b) make the code easier to navigate. This also modularises RCS support to the extent that it should be possible to drop in a module for some RCS other than svn, add a switch for it, and it pretty much just work. High chance I missed an edge case that breaks something, this is only barely tested at this point. | |||
2006-03-23 | remove accidental makemaker cruft | joey | |
2006-03-23 | found & fixed another symlink attack | joey | |
2006-03-23 | -s == --setup | joey | |
2006-03-23 | At Branden's request, clean up the hardcoded ".ikiwiki" everywhere, and add | joey | |
checkoptions() that can be used to set defaults for this and other options based on existing options. Also involved some cleanups to how gen_wrapper is used. | |||
2006-03-23 | *warning* any wrappers built with a previous version of ikiwiki need to be | joey | |
rebuilt This changes ikiwiki's syntax to require only 2 parameters (source and dest) and not three. The templatedir parameter is now an optional --templatedir. | |||
2006-03-23 | Fix a bad use of implicit return for admin-less wikis. I got lucky.. | joey | |
2006-03-23 | added adminuser settings, globlist support, and used this to implement page | joey | |
locking | |||
2006-03-21 | prefs page implemented | joey | |
2006-03-21 | add --diffurl, if set RecentChanges has links to svn diffs | joey | |
2006-03-20 | added last changed timestamp for pages | joey | |