Comment 10 for bug 818099

Revision history for this message
Marco Biscaro (marcobiscaro2112) wrote :

Thank you Gerfried! I saw that you merged the changes.

Just one important thing: when I was testing it in my local system, the bin/daily script didn't copied the files from static folder to the right location.

The cron.d/700install_static didn't copied the CSS/JS/image files:

      Ignore: [ \b(CVS|RCS|\.git|\.svn)\b, ^#, ~$, \.sed\.in$ ]
        Copy: [ \.(gif|png|jpg|pdf|css|js|txt)$ ]
      Accept: [ \.tmpl$, robots.txt ]
      Suffix: [ tmpl => html ]
     Summary:
            0 files processed
            0 files copied
            0 directories created
            2 files skipped (not modified)
           40 files skipped (ignored)

If I comment the "accept" lines in conf/ttreerc, everything works fine:

      Ignore: [ \b(CVS|RCS|\.git|\.svn)\b, ^#, ~$, \.sed\.in$ ]
        Copy: [ \.(gif|png|jpg|pdf|css|js|txt)$ ]
      Accept: [ ]
      Suffix: [ tmpl => html ]
[ ... files copied ...]
     Summary:
            2 files processed
           39 files copied
            0 directories created
            0 files skipped (not modified)
            1 file skipped (ignored)

Maybe I'm just doing something wrong, or there is a bug in my local setup, but be aware that the bin/daily script may not copy all files. Should it be executed manually to ensure that everything goes well?