~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/config.py

  • Committer: webmaster at geoffish
  • Date: 2011-07-10 22:53:59 UTC
  • mto: (459.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 461.
  • Revision ID: webmaster@geoffish.tk-20110710225359-oeairailjy6gzpuk
Fixed buggy merging and removed IDE files

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        use_cdn=False,
37
37
        sql_dir=None,
38
38
        allow_writes=False,
 
39
        export_tarballs=True,
39
40
        )
40
41
    parser.add_option("--user-dirs", action="store_true",
41
42
                      help="Serve user directories as ~user.")
75
76
                      help="The directory to place the SQL cache in")
76
77
    parser.add_option("--allow-writes", action="store_true",
77
78
                      help="Allow writing to the Bazaar server.")
 
79
    parser.add_option("--export-tarballs", action="store_true",
 
80
                      help="Allow exporting revisions to tarballs.")
78
81
    return parser
79
82
 
80
83