]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/index/discussion.mdwn
responses
[ikiwiki.git] / doc / index / discussion.mdwn
index 643e6452cecdb8ab68cfe9c985e0b34d4f1f3b83..15a85725ab50a1ed7fd064a540a28b80f98dfcc3 100644 (file)
@@ -234,11 +234,43 @@ Any setting for limiting how many kilobytes can be submitted via the "edit" form
 
 > Not currently. Worried about abuse? --[[Joey]]
 
+>> I didn't want it abused accidently or with malice. I was thinking that Perl's CGI.pm would handle this, but I don't see that.
+>> I read that textarea max bytes may be 500 lines or 28000 characters or 30000 characters or 64kB. It seems like it
+>> varies and I didn't test myself, because I guess it may depend on different clients and different HTTP servers. 
+>> This could be checked using javascript on the client side (before submitting) and by checking size on server side (before saving). --[[JeremyReed]]
+
+>>> The absolute limit varies by browser. If there are web servers that
+>>> also limit it, I don't know of them. --[[Joey]]
+
 ----
 
 # Disable sub-discussion pages?
 
-Any setting to disable having a discussion of a discussion?
-The [[features]] page says every page, but I don't want every page.
-I do want discussion subpage, but I don't want to have, for example: discussion/ discussion/ discussion.
+> Moved to [[bugs]] -- [[Joey]]
+
+----
+
+# wiki\_file\_regexp and RCS ,v files
+
+I have RCS ,v files in my source directory. But get many "skipping bad filename" warnings.
+
+Also I don't see wiki\_file\_regexp documented. Because it is used with $config{wiki\_file\_regexp} I assume it can be set in the ikiwiki.setup.
+I added a comma to it in my IkiWiki.pm in the defaultconfig(). But that was wrong (so I reverted back), because then the ,v files were copied to my www tree.
+
+What is the correct way to include ,v RCS revision files in my source tree without receiving the "bad" messages and without copying over to www tree?
+
 -- [[JeremyReed]]
+
+> Add the ,v to the $config{wiki_file_prune_regexps} array. This is how we
+> skip equivilant files from other revision control systems too.
+> --[[Joey]]]
+
+----
+
+# Textile Plugin
+
+It was trivial, but I put together a plugin that uses the Textile markup
+language, which I find to be the most superior of the various options for
+that sort of thing.  Where or how do I submit it for inclusion?
+
+> You can post it to [[plugins/contrib]]. --[[Joey]]