Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
slapos.buildout
Commits
ef381e32
Commit
ef381e32
authored
Jun 15, 2006
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refined documentation.
Fixed small bug in handling of custom installed.cfg location.
parent
de3a246c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
126 additions
and
58 deletions
+126
-58
README.txt
README.txt
+1
-1
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+3
-0
src/zc/buildout/buildout.txt
src/zc/buildout/buildout.txt
+112
-57
todo.txt
todo.txt
+10
-0
No files found.
README.txt
View file @
ef381e32
...
...
@@ -8,7 +8,7 @@ may actually contain multiple programs, processes, and configuration
settings.
The word "buildout" refers to a description of a set of parts and the
software to create an
s
assemble them. It is often used informally to
software to create an
d
assemble them. It is often used informally to
refer to an installed system based on a buildout definition. For
example, if we are creating an application named "Foo", then "the Foo
buildout" is the collection of configuration and application-specific
...
...
src/zc/buildout/buildout.py
View file @
ef381e32
...
...
@@ -119,6 +119,9 @@ class Buildout(dict):
if
not
os
.
path
.
exists
(
d
):
os
.
mkdir
(
d
)
options
[
'installed'
]
=
os
.
path
.
join
(
options
[
'directory'
],
options
[
'installed'
])
def
_dosubs
(
self
,
section
,
option
,
value
,
data
,
converted
,
seen
):
key
=
section
,
option
r
=
converted
.
get
(
key
)
...
...
src/zc/buildout/buildout.txt
View file @
ef381e32
This diff is collapsed.
Click to expand it.
todo.txt
View file @
ef381e32
...
...
@@ -26,6 +26,16 @@
- 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
- Want to be able to control whether eggs get unzipped when they ae
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment