make the bugs page work like the todo page
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Fri, 23 Jun 2006 00:51:19 +0000 (00:51 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Fri, 23 Jun 2006 00:51:19 +0000 (00:51 +0000)
28 files changed:
doc/bugs.mdwn
doc/bugs/bestlink_change_update_issue.mdwn [new file with mode: 0644]
doc/bugs/diff_links_to_backtrace.mdwn [new file with mode: 0644]
doc/bugs/html_errors.mdwn [new file with mode: 0644]
doc/bugs/meta_inline.mdwn [new file with mode: 0644]
doc/bugs/rss_feed_cleanup_on_delete.mdwn [new file with mode: 0644]
doc/bugs/rss_output_relative_links.mdwn [new file with mode: 0644]
doc/bugs/source_in_dotdir.mdwn [new file with mode: 0644]
doc/bugs/svn+ssh_commit_fail.mdwn [new file with mode: 0644]
doc/bugs/underlaydir_file_expose.mdwn [new file with mode: 0644]
doc/bugs/utf8_svn_log.mdwn [new file with mode: 0644]
doc/bugs/word_wrap.mdwn [new file with mode: 0644]
doc/news.mdwn
doc/todo.mdwn
doc/todo/1.0_release_blockers.mdwn
doc/todo/blogs.mdwn
doc/todo/done.mdwn
doc/todo/htmlvalidation.mdwn
doc/todo/lists.mdwn
doc/todo/logo.mdwn
doc/todo/mailnotification.mdwn
doc/todo/search.mdwn
doc/todo/strftime.mdwn
doc/todo/toplevel_index.mdwn [new file with mode: 0644]
doc/todo/underlay.mdwn
doc/todo/upgradehooks.mdwn
doc/todo/utf8.mdwn
doc/todo/wikilinkfeatures.mdwn

index 1f357d858ccbb8d0c2126ea161c4d943aa1fd50a..9fe267a964134c873ff61d41e7755dbcba42af57 100644 (file)
@@ -1,42 +1,9 @@
-* Has bugs updating things if the bestlink of a page changes due to
-  adding/removing a page. For example, if Foo/Bar links to "Baz", which is
-  Foo/Baz, and Foo/Bar/Baz gets added, it will update the links in Foo/Bar
-  to point to it, but will forget to update the linkbacks in Foo/Baz.
-  
-* And if Foo/Bar/Baz is then removed, it forgets to update Foo/Bar to link
-  back to Foo/Baz.
+This is ikiwiki's bug list. Link bugs to [[bugs/done]] when done.
 
-    -- is this still true? (Yes (as of 1.0))
+[[inline pages="bugs/* !bugs/done !link(bugs/done) !*/Discussion" rootpage="bugs" show="30"]]
 
-* If I try to do a web commit, to a svn+ssh repo, it fails with
-  "Host key verification failed."
-  I think that the setuid isn't fully taking; it should be running as me,
-  but commit log shows www-data. So maybe it has the wrong username? Or
-  EUID/Real UID screwage.
-* Can't put the source in a directory named .source; the page finder skips
-  that due to too broad exclusion of any dotfile in a path.
-* [[ikiwiki]] should go to the same place as [[index]] (on this wiki).
-* Web browsers don't word-wrap lines in submitted text, which makes editing a
-  page that someone wrote in a web browser annoying (`gqip` is vim user's
-  friend here). Is there any way to improve this?
-* The diff links in RecentChanges go to a viewcvs backtrace if the rev in question is when the page was added. Is this a viewcvs bug, or a behavior ikiwiki needs to work around?
-    - As a special case, there should certianly be no history link for
-      pages generated from the underlaydir as it can never work for them.
-* If a page stops inlining anthing, its rss feed file
-  will linger around and not be deleted.
-* RSS output contains relative links. Ie. http://kitenet.net/~joey/blog/index.rss contains a link to http://kitenet.net/~joey/blog/../blog.html
-* If a file in the srcdir is removed, exposing a file in the underlaydir,
-  ikiwiki will not notice the change and rebuild it until the file in the
-  underlaydir gets a mtime newer than the mtime the removed file had.
-* ikiwiki will generate html formatted error messages to the command
-  line if --cgi is set, even if it's not yet running as a cgi
-* The meta plugin doesn't affect a page if it's being inlined. Probably
-  setting the title with it should override the title of the blog post.
-* svn log messages containing utf-8 (such as r773) don't get displayed
-  right in RecentChanges. The problem is ikiwiki runs svn log in locale C,
-  which makes it spit out eacaped charcters for utf-8 chars. If it's run in
-  locale en_US.UTF-8, it would be ok, but that would require the system
-  have that locale.
+----
 
-  Seems that the right fix for this is to use svn log --xml, which is
-  always utf-8 and come up with a parser for that.
+# Full list of open bugs:
+
+[[inline pages="bugs/* !bugs/done !link(bugs/done) !*/Discussion" archive="yes"]]
diff --git a/doc/bugs/bestlink_change_update_issue.mdwn b/doc/bugs/bestlink_change_update_issue.mdwn
new file mode 100644 (file)
index 0000000..f8f1323
--- /dev/null
@@ -0,0 +1,9 @@
+* Has bugs updating things if the bestlink of a page changes due to
+  adding/removing a page. For example, if Foo/Bar links to "Baz", which is
+  Foo/Baz, and Foo/Bar/Baz gets added, it will update the links in Foo/Bar
+  to point to it, but will forget to update the linkbacks in Foo/Baz.
+
+* And if Foo/Bar/Baz is then removed, it forgets to update Foo/Bar to link
+  back to Foo/Baz.
+
+    -- is this still true? (Yes (as of 1.0))
diff --git a/doc/bugs/diff_links_to_backtrace.mdwn b/doc/bugs/diff_links_to_backtrace.mdwn
new file mode 100644 (file)
index 0000000..16f84fa
--- /dev/null
@@ -0,0 +1,5 @@
+The diff links in RecentChanges go to a viewcvs backtrace if the rev in 
+question is when the page was added. Is this a viewcvs bug, or a behavior 
+ikiwiki needs to work around?
+  - As a special case, there should certianly be no history link for
+    pages generated from the underlaydir as it can never work for them.
diff --git a/doc/bugs/html_errors.mdwn b/doc/bugs/html_errors.mdwn
new file mode 100644 (file)
index 0000000..5a60e04
--- /dev/null
@@ -0,0 +1,2 @@
+ikiwiki will generate html formatted error messages to the command
+line if --cgi is set, even if it's not yet running as a cgi
diff --git a/doc/bugs/meta_inline.mdwn b/doc/bugs/meta_inline.mdwn
new file mode 100644 (file)
index 0000000..cd3d5ec
--- /dev/null
@@ -0,0 +1,2 @@
+The meta plugin doesn't affect a page if it's being inlined. Probably
+setting the title with it should override the title of the blog post.
diff --git a/doc/bugs/rss_feed_cleanup_on_delete.mdwn b/doc/bugs/rss_feed_cleanup_on_delete.mdwn
new file mode 100644 (file)
index 0000000..5fe2bcd
--- /dev/null
@@ -0,0 +1,2 @@
+If a page stops inlining anthing, its rss feed file will linger around and
+not be deleted.
diff --git a/doc/bugs/rss_output_relative_links.mdwn b/doc/bugs/rss_output_relative_links.mdwn
new file mode 100644 (file)
index 0000000..ff607cb
--- /dev/null
@@ -0,0 +1,3 @@
+RSS output contains relative links. Ie. 
+http://kitenet.net/~joey/blog/index.rss contains a link to 
+http://kitenet.net/~joey/blog/../blog.html
diff --git a/doc/bugs/source_in_dotdir.mdwn b/doc/bugs/source_in_dotdir.mdwn
new file mode 100644 (file)
index 0000000..1b8390b
--- /dev/null
@@ -0,0 +1,2 @@
+Can't put the source in a directory named .source; the page finder skips
+that due to too broad exclusion of any dotfile in a path.
diff --git a/doc/bugs/svn+ssh_commit_fail.mdwn b/doc/bugs/svn+ssh_commit_fail.mdwn
new file mode 100644 (file)
index 0000000..a26a0b0
--- /dev/null
@@ -0,0 +1,5 @@
+If I try to do a web commit, to a svn+ssh repo, it fails with
+"Host key verification failed."
+I think that the setuid isn't fully taking; it should be running as me,
+but commit log shows www-data. So maybe it has the wrong username? Or
+EUID/Real UID screwage.
diff --git a/doc/bugs/underlaydir_file_expose.mdwn b/doc/bugs/underlaydir_file_expose.mdwn
new file mode 100644 (file)
index 0000000..0c6f554
--- /dev/null
@@ -0,0 +1,3 @@
+If a file in the srcdir is removed, exposing a file in the underlaydir,
+ikiwiki will not notice the change and rebuild it until the file in the
+underlaydir gets a mtime newer than the mtime the removed file had.
diff --git a/doc/bugs/utf8_svn_log.mdwn b/doc/bugs/utf8_svn_log.mdwn
new file mode 100644 (file)
index 0000000..7266ab9
--- /dev/null
@@ -0,0 +1,9 @@
+svn log messages containing utf-8 (such as r773) don't get displayed
+right in RecentChanges. The problem is ikiwiki runs svn log in locale C,
+which makes it spit out eacaped charcters for utf-8 chars. If it's run in
+locale en_US.UTF-8, it would be ok, but that would require the system
+have that locale.
+
+Seems that the right fix for this is to use svn log --xml, which is
+always utf-8 and come up with a parser for that. Also fixes the spoofing
+issue in [[security]].
diff --git a/doc/bugs/word_wrap.mdwn b/doc/bugs/word_wrap.mdwn
new file mode 100644 (file)
index 0000000..8a69bb3
--- /dev/null
@@ -0,0 +1,3 @@
+Web browsers don't word-wrap lines in submitted text, which makes editing a
+page that someone wrote in a web browser annoying (`gqip` is vim user's
+friend here). Is there any way to improve this?
index b0e1d5764e614fc10b2d8e9af563665b337841a8..816fc74d3d4511d1aeb519eaeaa39a85ba78ac6c 100644 (file)
@@ -4,4 +4,5 @@ feed.
 
 [[inline pages="news/* !*/Discussion" rootpage="news" show="30"]]
 
-By the way, some other pages with RSS feeds about ikiwiki include [[plugins]], [[TODO]] and [[TODO/done]].
+By the way, some other pages with RSS feeds about ikiwiki include
+[[plugins]], [[TODO]] and [[bugs]].
index 814c87fc20c8bc05a1721761becd0ec86acf70ca..3caa4a88e86eea18194377ebd486031da27d3cb2 100644 (file)
@@ -1,9 +1,9 @@
 Welcome to ikiwiki's todo list. Link items to [[todo/done]] when done.
 
-[[inline pages="todo/* !todo/done !link(done) !*/Discussion" rootpage="todo" show="30"]]
+[[inline pages="todo/* !todo/done !link(todo/done) !*/Discussion" rootpage="todo" show="30"]]
 
 ----
 
 # Full list of open items:
 
-[[inline pages="todo/* !todo/done !link(done) !*/Discussion" archive="yes"]]
+[[inline pages="todo/* !todo/done !link(todo/done) !*/Discussion" archive="yes"]]
index c8ef70ebda06807ffa8c233125482a8c1fa08e53..0312155cf84846dee086bbe2257ce1ca2b7299cf 100644 (file)
@@ -4,4 +4,4 @@ The following need to be resolved before ikiwiki 1.0 can be released:
 
 That's all!
 
-[[done]]
+[[todo/done]]
index 4537a4fb596effa56ab90ca1eceec4e8d84586fa..8c9cba59388abc8dabbba910fdf7ebc6f696acf0 100644 (file)
@@ -1,4 +1,4 @@
 ikiwiki needs to support blogging. Make subpages of a page turn into a blog
 with a special post-processor rune.
 
-[[done]]
+[[todo/done]]
index f139349eaefa3f830a66cd682272f4c5c51a1e26..847d0a2e5a8548a313cab9a446ec03f0120ac192 100644 (file)
@@ -1,3 +1,3 @@
 recently fixed [[TODO]] items
 
-[[inline pages="link(done) !*/Discussion" show="10"]]
+[[inline pages="link(todo/done) !todo !*/Discussion" show="10"]]
index 1810a63d740db3ca9cc938135c6c49a5f8b6a255..6fe2d56f2c10ef3a66d88632e98656a3443645b2 100644 (file)
@@ -44,4 +44,4 @@
 This page is now valid.
 Test: [validate this page](http://validator.w3.org/check?url=referer)
 
-[[done]]
+[[todo/done]]
index 912666cd73cddf9c46f20d874d9ad6a09cd85428..4fc3e68b45297c7d6f95d5408bef88cce0e7590c 100644 (file)
@@ -1,3 +1,3 @@
 * list of all missing pages
 
-  [[done]]
+  [[todo/done]]
index 7436d7efc96b30d1d47036c5fef88fd7f9770f55..616720e44bfdafcd872f3371d635dff25ec7159d 100644 (file)
@@ -1,4 +1,4 @@
 ikiwiki needs a logo. I'm thinking something simple like the word "ikiwiki"
 with the first "k" backwards; drawn to show that it's "wiki" reflected.
 
-[[done]]
+[[todo/done]]
index 28a63a9354a54b537ed5f59ae579869ef6669138..37fe9a55a3516602323eff2194c78ffaaf7f0eab 100644 (file)
@@ -56,4 +56,4 @@ should be safe. --[[WillThompson]])
   I'm deferring these nicities until there's some demonstrated demand
   --[[Joey]].
 
-[[done]]
+[[todo/done]]
index 4a94ac4a27e61e4acd5a752b494c2059d16091aa..79342f2869053c6429ef9b94b6f35b53cc32c3e6 100644 (file)
@@ -2,4 +2,4 @@
 * full text (use third-party tools?)
     - hyperestraier looks nice
 
-[[done]]
+[[todo/done]]
index d68bed68f27d65c5625874e188bbd2c00a8f0b4b..3c854391f52954499e059d0d86c1e1ed381ba5d3 100644 (file)
@@ -1,4 +1,4 @@
 There should be a --strftime switch that controls how all the dates are
 formatted.
 
-[[done]]
+[[todo/done]]
diff --git a/doc/todo/toplevel_index.mdwn b/doc/todo/toplevel_index.mdwn
new file mode 100644 (file)
index 0000000..7f766f7
--- /dev/null
@@ -0,0 +1,7 @@
+Some inconsistences around the toplevel [[index]] page:
+
+* The page's title is "index"; the linkpath looks like "ikiwiki / index".
+  IMHO it would be nicer if the title were "ikiwiki" and the linkpath was
+  just "ikiwiki" (for this wiki).
+* [[ikiwiki]] is a separate page; links to [[ikiwiki]] should better go to
+  the [[index]] though.
index c8003b7f4ab421ff81b60afef0360bc6893e2c52..9bcfea62b14cf7a34e882b6c25000b343489b659 100644 (file)
@@ -10,4 +10,4 @@ one from the underlaydir. -- Fixed by scanning srcdir first, then
 underlaydir, and refusing to add any files from underlaydir if they also
 exist in the srcdir. However, see [[security]] for caveats.
 
-[[done]]
+[[todo/done]]
index d7afa9d1b74b6a9283d282acdcdc0169496c71ff..47da734430e18c970dd716e6d408bdf6987f65e8 100644 (file)
@@ -5,4 +5,4 @@ this.
 Let there be an /etc/ikiwiki/wikis, which just lists setup files and the
 user who owns them. postinst loops through, su's, and runs --setup. Voila!
 
-[[done]]
+[[todo/done]]
index 221f627e1e79d39c60aa976e3442ab139c11f62a..6d2798a413aaddafc5d22944d758d6560b6ab7b4 100644 (file)
@@ -12,4 +12,4 @@ Notes:
 * Apache "AddDefaultCharset on" settings will not play well with utf-8
   pages. Turn it off.
 
-[[done]]
+[[todo/done]]
index 5a2fa8433f19459d6a0639a1c3666e5be0edd334..bf32dafbbe6a7ea6fa33401cf48f323415a9e02f 100644 (file)
@@ -1,4 +1,4 @@
 - \[[John|Fred]] is a Wikipedia method for linking to the one page
   while displaying it as the other, Kyle would like this.
 
-[[done]]
+[[todo/done]]