Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 15th, 2012  |  syntax: None  |  size: 6.62 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ############################################
  2. #
  3. # Buildout Configuration File for ZEO Plone
  4. # -----------------------------------------
  5. # $LastChangedDate: 2010-08-30 09:45:55 -0700 (Mon, 30 Aug 2010) $ $LastChangedRevision: 39547 $
  6. #
  7. # After making changes in this configuration file,
  8. # you should run bin/buildout to update the components.
  9. #
  10. # ALWAYS back up all Plone/Zope data and components
  11. # before changing configuration.
  12. #
  13. # Running "bin/buildout" will update your installation,
  14. # installing missing components as necessary.
  15. #
  16. # Use "bin/buildout -n" to update many components here to the newest
  17. # available releases.
  18. # This will update the add-on products you've added in the eggs= lines.
  19. # This will not, however, upgrade Plone itself (or anything else you've
  20. # pinned with a version specification). To upgrade Plone itself, see the
  21. # comments in "Plone Component Versions".
  22. #
  23. # Tutorial instructions for using zc.buildout for
  24. # configuration management are available at:
  25. # http://plone.org/documentation/tutorial/buildout
  26. # Full details at http://pypi.python.org/pypi/zc.buildout
  27. #
  28. ############################################
  29.  
  30.  
  31. [buildout]
  32.  
  33. ############################################
  34. # Plone Component Versions
  35. # ------------------------
  36. # This version of the Unified Installer has the components of Plone 4
  37. # preloaded so that it can install without an Internet connection.
  38. # If you want to update, uncomment the "http://..." line below,
  39. # edit it to point to the current version URL, comment out the
  40. # "versions.cfg" line and run "bin/buildout -n" while attached to the
  41. # Internet. Generally, you only want to do that as part of a planned migration.
  42. # Note that if you are updating components, you should also check the versions
  43. # section at the end of this file, since recipes or components other than
  44. # those of Zope and Plone may need updating at the same time.
  45. #
  46. extends =
  47.     base.cfg
  48.     versions.cfg
  49. #    http://dist.plone.org/release/4.0/versions.cfg
  50.  
  51.  
  52. ############################################
  53. # Ports
  54. # -----
  55. # Specify the ports on which your Zope installation
  56. # will listen.
  57. # ZEO Server
  58. zeo-address = 127.0.0.1:8100
  59. # Zope client 1
  60. http-address = 8080
  61. # Zope client 2
  62. client2-address = 8081
  63.  
  64.  
  65. # If you try to start Zope as root, it will change user id to run as
  66. # the effective user specified here. This user id must own the var directory
  67. # of your buildout.
  68. effective-user = ipnec
  69.  
  70.  
  71. ############################################
  72. # Eggs
  73. # ----
  74. # Add an indented line to the eggs section for any Python
  75. # eggs or packages you wish to include.
  76. #
  77. eggs =
  78.     Plone
  79.     PIL==1.1.6
  80.     Products.LDAPMultiPlugins
  81.     Products.LDAPUserFolder
  82.     Products.PloneLDAP
  83.     simplon.plone.ldap
  84.  
  85. #
  86. # Optional Functionality
  87. # ----------------------
  88. # Uncomment the indented lines to include these products.
  89. # Documentation on all of them, along with many more products,
  90. # is available at
  91. # http://plone.org/products/
  92. #
  93. # Commonly used products:
  94. # * LinguaPlone provides tools for building multi-lingual sites
  95. # * PloneFormGen provides through-the-web form building
  96. #
  97. #    Products.LinguaPlone
  98. #    Products.PloneFormGen
  99. #
  100. # Commonly used development tools:
  101. # Several excellent development tools are included in the develop.cfg
  102. # buildout extension. Read it to learn how to activate these tools.
  103.  
  104.  
  105. ############################################
  106. # ZCML Slugs
  107. # ----------
  108. # Some eggs need ZCML slugs to tell Zope to
  109. # use them. Eggs with names beginning with "Products."
  110. # usually don't need this.
  111. zcml =
  112. #    plone.reload
  113.     Products.LDAPMultiPlugins
  114.     Products.LDAPUserFolder
  115.     Products.PloneLDAP
  116.     simplon.plone.ldap
  117.  
  118.    
  119. ############################################
  120. # Development Eggs
  121. # ----------------
  122. # You can use paster to create "development eggs" to
  123. # develop new products/themes. Put these in the src/
  124. # directory.
  125. # You will also need to add the egg names in the
  126. # eggs section above, and may also need to add them
  127. # to the zcml section.
  128. #
  129. # Provide the *paths* to the eggs you are developing here:
  130. develop =
  131. #    src/my.package
  132.  
  133.  
  134. ############################################
  135. # Debug Mode
  136. # ----------
  137. # Change debug-mode to "on" to run in development mode.
  138. #
  139. debug-mode = off
  140. # Add-on developers should turn deprecation warnings on
  141. deprecation-warnings = off
  142. # change verbose-security to "on" for useful security errors while developing
  143. verbose-security = off
  144.  
  145.  
  146. ############################################
  147. # Backup Directory
  148. # ----------------
  149. # Sets the target directory for the bin/backup and bin/snapshotbackup
  150. # commands. Default is inside this project's var directory, but ideally
  151. # this should be on a separate volume or backup server.
  152. #
  153. backups-dir=${buildout:directory}/var
  154.  
  155.  
  156.  
  157. ############################################
  158. # Initial User
  159. # ------------
  160. # This is the user id and password that will be used to create the initial
  161. # user id that will allow you to log in and create a Plone site. This only
  162. # sets the initial password; it will not allow you to change an already
  163. # existing password. If you change the admin password via the web interface,
  164. # the one below will no longer be valid.
  165. # If you find yourself locked out of your Zope/Python installation, you may
  166. # add an emergency user via "bin/plonectl adduser".
  167. user=admin:ipnec
  168.  
  169.  
  170. ############################################
  171. # Parts Specification
  172. # -------------------
  173. # Specifies the components that should be included in the buildout.
  174. # All the basics are in the base.cfg extension; you may add your
  175. # own if you need them at the end of this file.
  176. parts =
  177.     zeoserver
  178.     client1
  179.     client2
  180.     zopepy
  181.     zopeskel
  182.     unifiedinstaller
  183.     backup
  184.     chown-zeo
  185.  
  186.  
  187. ############################################
  188. # Versions Specification
  189. # ----------------------
  190. # Version information supplied here will "pin" Python packages to a particular
  191. # version number, even when you use the "newest" flag running buildout.
  192. # Specifying versions for all packages is a good idea and can prevent
  193. # accidental changes when you add new packages to your buildout.
  194. # Note that versions specified here will override those specified earlier
  195. # in the configuration, including those from the Plone and Zope version
  196. # config files.
  197. #
  198. [versions]
  199. Cheetah = 2.2.1
  200. Paste = 1.7.4
  201. PasteScript = 1.7.3
  202. Products.DocFinderTab = 1.0.4
  203. ZopeSkel = 2.17
  204. collective.recipe.backup = 1.4
  205. collective.recipe.omelette = 0.9
  206. mr.developer = 1.15
  207. plone.recipe.command = 1.1
  208. plone.recipe.osxcontroller = 0.4
  209. plone.recipe.unifiedinstaller = 4.0rc1
  210.  
  211. #Required by:
  212. #PasteScript 1.7.3
  213. PasteDeploy = 1.3.3