aboutsummaryrefslogtreecommitdiff
path: root/debian
Commit message (Collapse)AuthorAge
* 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
* | updateJoey Hess2008-09-29
| |
* | Add indexpages optionJoey Hess2008-09-29
|/ | | | | | | | | | This is the easy part of supporting foo/index.mdwn sources for page foo. Note that if foo.mdwn exists too, there will be a warning about multiple sources for the same page, and which is used is indeterminate. indexpages should also cause web based editing to create index source pages by default; this and other fallout of the option not yet implemented.
* editpage: Be more aggressive (and less buggy) about cleaning up temporary ↵Joey Hess2008-09-27
| | | | files rendered during page preview.
* Add %wikistate, which is like %pagestate except not specific to a given ↵Joey Hess2008-09-27
| | | | page, and is preserved across rebuilds.
* Reorganize index file, add a format version field.Joey Hess2008-09-27
| | | | | | | | | | 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.
* template: Make edit link for new templates ensure the page is located under ↵Joey Hess2008-09-27
| | | | toplevel templates directory.
* htmltidy robustness fixesJoey Hess2008-09-27
| | | | | | | * 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.
* Export pagetitle, titlepage, linkpage.Joey Hess2008-09-27
|
* Beautify urls used in various places. (smcv)Joey Hess2008-09-27
|
* typoJoey Hess2008-09-27
|
* Epand usage message and add --help. Closes: #500344Joey Hess2008-09-27
|
* htmlscrubber: Add a config setting that can be used to disable the scrubber ↵Joey Hess2008-09-26
| | | | acting on a set of pages.
* tag: Make edit link for new tags ensure that the tags are created inside ↵Joey Hess2008-09-25
| | | | tagbase, when it's set.
* git: Fix handling of utf-8 filenames in recentchanges.Joey Hess2008-09-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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?
* 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.Joey Hess2008-09-25
| | | | | | | 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.
* recentchanges: Fix redirects to non-page files.Joey Hess2008-09-25
|
* releasing version 2.65Joey Hess2008-09-24
|
* rename: Hide type field from rename form when renaming attachments.Joey Hess2008-09-23
|
* changelogJoey Hess2008-09-23
|
* rename, remove: Don't rely on a form parameter to tell whether the page ↵Joey Hess2008-09-23
| | | | should be treated as an attachment.
* Add keepextension parameter to htmlize hook. (Willu)Joey Hess2008-09-23
|
* Print a debug message if a page has multiple source files.Joey Hess2008-09-23
|
* add missing page name sanity checkJoey Hess2008-09-20
|
* edittemplate patch from WilluJoey Hess2008-09-20
| | | | | | | * edittemplate: Default new page file type to the same type as the template. (willu) * edittemplate: Add "silent" parameter. (Willu) * edittemplate: Link to template, to allow creating it. (Willu)
* Fix reversion in use of ikiwiki -verbose -setup with a setup file that ↵Joey Hess2008-09-20
| | | | | | | | | | | | | | enables syslog. Setup output is once again output to stdout in this case. Implemented by stashing the verbose/syslog values set in the setup file, and using those values in the generated wrappers, but not allowing them to take effect during the setup operation itself, so that command-line options, appearing before or after -setup, are honored. Also, some cleanups to how %config is generated for wrappers, removing some fields that do not need to be recorded inside the wrapper.
* progress: Display an error if the progress cannot be parsed, and allow the ↵Joey Hess2008-09-19
| | | | percent parameter to only optionally end with "%".
* store ctime for use by expiry codeJoey Hess2008-09-17
| | | | | The expiry code does need to make sure to sort in ctime order, even if expiring by count, so it expires the right ones.
* aggregate: Support atom feeds with only a summary element, and no content ↵Joey Hess2008-09-17
| | | | elements.
* editdiff: Broken since 2.62 due to wrong syntax, now fixed.Joey Hess2008-09-17
|