[Zope-Coders] Signals f'up.
Chris McDonough
chrism@zope.com
25 Nov 2002 18:34:20 -0500
I pulled a major boner and *deleted* the lib/python/Signals package from
the CVS repository in order to make it a symlink from Packages/ instead
of just moving it. This had the awful effect of losing all branch
information.
I have restored the package at its latest respective states into the
HEAD and the 2.6 branch, but it's likely that if you've lately branched
from the Zope HEAD or from the 2.6 branch, you will need to do a bit of
surgery on your branch to regain the Signals package.
This will work for branches based on the HEAD:
cd lib/python
mv Signals Signals.aside
cvs up -d Signals
cd Signals
cvs up -j Zope-2_6-branch Signals
cvs commit
(then remerge any changes you've made in your Signals.aside package into
your branch)
This will work for branches based from 2.6:
cd lib/python
mv Signals Signals.aside
cvs up -d Signals
cd Signals
cvs up -j zope-2_6-branch Signals
cvs commit
(then remerge any changes you've made in your Signals.aside package into
your branch)
Sorry,
- C