Show
Ignore:
Timestamp:
08/03/04 11:09:19 (4 years ago)
Author:
deveiant
Message:

- CVS->SVN constants.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Arrow/trunk/applets/imgtext.rb

    r135 r146  
    1919class ImageText < Arrow::Applet 
    2020 
    21     # CVS version tag 
    22     Version = /([\d\.]+)/.match( %q{$Revision: 1.1 $} )[1] 
     21    # SVN Revision 
     22    SVNRev = %q$Rev$ 
    2323 
    24     # CVS id tag 
    25     Rcsid = %q$Id$ 
     24    # SVN Id 
     25    SVNId = %q$Id$ 
     26 
     27    # SVN URL 
     28    SVNURL = %q$URL$ 
    2629 
    2730    # Applet signature 
     
    4447    ###### 
    4548 
     49    # PNG-creation action 
    4650    action( 'png' ) {|txn,*rest| 
    4751        text = $1 if /([\x20-\x7e]+)/.match( rest.first ) 
     
    5458    } 
    5559 
     60    # JPEG-creation action 
    5661    action( 'jpeg' ) {|txn,*rest| 
    5762        text = $1 if /([\x20-\x7e]+)/.match( rest.first )