root/trunk/development.ini @ 55

Revision 55, 2.5 KB (checked in by jiangx, 4 years ago)

Fix #10:

  • upgrade to 0.3.0; add requires;
  • update template for pylons 0.9.7
  • webhelpers upgrade from 0.3 to 0.6
  • Babel upgrade to 0.9.4
  • new routing format
  • function tests passed for new routes
  • link_to from webhelpers.html is different with link_to from webhelpers.rails
  • scriptaculous and prototype no longer maintain by pylons
  • do not check against authz file using svn swig bidings if ImportError?
  • bugfix: wrong tuple for role_list_opts
  • import literal

Push info:

    ------------------------------------------------------------------------
    r118 | jiangxin | 2008-08-30 16:57:18 +0800 (Sat, 30 Aug 2008) | 1 line
    if svn swig binding not exist, ignore testcase
    ------------------------------------------------------------------------
    r117 | jiangxin | 2008-08-30 16:33:53 +0800 (Sat, 30 Aug 2008) | 1 line
    function tests passed for new routes
    ------------------------------------------------------------------------
    r113 | jiangxin | 2008-08-30 15:47:39 +0800 (Sat, 30 Aug 2008) | 1 line
    upgrade to 0.3.0; add requires;
    ------------------------------------------------------------------------
    r112 | jiangxin | 2008-08-30 14:38:00 +0800 (Sat, 30 Aug 2008) | 1 line
    link_to from webhelpers.html is different with link_to from webhelpers.rails
    ------------------------------------------------------------------------
    r108 | jiangxin | 2008-08-30 14:02:36 +0800 (Sat, 30 Aug 2008) | 1 line
    do not check against authz file using svn swig bidings if ImportError
    ------------------------------------------------------------------------
    r106 | jiangxin | 2008-08-30 13:15:05 +0800 (Sat, 30 Aug 2008) | 1 line
    Babel upgrade to 0.9.4
    ------------------------------------------------------------------------
    r104 | jiangxin | 2008-08-30 00:00:31 +0800 (Sat, 30 Aug 2008) | 1 line
    scriptaculous and prototype no longer maintain by pylons
    ------------------------------------------------------------------------
    r103 | jiangxin | 2008-08-29 23:59:50 +0800 (Fri, 29 Aug 2008) | 1 line
    bugfix: wrong tuple for role_list_opts
    ------------------------------------------------------------------------
    r102 | jiangxin | 2008-08-29 23:37:49 +0800 (Fri, 29 Aug 2008) | 1 line
    new routing format
    ------------------------------------------------------------------------
    r101 | jiangxin | 2008-08-29 23:00:42 +0800 (Fri, 29 Aug 2008) | 1 line
    import literal
    ------------------------------------------------------------------------
    r100 | jiangxin | 2008-08-29 22:53:08 +0800 (Fri, 29 Aug 2008) | 1 line
    update template for pylons 0.9.7
    ------------------------------------------------------------------------
    r99 | jiangxin | 2008-08-29 21:50:12 +0800 (Fri, 29 Aug 2008) | 1 line
    webhelpers upgrade from 0.3 to 0.6
    ------------------------------------------------------------------------
  • Property svn:eol-style set to native
Line 
1#
2# pySvnManager - Pylons development environment configuration
3#
4# The %(here)s variable will be replaced with the parent directory of this file
5#
6[DEFAULT]
7debug = true
8# Uncomment and replace with the address which should receive any error reports
9email_to = jiangxin@foo.bar
10smtp_server = localhost
11error_email_from = paste@foo.bar
12
13[server:main]
14#use = egg:PasteScript#flup_fcgi_fork
15#use = egg:PasteScript#flup_fcgi_thread
16use = egg:Paste#http
17host = 0.0.0.0
18port = 5000
19
20[app:main]
21use = egg:pySvnManager
22#filter-with = proxy-prefix
23full_stack = true
24cache_dir = %(here)s/data
25beaker.session.key = OSSXP_ID
26#beaker.session.secret = somesecret
27#beaker.session.cookie_expires = True
28#beaker.session.cookie_domain = localhost
29beaker.session.cookie_expires = False
30beaker.session.timeout = 3600
31
32# If you'd like to fine-tune the individual locations of the cache data dirs
33# for the Cache data, or the Session saves, un-comment the desired settings
34# here:
35#beaker.cache.data_dir = %(here)s/data/cache
36#beaker.session.data_dir = %(here)s/data/sessions
37
38# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
39# Debug mode will enable the interactive debugging tool, allowing ANYONE to
40# execute malicious code after an exception is raised.
41#set debug = false
42
43# Configuration for pysvnmanager:
44#   Set admin files location.
45#   More manageable configurations are in config/localconfig.py.
46
47# Set unittest to True only for unittest mode. (nosetests)
48# Warning: if unitest is enabled, i18n for svnauthz module not work any more.
49#unittest = True
50
51# authn_file: a .htpasswd style password file, used for pysvnmanager authentication.
52authn_file = %(here)s/config/svn.passwd
53
54# authz_file: svn authz config file with administrative extension. (ossxp.com)
55authz_file = %(here)s/config/svn.access
56
57# svn repository root path
58repos_root = %(here)s/svnroot
59
60#[filter:proxy-prefix]
61#use = egg:PasteDeploy#prefix
62#prefix = /svnadmin
63
64# Logging configuration
65[loggers]
66keys = root, routes, pysvnmanager
67
68[handlers]
69keys = console
70
71[formatters]
72keys = generic
73
74[logger_root]
75level = INFO
76handlers = console
77
78[logger_routes]
79level = INFO
80handlers =
81qualname = routes.middleware
82# "level = DEBUG" logs the route matched and routing variables.
83
84[logger_pysvnmanager]
85level = DEBUG
86handlers = 
87qualname = pysvnmanager
88
89[handler_console]
90class = StreamHandler
91args = (sys.stderr,)
92level = NOTSET
93formatter = generic
94
95[formatter_generic]
96format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
97datefmt = %H:%M:%S
Note: See TracBrowser for help on using the browser.