aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/CGI.pm
Commit message (Collapse)AuthorAge
...
* * Add -refresh option to ikiwiki-mass-rebuild and use that on upgrades thatjoey2006-05-27
| | | | do not need a full rebuild, in order to update any basewiki pages.
* * --getctime had bitrotted (well I only ever used it the once so far..),joey2006-05-26
| | | | | | | | | | | | * When inlining a page in another one, links from the inlined page are now expanded the same as they are when rendering the inlined page as a standalone page. So rather than being expanded from the POV of the inlining page, they are expanded from the POV of the inlined page. For example, a link from blog/foo to "bar" will now link to blog/bar if it exists. Previously this needed to be a link explicitly to "blog/bar"; such links will also continue to work. (This was slightly complex to do as the link still has to be constructed relative to the inlining page.)
* * Rebuilding on upgrade to this version is recommended.joey2006-05-26
| | | | | | | | * Add a html validity check to the test suite, using the wdg-html-validator, if available. * Make the html valid when there is nothing in the actions list by adding an empty <li> to the end of it. * Reordered some function call parameters for consistency.
* rather a lot of changes to make hyperestraier search be a plugin, allowingjoey2006-05-03
| | | | | | | | | | | | | | for other types of search engine plugins if wanted, and also opening up a lot of new possibilities for other kinds of plugins later some notable changes along the way: - lots of new hook types: cgi, render, delete - wrapper files fixed to support config strings with newlines in them - HEADERCONTENT in page template useful for plugins. Probably needs to be expanded to more such for other places plugins might want to add content. - remove unnecessary wrappers field from config info stored in wrappers
* * Split off an IkiWiki.pm out of ikiwiki and have all the other modules usejoey2006-05-02
| | | | it, this will allow for adding a unit test suite.
* fix undef warningjoey2006-05-02
|
* * Smarter behavior when creating a page and a page of the same name (butjoey2006-05-02
| | | | different location) already exists.
* - fix typojoey2006-04-25
| | | | | - avoid sending commit mails to the user who made the commit
* prevent users from registering with name that is not a valid wikifilejoey2006-04-25
| | | | | avoids XSS attacks and is generally a good limitation
* fix a deadloop if from ended in a /joey2006-04-25
|
* subscription nearly donejoey2006-04-25
|
* commit changes for email subscriptionsjoey2006-04-24
|
* fix --anonokjoey2006-04-14
|
* Verified that the action parameter on cgi forms is needed for at least thejoey2006-04-04
| | | | | prefs form. Use $config{cgiurl}.
* comment out action => $q->request_uri setting, which is reporedlyjoey2006-04-02
| | | | | | unnecessary and doesn't work with old CGI.pm's (it's an undocumented variable)
* - add <base> to cgi output, this is especially useful for output containingjoey2006-04-02
| | | | | | | | | | | 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.
* improved logicjoey2006-03-30
|
* added --hyperestraier switch, which turns on search supportjoey2006-03-29
| | | | | (ok, the way I run estseek.cgi is admittedly pretty nasty, but it works..)
* improve fix for symlink attacks to check subdirectories for symlinks toojoey2006-03-29
| | | | | before writing
* fix for replacing from underlayjoey2006-03-29
|
* Implemented --underlaydir, and moved files provided by underlay out of docjoey2006-03-29
| | | | | | | | | 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.
* css supportjoey2006-03-29
|
* html validation fixes:joey2006-03-29
| | | | | | | | | | | - 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.
* Improved handling of wikilinks containing characters that are not allowedjoey2006-03-29
| | | | | | | | 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.
* Change the name of the session cookie. This will avoid problems withjoey2006-03-29
| | | | | multiple wikis on the same host.
* Put in a quick fix for a bug involving page preview while creating a pagejoey2006-03-28
| | | | | | that caused the page location to be changed to a subdir. This is not a very good fix.
* add --refresh and make it with with --setupjoey2006-03-26
|
* don't keep the wiki locked while rendering recentchangesjoey2006-03-26
|
* don't escape "/" in title when making a blog entry, allow creating a subdirjoey2006-03-26
|
* finish up the blog formjoey2006-03-24
|
* add blog post templatejoey2006-03-24
|
* load index for all cgi scripts, fixes links on RecentChangesjoey2006-03-23
|
* proper main sub and loadindex optimisation for cgisjoey2006-03-23
|
* Major code reoganisation, splitting up the single big file. The two goalsjoey2006-03-23
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.