- Timestamp:
- 03/21/09 11:50:29 (3 years ago)
- Location:
- trunk/lingosource/castlib1
- Files:
-
- 3 edited
-
alexUtilities.ls (modified) (1 diff)
-
subversion_version_field.txt (modified) (1 diff)
-
svn_Utilities.ls (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lingosource/castlib1/alexUtilities.ls
r228 r230 3530 3530 end 3531 3531 3532 3533 -- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 3534 3535 on mStripFunnyCharsFromFileName me, theFileName 3536 3537 offs = offset(" ", theFileName) 3538 repeat while offs > 0 3539 put "_" into char offs of theFileName 3540 offs = offset(" ", theFileName) 3541 end repeat 3542 3543 offs = offset("/", theFileName) 3544 repeat while offs > 0 3545 put "_" into char offs of theFileName 3546 offs = offset("/", theFileName) 3547 end repeat 3548 3549 offs = offset(":", theFileName) 3550 repeat while offs > 0 3551 put "_" into char offs of theFileName 3552 offs = offset(":", theFileName) 3553 end repeat 3554 3555 offs = offset("\", theFileName) 3556 repeat while offs > 0 3557 put "_" into char offs of theFileName 3558 offs = offset("\", theFileName) 3559 end repeat 3560 3561 offs = offset("&", theFileName) 3562 repeat while offs > 0 3563 put "_" into char offs of theFileName 3564 offs = offset("&", theFileName) 3565 end repeat 3566 3567 return theFileName 3568 3569 end 3570 -
trunk/lingosource/castlib1/subversion_version_field.txt
r228 r230 1 r23 01 r231 -
trunk/lingosource/castlib1/svn_Utilities.ls
r228 r230 978 978 if doit = 1 then mSaveList_2_XML me, newInfolist, infolistPath 979 979 980 981 end982 983 -- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx984 985 on mStripFunnyCharsFromFileName me, theFileName986 987 offs = offset(" ", theFileName)988 repeat while offs > 0989 put "_" into char offs of theFileName990 offs = offset(" ", theFileName)991 end repeat992 993 offs = offset("/", theFileName)994 repeat while offs > 0995 put "_" into char offs of theFileName996 offs = offset("/", theFileName)997 end repeat998 999 offs = offset(":", theFileName)1000 repeat while offs > 01001 put "_" into char offs of theFileName1002 offs = offset(":", theFileName)1003 end repeat1004 1005 offs = offset("\", theFileName)1006 repeat while offs > 01007 put "_" into char offs of theFileName1008 offs = offset("\", theFileName)1009 end repeat1010 1011 offs = offset("&", theFileName)1012 repeat while offs > 01013 put "_" into char offs of theFileName1014 offs = offset("&", theFileName)1015 end repeat1016 1017 return theFileName1018 980 1019 981 end
Note: See TracChangeset
for help on using the changeset viewer.
