[Numpy-discussion] PyDocWeb the doc editor and github transition

2010-07-17 Thread Vincent Davis
I have not seen anything about the move to github and how this effects
pydocweb or did I just miss it. I am willing to adapt pydocweb to work
with github but not sure what the desired integration would be. This
should not be to difficult but should/needs to be part of the plan and
documented.
My initial thought is to create a branch for the doc editor. My only
thought is to allow the doc editor (and those administering it) to
maintain a github repo/branch and then allow those that are in control
of the numpy/scipy source to merge/pull the docs with the doc
repo/branch.
(tell me what to do and I will work on it)

Vincent
___
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion


Re: [Numpy-discussion] PyDocWeb the doc editor and github transition

2010-07-17 Thread Pauli Virtanen
Sat, 17 Jul 2010 13:11:46 -0600, Vincent Davis wrote:
 I have not seen anything about the move to github and how this effects
 pydocweb or did I just miss it. I am willing to adapt pydocweb to work
 with github but not sure what the desired integration would be. This
 should not be to difficult but should/needs to be part of the plan and
 documented.

You do not need to make any changes to the doc editor because of the 
github move -- only to its configuration. The documentation editor app 
itself does not know or care what the version control system is.

The required change is essentially replacing

svn checkout ...
svn update

by

git clone ...
git pull ...

in a shell script, and clearing up the checkout directories. I can take 
care of this on the server machine, once the move to git has been made.

-- 
Pauli Virtanen

___
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion


Re: [Numpy-discussion] PyDocWeb the doc editor and github transition

2010-07-17 Thread Vincent Davis
On Sat, Jul 17, 2010 at 1:47 PM, Pauli Virtanen p...@iki.fi wrote:
 Sat, 17 Jul 2010 13:11:46 -0600, Vincent Davis wrote:
 I have not seen anything about the move to github and how this effects
 pydocweb or did I just miss it. I am willing to adapt pydocweb to work
 with github but not sure what the desired integration would be. This
 should not be to difficult but should/needs to be part of the plan and
 documented.

 You do not need to make any changes to the doc editor because of the
 github move -- only to its configuration. The documentation editor app
 itself does not know or care what the version control system is.

 The required change is essentially replacing

        svn checkout ...
        svn update

 by

        git clone ...
        git pull ...

 in a shell script, and clearing up the checkout directories. I can take
 care of this on the server machine, once the move to git has been made.

I was thinking it was that simple. Should it clone/pull.. from the
master branch?

Thanks
Vincent

 --
 Pauli Virtanen

 ___
 NumPy-Discussion mailing list
 NumPy-Discussion@scipy.org
 http://mail.scipy.org/mailman/listinfo/numpy-discussion

___
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion