This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via d371bdfc0f39a0b86cab3047db6b23c24d3e1d68 (commit)
via 63e5cd3267699c59ae84c865cc7f3679a7d4d633 (commit)
via 4d2ba785b0e531fc9f9dffe1bd81311b96d959ce (commit)
from c89d513098a99a5f680e403e839bb4ab7f4511fa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d371bdfc0f39a0b86cab3047db6b23c24d3e1d68
Author: Oleg Broytman <ph...@ph...>
Date: Tue Jul 29 19:09:35 2014 +0400
Update docs for git
Development was switched from Subversion to git.
commit 63e5cd3267699c59ae84c865cc7f3679a7d4d633
Author: Oleg Broytman <ph...@ph...>
Date: Tue Jul 29 19:07:58 2014 +0400
Change git URLs for FormEncode
FormEncode development switched to git long ago.
commit 4d2ba785b0e531fc9f9dffe1bd81311b96d959ce
Author: Oleg Broytman <ph...@ph...>
Date: Tue Jul 29 19:06:52 2014 +0400
Change URLs for setuptools/easy_install
-----------------------------------------------------------------------
Summary of changes:
docs/DeveloperGuide.txt | 12 ++++++------
docs/News.txt | 13 +++++++++----
docs/community.txt | 14 ++++++++------
docs/download.txt | 23 ++++++++++-------------
docs/links.txt | 7 ++++---
5 files changed, 37 insertions(+), 32 deletions(-)
diff --git a/docs/DeveloperGuide.txt b/docs/DeveloperGuide.txt
index 7c76bdb..65e541e 100644
--- a/docs/DeveloperGuide.txt
+++ b/docs/DeveloperGuide.txt
@@ -15,21 +15,21 @@ as things come up.
Development Installation
========================
-First install `FormEncode <http://formencode.org>`_::
+First install `FormEncode <http://www.formencode.org/en/latest/download.html>`_::
- $ svn co http://svn.colorstudy.com/FormEncode/trunk FormEncode
- $ cd FormEncode
+ $ git clone git://github.com/formencode/formencode.git
+ $ cd formencode
$ sudo python setup.py develop
Then do the same for SQLObject::
- $ svn co http://svn.colorstudy.com/SQLObject/trunk SQLObject
- $ cd SQLObject
+ $ git clone git clone git://git.code.sf.net/p/sqlobject/sqlobject
+ $ cd sqlobject
$ sudo python setup.py develop
Voila! The packages are globally installed, but the files from the
checkout were not copied into ``site-packages``. See `setuptools
-<http://peak.telecommunity.com/DevCenter/setuptools>`_ for more.
+<http://pythonhosted.org/setuptools/>`_ for more.
Style Guide
===========
diff --git a/docs/News.txt b/docs/News.txt
index ac45879..7d7c37e 100644
--- a/docs/News.txt
+++ b/docs/News.txt
@@ -7,11 +7,11 @@ News
.. _start:
-SQLObject (trunk)
-=================
+SQLObject 2.0.0 (master)
+========================
-SQLObject 2.0.0
-===============
+Features & Interface
+--------------------
* DateTimeCol and TimeCol can read and write values with microseconds.
@@ -19,6 +19,11 @@ SQLObject 2.0.0
with microseconds cannot be read back from SQLite databases (and
perhaps other backends) with versions of SQLObject older than 1.7.
+Development
+-----------
+
+* Development was switched from Subversion to git.
+
SQLObject 1.7.0
===============
diff --git a/docs/community.txt b/docs/community.txt
index 52ea7ce..8d9758b 100644
--- a/docs/community.txt
+++ b/docs/community.txt
@@ -3,20 +3,22 @@ SQLObject Community
SQLObject questions and discussion happens on the `sqlobject-discuss
mailing list
-<http://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss>`_.
+<https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss>`_.
`Gmane <http://www.gmane.org/>`_ also has the list in
gmane.comp.python.sqlobject accessible by
`HTTP <http://news.gmane.org/gmane.comp.python.sqlobject>`_,
`HTTP (blog format) <http://blog.gmane.org/gmane.comp.python.sqlobject>`_
and `News <news://news.gmane.org/gmane.comp.python.sqlobject>`_.
-Bugs should be submitted to the `bug tracker
-<http://sourceforge.net/tracker/?group_id=74338&atid=540672>`_, and
+Bugs should be submitted to the `bug tracker at SourceForge
+<http://sourceforge.net/p/sqlobject/bugs/>`_ or `GitHub
+<https://github.com/sqlobject/sqlobject/issues>`_, and
`patches to the patch tracker
-<http://sourceforge.net/tracker/?group_id=74338&atid=540674>`_.
+<http://sourceforge.net/p/sqlobject/patches/>`_ (or send pull requests
+at GitHub).
-Development takes place in the `subversion repository
-<download.html#repository>`_. There are `development docs`_. If you are
+Development takes place in the `git repositories
+<download.html#repositories>`_. There are `development docs`_. If you are
interested in contributing you should read the `Developer Guide
<DeveloperGuide.html>`_.
diff --git a/docs/download.txt b/docs/download.txt
index 2b5b7bd..bb1fc22 100644
--- a/docs/download.txt
+++ b/docs/download.txt
@@ -4,7 +4,7 @@ Download SQLObject
The latest releases are always available on the `Python Package Index
<http://pypi.python.org/pypi/SQLObject>`_, and is installable
with `easy_install
-<http://peak.telecommunity.com/DevCenter/EasyInstall>`_.
+<http://pythonhosted.org/setuptools/easy_install.html>`_.
You can install the latest release with::
@@ -21,8 +21,7 @@ You can install the latest bug fixing branch with::
If you want to require a specific revision (because, for instance, you
need a bugfix that hasn't appeared in a release), you can put this in
your `setuptools
-<http://peak.telecommunity.com/DevCenter/setuptools>`_ using
-``setup.py`` file::
+<http://pythonhosted.org/setuptools/>`_ using ``setup.py`` file::
setup(...
install_requires=["SQLObject==bugfix,>=0.7.1dev-r1485"],
@@ -34,18 +33,16 @@ when you install ``SQLObject==bugfix`` you will be installing a
specific version, and "bugfix" is just a kind of label for a way of
acquiring the version (it points to a branch in the repository).
-Repository
-----------
+Repositories
+------------
-The SQLObject `Subversion <http://subversion.tigris.org/>`_ repository is located at http://svn.colorstudy.com/SQLObject/trunk
+The SQLObject `git <http://git-scm.com/>`_ repositories are located at
+http://sourceforge.net/p/sqlobject/_list/git and
+https://github.com/sqlobject
-If you are using a command-line Subversion client, you can check
-it out like::
-
- svn co http://svn.colorstudy.com/SQLObject/trunk SQLObject
-
-If you are on Windows you may want to use `TortoiseSVN
-<http://tortoisesvn.tigris.org/>`_.
+Before switching to git development was performed at the `Subversion
+<https://subversion.apache.org/>`_ repository that is still located at
+http://svn.colorstudy.com/SQLObject
.. image:: http://sflogo.sourceforge.net/sflogo.php?group_id=74338&type=10
:target: http://sourceforge.net/projects/sqlobject
diff --git a/docs/links.txt b/docs/links.txt
index 6e141f6..33018d5 100644
--- a/docs/links.txt
+++ b/docs/links.txt
@@ -1,9 +1,10 @@
SQLObject Links
===============
-If you have a link you'd like added to this page, please `submit a bug
-report with the link and title
-<http://sourceforge.net/tracker/?atid=540672&group_id=74338&func=browse>`_.
+If you have a link you'd like added to this page, please submit a bug
+report with the link and title at `bug tracker
+<http://sourceforge.net/p/sqlobject/bugs/>`_ or send pull requests at
+`GitHub <https://github.com/sqlobject/sqlobject>`_).
Articles and Documentation
--------------------------
hooks/post-receive
--
SQLObject development repository
|