HTML & CSS

Notes

  • Copying to the FabAcademy local site for transfer:
    
    # commit files on working folder first
    hg addremove
    hg commit -m "Some worthwhile comment"
    
    # check the files first
    rsync --dry-run -rv --size-only --exclude .hg --delete -b
       --backup-dir=/home/rodney/www-backups/28June
       ~/www/* ~/Desktop/FabLab_Archive/dorville.rodney/
    
    # use the following line to copy
    rsync --dry-run -rv --size-only --exclude .hg --delete -b --backup-dir=/home/rodney/www-backups/28June ~/www/* ~/Desktop/FabLab_Archive/dorville.rodney/
    
    # dry-run
    # recursive and be verbose
    # check for size changes only
    # ignore the mercurial backup
    # delete any extra files on target
    # place deleted files on backup
    # backup to /home/rodney/www-backups/  (must be full path)
    
    # make the backup folder
    mkdir ~/www-backups/28June/
    
    # update the site
    rsync -rv --size-only --exclude .hg --delete -b --backup-dir=/home/rodney/www-backups/28Jyne ~/www/* ~/Desktop/FabLab_Archive/dorville.rodney/
    
    # proceed with Mercuiral
    #
    cd ~/Desktop/FabLab_Archive
    hg pull
    hg update
    hg addremove
    hg commit -m "Some comment"
    hg push
    
    










    Not being of a artistic mind, I have shamelessly borrowed this template (simpleStyle_8) from html5webtemplates, in recognition of a simple, cool and functional webpage design.