Joey Hess [Fri, 18 Jun 2010 16:57:20 +0000 (12:57 -0400)]
fix filename
Joey Hess [Fri, 18 Jun 2010 16:56:57 +0000 (12:56 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Fri, 18 Jun 2010 16:52:26 +0000 (12:52 -0400)]
bugnum
Joey Hess [Fri, 18 Jun 2010 16:50:31 +0000 (12:50 -0400)]
avoid shelling
Joey Hess [Fri, 18 Jun 2010 16:48:05 +0000 (12:48 -0400)]
mercurial: Fix buggy getctime code.
The file passed to rcs_getctime is already absolute, and it was
trying to stick the srcdir on the front.
Also, eliminated potentially unsafe shelling.
PaulePanter [Fri, 18 Jun 2010 09:08:28 +0000 (09:08 +0000)]
`themes.pm` instead of `themes.mdwn`
Joey Hess [Thu, 17 Jun 2010 20:54:03 +0000 (16:54 -0400)]
avoid dying if cannot chdir to an underlaydir
Joey Hess [Thu, 17 Jun 2010 20:52:33 +0000 (16:52 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
demo [Thu, 17 Jun 2010 15:00:59 +0000 (15:00 +0000)]
yeay ! \\o \o/ o//
jhagg [Thu, 17 Jun 2010 08:30:38 +0000 (08:30 +0000)]
jeanm [Thu, 17 Jun 2010 06:22:19 +0000 (06:22 +0000)]
Joey Hess [Wed, 16 Jun 2010 23:23:08 +0000 (19:23 -0400)]
link to theme plugin
Joey Hess [Wed, 16 Jun 2010 23:17:18 +0000 (19:17 -0400)]
Merge branch 'themes'
Joey Hess [Wed, 16 Jun 2010 23:15:57 +0000 (19:15 -0400)]
add background image, kindly gpl'd by bzed
Joey Hess [Wed, 16 Jun 2010 20:07:41 +0000 (16:07 -0400)]
force list context
run_or_die returns a status code in scalar context
Joey Hess [Wed, 16 Jun 2010 19:48:50 +0000 (15:48 -0400)]
preserve timestamps for directive and theme underlays
Joey Hess [Wed, 16 Jun 2010 19:44:21 +0000 (15:44 -0400)]
force rebuild for theme change
For now, a rebuild is the only way to ensure the changed theme is used.
Ikiwiki normally will not realize style.css has changed, since themes
tend to have the same timestamp for the file.
Joey Hess [Wed, 16 Jun 2010 19:43:42 +0000 (15:43 -0400)]
add theme plugin
Joey Hess [Wed, 16 Jun 2010 19:30:33 +0000 (15:30 -0400)]
Encode not used
Joey Hess [Wed, 16 Jun 2010 19:03:38 +0000 (15:03 -0400)]
comments
Joey Hess [Wed, 16 Jun 2010 19:02:42 +0000 (15:02 -0400)]
not local.css here
Joey Hess [Wed, 16 Jun 2010 19:02:14 +0000 (15:02 -0400)]
copy from actiontabs.css in css_market
fixed a few indents
Joey Hess [Wed, 16 Jun 2010 19:00:26 +0000 (15:00 -0400)]
copy from bzed
Joey Hess [Wed, 16 Jun 2010 18:55:44 +0000 (14:55 -0400)]
tweak bzed's theme
* move dotted border from bottom inlinecontent to top inlinefooter,
and allow inlinefooter to clear floating content. This way, floating
images do not hang down through the dotted border
* don't reset inputs and textareas, it makes buttons in forms
all squash up together
* don't eliminate fieldsets, it makes the web setup page a
mess
* only force the size of the search box. ikiwiki generally picks
form field sizes with a reasonable good reason
* remove some custom css classes not used
* remove some trailing whitespace
Joey Hess [Wed, 16 Jun 2010 18:53:47 +0000 (14:53 -0400)]
add copy of local.css from bzed.de
bzed says this is not quite ready, but I'm an impatient guy. Guess
I'll have to track his updates.
Joey Hess [Wed, 16 Jun 2010 17:23:32 +0000 (13:23 -0400)]
attachment: Support Windows paths when taking basename of client-supplied file name.
jhagg [Wed, 16 Jun 2010 13:40:29 +0000 (13:40 +0000)]
Joey Hess [Wed, 16 Jun 2010 03:21:55 +0000 (23:21 -0400)]
git: Gix --gettime to properly support utf8 filenames.
In passing, fixed a bug where the srcdir was in a subdir of a repository
named "0".
Joey Hess [Wed, 16 Jun 2010 02:56:06 +0000 (22:56 -0400)]
Make --gettime be honored after initial setup.
Bugfix in passing: New files not treated as such when no rcs is used.
Joey Hess [Tue, 15 Jun 2010 23:35:17 +0000 (19:35 -0400)]
bugnum
Joey Hess [Tue, 15 Jun 2010 21:41:26 +0000 (17:41 -0400)]
fix other cases of unicode mixing issue
and fix underlaydir override attack guard when srcdir is non-absolute
Joey Hess [Tue, 15 Jun 2010 20:40:37 +0000 (16:40 -0400)]
Fix issues with combining unicode srcdirs and source files.
A short story:
Once there was a unicode string, let's call him Srcdir.
Along came a crufy old File::Find, who went through a tree and pasted each
of the leaves in turn onto Srcdir. But this 90's relic didn't decode the
leaves -- despite some of them using unicode! Poor Srcdir, with these
leaves stuck on him, tainted them with his nice unicode-ness. They didn't
look like leaves at all, but instead garbage.
(In other words, perl's unicode support sucks mightily, and drives
us all to drink and bad storytelling. But we knew that..)
So, srcdir is not normally flagged as unicode, because typically it's pure
ascii. And in that case, things work ok; File::Find finds filenames, which
are not yet decoded to unicode, and appends them to the srcdir, and then
decode_utf8 happily converts the whole thing.
But, if the srcdir does contain utf8 characters, that breaks. Or, if a Yaml
setup file is used, Yaml::Syck's implicitunicode sets the unicode flag of
*all* strings, even those containing only ascii. In either case, srcdir
has the unicode flag set; a non-decoded filename is appended, and the flag
remains set; and decode_utf8 sees the flag and does *nothing*. The result
is that the filename is not decoded, so looks valid and gets skipped.
File::Find only sticks the directory and filenames together in no_chdir
mode .. but we need that mode for security. In order to retain the
security, and avoid the problem, I made it not pass srcdir to File::Find.
Instead, chdir to the srcdir, and pass ".". Since "." is ascii, the problem
is avoided.
Note that chdir srcdir is safe because we check for symlinks in the srcdir
path.
Note that it takes care to chdir back to the starting location. Because
the user may have specified relative paths and so staying in the srcdir
might break. A relative path could even be specifed for an underlay dir, so
it chdirs back after each.
Joey Hess [Tue, 15 Jun 2010 20:40:37 +0000 (16:40 -0400)]
Fix issues with combining unicode srcdirs and source files.
A short story:
Once there was a unicode string, let's call him Srcdir.
Along came a crufy old File::Find, who went through a tree and pasted each
of the leaves in turn onto Srcdir. But this 90's relic didn't decode the
leaves -- despite some of them using unicode! Poor Srcdir, with these
leaves stuck on him, tainted them with his nice unicode-ness. They didn't
look like leaves at all, but instead garbage.
In other words, perl's unicode support sucks mightily, and drives
us all to drink and bad storytelling. But we knew that..
So, srcdir is not normally flagged as unicode, because typically it's pure
ascii. And in that case, things work ok; File::Find finds filenames, which
are not yet decoded to unicode, and appends them to the srcdir, and then
decode_utf8 happily converts the whole thing.
But, if the srcdir does contain utf8 characters, that breaks. Or, if a Yaml
setup file is used, Yaml::Syck's implicitunicode sets the unicode flag of
*all* strings, even those containing only ascii. In either case, srcdir
has the unicode flag set; a non-decoded filename is appended, and
decode_utf8 sees the flag and does *nothing*. The result is that the
filename is not decoded, so looks valid and gets skipped.
File::Find only sticks the directory and filenames together in no_chdir
mode .. but we need that mode for security. In order to retain the
security, and avoid the problem, I made it not pass srcdir to File::Find.
Instead, chdir to the srcdir, and pass ".". Since "." is ascii, the problem
is avoided.
Note that it takes care to chdir back to the starting location. Because
the user may have specified relative paths and so staying in the srcdir
might break. A relative path could even be specifed for an underlay dir, so
it chdirs back after each.
Joey Hess [Tue, 15 Jun 2010 19:15:39 +0000 (15:15 -0400)]
note
Joey Hess [Tue, 15 Jun 2010 18:17:23 +0000 (14:17 -0400)]
match only pages in calendar
Joey Hess [Tue, 15 Jun 2010 17:44:42 +0000 (13:44 -0400)]
clear floats before comments begin
Joey Hess [Tue, 15 Jun 2010 17:38:19 +0000 (13:38 -0400)]
calendar: Tune archive_pagespec to only match pages, not other files.
Joey Hess [Tue, 15 Jun 2010 17:34:45 +0000 (13:34 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Tue, 15 Jun 2010 17:33:43 +0000 (13:33 -0400)]
fix labels for form elements
The label for attribute must correspond to the element id (not name).
And it needs to be unique inside the loop.
privat [Tue, 15 Jun 2010 13:33:16 +0000 (13:33 +0000)]
Thanks
bhobbit [Tue, 15 Jun 2010 03:43:48 +0000 (03:43 +0000)]
typo
bhobbit [Tue, 15 Jun 2010 03:41:34 +0000 (03:41 +0000)]
Joey Hess [Mon, 14 Jun 2010 20:36:54 +0000 (16:36 -0400)]
fix links
Joey Hess [Mon, 14 Jun 2010 20:35:12 +0000 (16:35 -0400)]
add links to mentioned directives
Using the !iki shortcut, since the directive pages may not be included in
the basewiki.
Joey Hess [Mon, 14 Jun 2010 18:34:52 +0000 (14:34 -0400)]
editpage, comments: Fix broken links in sidebar (due to forcebaseurl). (Thanks, privat)
Joey Hess [Mon, 14 Jun 2010 18:14:43 +0000 (14:14 -0400)]
good idea
Joey Hess [Mon, 14 Jun 2010 18:11:35 +0000 (14:11 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Mon, 14 Jun 2010 18:10:59 +0000 (14:10 -0400)]
simplify, avoid confusing suggestions
Don't even talk about ACLs, and more strongly discourage directly
committing to ikiwiki's srcdir.
Joey Hess [Mon, 14 Jun 2010 16:35:21 +0000 (12:35 -0400)]
limit blog inlines to pages
This way images attached to blog posts don't show up as enclosures in the
blog by default.
privat [Mon, 14 Jun 2010 13:54:43 +0000 (13:54 +0000)]
Reopen the bug since it is not fixed
Joey Hess [Sun, 13 Jun 2010 14:23:05 +0000 (10:23 -0400)]
more symetric enable/disable
Removing a plugin from add_plugins is not always enough to disable it.
It may have been redundantly added there and also pulled in via goodstuff.
Always add didabled plugins to disable_plugins.
Joey Hess [Sun, 13 Jun 2010 14:21:19 +0000 (10:21 -0400)]
websetup: Allow enabling plugins listed in disable_plugins.
The bug here was that disabling a plugin included thru goodstuff, like
htmlscrubber, caused it to be added to disable_plugins, and those plugins
were never loaded, so could not be re-enabled. Fix by allowing them to be
force loaded when appropriate. (Also that allows disabled plugins to still
record their setup options when dumping a setup file.)
Joey Hess [Sun, 13 Jun 2010 13:11:59 +0000 (09:11 -0400)]
response
Joey Hess [Sun, 13 Jun 2010 12:49:32 +0000 (08:49 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Sun, 13 Jun 2010 12:47:21 +0000 (08:47 -0400)]
remove obsolete ol class=form for editpage and editcomment
The styling of labels on the form largely obsoleted the special styled ol,
so just a few br's sufficed. Using an ol like that was not too semantically
right (probably?) and could cause problems with customized local.css.
http://abhidg.wordpress.com/ [Sun, 13 Jun 2010 12:37:16 +0000 (12:37 +0000)]
Joey Hess [Sun, 13 Jun 2010 05:21:32 +0000 (01:21 -0400)]
wording
Joey Hess [Sun, 13 Jun 2010 05:14:24 +0000 (01:14 -0400)]
speling
Joey Hess [Sun, 13 Jun 2010 05:12:04 +0000 (01:12 -0400)]
typo
Joey Hess [Sun, 13 Jun 2010 03:00:30 +0000 (23:00 -0400)]
attachment: When inserting links, insert img directives for images, if that plugin is enabled.
Joey Hess [Sun, 13 Jun 2010 02:59:46 +0000 (22:59 -0400)]
avoid ugly warning if size="" is specified
Joey Hess [Sun, 13 Jun 2010 02:43:34 +0000 (22:43 -0400)]
edittemplate: Look for template pages under templates/ like everything else (still looks in old location for backwards compatability).
Joey Hess [Sun, 13 Jun 2010 02:20:22 +0000 (22:20 -0400)]
edittemplate: Make silent mode not disable display when the template page does not exist, so it can be easily created.
Joey Hess [Sat, 12 Jun 2010 22:10:33 +0000 (18:10 -0400)]
editpage: Rename "comments" field to avoid CSS conflict with the comments div.
Joey Hess [Sat, 12 Jun 2010 20:16:24 +0000 (16:16 -0400)]
img: Support hspace and vspace attributes.
Joey Hess [Sat, 12 Jun 2010 18:29:56 +0000 (14:29 -0400)]
attachment: Show files from underlay in attachments list.
While those files cannot be removed or renamed, this allows easy
downloading of them, and a new version can after all be uploaded.
Joey Hess [Fri, 11 Jun 2010 18:14:20 +0000 (14:14 -0400)]
realm is an url pattern
Joey Hess [Fri, 11 Jun 2010 17:54:07 +0000 (13:54 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Fri, 11 Jun 2010 17:53:56 +0000 (13:53 -0400)]
openid: Add openid_realm and openid_cgiurl configuration options, useful in a few edge case setups.
jwalzer [Fri, 11 Jun 2010 13:53:06 +0000 (13:53 +0000)]
zimek [Fri, 11 Jun 2010 11:14:34 +0000 (11:14 +0000)]
dwabot [Fri, 11 Jun 2010 04:33:40 +0000 (04:33 +0000)]
nil [Fri, 11 Jun 2010 02:45:14 +0000 (02:45 +0000)]
use the ikiwiki userdb outside of the ikiwiki edition access control
privat [Fri, 11 Jun 2010 01:03:43 +0000 (01:03 +0000)]
use PARENTLINKS
http://jblevins.org/ [Thu, 10 Jun 2010 22:16:55 +0000 (22:16 +0000)]
Update URL
http://jblevins.org/ [Thu, 10 Jun 2010 22:11:00 +0000 (22:11 +0000)]
Update URL
Joey Hess [Thu, 10 Jun 2010 20:17:38 +0000 (16:17 -0400)]
remove old
Joey Hess [Thu, 10 Jun 2010 20:15:43 +0000 (16:15 -0400)]
add news item for ikiwiki 3.
20100610
Joey Hess [Thu, 10 Jun 2010 20:15:22 +0000 (16:15 -0400)]
releasing version 3.
20100610
Joey Hess [Thu, 10 Jun 2010 20:05:29 +0000 (16:05 -0400)]
add auto-scrolling pre's
let's see if anyone hates it :)
Joey Hess [Thu, 10 Jun 2010 19:15:44 +0000 (15:15 -0400)]
I'm told that the pagebody div should be after the sidebar.
Joey Hess [Thu, 10 Jun 2010 19:01:10 +0000 (15:01 -0400)]
calendar styling
* calendar: Shorten day names, and improve styling of month calendar.
* style.css: Reduced sidebar width back to 20ex from 30; the month calendar
will now fit in the smaller width, and 30 was feeling too large.
Joey Hess [Thu, 10 Jun 2010 18:31:01 +0000 (14:31 -0400)]
also set overflow: auto for blogform
This improves its display slighly when next to a sidebar or other floating
element.
Joey Hess [Thu, 10 Jun 2010 18:15:10 +0000 (14:15 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Thu, 10 Jun 2010 18:14:46 +0000 (14:14 -0400)]
style.css: Improvements to make floating sidebar fit better on pages with inlines.
The key is using width: auto; overflow: auto; -- this allows the div(s) to the
left of the floating sidebar to be resized to fit next to it, and prevents
any clear: both from pushing the div down below the end of the sidebar.
Many thanks for the Hurd wiki's developers for originally figuring this out.
The edit page recently developed the same problem with its textarea, now
that a sidebar can appear on that page too. In editpage.tmpl I needed to
add a new div around the editcontent textarea, as the above styles cannot
be applied directly to textareas. The textarea's own width is reduced to
98% because at least in chromium this avoids it getting unnecessary
horizonatl scrollbars when a sidebar is displayed next to it.
Joey Hess [Thu, 10 Jun 2010 17:16:35 +0000 (13:16 -0400)]
page.tmpl: Add a div around the sidebar, page content, and comments, to aide in styling.
http://bzed.de/posts/2010/05/new_css_for_bzed.de/
smcv: [10:59:01] is the logical thing you want a <div> whose meaning is "the bits the sidebar is allowed to accompany"?
bzed: [10:59:14] yeah
bzed: [10:59:58] then you could just ensure that this part is as high as the sidebar
smcv: [11:02:44] wrapping a <div> around the sidebar, content and comments seems like the way forward, then
tschwinge [Thu, 10 Jun 2010 08:54:46 +0000 (08:54 +0000)]
Fixed.
Joey Hess [Wed, 9 Jun 2010 22:40:18 +0000 (18:40 -0400)]
better autotag title
Joey Hess [Wed, 9 Jun 2010 21:47:49 +0000 (17:47 -0400)]
let's allow comments of "0"
Joey Hess [Wed, 9 Jun 2010 21:44:40 +0000 (17:44 -0400)]
editpage: Avoid storing accidental state changes when previewing pages.
This is a slow, safe, stupid approach. Could make deep copies of the data
structures as backups instead of re-loading the index from disk.
Joey Hess [Wed, 9 Jun 2010 21:43:20 +0000 (17:43 -0400)]
improve preview mode comments
Joey Hess [Wed, 9 Jun 2010 21:13:35 +0000 (17:13 -0400)]
ugly bug
Joey Hess [Wed, 9 Jun 2010 20:59:17 +0000 (16:59 -0400)]
Fix display of sidebar when previewing page edit. (Thanks, privat)
On second thought, only display a page's personal sidebar when previewing
it, not when editing normally.
Joey Hess [Wed, 9 Jun 2010 20:16:48 +0000 (16:16 -0400)]
relativedate: Fix problem with localised dates not working.
Joey Hess [Wed, 9 Jun 2010 20:00:12 +0000 (16:00 -0400)]
When editing a page, show that page's sidebar. (Thanks, privat)
Joey Hess [Wed, 9 Jun 2010 19:32:20 +0000 (15:32 -0400)]
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Joey Hess [Wed, 9 Jun 2010 19:29:20 +0000 (15:29 -0400)]
close; use ENV in setup file
privat [Wed, 9 Jun 2010 19:26:40 +0000 (19:26 +0000)]
Joey Hess [Wed, 9 Jun 2010 19:19:46 +0000 (15:19 -0400)]
close old bug, apparently worked around