[z3-checkins] r36291 - in z3/sqlos/trunk: . includes

kobold at codespeak.net kobold at codespeak.net
Mon Jan 8 17:13:33 CET 2007


Author: kobold
Date: Mon Jan  8 17:13:31 2007
New Revision: 36291

Added:
   z3/sqlos/trunk/Makefile
      - copied unchanged from r36217, z3/sqlos/trunk/makefile
Removed:
   z3/sqlos/trunk/TODO.txt
   z3/sqlos/trunk/includes/
   z3/sqlos/trunk/makefile
Modified:
   z3/sqlos/trunk/CONTRIBUTORS.txt
   z3/sqlos/trunk/COPYING.txt
   z3/sqlos/trunk/setup.py
Log:
Reorganized documentation; moved include files to src/sqlos.


Modified: z3/sqlos/trunk/CONTRIBUTORS.txt
==============================================================================
--- z3/sqlos/trunk/CONTRIBUTORS.txt	(original)
+++ z3/sqlos/trunk/CONTRIBUTORS.txt	Mon Jan  8 17:13:31 2007
@@ -6,4 +6,5 @@
   - Andrew Bennetts (spiv @ #launchpad)
   - Brian Sutherland (jinty at web.de)
   - Andres Freund (andres at anarazel.de)
-  - Adam Groszer
+  - Adam Groszer (adamg at fw.hu)
+  - Fabio Tranchitella (fabio@ŧranchitella.it)

Modified: z3/sqlos/trunk/COPYING.txt
==============================================================================
--- z3/sqlos/trunk/COPYING.txt	(original)
+++ z3/sqlos/trunk/COPYING.txt	Mon Jan  8 17:13:31 2007
@@ -3,3 +3,4 @@
 
 Copyright (C) 2003-2004 sqlos, Enfold Systems LLC.
 Copyright (C) 2005-2006 sqlos, Brian Sutherland
+Copyright (C) 2006-2007 sqlos, Fabio Tranchitella

Deleted: /z3/sqlos/trunk/TODO.txt
==============================================================================
--- /z3/sqlos/trunk/TODO.txt	Mon Jan  8 17:13:31 2007
+++ (empty file)
@@ -1,14 +0,0 @@
-TODO
-====
-
-Features
---------
-
-* Make it un-necessary to register the db adapter class in zcml. This is
-  required right now as there is no 'correct' way to tell which database a
-  IZopeConnection is for.
-
-    - fixed for MySQL, should be fixed at least for postgres
-
-Bugs
-----

Deleted: /z3/sqlos/trunk/makefile
==============================================================================
--- /z3/sqlos/trunk/makefile	Mon Jan  8 17:13:31 2007
+++ (empty file)
@@ -1,67 +0,0 @@
-HERE=`pwd`
-CSV=${HERE}/csv
-ZP=${HERE}/../
-ZH=${HERE}/../../
-PYTHON=python2.4
-z3includes=Zope3/zopeskel/etc/package-includes
-Z3BRANCH=trunk
-
-all : test clean
-
-doc :
-	export PYTHONPATH=${ZP} && epydoc -o docs/api --css blue --private-css green -v -n sqlos .
-
-sorted :
-	cat coverage_report | sort -k2 -r -n | grep 'sqlos' > coverage_sorted
-
-coverage :
-	cd ${ZH} && $(PYTHON) test.py -vpfT --all sqlos > ${HERE}/coverage_report
-
-coverage_sorted : coverage sorted
-
-.PHONY: clean
-clean:
-	find . \( -name '*~' -o -name '*.py[co]' -o -name '*.bak' -o -name '#*#'  -o -name '\.#*' \) -exec rm {} \; -print
-	$(PYTHON) setup.py clean
-
-.PHONY: realclean
-realclean: clean
-	rm -rf dist
-	rm -rf build
-	rm -rf Zope3
-
-.PHONY: z3-checkout
-z3-checkout:
-	-test -d Zope3 || svn co svn://svn.zope.org/repos/main/Zope3/$(Z3BRANCH) Zope3
-
-.PHONY: z3-update
-z3-update: z3-checkout
-	svn up Zope3
-
-Zope3:
-	$(MAKE) z3-checkout
-
-$(z3includes)/%.zcml: includes/%.zcml Zope3
-	cp $< $@
-
-.PHONY: sqlos-meta
-sqlos-meta: $(z3includes)/sqlos-meta.zcml $(z3includes)/sqlos-configure.zcml $(z3includes)/sqlos-ftesting.zcml
-
-.PHONY: Zope3-build
-Zope3-build: Zope3
-	cd Zope3 && $(MAKE) PYTHON=$(PYTHON) inplace
-
-.PHONY: develop
-develop: Zope3-build sqlos-meta
-	PYTHONPATH=Zope3/src $(PYTHON) setup.py develop --install-dir Zope3/src
-
-.PHONY: testall
-test: develop
-	cd Zope3 && PYTHONPATH=src $(PYTHON) test.py --test-path=../src -s sqlos
-
-Zope3/principals.zcml: Zope3 Zope3/sample_principals.zcml
-	cp Zope3/sample_principals.zcml $@
-
-.PHONY: run-sampleapp
-run-sampleapp: develop Zope3/principals.zcml $(z3includes)/sqlos.ftesting-configure.zcml
-	cd Zope3; PYTHONPATH=src ./z3.py

Modified: z3/sqlos/trunk/setup.py
==============================================================================
--- z3/sqlos/trunk/setup.py	(original)
+++ z3/sqlos/trunk/setup.py	Mon Jan  8 17:13:31 2007
@@ -20,5 +20,5 @@
     include_package_data=True,
     install_requires = [
             'SQLObject>=0.7',
-            ] # XXX - what else? at least zope, let the users find out;)
+            ]
 )


More information about the z3-checkins mailing list