~mnordhoff/loggerhead/yui-cdn

« back to all changes in this revision

Viewing changes to loggerhead/config.py

  • Committer: Matt Nordhoff
  • Date: 2009-04-07 18:29:10 UTC
  • Revision ID: mnordhoff@mattnordhoff.com-20090407182910-7mu8gdhnb9qlwn67
Rename --yui-cdn and use_yui_cdn to --use-cdn and use_cdn, respectively

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
        user_dirs=False,
11
11
        show_version=False,
12
12
        log_folder=None,
13
 
        yui_cdn=False,
 
13
        use_cdn=False,
14
14
        )
15
15
    parser.add_option("--user-dirs", action="store_true", dest="user_dirs",
16
16
                      help="Serve user directories as ~user.")
36
36
                      type=str, help="The directory to place log files in.")
37
37
    parser.add_option("--version", action="store_true", dest="show_version",
38
38
                      help="Print the software version and exit")
39
 
    parser.add_option('--yui-cdn', action='store_true',
 
39
    parser.add_option('--use-cdn', action='store_true',
40
40
                      help="Serve YUI from Yahoo!'s CDN")
41
41
    return parser
42
42