Automatically exported from code.google.com/p/planningalerts
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

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