Changeset 15497 in project
- Timestamp:
- 08/15/09 15:35:46 (10 years ago)
- Location:
- release/4/qwiki/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
release/4/qwiki/trunk/qwiki-post-commit-hook.scm
r15494 r15497 1 #!/usr/pkg/bin/csi -s2 1 ;; 3 2 ;; qwiki-post-commit-hook - updater script for the quick wiki … … 40 39 ;(define rev (cadr (command-line-arguments))) 41 40 41 ;; These can be overridden in a shellscript that calls this script, 42 ;; but if the defaults are ok, this executable can also be placed under 43 ;; hooks/post-commit directly. 42 44 (define qwiki-source-path 43 45 (make-parameter (or (get-environment-variable "QWIKI_SOURCE_PATH") … … 78 80 ;; If they are a directory, remove that dir (because it might have 79 81 ;; been renamed or removed completely) 82 ;; All files can be regenerated when needed. 80 83 (if (directory? (make-pathname (qwiki-source-path) path)) 81 84 (remove-tree (make-pathname (qwiki-web-path) path)) -
release/4/qwiki/trunk/qwiki.meta
r15475 r15497 7 7 (doc-from-wiki) 8 8 (hidden) 9 (files "qwiki.scm" "qwiki-sxml" "qwiki-svn" "qwiki.setup")) 9 (files "qwiki.scm" "qwiki-sxml.scm" "qwiki-nowiki.scm" "qwiki-svn.scm" 10 "qwiki-post-commit-hook.scm" "qwiki.setup")) -
release/4/qwiki/trunk/qwiki.setup
r15375 r15497 13 13 (compile -s -O2 qwiki-nowiki.import.scm) 14 14 15 (compile -O2 qwiki-post-commit-hook.scm) 16 15 17 (install-extension 16 18 'qwiki … … 23 25 `((version 0.1) 24 26 (documentation "qwiki.html"))) 27 28 (install-script 29 'qwiki-post-commit-hook 30 '("qwiki-post-commit-hook") 31 '((version 0.1)))
Note: See TracChangeset
for help on using the changeset viewer.