Commit ef381e32 authored by Jim Fulton's avatar Jim Fulton

Refined documentation.

Fixed small bug in handling of custom installed.cfg location.
parent de3a246c
...@@ -8,7 +8,7 @@ may actually contain multiple programs, processes, and configuration ...@@ -8,7 +8,7 @@ may actually contain multiple programs, processes, and configuration
settings. settings.
The word "buildout" refers to a description of a set of parts and the The word "buildout" refers to a description of a set of parts and the
software to create ans assemble them. It is often used informally to software to create and assemble them. It is often used informally to
refer to an installed system based on a buildout definition. For refer to an installed system based on a buildout definition. For
example, if we are creating an application named "Foo", then "the Foo example, if we are creating an application named "Foo", then "the Foo
buildout" is the collection of configuration and application-specific buildout" is the collection of configuration and application-specific
......
...@@ -119,6 +119,9 @@ class Buildout(dict): ...@@ -119,6 +119,9 @@ class Buildout(dict):
if not os.path.exists(d): if not os.path.exists(d):
os.mkdir(d) os.mkdir(d)
options['installed'] = os.path.join(options['directory'],
options['installed'])
def _dosubs(self, section, option, value, data, converted, seen): def _dosubs(self, section, option, value, data, converted, seen):
key = section, option key = section, option
r = converted.get(key) r = converted.get(key)
......
This diff is collapsed.
...@@ -26,6 +26,16 @@ ...@@ -26,6 +26,16 @@
- Logging - Logging
- Some way to freeze versions so we can have reproducable buildouts.
- Part dependencies
- custom uninstall
- spelling :)
- example using -c. Example redefining .installed.cfg
Issues Issues
- Want to be able to control whether eggs get unzipped when they ae - Want to be able to control whether eggs get unzipped when they ae
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment