File:  [Repository] / VSyncer / SysConfig.py
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Wed Jan 2 19:01:35 2008 UTC (16 years, 6 months ago) by casties
Branches: MAIN
CVS tags: HEAD
first checking of modified SourceSyncer

    1: diffable = ['DTML Method',
    2:             'DTML Document',
    3:             'Script (Python)',
    4:             'Page Template'
    5:             ] 
    6: 
    7: syncable = ['File',
    8:             'Image',
    9:             'DTML Method',
   10:             'DTML Document',
   11:             'Script (Python)',
   12:             'Page Template'          
   13:            ]
   14: 
   15: colours = {
   16:   'ok':'green',
   17:   'out of date':'orange',
   18:   'missing':'red',
   19:   'extra':'red',
   20: }
   21: 
   22: error_messages = {
   23:   '200': "<font color=green>Completed with no errors.</font>",
   24:   '403': "<font color=red>You do not have access to do that. You must have the same account on the destination server.</font>",
   25:   '404': "<font color=red>Wasn't able to find this object.</font>",
   26:   '500': "<font color=red>Server error while syncing.</font>"
   27: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>