/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome
1 by Tim Marston
initial commit; basic app startup and initial command-line processing
1
# Makefile.am -- process this file with automake to produce Makefile.in
2
8 by Tim Marston
added diff command; moved all command to commands subdir; made stage-revert
3
nobase_pkgpython_PYTHON = \
41 by Tim Marston
added add command
4
	command/add.py \
31 by Tim Marston
updated Makefile.am
5
	command/command.py \
6
	command/diff.py \
7
	command/__init__.py \
8
	command/init.py \
9
	command/resolve.py \
10
	command/revert.py \
89 by Tim Marston
added staging commands; updated command helps
11
	command/stage_add.py \
12
	command/stage_commit.py \
31 by Tim Marston
updated Makefile.am
13
	command/stage_revert.py \
90 by Tim Marston
add stage-status command; add common stage notice to helps
14
	command/stage_status.py \
31 by Tim Marston
updated Makefile.am
15
	command/status.py \
16
	command/update.py \
41 by Tim Marston
added add command
17
	config.py \
31 by Tim Marston
updated Makefile.am
18
	deployment.py \
19
	file_matcher.py \
1 by Tim Marston
initial commit; basic app startup and initial command-line processing
20
	__init__.py \
2 by Tim Marston
added global objects (the.repo, the.program), deployment object and implemented
21
	program.py \
22
	repo.py \
31 by Tim Marston
updated Makefile.am
23
	the.py \
8 by Tim Marston
added diff command; moved all command to commands subdir; made stage-revert
24
	util.py \
25
	vcs/__init__.py \
26
	vcs/vcs.py \
99 by Tim Marston
updated Makefile for previous commit
27
	vcs/bzr.py \
31 by Tim Marston
updated Makefile.am
28
	walker/conflict.py \
29
	walker/copy_base.py \
30
	walker/copy_in.py \
31
	walker/copy_out.py \
32
	walker/__init__.py \
33
	walker/status.py \
34
	walker/walker.py