]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - doc/bugs/aggregate_generates_long_filenames.mdwn
add test case for RSS url munging
[git.ikiwiki.info.git] / doc / bugs / aggregate_generates_long_filenames.mdwn
index 3d98ee8b2638c23c53f4d3d3ffea52de6cf58d5d..c38ad6c7b84bba739f7deea2e40519b65b56792a 100644 (file)
@@ -7,4 +7,15 @@ generate long titles.  Especially once you throw escaping into the mix:
     $ echo $?
     25
 
+It would also appear this abrubtly terminates aggregate processing (if not ikiwiki itself).  Only after moving my test repo to `/tmp` to shorten the filename did I see newer RSS feeds (from a totally different source) picked up.
+
+
 -- [[Jon]]
+
+> I have to wonder what filesystem you have there where 147 characters
+> is a long filename. Ikiwiki already uses `POSIX::pathconf` on the srcdir
+> to look up `_PC_NAME_MAX`
+> to see if the filename is too long, and shortens it, so it seems
+> that, in additional to having a rather antique long filename limit, your
+> system also doesn't properly expose it via pathconf. Not sure what
+> ikiwiki can do here. --[[Joey]]