]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/plugins/comments/discussion.mdwn
schmonz/comments-anonymous-url-vcs looks good to merge
[ikiwiki.git] / doc / plugins / comments / discussion.mdwn
index 7518f61dad47686f1a347a071f0822fc95754c77..ad61ac86df5513e7748efe183b3d26488398254e 100644 (file)
@@ -1,6 +1,6 @@
 ## Syndication autodiscovery for comment feeds
 
-A standard `inline` directive adds links to the autogenerated syndication feeds using link tags in the header:
+A standard `\[[!inline]]` directive adds links to the autogenerated syndication feeds using link tags in the header:
 
     <link rel="alternate" type="application/rss+xml" title="$title" href="$page.atom" />
     <link rel="alternate" type="application/atom+xml" title="$title" href="$page.atom" />
@@ -203,3 +203,53 @@ wake of this:
    correction follow-ups are common.
 
 -- [[Jon]]
+
+
+---
+
+## Comment threads
+
+Any thoughts about implementing some simple threading in the comments?
+
+Or at least a reply functionality that quotes the subject/contents?
+
+-- [[iustin]]
+
+---
+
+## Disabling certain formats for comments
+
+It seems that comments plugin allows using all enabled formats and
+there is not way to disable some of them. For my blog, I want to use
+additional formats for writing posts but I do not want commenters to
+use those formats because it would be a security problem.
+
+Any suggestions or hints how to implement this?
+
+-- [[wentasah]]
+
+> I've implemented this. See [[todo/Restrict_formats_allowed_for_comments]].
+> --[[wentasah]]
+
+## URLs in anonymous-style comments committed directly via VCS
+
+[[!template id=gitbranch branch=schmonz/comments-anonymous-url-vcs author="[[schmonz]]"]]
+
+I recently imported my site from Textpattern into ikiwiki (using
+an `ikiwiki-import` program that may someday make its way into
+ikiwiki proper). Textpattern's comments behave much like ikiwiki's
+anonymous comments, so piping each imported comment through
+`ikiwiki-comment` and regenerating the site with `comments_allowauthor=1`
+preserved almost all the information.
+
+What's missing: if a comment directive has a `url` param, I'd expect
+the rendered page to href the author's name to that URL. This works
+as I expect for new comments added via the CGI, but not for imported
+comments added via the VCS directly.
+
+My branch has a fix that doesn't break `t/comments.t`, doesn't
+appear to break anonymous or signed-in comments via the CGI in any
+way I've tried, and lets me render my (incredibly valuable ;-)
+imported blog comments with full fidelity. OK to commit?
+
+> Ship it. --[[smcv]]