]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/forum/Apache_XBitHack.mdwn
(no commit message)
[ikiwiki.git] / doc / forum / Apache_XBitHack.mdwn
index 63d33287e43582f83cdd03d17a025e75c9e0a12f..d5da0825e9ffc09a02913f5f5a37ed5b96e85173 100644 (file)
@@ -17,4 +17,12 @@ I gather from the [[security]] page that having the executable bit set on files
 >> So how about this: if something has a page-type (i.e. mdwn or whatever authorized page types there are)
 >> then add something at the end of the process (would that be the "changes" hook?)
 >> which sets the x bit on the generated page file.  Would that work?
+
+>> Or is there a way to say "tell me all the generated files that end in .html" and use that as a list to start from?
+
 >> --[[KathrynAndersen]]
+
+>>> Yes, the `change` hook is passed the names of source files that got
+>>> built. Use `pagetype` to check which got htmlized (and filter out ones
+>>> that got copied), and then use `htmlpage` to get the name of the html
+>>> file that was generated, and chmod it. --[[Joey]]