diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-26 17:58:20 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-26 17:58:20 -0400 |
commit | 9bcb649efe5098bf60a4c385e31f063af2a03afd (patch) | |
tree | 048c4e215686d4b99f4e38603dfe6d65d55e2c47 /IkiWiki/Rcs | |
parent | 0e0ee9b2ce2e74e5f4241a1c451eda8e9e0365d4 (diff) |
typos
Diffstat (limited to 'IkiWiki/Rcs')
-rw-r--r-- | IkiWiki/Rcs/monotone.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/IkiWiki/Rcs/monotone.pm b/IkiWiki/Rcs/monotone.pm index 12094337e..3b3cd5008 100644 --- a/IkiWiki/Rcs/monotone.pm +++ b/IkiWiki/Rcs/monotone.pm @@ -41,6 +41,7 @@ hook(type => "checkconfig", id => "monotone", call => sub { #{{{ error("Monotone version too old, is $version but required 0.38"); } }); #}}} + hook(type => "getsetup", id => "monotone", call => sub { #{{{ return mtnkey => { @@ -55,7 +56,7 @@ hook(type => "getsetup", id => "monotone", call => sub { #{{{ type => "string", default => "", example => "http://viewmtn.example.com/branch/head/filechanges/com.example.branch/[[file]]", - description => "viewmtn url to show file history ([[file]] substituted)" + description => "viewmtn url to show file history ([[file]] substituted)", safe => 1, rebuild => 1, }, @@ -63,7 +64,7 @@ hook(type => "getsetup", id => "monotone", call => sub { #{{{ type => "string", default => "", example => "http://viewmtn.example.com/revision/diff/[[r1]]/with/[[r2]]/[[file]]", - description => "viewmtn url to show a diff ([[r1]], [[r2]], and [[file]] substituted)" + description => "viewmtn url to show a diff ([[r1]], [[r2]], and [[file]] substituted)", safe => 1, rebuild => 1, }, @@ -73,6 +74,7 @@ hook(type => "getsetup", id => "monotone", call => sub { #{{{ description => "sync on update and commit?", safe => 0, # paranoia rebuild => 0, + }, mtnrootdir => { type => "string", default => "", |