[Zope-dev] Need help - wrong hierarchy on svn.zope.org

2008-10-20 Thread kevin gill
Hi,

I need a little help. I checked two packages into svn.zope.org, but I have
set up the hierarchy incorrectly.

The packages are z3c.rotterdam and z3c.boston. The egg is in the base
folder, rather than in 'trunk'.

I would appreciate it if someone with administration access to the
repository could fix the paths.

Sorry for the inconvenience,

Kevin

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Need help - wrong hierarchy on svn.zope.org

2008-10-20 Thread Jens Vagelpohl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


On Oct 20, 2008, at 14:05 , kevin gill wrote:

 Hi,

 I need a little help. I checked two packages into svn.zope.org, but  
 I have
 set up the hierarchy incorrectly.

 The packages are z3c.rotterdam and z3c.boston. The egg is in the base
 folder, rather than in 'trunk'.

 I would appreciate it if someone with administration access to the
 repository could fix the paths.

You can simply mkdir repo/package/trunk and then move everything  
into that trunk location using svn mv. Where's the problem?

jens



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.8 (Darwin)

iEYEARECAAYFAkj8ee4ACgkQRAx5nvEhZLLpRQCfS8UhidMeAvW3F7l7jYPa37hS
944AmgIWXWfMnaxL/m90pIAqj5AI94Q8
=Hlww
-END PGP SIGNATURE-
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Need help - wrong hierarchy on svn.zope.org

2008-10-20 Thread Philipp von Weitershausen
kevin gill wrote:
 I need a little help. I checked two packages into svn.zope.org, but I have
 set up the hierarchy incorrectly.
 
 The packages are z3c.rotterdam and z3c.boston. The egg is in the base
 folder, rather than in 'trunk'.
 
 I would appreciate it if someone with administration access to the
 repository could fix the paths.

You can easily do that yourself:

   svn mv $z/z3c.rotterdam $z/z3c.rotterdam-trunk
   svn mkdir $z/z3c.rotterdam
   svn mv $z/z3c.rotterdam-trunk $z/z3c.rotterdam/trunk

and the same thing with z3c.boston. Note that the $z environment 
variable is defines as follows:

   export z=svn+ssh://svn.zope.org/repos/main

or if your remote user name differs from the local one:

   export z=svn+ssh://[EMAIL PROTECTED]/repos/main
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )