Automatically exported from code.google.com/p/planningalerts
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

README 634 B

17 år sedan
123456789101112131415161718192021
  1. In order to generate the contents of the CGI directory (../CGI)
  2. run
  3. ./createCGI.sh
  4. This script svn deletes the old CGI directory's contents,
  5. generates new cgi files in the CGI directory,
  6. copies in some other files that are needed,
  7. and commits all these changes to svn.
  8. There is currently something very nasty in the permissions
  9. column in the file OtherFilesToCopy.csv
  10. Until version 2.6 of python, there appears to be no convenient
  11. way to convert a string like 0755 into an octal. I am therefore
  12. using integers to specify permissions of the copied files...
  13. 420 is 0644
  14. 493 is 0755
  15. This is horrid, and must change in the future...