aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
Commit message (Expand)AuthorAge
...
* google plugin: Use google.com to search the local site.•••Google allows has a nice feature, sitesearch, that allows anyone to limit search results to a specific site. Obviously, this feature can be used to provide a search engine for the local ikiwiki site without the need to install any additional software. Just enable the 'google' plugin and make sure that --url uses the proper hostname. Thanks to Joey for helping to get the Perl implementation right. Peter Simons2008-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
* avoid $_ in a few other for loops•••These were probably not currently buggy, but let's avoid bugs being introduced by the functions called clobbering $_. Joey Hess2008-10-06
* remove: Avoid $_ breakage. (Stupid, stupid perl.)•••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. Joey Hess2008-10-06
* 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
* don't special case preview•••Whenever the edit form is submitted, but not saved, the page location select should reduce to the currently selected value. This was only done when previewing before, but is also needed in order to support the case of adding an attachment to a page that is just being created. Before this change, the attachment plugin would get a weird value in $form->field("page"), that did not reflect the actual page location. Joey Hess2008-10-02
* inline: Fix handling of rootpage that doesn't exist.•••It makes sense to use bestlink to determine which page rootpage refers to, but if no page matches, just use the raw value. Joey Hess2008-10-01
* fix subpage rename bug with indexpages•••If indexpages is enabled, then foo/index.mdwn will look like a subpage of foo, so an additional check is needed to avoid trying to rename it twice. Joey Hess2008-10-01
* support indexpagesJoey Hess2008-09-29
* Removed the pagefile function, which was confusingly close in name to•••newpagefile. Note that newpagefile is not used here (or in recentchanges) because the internal use pages they generate are transient and unlikely to benefit from being put each in their own subdir. Joey Hess2008-09-29
* use newpagefileJoey Hess2008-09-29
* support indexpages when renaming pages•••Note that the page filename code used here and in editpage are identical.. Joey Hess2008-09-29
* support indexpages when creating new pages•••Initial draft, may need to factor new page filename code out into helper function if other plugins need to do the same.. Joey Hess2008-09-29
* avoid unnecessarily rebuilding pages with complex conditionals•••I noticed that ikiwiki/formatting was beilg rebuilt when any page changed. This turned out to be because it contained a complex conditional "enabled(foo) or enabled(bar)", and the conditional plugin did not notice that this consisted only of enabled() tests, and copied it unchanged into add_depends. Thus, the page's dependencies were satisfied by any page change. The fix is to beef up the parser so that it can handle that and more complex conditionals, and detect if they consist only of such tests. Joey Hess2008-09-29
* use gettextJoey Hess2008-09-29
* fix handing of case of file first created by preview but then saved•••To handle this, avoid populating %renderedfiles in preview, and in expiry, check if the file is in %renderedfiles, if it is do not delete it since it was saved. Joey Hess2008-09-29
* editpage: Be more aggressive (and less buggy) about cleaning up temporary fil...Joey Hess2008-09-27
* Reorganize index file, add a format version field.•••Upgrades to the new index format should be transparent. The version field is 3, because 1 was the old textual index, 2 was the pre-versioned format. This also includes some efficiency improvements to index loading, by not copying a hash and using a reference. Joey Hess2008-09-27
* template: Make edit link for new templates ensure the page is located under t...Joey Hess2008-09-27
* htmltidy robustness fixes•••* htmltidy: Avoid returning undef if tidy fails. Also avoid returning the untidied content if tidy crashes. In either case, it seems best to tidy the content to nothing. * htmltidy: Avoid spewing tidy errors to stderr. Joey Hess2008-09-27
* Export pagetitle, titlepage, linkpage.Joey Hess2008-09-27
* typoJoey Hess2008-09-27
* pagetype is exportedJoey Hess2008-09-27
* Merge commit 'smcv/beautify'•••Conflicts: IkiWiki/Plugin/recentchanges.pm Note that smcv's approach of using urlto also gets the url right when redirecting to a non-html file, which is a better approach than my recent fix to recentchanges Joey Hess2008-09-27
|\
| * remove: redirect via urlto(), avoiding mentions of index.htmlSimon McVittie2008-09-21
| * recentchanges: construct redirections via urlto(), avoiding mentions of index...Simon McVittie2008-09-21
| * poll: Use urlto to produce redirection URLs, avoiding mentions of index.htmlSimon McVittie2008-09-21
| * editpage: beautify redirection URLs, avoiding exposing the implementation det...Simon McVittie2008-09-21
* | typoJoey Hess2008-09-27
* | htmlscrubber: Add a config setting that can be used to disable the scrubber a...Joey Hess2008-09-26
* | decode utf-8 in recentchanges_link parameterJoey Hess2008-09-26
* | tag: Make edit link for new tags ensure that the tags are created inside tagb...Joey Hess2008-09-25
* | git: Fix handling of utf-8 filenames in recentchanges.•••Seems that the problem is that once the \nnn coming from git is converted to a single character, decode_utf8 decides that this is a standalone character, and not part of a multibyte utf-8 sequence, and so does nothing. I tried playing with the utf-8 flag, but that didn't work. Instead, use decode("utf8"), which doesn't have the same qualms, and successfully decodes the octets into a utf-8 character. Rant: Think for a minute about fact that any and every program that parses git-log, or git-show, etc output to figure out what files were in a commit needs to contain this snippet of code, to convert from git-log's wacky output to a regular character set: if ($file =~ m/^"(.*)"$/) { ($file=$1) =~ s/\\([0-7]{1,3})/chr(oct($1))/eg; } (And it's only that "simple" if you don't care about filenames with embedded \n or \t or other control characters.) Does that strike anyone else as putting the parsing and conversion in the wrong place (ie, in gitweb, ikiwiki, etc, etc)? Doesn't anyone who actually uses git with utf-8 filenames get a bit pissed off at seeing \xxx\xxx instead of the utf-8 in git-commit and other output? Joey Hess2008-09-25
* | attachment: Add admin() pagespec to test if the uploading user is a wiki admin.Joey Hess2008-09-25
* | aggregate: Avoid uninitialized value warnings for pages with no recorded ctime.•••I saw this in the wild, apparently a page was not present on disk, but was in the aggregate db, and not marked as expired either. Not sure how that happened, but such pages should get marked as expired since they have an effectively zero ctime. Joey Hess2008-09-25
* | recentchanges: Fix redirects to non-page files.Joey Hess2008-09-25
* | rename: Hide type field from rename form when renaming attachments.Joey Hess2008-09-23
* | multiple rename support is working•••most edge cases seem handled too Joey Hess2008-09-23
* | Merge branch 'master' into tovaJoey Hess2008-09-23
|\ \
| * | rename, remove: Don't rely on a form parameter to tell whether the page shoul...Joey Hess2008-09-23
* | | factor out fixlinksJoey Hess2008-09-23
* | | factor out do_renameJoey Hess2008-09-23
* | | add checkbox to rename subpages tooJoey Hess2008-09-23
|/ /
* | layoutJoey Hess2008-09-23
* | Print a debug message if a page has multiple source files.Joey Hess2008-09-23
* | include perl error in warning about openid•••it may be some other module missing, this way you can tell by reading the log Joey Hess2008-09-23
* | Fix typo in skeleton.pm.example: sessionncgi (with extra n)•••(cherry picked from commit 72ffc85d6acb8b99839ac98a2c23dbef410b5666) Simon McVittie2008-09-23
* | handle templates with special characters in name•••The template field is really a link, so needs to be converted to a page name in stored state. Joey Hess2008-09-20