From 79b5509ed87ffd8d0ca77e78a3da0bf7b35054cd Mon Sep 17 00:00:00 2001 From: Jason Blevins Date: Mon, 27 Oct 2008 20:45:33 -0400 Subject: Redirect username (for git commits) to user page --- doc/users/jrblevin.mdwn | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/users/jrblevin.mdwn diff --git a/doc/users/jrblevin.mdwn b/doc/users/jrblevin.mdwn new file mode 100644 index 000000000..4eb250bfa --- /dev/null +++ b/doc/users/jrblevin.mdwn @@ -0,0 +1 @@ +[[!meta redir=users/jasonblevins]] -- cgit v1.2.3 From ea28b3a0574c4df167c57a7fb6465c7673963089 Mon Sep 17 00:00:00 2001 From: "http://www.cse.unsw.edu.au/~willu/" Date: Mon, 27 Oct 2008 22:31:34 -0400 Subject: Notes about untrusted push in monotone --- doc/todo/Untrusted_push_in_Monotone.mdwn | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 doc/todo/Untrusted_push_in_Monotone.mdwn diff --git a/doc/todo/Untrusted_push_in_Monotone.mdwn b/doc/todo/Untrusted_push_in_Monotone.mdwn new file mode 100644 index 000000000..a8b1cd7c4 --- /dev/null +++ b/doc/todo/Untrusted_push_in_Monotone.mdwn @@ -0,0 +1,28 @@ +As noted in [[tips/untrusted_git_push]] an untrusted push capability was added recently, but only implemented in git. +(See also [[todo/rcs_updates_needed]]) + +This note describes (but does not implement) an approach for this with the [[rcs/monotone]] rcs backend. + +---- + +Monotone behaves a little differently to git in its networking. Git allows anyone to try to push, and then +check whether it is ok before finally accepting it. Monotone has no way to accept or reject revisions +in this way. However, monotone does have the ability to mark revisions, and to ignore unmarked revisions. + +This marking capability can be used to achieve a somewhat similar effect to what happens with git. The +problem with this is that anyone could put anything into the monotone database, and while this wouldn't +affect ikiwiki, it seems bad to leave open, untrusted storage on the web. + +The Plan +===== + +In the `note_netsync_revision_received` hook in the monotone server, have the server check to make sure +that either a) the revision is signed by someone trusted or, b) the revision is checked using the same +hook that git uses in `pre-receive`. If the revision passes the ikiwiki `pre-receive` check then the +monotone hook signs the revision. This gives that revision the 'ikiwiki seal of approval'. + +You'll also want to update the monotone trust hooks to only trust revisions signed by trusted people, or +ikiwiki. + +Now anyone can upload a revision, but only those signed by a trusted person, or which pass the ikiwiki +check and so get signed by the ikiwiki key, will be seen by ikiwiki. -- cgit v1.2.3 From 791eba8c3f7283569d5bf696fc668b13026436e5 Mon Sep 17 00:00:00 2001 From: "http://www.cse.unsw.edu.au/~willu/" Date: Mon, 27 Oct 2008 22:33:20 -0400 Subject: Note unimplemented features --- doc/rcs/monotone.mdwn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/rcs/monotone.mdwn b/doc/rcs/monotone.mdwn index babd5cf01..2cfcdfbf5 100644 --- a/doc/rcs/monotone.mdwn +++ b/doc/rcs/monotone.mdwn @@ -17,3 +17,8 @@ There is also a mismatch between the way Ikiwiki handles conflicts and the way Monotone handles conflicts. At present, if there is a conflict, then Ikiwiki will commit a revision with conflict markers before presenting it to the user. This is ugly, but there is no clean way to fix it at present. + +Also note that not all recent ikiwiki features have been implemented in the +monotone plugin. At the moment we're missing: + + * [[todo/Untrusted_push_in_Monotone]] -- cgit v1.2.3 From 9eb0f930babef27f5c5deac125a4f171dcd23ed6 Mon Sep 17 00:00:00 2001 From: Jason Blevins Date: Tue, 28 Oct 2008 17:59:13 -0400 Subject: Fortran Wiki --- doc/ikiwikiusers.mdwn | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn index dc7153e39..2186d1241 100644 --- a/doc/ikiwikiusers.mdwn +++ b/doc/ikiwikiusers.mdwn @@ -39,6 +39,7 @@ Projects * [Chaos Computer Club Düsseldorf](https://www.chaosdorf.de) * [monkeysphere](http://web.monkeysphere.info/) * [The Walden Effect](http://www.waldeneffect.org/) +* The [Fortran Wiki](http://fortranwiki.org/) Personal sites and blogs ======================== -- cgit v1.2.3 From 42f313574f58111abfb370b75cac3de618cad484 Mon Sep 17 00:00:00 2001 From: neale Date: Tue, 28 Oct 2008 18:06:34 -0400 Subject: How I accomplished this and where I'd like to take it --- doc/todo/dynamic_rootpage.mdwn | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/todo/dynamic_rootpage.mdwn b/doc/todo/dynamic_rootpage.mdwn index fa0e23254..1309b4578 100644 --- a/doc/todo/dynamic_rootpage.mdwn +++ b/doc/todo/dynamic_rootpage.mdwn @@ -23,3 +23,10 @@ What's your opinion, Joey? I hope it's also useful for another ikiwiki lovers :) >>> Seems like a job for good ol' string interpolation. rootpage="post/$current_year/$current_month/$current_day" >>> Ikiwiki could provide some vars, and it would be nice to write plugins to also provide vars. Sort of like templates. >>> Does that feel OK? --[[sabr]] + +> I want the exact same thing. My compromise was to create a `datedblog` module which overrides `inline`'s `sessioncgi` hook +> with something that sets the new page name to `%Y-%m-%d.$page` and sets up a meta directive at the beginning of +> the content, with the title you wanted. Now if you use the `datedblog` module, you get dated blog entries. But I'd +> like to have traditional `inline` functionality too. This would work great if there were a way to change the `do` +> parameter in the `blogpost` template's form; if I could change it to `datedblog` instead of `blog` then I could hook +> my datedblog module in nicely, without having to override anything. What would be the right way to do that? -- cgit v1.2.3 From 1e9f4532a3a03292fe353d393376fd9621d0bcf7 Mon Sep 17 00:00:00 2001 From: neale Date: Tue, 28 Oct 2008 18:07:48 -0400 Subject: oops, attribution --- doc/todo/dynamic_rootpage.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/todo/dynamic_rootpage.mdwn b/doc/todo/dynamic_rootpage.mdwn index 1309b4578..5cf80b0a8 100644 --- a/doc/todo/dynamic_rootpage.mdwn +++ b/doc/todo/dynamic_rootpage.mdwn @@ -29,4 +29,4 @@ What's your opinion, Joey? I hope it's also useful for another ikiwiki lovers :) > the content, with the title you wanted. Now if you use the `datedblog` module, you get dated blog entries. But I'd > like to have traditional `inline` functionality too. This would work great if there were a way to change the `do` > parameter in the `blogpost` template's form; if I could change it to `datedblog` instead of `blog` then I could hook -> my datedblog module in nicely, without having to override anything. What would be the right way to do that? +> my datedblog module in nicely, without having to override anything. What would be the right way to do that? --[[neale]] -- cgit v1.2.3 From 900d1c5600ee1821c1837c6cfb9cc37d85e0de99 Mon Sep 17 00:00:00 2001 From: neale Date: Tue, 28 Oct 2008 18:11:37 -0400 Subject: --- doc/users/neale.mdwn | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/users/neale.mdwn b/doc/users/neale.mdwn index 364e58a02..fef0c4ddb 100644 --- a/doc/users/neale.mdwn +++ b/doc/users/neale.mdwn @@ -1 +1,10 @@ -I have a keyboard and I'm not afraid to use it. +I used IkiWiki to supplant some custom journal software. I like that it uses +the filesystem, my intent is to make journal entries as future-proof as +possible. I'll probably start using it for generation of entire sites, soon. + +Things generated by IkiWiki with some fancypants stylesheets: + +* [woozle.org](http://woozle.org/) +* [My page](http://woozle.org/~neale/) +* [Amy's page](http://woozle.org/~aim/) +* [Heidi's page](http://woozle.org/~heidi/) -- cgit v1.2.3 From 41926f3d99098959ba2a664f4718c68aca39c19d Mon Sep 17 00:00:00 2001 From: neale Date: Tue, 28 Oct 2008 18:13:13 -0400 Subject: better entry points --- doc/users/neale.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/users/neale.mdwn b/doc/users/neale.mdwn index fef0c4ddb..5245c2c99 100644 --- a/doc/users/neale.mdwn +++ b/doc/users/neale.mdwn @@ -6,5 +6,5 @@ Things generated by IkiWiki with some fancypants stylesheets: * [woozle.org](http://woozle.org/) * [My page](http://woozle.org/~neale/) -* [Amy's page](http://woozle.org/~aim/) -* [Heidi's page](http://woozle.org/~heidi/) +* [Amy's blog](http://woozle.org/~aim/blog/) +* [Heidi's blog](http://woozle.org/~heidi/blog/) -- cgit v1.2.3 From f4f099e88e287e12f99c92950af5f8143dc4a8b8 Mon Sep 17 00:00:00 2001 From: Jason Blevins Date: Tue, 28 Oct 2008 21:43:44 -0400 Subject: Bug report re shortcuts during preview --- doc/bugs/cannot_preview_shortcuts.mdwn | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 doc/bugs/cannot_preview_shortcuts.mdwn diff --git a/doc/bugs/cannot_preview_shortcuts.mdwn b/doc/bugs/cannot_preview_shortcuts.mdwn new file mode 100644 index 000000000..a2fd3533a --- /dev/null +++ b/doc/bugs/cannot_preview_shortcuts.mdwn @@ -0,0 +1,2 @@ +Shortcuts such as \[[!google foo]] do not work when previewing pages. +--[[JasonBlevins]] -- cgit v1.2.3