From 0a110ca3e07abd2c954a490da483a32ee1f1a97b Mon Sep 17 00:00:00 2001 From: Joe Rayhawk Date: Sun, 1 May 2011 23:09:45 -0700 Subject: patch: headless gits: make patch quieter --- doc/todo/headless_git_branches.mdwn | 45 ++++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 16 deletions(-) (limited to 'doc') diff --git a/doc/todo/headless_git_branches.mdwn b/doc/todo/headless_git_branches.mdwn index e97b59900..280405730 100644 --- a/doc/todo/headless_git_branches.mdwn +++ b/doc/todo/headless_git_branches.mdwn @@ -6,45 +6,57 @@ Ikiwiki should really survive being asked to work with a git branch that has no git clone barerepo.git srcdir ikiwiki --rcs=git srcdir destdir -I've fixed this initial construction case, and, based on my testing, I've also fixed the post-update executing on a new master, and ikiwiki.cgi executing on a non-existent master cases. Unfortunately these cases still generate a lot of warnings from recentchanges; I suspect a much more invasive patch would be needed to shut those up. +I've fixed this initial construction case, and, based on my testing, I've also fixed the post-update executing on a new master, and ikiwiki.cgi executing on a non-existent master cases. Please commit so my users stop whining at me about having clean branches to push to, the big babies. -Summary: Change three scary loud failure cases related to empty branches into three scary loud success cases. +Summary: Change three scary loud failure cases related to empty branches into three mostly quiet success cases. [[!tag patch]]
 diff --git a/IkiWiki/Plugin/git.pm b/IkiWiki/Plugin/git.pm
-index cf7fbe9..5b1e334 100644
+index cf7fbe9..a1b5ed3 100644
 --- a/IkiWiki/Plugin/git.pm
 +++ b/IkiWiki/Plugin/git.pm
-@@ -439,10 +439,13 @@ sub git_commit_info ($;$) {
+@@ -439,17 +439,20 @@ sub git_commit_info ($;$) {
  
  	my @opts;
  	push @opts, "--max-count=$num" if defined $num;
-+        my @raw_lines;
++	my @raw_lines;
++	my @ci;
  
 -	my @raw_lines = run_or_die('git', 'log', @opts,
 -		'--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
 -		'-r', $sha1, '--', '.');
-+        if (-e $config{srcdir} . "/.git/refs/heads/" . $config{gitmaster_branch}) {
-+                @raw_lines = run_or_die('git', 'log', @opts,
-+                        '--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
-+                        '-r', $sha1, '--', '.');
-+        };
++	if (-e $config{srcdir} . '/.git/refs/heads/' . $config{gitmaster_branch}) {
++		@raw_lines = run_or_die('git', 'log', @opts,
++			'--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
++			'-r', $sha1, '--', '.');
  
- 	my @ci;
- 	while (my $parsed = parse_diff_tree(\@raw_lines)) {
+-	my @ci;
+-	while (my $parsed = parse_diff_tree(\@raw_lines)) {
+-		push @ci, $parsed;
+-	}
++		while (my $parsed = parse_diff_tree(\@raw_lines)) {
++			push @ci, $parsed;
++		}
+ 
+-	warn "Cannot parse commit info for '$sha1' commit" if !@ci;
++		warn "Cannot parse commit info for '$sha1' commit" if !@ci;
++	};
+ 
+ 	return wantarray ? @ci : $ci[0];
+ }
 @@ -474,7 +477,10 @@ sub rcs_update () {
  	# Update working directory.
  
  	if (length $config{gitorigin_branch}) {
 -		run_or_cry('git', 'pull', '--prune', $config{gitorigin_branch});
-+                run_or_cry('git', 'fetch', '--prune', $config{gitorigin_branch});
-+                if (-e $config{srcdir} . '/.git/refs/remotes/' . $config{gitorigin_branch} . '/' . $config{gitmaster_branch}) {
-+                        run_or_cry('git', 'merge', $config{gitorigin_branch} . '/' . $config{gitmaster_branch});
-+                }
++		run_or_cry('git', 'fetch', '--prune', $config{gitorigin_branch});
++		if (-e $config{srcdir} . '/.git/refs/remotes/' . $config{gitorigin_branch} . '/' . $config{gitmaster_branch}) {
++			run_or_cry('git', 'merge', $config{gitorigin_branch} . '/' . $config{gitmaster_branch});
++		}
  	}
  }
  
@@ -56,4 +68,5 @@ index cf7fbe9..5b1e334 100644
 +			run_or_cry('git', 'push', $config{gitorigin_branch}, $config{gitmaster_branch});
  		}
  	}
+ 	
 
-- cgit v1.2.3 From eacfeab0ead5b904b07fda2e9a04625189d5aad4 Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawkIl2-FajX9MSbbfcPYvzbmbsemGJJfXds" Date: Mon, 2 May 2011 04:26:37 -0400 Subject: monotone's wiki URL has changed, it redirected previously, but we can skip the redirect --- doc/ikiwikiusers.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn index 9b339c1e4..43434cf32 100644 --- a/doc/ikiwikiusers.mdwn +++ b/doc/ikiwikiusers.mdwn @@ -22,7 +22,7 @@ Projects & Organizations * The [GNU Hurd](http://www.gnu.org/software/hurd/) * [DragonFly BSD](http://www.dragonflybsd.org/) -* [Monotone](http://monotone.ca/wiki/FrontPage/) +* [Monotone](http://wiki.monotone.ca/) * The [Free Software Foundation](http://fsf.org) uses it for their internal wiki, with subversion. * The [cairo graphics library](http://cairographics.org/) website. * The [Portland State Aerospace Society](http://psas.pdx.edu) website. Converted from a combination of TWiki and MoinMoin to ikiwiki, including full history ([[rcs/Git]] backend). -- cgit v1.2.3 From 4cea139443d4c7d9c282dbb37da42d7f8576ec12 Mon Sep 17 00:00:00 2001 From: "http://luckystokes.myopenid.com/" Date: Mon, 2 May 2011 22:03:02 -0400 Subject: --- doc/sandbox.mdwn | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc') diff --git a/doc/sandbox.mdwn b/doc/sandbox.mdwn index a5d686908..90df7c33d 100644 --- a/doc/sandbox.mdwn +++ b/doc/sandbox.mdwn @@ -44,6 +44,8 @@ Bulleted list * footballs; runner; unices * Cool ! * Indeed. + * this is very cool indeed! + ---- -- cgit v1.2.3 From 48c4687b23f237b950e0180e38c9d2ba28d27414 Mon Sep 17 00:00:00 2001 From: "http://luckystokes.myopenid.com/" Date: Mon, 2 May 2011 22:04:21 -0400 Subject: This reverts commit 4cea139443d4c7d9c282dbb37da42d7f8576ec12 --- doc/sandbox.mdwn | 2 -- 1 file changed, 2 deletions(-) (limited to 'doc') diff --git a/doc/sandbox.mdwn b/doc/sandbox.mdwn index 90df7c33d..a5d686908 100644 --- a/doc/sandbox.mdwn +++ b/doc/sandbox.mdwn @@ -44,8 +44,6 @@ Bulleted list * footballs; runner; unices * Cool ! * Indeed. - * this is very cool indeed! - ---- -- cgit v1.2.3 From f8f0ca39f508694bb5ede6b6f924e435cb39c35b Mon Sep 17 00:00:00 2001 From: Joe Rayhawk Date: Tue, 3 May 2011 00:43:55 -0700 Subject: patch: headless gits: replace bad wannabe plumbing with the real thing (now packed-refs will work!) --- doc/todo/headless_git_branches.mdwn | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) (limited to 'doc') diff --git a/doc/todo/headless_git_branches.mdwn b/doc/todo/headless_git_branches.mdwn index 280405730..1dd867765 100644 --- a/doc/todo/headless_git_branches.mdwn +++ b/doc/todo/headless_git_branches.mdwn @@ -16,28 +16,30 @@ Summary: Change three scary loud failure cases related to empty branches into th
 diff --git a/IkiWiki/Plugin/git.pm b/IkiWiki/Plugin/git.pm
-index cf7fbe9..a1b5ed3 100644
+index cf7fbe9..e5bafcf 100644
 --- a/IkiWiki/Plugin/git.pm
 +++ b/IkiWiki/Plugin/git.pm
-@@ -439,17 +439,20 @@ sub git_commit_info ($;$) {
+@@ -439,17 +439,21 @@ sub git_commit_info ($;$) {
  
  	my @opts;
  	push @opts, "--max-count=$num" if defined $num;
-+	my @raw_lines;
-+	my @ci;
- 
+-
 -	my @raw_lines = run_or_die('git', 'log', @opts,
 -		'--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
 -		'-r', $sha1, '--', '.');
-+	if (-e $config{srcdir} . '/.git/refs/heads/' . $config{gitmaster_branch}) {
-+		@raw_lines = run_or_die('git', 'log', @opts,
-+			'--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
-+			'-r', $sha1, '--', '.');
- 
--	my @ci;
+-
++	my @raw_lines;
+ 	my @ci;
 -	while (my $parsed = parse_diff_tree(\@raw_lines)) {
 -		push @ci, $parsed;
 -	}
++        
++	# Test to see if branch actually exists yet.
++	if (run_or_non('git', 'show-ref', '--quiet', '--verify', '--', 'refs/heads/' . $config{gitmaster_branch}) ) {
++		@raw_lines = run_or_die('git', 'log', @opts,
++			'--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
++			'-r', $sha1, '--', '.');
++
 +		while (my $parsed = parse_diff_tree(\@raw_lines)) {
 +			push @ci, $parsed;
 +		}
@@ -48,19 +50,19 @@ index cf7fbe9..a1b5ed3 100644
  
  	return wantarray ? @ci : $ci[0];
  }
-@@ -474,7 +477,10 @@ sub rcs_update () {
+@@ -474,7 +478,10 @@ sub rcs_update () {
  	# Update working directory.
  
  	if (length $config{gitorigin_branch}) {
 -		run_or_cry('git', 'pull', '--prune', $config{gitorigin_branch});
 +		run_or_cry('git', 'fetch', '--prune', $config{gitorigin_branch});
-+		if (-e $config{srcdir} . '/.git/refs/remotes/' . $config{gitorigin_branch} . '/' . $config{gitmaster_branch}) {
++		if (run_or_non('git', 'show-ref', '--quiet', '--verify', '--', 'refs/remotes/' . $config{gitorigin_branch} . '/' . $config{gitmaster_branch}) ) {
 +			run_or_cry('git', 'merge', $config{gitorigin_branch} . '/' . $config{gitmaster_branch});
 +		}
  	}
  }
  
-@@ -559,7 +565,7 @@ sub rcs_commit_helper (@) {
+@@ -559,7 +566,7 @@ sub rcs_commit_helper (@) {
  	# So we should ignore its exit status (hence run_or_non).
  	if (run_or_non('git', 'commit', '-m', $params{message}, '-q', @opts)) {
  		if (length $config{gitorigin_branch}) {
-- 
cgit v1.2.3


From b23ad3e9f18dd1e6cf4e483c2d0798e0072ba350 Mon Sep 17 00:00:00 2001
From: Jon Dowland 
Date: Tue, 3 May 2011 17:47:02 +0100
Subject: new patch/wishlist: pagespec aliasing

---
 doc/todo/pagespec_aliases.mdwn | 87 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 87 insertions(+)
 create mode 100644 doc/todo/pagespec_aliases.mdwn

(limited to 'doc')

diff --git a/doc/todo/pagespec_aliases.mdwn b/doc/todo/pagespec_aliases.mdwn
new file mode 100644
index 000000000..a16fddf22
--- /dev/null
+++ b/doc/todo/pagespec_aliases.mdwn
@@ -0,0 +1,87 @@
+[[!tag patch wishlist]]I quite often find myself repeating a boiler-plate
+pagespec chunk, e.g.
+
+    and !*.png and !*.jpg...
+
+it would be quite nice if I could conveniently bundle them together into a
+pagespec "alias", and instead write
+
+    and !image()...
+
+I wrote the following plugin to achieve this:
+
+    commit f3a9dd113338fe5d2b717de1dc69679ff74e2f8d
+    Author: Jon Dowland 
+    Date:   Tue May 3 17:40:16 2011 +0100
+    
+        new plugin: alias.pm - pagespec aliases
+    
+    diff --git a/IkiWiki/Plugin/alias.pm b/IkiWiki/Plugin/alias.pm
+    new file mode 100644
+    index 0000000..b8d4574
+    --- /dev/null
+    +++ b/IkiWiki/Plugin/alias.pm
+    @@ -0,0 +1,47 @@
+    +package IkiWiki::Plugin::alias;
+    +
+    +use warnings;
+    +use strict;
+    +use IkiWiki '3.00';
+    +
+    +sub import {
+    +  hook(type => "getsetup", id=> "alias", call => \&getsetup);
+    +  hook(type => "checkconfig", id=> "alias", call => \&checkconfig);
+    +}
+    +
+    +sub getsetup () {
+    +    return
+    +        plugin => {
+    +            description => "allows the definition of pagespec aliases",
+    +            safe => 1,
+    +            rebuild => 1,
+    +            section => "misc",
+    +        },
+    +        pagespec_aliases => {
+    +            type => "string",
+    +            example => {"image" => "*jpg or *jpeg or *png or *gif or *ico" },
+    +            description => "a set of mappings from alias name to pagespec",
+    +            safe => 1,
+    +            rebuild => 0,
+    +        },
+    +}
+    +
+    +sub checkconfig () {
+    +    no strict 'refs';
+    +    no warnings 'redefine';
+    +
+    +    if ($config{pagespec_aliases}) {
+    +        foreach my $key (keys %{$config{pagespec_aliases}}) {
+    +            my $value = ${$config{pagespec_aliases}}{$key};
+    +            # XXX: validate key?
+    +            my $subname = "IkiWiki::PageSpec::match_$key";
+    +            *{ $subname } = sub {
+    +              my $path = shift;
+    +              return IkiWiki::pagespec_match($path, $value);
+    +            }
+    +        }
+    +    }
+    +}
+    +
+    +1;
+
+I need to reflect on this a bit more before I send a pull request.  In
+particular I imagine the strict/warnings stuff will make you puke.  Also, I'm
+not sure whether I should name-grab 'alias' since [[todo/alias_directive]] is
+an existing wishlist item.
+
+Here's an example setup chunk:
+
+     pagespec_aliases:
+       image: "*.png or *.jpg or *.jpeg or *.gif or *.ico"
+       helper: "*.css or *.js"
+       boring: "image() or helper()"
+
+The above demonstrates self-referential dynamic pagespec aliases.  It doesn't work,
+however, to add ' or internal()' to `boring`, for some reason.
+
+-- [[Jon]]
-- 
cgit v1.2.3


From 108a860b74ae675f6c0de5c9c3a3f0fcea355efa Mon Sep 17 00:00:00 2001
From: "http://jmtd.livejournal.com/" 
Date: Tue, 3 May 2011 16:56:56 -0400
Subject: +progress linux

---
 doc/ikiwikiusers.mdwn | 1 +
 1 file changed, 1 insertion(+)

(limited to 'doc')

diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn
index 43434cf32..408286ea4 100644
--- a/doc/ikiwikiusers.mdwn
+++ b/doc/ikiwikiusers.mdwn
@@ -79,6 +79,7 @@ Projects & Organizations
 * [TenderWarehouse Community](http://community.tenderwarehouse.org/)
 * [AntPortal](http://antportal.com/wiki/) - also see our templates and themes on [github](https://github.com/AntPortal/ikiwiked)
 * [The Amnesic Incognito Live System](https://tails.boum.org/index.en.html)
+* [The Progress Linux OS wiki](http://wiki.progress-linux.org/)
 
 Personal sites and blogs
 ========================
-- 
cgit v1.2.3


From cbd4260bb13835bcc4839e533a2f740dfa84405a Mon Sep 17 00:00:00 2001
From: "http://jmtd.livejournal.com/" 
Date: Wed, 4 May 2011 11:55:22 -0400
Subject: another useful pagespec alias: "basewiki"

---
 doc/todo/pagespec_aliases.mdwn | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'doc')

diff --git a/doc/todo/pagespec_aliases.mdwn b/doc/todo/pagespec_aliases.mdwn
index a16fddf22..2db53d545 100644
--- a/doc/todo/pagespec_aliases.mdwn
+++ b/doc/todo/pagespec_aliases.mdwn
@@ -85,3 +85,9 @@ The above demonstrates self-referential dynamic pagespec aliases.  It doesn't wo
 however, to add ' or internal()' to `boring`, for some reason.
 
 -- [[Jon]]
+
+> another useful pagespec alias for large maps:
+
+       basewiki: "sandbox or templates or templates/* or ikiwiki or ikiwiki/* or shortcuts or recentchanges or wikiicons/*"
+
+> -- [[Jon]]
-- 
cgit v1.2.3


From 8f8d8ec00570fefd3ea600d087b9a02713f46e43 Mon Sep 17 00:00:00 2001
From: "http://kerravonsen.dreamwidth.org/"
 
Date: Wed, 4 May 2011 21:14:39 -0400
Subject:

---
 doc/todo/pagespec_aliases/discussion.mdwn | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 doc/todo/pagespec_aliases/discussion.mdwn

(limited to 'doc')

diff --git a/doc/todo/pagespec_aliases/discussion.mdwn b/doc/todo/pagespec_aliases/discussion.mdwn
new file mode 100644
index 000000000..2c51b415a
--- /dev/null
+++ b/doc/todo/pagespec_aliases/discussion.mdwn
@@ -0,0 +1,6 @@
+Something which is similar to aliases is the "trail" concept I use in the [[plugins/contrib/report]] plugin. (Also my "pmap" plugin, but that's only in my "experimental" branch on github).  One can define a "trail" by making a report with the "doscan" option (I should probably change the name of that) and then that page has a "trail" which matches the pagespec in that report.
+Then one can reference that page as a "trail" without having to reuse that pagespec.
+(It's also very useful in speeding up the processing, because the matching pages have been remembered, and one doesn't have to search for them again).
+
+So, for example, one could make a page "all_images" and have a report (or pmap, which is simpler) like so:
+
-- 
cgit v1.2.3


From 14fbf8a6f2cf3da4211fd474792848774976faf5 Mon Sep 17 00:00:00 2001
From: "http://kerravonsen.dreamwidth.org/"
 
Date: Wed, 4 May 2011 21:19:01 -0400
Subject: something similar

---
 doc/todo/pagespec_aliases/discussion.mdwn | 7 +++++++
 1 file changed, 7 insertions(+)

(limited to 'doc')

diff --git a/doc/todo/pagespec_aliases/discussion.mdwn b/doc/todo/pagespec_aliases/discussion.mdwn
index 2c51b415a..abbe80e6a 100644
--- a/doc/todo/pagespec_aliases/discussion.mdwn
+++ b/doc/todo/pagespec_aliases/discussion.mdwn
@@ -4,3 +4,10 @@ Then one can reference that page as a "trail" without having to reuse that pages
 
 So, for example, one could make a page "all_images" and have a report (or pmap, which is simpler) like so:
 
+    \[[!pmap pages="*.png or *.jpg or *.jpeg or *.gif or *.ico"]]
+
+And then later, somewhere else
+
+    \[[!report template="images.tmpl" trail="all_images" pages="album/*"]]
+
+and that would show all the images under "album".
-- 
cgit v1.2.3


From 1e3447560da0a732fd4c266b0b0a0cbe3f289133 Mon Sep 17 00:00:00 2001
From: "http://dr.jones.dk/" 
Date: Thu, 5 May 2011 07:03:05 -0400
Subject: Tidy Redpill entry: Improve description. Drop Kaospilotene (shut
 down). Add Bitbase, Borneuni and demo Redpill site.

---
 doc/ikiwikiusers.mdwn | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'doc')

diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn
index 408286ea4..47cce242b 100644
--- a/doc/ikiwikiusers.mdwn
+++ b/doc/ikiwikiusers.mdwn
@@ -42,7 +42,11 @@ Projects & Organizations
 * The [libkdtree project](http://libkdtree.alioth.debian.org)
 * The [pcc](http://pcc.ludd.ltu.se/) (Portable C Compiler) project.  (Simple rcs backend)
 * [The TOVA Company](http://www.tovatest.com) public site.  We also use it for internal documentation and issue tracking, all with a [[rcs/Git]] backend.
-* Technical support websites for [Homebase](http://support.homebase.dk) and [Kaospilotene](http://support.kaospilot.no) (each with [source](http://source.homebase.dk/) [provided](http://source.kaospilot.no/))
+* Reusable technical support websites, developed for [Redpill](http://redpill.dk/) realms:
+  * [master demo site](http://support.redpill.dk/) ([source](http://source.redpill.dk/))
+  * [Homebase](http://support.homebase.dk/) ([source](http://source.homebase.dk/))
+  * [Bitbase](http://support.bitbase.dk/) ([source](http://source.bitbase.dk/))
+  * [Børneuniversitetet](http://support.borneuni.dk/) ([source](http://source.borneuni.dk/))
 * [CampusGrün Hamburg](http://www.campusgruen.org/)
 * The [awesome window manager homepage](http://awesome.naquadah.org/)
 * [Enemies of Carlotta](http://www.e-o-c.org/)
-- 
cgit v1.2.3


From e8ef1cc1e8318888299be6886d9c5d08e8e2ece5 Mon Sep 17 00:00:00 2001
From: "http://dr.jones.dk/" 
Date: Thu, 5 May 2011 07:05:35 -0400
Subject: Add my own website.

---
 doc/ikiwikiusers.mdwn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'doc')

diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn
index 47cce242b..3c2df2a98 100644
--- a/doc/ikiwikiusers.mdwn
+++ b/doc/ikiwikiusers.mdwn
@@ -184,4 +184,4 @@ Personal sites and blogs
 * [Øyvind A. Holm (sunny256)](http://www.sunbase.org) — Read my Ikiwiki praise [here](http://www.sunbase.org/blog/why_ikiwiki/).
 * [Mirco Bauer (meebey)](http://www.meebey.net/)
 * [Richard "RichiH" Hartmann](http://richardhartmann.de/blog) - I thought I had added myself a year ago. Oups :)
-
+* [Jonas Smedegaard(http://dr.jones.dk/) multilingual "classic" website w/ blog
-- 
cgit v1.2.3


From 1406b4897fdcdc75f4f23602b77e6a7039748ea0 Mon Sep 17 00:00:00 2001
From: "http://dr.jones.dk/" 
Date: Thu, 5 May 2011 07:06:52 -0400
Subject: Arrgh - fix add trailing square bracket.

---
 doc/ikiwikiusers.mdwn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'doc')

diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn
index 3c2df2a98..934d64ab6 100644
--- a/doc/ikiwikiusers.mdwn
+++ b/doc/ikiwikiusers.mdwn
@@ -184,4 +184,4 @@ Personal sites and blogs
 * [Øyvind A. Holm (sunny256)](http://www.sunbase.org) — Read my Ikiwiki praise [here](http://www.sunbase.org/blog/why_ikiwiki/).
 * [Mirco Bauer (meebey)](http://www.meebey.net/)
 * [Richard "RichiH" Hartmann](http://richardhartmann.de/blog) - I thought I had added myself a year ago. Oups :)
-* [Jonas Smedegaard(http://dr.jones.dk/) multilingual "classic" website w/ blog
+* [Jonas Smedegaard](http://dr.jones.dk/) multilingual "classic" website w/ blog
-- 
cgit v1.2.3


From 963449d78668f0e8996b2d519f94b11fb6a5624d Mon Sep 17 00:00:00 2001
From: "http://sirireiter.dk/" 
Date: Thu, 5 May 2011 07:14:28 -0400
Subject: Website added to list.

---
 doc/ikiwikiusers.mdwn | 1 +
 1 file changed, 1 insertion(+)

(limited to 'doc')

diff --git a/doc/ikiwikiusers.mdwn b/doc/ikiwikiusers.mdwn
index 934d64ab6..659c26cb4 100644
--- a/doc/ikiwikiusers.mdwn
+++ b/doc/ikiwikiusers.mdwn
@@ -185,3 +185,4 @@ Personal sites and blogs
 * [Mirco Bauer (meebey)](http://www.meebey.net/)
 * [Richard "RichiH" Hartmann](http://richardhartmann.de/blog) - I thought I had added myself a year ago. Oups :)
 * [Jonas Smedegaard](http://dr.jones.dk/) multilingual "classic" website w/ blog
+* [Siri Reiter](http://sirireiter.dk/) portfolio website with a blog (in danish)
-- 
cgit v1.2.3


From b8d4c1749e6eeea9108bcc9d1da5d15545f8139f Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 10:46:15 -0400
Subject:

---
 doc/users/blipvert/foo/bar/baz.mdwn | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 doc/users/blipvert/foo/bar/baz.mdwn

(limited to 'doc')

diff --git a/doc/users/blipvert/foo/bar/baz.mdwn b/doc/users/blipvert/foo/bar/baz.mdwn
new file mode 100644
index 000000000..b6f69653d
--- /dev/null
+++ b/doc/users/blipvert/foo/bar/baz.mdwn
@@ -0,0 +1 @@
+This is a test page.
-- 
cgit v1.2.3


From 13bb809b075c08d4603b4c7e99b8a7b3f32ecf91 Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 10:47:24 -0400
Subject:

---
 doc/users/blipvert/foo/quux/bar.mdwn | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 doc/users/blipvert/foo/quux/bar.mdwn

(limited to 'doc')

diff --git a/doc/users/blipvert/foo/quux/bar.mdwn b/doc/users/blipvert/foo/quux/bar.mdwn
new file mode 100644
index 000000000..c0ba3413a
--- /dev/null
+++ b/doc/users/blipvert/foo/quux/bar.mdwn
@@ -0,0 +1 @@
+This is another test page.
-- 
cgit v1.2.3


From a4f0eef6471da704f92c3aa339968094fb00d30f Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 10:48:52 -0400
Subject:

---
 doc/users/blipvert/test.mdwn | 3 +++
 1 file changed, 3 insertions(+)
 create mode 100644 doc/users/blipvert/test.mdwn

(limited to 'doc')

diff --git a/doc/users/blipvert/test.mdwn b/doc/users/blipvert/test.mdwn
new file mode 100644
index 000000000..16d7a6b70
--- /dev/null
+++ b/doc/users/blipvert/test.mdwn
@@ -0,0 +1,3 @@
+This is a test of map.
+
+[[!map pages="*"]]
-- 
cgit v1.2.3


From e611e1285cf044198b951c3eb469ed32e22acb54 Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 10:51:51 -0400
Subject:

---
 doc/users/blipvert/test.mdwn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'doc')

diff --git a/doc/users/blipvert/test.mdwn b/doc/users/blipvert/test.mdwn
index 16d7a6b70..7087baaa2 100644
--- a/doc/users/blipvert/test.mdwn
+++ b/doc/users/blipvert/test.mdwn
@@ -1,3 +1,3 @@
 This is a test of map.
 
-[[!map pages="*"]]
+[[!map pages="foo/bar/baz or foo/quux/baz"]]
-- 
cgit v1.2.3


From 3e21e1be103c2ecadc42cb290b21d554b35dcc37 Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 10:53:10 -0400
Subject:

---
 doc/users/blipvert/test.mdwn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'doc')

diff --git a/doc/users/blipvert/test.mdwn b/doc/users/blipvert/test.mdwn
index 7087baaa2..67fb06f9d 100644
--- a/doc/users/blipvert/test.mdwn
+++ b/doc/users/blipvert/test.mdwn
@@ -1,3 +1,3 @@
 This is a test of map.
 
-[[!map pages="foo/bar/baz or foo/quux/baz"]]
+[[!map pages="author(blipvert)"]]
-- 
cgit v1.2.3


From e09be197c0953cd0e61fec4e7ec7f0ab427a3353 Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 10:54:51 -0400
Subject:

---
 doc/users/blipvert/test.mdwn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'doc')

diff --git a/doc/users/blipvert/test.mdwn b/doc/users/blipvert/test.mdwn
index 67fb06f9d..3d1354805 100644
--- a/doc/users/blipvert/test.mdwn
+++ b/doc/users/blipvert/test.mdwn
@@ -1,3 +1,3 @@
 This is a test of map.
 
-[[!map pages="author(blipvert)"]]
+[[!map pages="page(*) and author(blipvert) and title(baz)"]]
-- 
cgit v1.2.3


From 149b01ea92be69dabdba1542233f17cbf185a974 Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 11:09:10 -0400
Subject: removed

---
 doc/users/blipvert/test.mdwn | 3 ---
 1 file changed, 3 deletions(-)
 delete mode 100644 doc/users/blipvert/test.mdwn

(limited to 'doc')

diff --git a/doc/users/blipvert/test.mdwn b/doc/users/blipvert/test.mdwn
deleted file mode 100644
index 3d1354805..000000000
--- a/doc/users/blipvert/test.mdwn
+++ /dev/null
@@ -1,3 +0,0 @@
-This is a test of map.
-
-[[!map pages="page(*) and author(blipvert) and title(baz)"]]
-- 
cgit v1.2.3


From f94b9f8d619a193fce5fdab652da26299dda801e Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 11:41:36 -0400
Subject: removed

---
 doc/users/blipvert/foo/quux/bar.mdwn | 1 -
 1 file changed, 1 deletion(-)
 delete mode 100644 doc/users/blipvert/foo/quux/bar.mdwn

(limited to 'doc')

diff --git a/doc/users/blipvert/foo/quux/bar.mdwn b/doc/users/blipvert/foo/quux/bar.mdwn
deleted file mode 100644
index c0ba3413a..000000000
--- a/doc/users/blipvert/foo/quux/bar.mdwn
+++ /dev/null
@@ -1 +0,0 @@
-This is another test page.
-- 
cgit v1.2.3


From 01783bacf854f6daa0771dba10e859f46a3ccc9c Mon Sep 17 00:00:00 2001
From: blipvert 
Date: Thu, 5 May 2011 11:44:29 -0400
Subject: removed

---
 doc/users/blipvert/foo/bar/baz.mdwn | 1 -
 1 file changed, 1 deletion(-)
 delete mode 100644 doc/users/blipvert/foo/bar/baz.mdwn

(limited to 'doc')

diff --git a/doc/users/blipvert/foo/bar/baz.mdwn b/doc/users/blipvert/foo/bar/baz.mdwn
deleted file mode 100644
index b6f69653d..000000000
--- a/doc/users/blipvert/foo/bar/baz.mdwn
+++ /dev/null
@@ -1 +0,0 @@
-This is a test page.
-- 
cgit v1.2.3