Farbflash projects: Imaging lingo table | 3-D scene list | Find all | Handler menu | Lingo message window

Ignore:
Timestamp:
12/15/08 13:00:15 (3 years ago)
Author:
alex
Message:

only copy dir and cst files now, when doing svn update movie binaries. added function to split path in order to not assume, that the first dot is the file extension seperator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lingosource/castlib2/PseudoXMLPS.ls

    r208 r215  
    822822on mEscapeSpecialChars me, str 
    823823   
     824  val = mReplaceAllGT(me, val, "&", "&") 
    824825  val = mReplaceAllGT(me, string(str), "<", "&lt;") 
    825826  val = mReplaceAllGT(me, val, ">", "&gt;") 
    826   val = mReplaceAllGT(me, val, "&", "&amp;") 
    827827  val = mReplaceAllGT(me, val, "'", "&apos;") 
    828828  val = mReplaceAllGT(me, val, QUOTE, "&quot;") 
     
    838838  val = mReplaceAllGT(me, string(str), "&lt;", "<") 
    839839  val = mReplaceAllGT(me, val, "&gt;", ">") 
    840   val = mReplaceAllGT(me, val, "&amp;", "&") 
    841840  val = mReplaceAllGT(me, val, "&apos;", "'") 
    842841  val = mReplaceAllGT(me, val, "&quot;", QUOTE) 
     842  val = mReplaceAllGT(me, val, "&amp;", "&") 
    843843   
    844844  return val 
Note: See TracChangeset for help on using the changeset viewer.