SVN__RevisionDate.st
changeset 760 20082043b919
parent 437 5a0198a958bf
child 911 9545e09231ee
equal deleted inserted replaced
759:9a9311783e41 760:20082043b919
       
     1 "
       
     2  Copyright (c) 2007-2010 Jan Vrany
       
     3  Copyright (c) 2009-2010 eXept Software AG
       
     4 
       
     5  Permission is hereby granted, free of charge, to any person
       
     6  obtaining a copy of this software and associated documentation
       
     7  files (the 'Software'), to deal in the Software without
       
     8  restriction, including without limitation the rights to use,
       
     9  copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    10  copies of the Software, and to permit persons to whom the
       
    11  Software is furnished to do so, subject to the following
       
    12  conditions:
       
    13 
       
    14  The above copyright notice and this permission notice shall be
       
    15  included in all copies or substantial portions of the Software.
       
    16 
       
    17  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    18  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    19  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    20  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    21  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    22  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    23  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    24  OTHER DEALINGS IN THE SOFTWARE.
       
    25 "
     1 "{ Package: 'stx:libsvn' }"
    26 "{ Package: 'stx:libsvn' }"
     2 
    27 
     3 "{ NameSpace: SVN }"
    28 "{ NameSpace: SVN }"
     4 
    29 
     5 Revision subclass:#RevisionDate
    30 Revision subclass:#RevisionDate
     7 	classVariableNames:''
    32 	classVariableNames:''
     8 	poolDictionaries:''
    33 	poolDictionaries:''
     9 	category:'SVN-Core'
    34 	category:'SVN-Core'
    10 !
    35 !
    11 
    36 
       
    37 !RevisionDate class methodsFor:'documentation'!
       
    38 
       
    39 copyright
       
    40 "
       
    41  Copyright (c) 2007-2010 Jan Vrany
       
    42  Copyright (c) 2009-2010 eXept Software AG
       
    43 
       
    44  Permission is hereby granted, free of charge, to any person
       
    45  obtaining a copy of this software and associated documentation
       
    46  files (the 'Software'), to deal in the Software without
       
    47  restriction, including without limitation the rights to use,
       
    48  copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    49  copies of the Software, and to permit persons to whom the
       
    50  Software is furnished to do so, subject to the following
       
    51  conditions:
       
    52 
       
    53  The above copyright notice and this permission notice shall be
       
    54  included in all copies or substantial portions of the Software.
       
    55 
       
    56  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    57  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    58  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    59  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    60  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    61  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    62  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    63  OTHER DEALINGS IN THE SOFTWARE.
       
    64 
       
    65 "
       
    66 ! !
       
    67 
       
    68 !RevisionDate class methodsFor:'others'!
       
    69 
       
    70 version_CVS
       
    71     ^ '$ÂHeader: /cvs/stx/stx/libsvn/SVN__RevisionDate.st,v 1.4 2009/10/19 12:23:23 fm Exp Â$'
       
    72 ! !
    12 
    73 
    13 !RevisionDate methodsFor:'accessing'!
    74 !RevisionDate methodsFor:'accessing'!
    14 
    75 
    15 date
    76 date
    16     ^ date
    77     ^ date
    28 
    89 
    29 printOn:aStream
    90 printOn:aStream
    30     "append a printed representation if the receiver to the argument, aStream"
    91     "append a printed representation if the receiver to the argument, aStream"
    31 
    92 
    32     aStream 
    93     aStream 
    33         nextPut:'{';
    94         nextPut:${;
    34         nextPutAll:date printString;
    95         nextPutAll:date printString;
    35         nextPut:'}'
    96         nextPut:$}
    36 
    97 
    37     "Created: / 15-03-2008 / 23:23:23 / janfrog"
    98     "Created: / 15-03-2008 / 23:23:23 / janfrog"
       
    99     "Modified: / 02-01-2010 / 12:14:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    38 ! !
   100 ! !
    39 
   101 
    40 !RevisionDate class methodsFor:'documentation'!
   102 !RevisionDate class methodsFor:'documentation'!
    41 
   103 
    42 version
   104 version
    43     ^ '$Header$'
   105     ^ '$Id$'
    44 !
       
    45 
       
    46 version_CVS
       
    47     ^ '$Header$'
       
    48 !
   106 !
    49 
   107 
    50 version_SVN
   108 version_SVN
    51     ^'§Id: SVN__RevisionDate.st 70 2009-04-16 12:47:44Z vranyj1 §'
   109     ^ '§Id: SVN__RevisionDate.st 350 2011-07-07 18:42:56Z vranyj1 §'
    52 ! !
   110 ! !