summaryrefslogtreecommitdiff
path: root/ikiwiki
AgeCommit message (Collapse)Author
2006-03-23benchmarking suggests that meoization doesn't help even when doing ajoey
--rebuild, so remove it
2006-03-23Getopt::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-23Major code reoganisation, splitting up the single big file. The two goalsjoey
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-23remove accidental makemaker cruftjoey
2006-03-23found & fixed another symlink attackjoey
2006-03-23-s == --setupjoey
2006-03-23At Branden's request, clean up the hardcoded ".ikiwiki" everywhere, and addjoey
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 bejoey
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-23Fix a bad use of implicit return for admin-less wikis. I got lucky..joey
2006-03-23added adminuser settings, globlist support, and used this to implement pagejoey
locking
2006-03-21prefs page implementedjoey
2006-03-21add --diffurl, if set RecentChanges has links to svn diffsjoey
2006-03-20added last changed timestamp for pagesjoey
2006-03-20fix subpage creationjoey
2006-03-20fix setup file errorjoey
improve svn log regexp to deal with file copies/moves
2006-03-19ugh, use subpages for discussion as a special casejoey
2006-03-19switch default new page location to not be a subpagejoey
2006-03-19don't lock before setupjoey
2006-03-19mispastejoey
2006-03-19link to helponformatting from the edit pagejoey
2006-03-19conflict detection, merging, etc should be done now, I thinkjoey
2006-03-19second try at merging and conflicts supportjoey
2006-03-19stupid mistakesjoey
2006-03-19first cut at svn merge and conflictjoey
2006-03-18oops, add unlock _before_ svn commitjoey
2006-03-17fixjoey
2006-03-17unlock wiki during svn commit to prevent deadlock with post-commit hookjoey
2006-03-16fix update of links to removed pagesjoey
2006-03-16need to use CGI in rcs_recentchanges to get escapeHTMLjoey
2006-03-16ok, so we don't want to re-load page content into the form on preview..joey
2006-03-16dd page previewjoey
2006-03-16optimise svn log a bitjoey
2006-03-16lock wiki and refuse to traverse symlinksjoey
2006-03-15escape html from commit logsjoey
2006-03-15config files now based on perl modulesjoey
add MakeMaker foo for module
2006-03-15sometims I hate perljoey
This fixes the bug that made it not update pages linking to a new page
2006-03-14add a special case for discussion pages when determining the links from ajoey
page, since all pages implicitly link to their disussion page
2006-03-14fix two bugs in page location in new page creationjoey
2006-03-14fix Discussion links to not take the BestLink. joey
As a bonus we now have meta Disussion/Discussion pages available, etc. Oh well.. :-)
2006-03-14remove quotes, actualy messed up ikiwiki $(wrapper --params) --foojoey
2006-03-14load/save index when rendering a page in cgi mode for svn-less wikisjoey
2006-03-14Some fixes to the parent links, I think the link to the index will be rightjoey
in all cases now.
2006-03-14ugly fix for parentlink back to top of wikijoey
2006-03-13improved setup file morejoey
2006-03-13add rebuild after calling setup, better format for setup filesjoey
2006-03-13avoid linkifying escaped wikilinksjoey
2006-03-13add --setup, --wrappermodejoey
allow filename param to --wrapper
2006-03-13speed up cgisjoey
2006-03-13hide markdown goo away, it also speeds up the cgis a bitjoey
2006-03-13reorganized codejoey