Re: Missing tag in SVN

2006-01-06 Thread Yoav Shapira
This is done now...  Thanks for pointing it out,

Yoav

On 1/5/06, Mark Thomas [EMAIL PROTECTED] wrote:
 Yoav Shapira wrote:
  So I guess I should just do an svn copy of servletapi from 5.5.11 to
  5.5.12 to tag it as such.  I don't need to do anything fancier like an
  svn:prop edit, right?

 Correct. A straight svn copy will be fine.

 Mark


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




--
Yoav Shapira
System Design and Management Fellow
MIT Sloan School of Management
Cambridge, MA, USA
[EMAIL PROTECTED] / www.yoavshapira.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Missing tag in SVN

2006-01-05 Thread Henri Yandell
It was pointed out to me that Tomcat/servletapi is missing a tag. In
https://svn.apache.org/repos/asf/tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/
there is no TOMCAT_5_5_12.

Looking at /home/cvs/servletapi-5/LICENSE,v there definitely was such
a tag, and a quick set of find's and a diff show that said tag was
identical to the TOMCAT_5_5_11 tag.


-bash-2.05b$ find . -type f | xargs grep TOMCAT_5_5_12 | sed
's/5_5_12/5_5_X/'  ~/TC-12
-bash-2.05b$ find . -type f | xargs grep TOMCAT_5_5_11 | sed
's/5_5_11/5_5_X/'  ~/TC-11
-bash-2.05b$ diff ~/TC-12 ~/TC-11
-bash-2.05b$ wc ~/TC-*
 207 436   12846 /home/bayard/TC-11
 207 436   12846 /home/bayard/TC-12
 414 872   25692 total
-bash-2.05b$


So it seems to me that we could just copy the 5_5_11 tag to 5_5_12 and
everything would be rosy.

Any thoughts?

Hen

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Missing tag in SVN

2006-01-05 Thread Yoav Shapira
Hi,
Hmm, strange.  But this shouldn't be a big deal to anyone: we can copy
the tag as you suggest IMHO.  Did the person pointing it out have some
problem/issue, or just happen to notice this oddity?

Yoav

On 1/5/06, Henri Yandell [EMAIL PROTECTED] wrote:
 It was pointed out to me that Tomcat/servletapi is missing a tag. In
 https://svn.apache.org/repos/asf/tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/
 there is no TOMCAT_5_5_12.

 Looking at /home/cvs/servletapi-5/LICENSE,v there definitely was such
 a tag, and a quick set of find's and a diff show that said tag was
 identical to the TOMCAT_5_5_11 tag.

 
 -bash-2.05b$ find . -type f | xargs grep TOMCAT_5_5_12 | sed
 's/5_5_12/5_5_X/'  ~/TC-12
 -bash-2.05b$ find . -type f | xargs grep TOMCAT_5_5_11 | sed
 's/5_5_11/5_5_X/'  ~/TC-11
 -bash-2.05b$ diff ~/TC-12 ~/TC-11
 -bash-2.05b$ wc ~/TC-*
  207 436   12846 /home/bayard/TC-11
  207 436   12846 /home/bayard/TC-12
  414 872   25692 total
 -bash-2.05b$
 

 So it seems to me that we could just copy the 5_5_11 tag to 5_5_12 and
 everything would be rosy.

 Any thoughts?

 Hen

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




--
Yoav Shapira
System Design and Management Fellow
MIT Sloan School of Management
Cambridge, MA, USA
[EMAIL PROTECTED] / www.yoavshapira.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Missing tag in SVN

2006-01-05 Thread Henri Yandell
Nope, just a colleague looking to prove they can recreate the 5.5.12 build.

On 1/5/06, Yoav Shapira [EMAIL PROTECTED] wrote:
 Hi,
 Hmm, strange.  But this shouldn't be a big deal to anyone: we can copy
 the tag as you suggest IMHO.  Did the person pointing it out have some
 problem/issue, or just happen to notice this oddity?

 Yoav

 On 1/5/06, Henri Yandell [EMAIL PROTECTED] wrote:
  It was pointed out to me that Tomcat/servletapi is missing a tag. In
  https://svn.apache.org/repos/asf/tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/
  there is no TOMCAT_5_5_12.
 
  Looking at /home/cvs/servletapi-5/LICENSE,v there definitely was such
  a tag, and a quick set of find's and a diff show that said tag was
  identical to the TOMCAT_5_5_11 tag.
 
  
  -bash-2.05b$ find . -type f | xargs grep TOMCAT_5_5_12 | sed
  's/5_5_12/5_5_X/'  ~/TC-12
  -bash-2.05b$ find . -type f | xargs grep TOMCAT_5_5_11 | sed
  's/5_5_11/5_5_X/'  ~/TC-11
  -bash-2.05b$ diff ~/TC-12 ~/TC-11
  -bash-2.05b$ wc ~/TC-*
   207 436   12846 /home/bayard/TC-11
   207 436   12846 /home/bayard/TC-12
   414 872   25692 total
  -bash-2.05b$
  
 
  So it seems to me that we could just copy the 5_5_11 tag to 5_5_12 and
  everything would be rosy.
 
  Any thoughts?
 
  Hen
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 --
 Yoav Shapira
 System Design and Management Fellow
 MIT Sloan School of Management
 Cambridge, MA, USA
 [EMAIL PROTECTED] / www.yoavshapira.com

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Missing tag in SVN

2006-01-05 Thread Yoav Shapira
So I guess I should just do an svn copy of servletapi from 5.5.11 to
5.5.12 to tag it as such.  I don't need to do anything fancier like an
svn:prop edit, right?

Yoav

On 1/5/06, Henri Yandell [EMAIL PROTECTED] wrote:
 Nope, just a colleague looking to prove they can recreate the 5.5.12 build.

 On 1/5/06, Yoav Shapira [EMAIL PROTECTED] wrote:
  Hi,
  Hmm, strange.  But this shouldn't be a big deal to anyone: we can copy
  the tag as you suggest IMHO.  Did the person pointing it out have some
  problem/issue, or just happen to notice this oddity?
 
  Yoav
 
  On 1/5/06, Henri Yandell [EMAIL PROTECTED] wrote:
   It was pointed out to me that Tomcat/servletapi is missing a tag. In
   https://svn.apache.org/repos/asf/tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/
   there is no TOMCAT_5_5_12.
  
   Looking at /home/cvs/servletapi-5/LICENSE,v there definitely was such
   a tag, and a quick set of find's and a diff show that said tag was
   identical to the TOMCAT_5_5_11 tag.
  
   
   -bash-2.05b$ find . -type f | xargs grep TOMCAT_5_5_12 | sed
   's/5_5_12/5_5_X/'  ~/TC-12
   -bash-2.05b$ find . -type f | xargs grep TOMCAT_5_5_11 | sed
   's/5_5_11/5_5_X/'  ~/TC-11
   -bash-2.05b$ diff ~/TC-12 ~/TC-11
   -bash-2.05b$ wc ~/TC-*
207 436   12846 /home/bayard/TC-11
207 436   12846 /home/bayard/TC-12
414 872   25692 total
   -bash-2.05b$
   
  
   So it seems to me that we could just copy the 5_5_11 tag to 5_5_12 and
   everything would be rosy.
  
   Any thoughts?
  
   Hen
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Yoav Shapira
  System Design and Management Fellow
  MIT Sloan School of Management
  Cambridge, MA, USA
  [EMAIL PROTECTED] / www.yoavshapira.com
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




--
Yoav Shapira
System Design and Management Fellow
MIT Sloan School of Management
Cambridge, MA, USA
[EMAIL PROTECTED] / www.yoavshapira.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Missing tag in SVN

2006-01-05 Thread Mark Thomas
Yoav Shapira wrote:
 So I guess I should just do an svn copy of servletapi from 5.5.11 to
 5.5.12 to tag it as such.  I don't need to do anything fancier like an
 svn:prop edit, right?

Correct. A straight svn copy will be fine.

Mark


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]