This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: cvs update warnings
Type: Stage:
Components: macOS Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jvr Nosy List: jvr, ncoghlan, nnorwitz, sjoerd
Priority: normal Keywords:

Created on 2003-07-02 07:56 by sjoerd, last changed 2022-04-10 16:09 by admin. This issue is now closed.

Messages (6)
msg16790 - (view) Author: Sjoerd Mullender (sjoerd) * (Python committer) Date: 2003-07-02 07:56
On Windows, when you do "cvs update" in the "Mac/IDE
scripts" directory, you get the following warnings
(example uses Cygwin, but it also happens with other
CVS clients):

$ cd "Mac/IDE scripts"; cvs update
? Hold option to open a script
? Insert file name
? Insert folder name
? Search Python Documentation
? Hack/Remove .pyc files
? Hack/Toolbox Assistant
cvs server: Updating .
cvs server: Updating Hack
cvs server: Updating Widget demos
$

This is due to the fact that Windows can't deal with
periods at the end of file names.  All files giving
warnings end in "...".  These periods are removed when
the files get created, and so CVS sees the files
without periods and complains about them.

At one level the solution is simple: rename those
files.  At another level, I don't know what the
consequences are for the Mac, so assigning to Just
(Jack doesn't seem to want to deal with this :-)
msg16791 - (view) Author: Just van Rossum (jvr) * (Python triager) Date: 2003-07-02 09:33
Logged In: YES 
user_id=92689

Any objections to postponing this to after 2.3 final? The thing is, 
currently these file names map to menu items directly, and to fix 
this I have to build a way to specify the menu item from within 
the file. This will cause way more changes than I'm comfortable 
with, just before 2.3. Removing the spaces from folder names can 
be done at the same time.
msg16792 - (view) Author: Sjoerd Mullender (sjoerd) * (Python committer) Date: 2003-07-02 10:36
Logged In: YES 
user_id=43607

I've lived with this for years.  A few more weeks won't matter.
msg16793 - (view) Author: Sjoerd Mullender (sjoerd) * (Python committer) Date: 2003-09-09 14:12
Logged In: YES 
user_id=43607

It's now past 2.3 final, so can you look into this again?
msg16794 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2004-07-05 03:46
Logged In: YES 
user_id=1038590

The leading spaces on some filenames are causing Eclipse to
choke on the checkout, too (I'm guessing the spaces are
there to get the right sequencing of the filenames).

One possibility that would give a minimal change is to
prepend and append underscores to all of the filenames, then
modify the code that reads these files to remove the first
and last character before performing the same parsing it
does now.
msg16795 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2006-10-07 22:44
Logged In: YES 
user_id=33168

Mac/IDE scripts is gone, so is CVS.  :-)
History
Date User Action Args
2022-04-10 16:09:37adminsetgithub: 38767
2003-07-02 07:56:17sjoerdcreate