| Commit message (Expand) | Author | Age |
... | |
* | | Merge branch 'master' into next | Joey Hess | 2008-12-26 |
|\| |
|
| * | comments: Deal with users entering unqualified or partial urls.•••People seem to be able to expect to enter www.foo.com and get away with it.
The resulting my.wiki/www.foo.com link was not ideal.
To fix it, use URI::Heuristic to expand such things into a real url. It
even looks up hostnames in the DNS if necessary.
| Joey Hess | 2008-12-26 |
* | | Merge branch 'master' into next•••Conflicts:
IkiWiki/Plugin/googlecalendar.pm
| Joey Hess | 2008-12-25 |
|\| |
|
| * | googlecalendar: Add runtime deprecation warning. | Joey Hess | 2008-12-25 |
| * | camelcase: Add camelcase_ignore setting. | Joey Hess | 2008-12-23 |
* | | more 3.0 docs, changelog | Joey Hess | 2008-12-24 |
|/ |
|
* | Add deprecation warning for GlobLists, which will stop working in 3.0. | Joey Hess | 2008-12-23 |
* | merge recentchanges comments fix | Joey Hess | 2008-12-22 |
* | formatting | Joey Hess | 2008-12-21 |
* | openid branch merged | Joey Hess | 2008-12-21 |
* | meta: Process meta date during scan pass so that the date will always affect ... | Joey Hess | 2008-12-21 |
* | aggregate: If a feed fails to be downloaded, try again immediatly next time a... | Joey Hess | 2008-12-17 |
* | Coding style change: Remove explcit vim folding markers. | Joey Hess | 2008-12-17 |
* | Merge branch 'master' into comments | Joey Hess | 2008-12-17 |
|\ |
|
| * | monotone: When getting the log, tell monotone how many entries we want, rathe... | Joey Hess | 2008-12-17 |
| * | rename: Fix double-escaping of page name in edit box.•••titlepage normally escapes, but so does formbuilder.
| Joey Hess | 2008-12-17 |
* | | update changelog | Joey Hess | 2008-12-12 |
|/ |
|
* | add log entry | Joey Hess | 2008-12-12 |
* | meta: Pass info to htmlscrubber so htmlscrubber_skip can take effect. | Joey Hess | 2008-12-12 |
* | inline: Support feedfile option to change the filename of the feed generated. | Joey Hess | 2008-12-11 |
* | inline: Support emptyfeeds=no option to skip generating empty feeds. | Joey Hess | 2008-12-11 |
* | German translation update from Kai Wasserbäch. Closes: #507056 | Joey Hess | 2008-11-28 |
* | Correct --dumpsetup to include the srcdir in the setup file. | Joey Hess | 1997-08-14 |
* | fix handling of wrappergroup option•••Had forgot to include it in the option list.
| Joey Hess | 2008-11-26 |
* | Spanish translation update from Victor Moral. | Joey Hess | 1997-08-14 |
* | French translation update from Philippe Batailler. Closes: #506250 | Joey Hess | 2008-11-19 |
* | improve escaping of wikilinks and preprocessor directives•••The old method failed for '[' x 3.
| Joey Hess | 2008-11-18 |
* | Change deb dependencies to list Text::Markdown before markdown (really this t... | Joey Hess | 2008-11-17 |
* | adding htmlbalance; housekeeping•••Used the contrib version of the plugin page since it seemed better than the
other one.
| Joey Hess | 2008-11-17 |
* | releasing version 2.70 | Joey Hess | 2008-11-12 |
* | check for invalid utf-8, and toss it back to avoid crashes•••Since ikiwiki uses open :utf8, perl assumes that files contain valid utf-8.
If it turns out to be malformed it may later crash while processing strings
read from them, with 'Malformed UTF-8 character (fatal)'.
As at least a quick fix, use utf8::valid as soon as data is read, and if
it's not valid, call encode_utf8 on the string, thus clearing the utf-8
flag. This may cause follow-on encoding problems, but will avoid this
crash, and the input file was broken anyway, so GIGO is a reasonable
response. (I looked at calling decode_utf8 after, but it seemed to cause
more trouble than it was worth. BTW, use open ':encoding(utf8)' avaoids
this problem, but the corrupted data later causes Storable to crash when
writing the index.)
This is a quick fix, clearly imperfect:
- It might be better to explicitly call decode_utf8 when reading files,
rather than using the IO layer.
- Data read other than by readfile() can still sneak in bad utf-8. While
ikiwiki does very little file input not using it, stdin for the CGI
would be one way.
| Joey Hess | 2008-11-12 |
* | make unlockwiki drop the cgilock•••This is necessary so that things that fork to the background,
like pinger, and inline ping, don't block other cgis from running.
Note that websetup also calls unlockwiki, before refreshing / rebuilding
the wiki. It makes perfect sense for that not to block other cgis.
| Joey Hess | 2008-11-11 |
* | lockwiki changes•••* Stop busy-waiting in lockwiki, as this could delay ikiwiki from waking up
for up to one second. The bailout code is no longer needed.
* Remove support for unused optional wait parameter from lockwiki.
| Joey Hess | 2008-11-11 |
* | bzr: Fix dates for recentchanges. | Joey Hess | 2008-11-11 |
* | typo | Joey Hess | 2008-11-10 |
* | tag: Normalize tagbase so leading/trailing slashes in it don't break things. | Joey Hess | 2008-11-10 |
* | Add rel=nofollow to recentchanges_links for the same (weak) reasons it was ea... | Joey Hess | 2008-11-10 |
* | Fix the link() pagespec to match links that are internally recorded as absolute.•••This fixes a problem exposed by the recent change to tags
(a2839de9362187b67b0e3a564461e272e64fd9b4). That recorded tag links as
absolute by including a leading slash in the link. The same could also be
done with an absolute wikilink.
In either case, link() would not match such links, unless the leading slash
was included in the link to match. But that's not right, because pagespecs
match absolute by default. So strip the leading slash.
Note that to keep any existing `link(/foo)` pagespecs working after this
change, the leading slash is removed from there, too.
| Joey Hess | 2008-11-09 |
* | txt: Do not encode quotes when filtering the txt, as that broke later parsing... | Joey Hess | 2008-11-06 |
* | meta: Plugin is now enabled by default since the basewiki uses it. | Joey Hess | 2008-11-06 |
* | aggregate: Try to query XML::Feed for the base url when derelevatising links.... | Joey Hess | 2008-11-06 |
* | releasing version 2.68 | Joey Hess | 2008-11-03 |
* | reorg | Joey Hess | 2008-10-31 |
* | typo | Joey Hess | 2008-10-31 |
* | format: New plugin, allows embedding differntly formatted text inside a page ... | Joey Hess | 2008-10-31 |
* | fix --setup --render•••In this mode, rebuild mode should not be on
| Joey Hess | 2008-10-30 |
* | Preserve syslog setting when doing `ikiwiki -setup foo -dumpsetup bar`•••The syslog value from the setup file is purposfully ignored when doing
ikiwiki -setup, so that it will output to stdout (while generating wrappers
that do use the syslog). But that caused -dumpsetup to not preserve
the syslog value from the setup file.
| Joey Hess | 2008-10-29 |
* | fix preview of shortcuts•••Move shortcut processing back to checkconfig, and avoid it failing if the
srcdir is not defined.
| Joey Hess | 2008-10-29 |
* | git: Allow [[sha1_commit]] to be used in the diffurl, to support cgit. | Joey Hess | 2008-10-27 |
* | do no-op post_commit test in wrapper•••This speeds up web commits by 1/4th of a second or so, since perl does
not have to start up for the post commit hook.
perl's locking is completly FuBar, since it's impossible to tell what perl
flock() really does, and thus difficult to write code in other languages
that interoperates with perl's locking. (Let alone interoperating with
existing fcntl locking from perl...)
In this particular case, I think I was able to find a way to avoid the
insanity, mostly. The C code does a true flock(2), and if perl is using an
incompatable lock method that does not use the same locking primative at
the kernel level, then the C code's test will fail, and it will go ahead
and run the perl code. Then the perl code's test will test the right thing.
On Debian, at least lately, perl's flock() does a true flock(2), so the
optimisation does work.
| Joey Hess | 2008-10-26 |