[Python-checkins] r85161 - in tracker/instances/python-dev/rietveld: Makefile patches rietveld_helper settings.py

martin.v.loewis python-checkins at python.org
Sat Oct 2 08:24:05 CEST 2010


Author: martin.v.loewis
Date: Sat Oct  2 08:24:05 2010
New Revision: 85161

Log:
Adjust to relocation.


Added:
   tracker/instances/python-dev/rietveld/patches   (contents, props changed)
   tracker/instances/python-dev/rietveld/rietveld_helper   (contents, props changed)
Modified:
   tracker/instances/python-dev/rietveld/   (props changed)
   tracker/instances/python-dev/rietveld/Makefile
   tracker/instances/python-dev/rietveld/settings.py

Modified: tracker/instances/python-dev/rietveld/Makefile
==============================================================================
--- tracker/instances/python-dev/rietveld/Makefile	(original)
+++ tracker/instances/python-dev/rietveld/Makefile	Sat Oct  2 08:24:05 2010
@@ -3,7 +3,7 @@
 default:
 	@echo "Run 'make all' to fetch required sources to run this example."
 
-all: static templates codereview django gae2django dev.db
+all: static templates codereview django gae2django syncdb
 	@echo "Run './manage.py runserver 127.0.0.1:8000' to run Rietveld."
 
 clean: clean_local clean_external
@@ -18,10 +18,9 @@
 
 clean_local:
 	unlink gae2django
-	rm -f dev.db
 
 gae2django:
-	ln -s ../../gae2django/gae2django .
+	ln -s ../gae2django/gae2django .
 
 syncdb:
 	./manage.py syncdb
@@ -37,4 +36,4 @@
 	svn co http://rietveld.googlecode.com/svn/trunk/templates@$(RIETVELDREV) templates_svn
 
 django:
-	ln -s ../../gae2django/django .
+	ln -s ../gae2django/django .

Added: tracker/instances/python-dev/rietveld/patches
==============================================================================
--- (empty file)
+++ tracker/instances/python-dev/rietveld/patches	Sat Oct  2 08:24:05 2010
@@ -0,0 +1 @@
+link ../gae2django/examples/rietveld/patches
\ No newline at end of file

Added: tracker/instances/python-dev/rietveld/rietveld_helper
==============================================================================
--- (empty file)
+++ tracker/instances/python-dev/rietveld/rietveld_helper	Sat Oct  2 08:24:05 2010
@@ -0,0 +1 @@
+link ../gae2django/examples/rietveld/rietveld_helper
\ No newline at end of file

Modified: tracker/instances/python-dev/rietveld/settings.py
==============================================================================
--- tracker/instances/python-dev/rietveld/settings.py	(original)
+++ tracker/instances/python-dev/rietveld/settings.py	Sat Oct  2 08:24:05 2010
@@ -14,7 +14,7 @@
 MANAGERS = ADMINS
 
 _c = ConfigParser.ConfigParser({'password':'', 'port':''})
-_c.read(os.path.dirname(__file__)+"/../../config.ini")
+_c.read(os.path.dirname(__file__)+"/../config.ini")
 
 DATABASE_ENGINE = 'postgresql_psycopg2'
 DATABASE_NAME = _c.get('rdbms', 'name')


More information about the Python-checkins mailing list