~osomon/phatch/pyexiv2-0.3

« back to all changes in this revision

Viewing changes to phatch/core/config.py

  • Committer: spe.stani.be at gmail
  • Date: 2009-03-30 13:43:04 UTC
  • Revision ID: spe.stani.be@gmail.com-20090330134304-6xe3d03s8rzgo4yt
adding highlight and outline (thanks nadia)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
USER_ACTIONS_PATH   = os.path.join(APP_USER_PATH,'actions')
29
29
USER_FONTS_PATH     = os.path.join(APP_USER_PATH,'fonts')
30
30
USER_MASKS_PATH     = os.path.join(APP_USER_PATH,'masks')
 
31
USER_HIGHLIGHTS_PATH    = os.path.join(APP_USER_PATH,'highlights')
31
32
USER_WATERMARKS_PATH    = os.path.join(APP_USER_PATH,'watermarks')
32
33
 
33
34
def check_config_paths(config_paths):
54
55
    config_paths["USER_ACTIONS_PATH"]   = USER_ACTIONS_PATH
55
56
    config_paths["USER_FONTS_PATH"]     = USER_FONTS_PATH
56
57
    config_paths["USER_MASKS_PATH"]     = USER_MASKS_PATH
 
58
    config_paths["USER_HIGHLIGHTS_PATH"]= USER_HIGHLIGHTS_PATH
57
59
    config_paths["USER_WATERMARKS_PATH"]= USER_WATERMARKS_PATH
58
60
 
59
61
def fix_python_path(phatch_python_path=None):