Skip to content

Commit

Permalink
Set some default values in ZopeEdit.ini for our use case:
Browse files Browse the repository at this point in the history
- Always borrow locks
- Lock timeout 1 day
- Do not create new version
- Only include the id in the filename
  • Loading branch information
buchi committed Mar 19, 2012
1 parent 7bf3d93 commit cf3d190
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions collective/zopeedit/win32/ZopeEdit.ini
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ version = 1.0.0
# locked by you before you began editing you can # locked by you before you began editing you can
# set this flag. This is useful for applications that # set this flag. This is useful for applications that
# use server-side locking, like CMFStaging # use server-side locking, like CMFStaging
# always_borrow_locks = 0 always_borrow_locks = 1


# Duration of file Lock : 1 day = 86400 seconds # Duration of file Lock : 1 day = 86400 seconds
# If this option is removed, fall back on 'infinite' zope default # If this option is removed, fall back on 'infinite' zope default
# Default 'infinite' value is about 12 minutes # Default 'infinite' value is about 12 minutes
# lock_timeout = 86400 lock_timeout = 86400


# Proxy address # Proxy address
#proxy = http://www.myproxy.com:8080 #proxy = http://www.myproxy.com:8080
Expand All @@ -57,7 +57,7 @@ version = 1.0.0
# lock_file_schemes=.~lock.%s#;~%s.lock # lock_file_schemes=.~lock.%s#;~%s.lock


# Create a new version when the file is modified ? # Create a new version when the file is modified ?
version_control = 1 version_control = 0


# Uncomment and specify an editor value to override the editor # Uncomment and specify an editor value to override the editor
# specified in the environment # specified in the environment
Expand All @@ -80,6 +80,9 @@ config_editor = notepad
# If your client charset is not iso-8859-1 # If your client charset is not iso-8859-1
# client_charset = iso-8859-1 # client_charset = iso-8859-1


# Include just the id of the object being edited in the filename
long_file_name = 0

# Specific settings by content-type or meta-type. Specific # Specific settings by content-type or meta-type. Specific
# settings override general options above. Content-type settings # settings override general options above. Content-type settings
# override meta-type settings for the same option. # override meta-type settings for the same option.
Expand Down

0 comments on commit cf3d190

Please sign in to comment.