SVN__WCActionAdded.st
author Claus Gittinger <cg@exept.de>
Fri, 18 Nov 2016 16:14:26 +0100
changeset 1180 92753f6cc822
parent 806 3bf02b0556c0
permissions -rw-r--r--
#REFACTORING by cg class: SVNSourceCodeManager SVNVersionInfo is private
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
670
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     1
"
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     2
 Copyright (c) 2007-2010 Jan Vrany
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     3
 Copyright (c) 2009-2010 eXept Software AG
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     4
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     5
 Permission is hereby granted, free of charge, to any person
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     6
 obtaining a copy of this software and associated documentation
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     7
 files (the 'Software'), to deal in the Software without
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     8
 restriction, including without limitation the rights to use,
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
     9
 copy, modify, merge, publish, distribute, sublicense, and/or sell
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    10
 copies of the Software, and to permit persons to whom the
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    11
 Software is furnished to do so, subject to the following
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    12
 conditions:
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    13
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    14
 The above copyright notice and this permission notice shall be
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    15
 included in all copies or substantial portions of the Software.
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    16
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    17
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    18
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    19
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    20
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    21
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    22
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    23
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    24
 OTHER DEALINGS IN THE SOFTWARE.
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    25
"
404
146080378483 *** empty log message ***
fm
parents: 275
diff changeset
    26
"{ Package: 'stx:libsvn' }"
59
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    27
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    28
"{ NameSpace: SVN }"
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    29
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    30
WCAction subclass:#WCActionAdded
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    31
	instanceVariableNames:''
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    32
	classVariableNames:''
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    33
	poolDictionaries:''
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    34
	category:'SVN-Working copy'
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    35
!
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    36
670
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    37
!WCActionAdded class methodsFor:'documentation'!
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    38
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    39
copyright
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    40
"
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    41
 Copyright (c) 2007-2010 Jan Vrany
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    42
 Copyright (c) 2009-2010 eXept Software AG
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    43
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    44
 Permission is hereby granted, free of charge, to any person
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    45
 obtaining a copy of this software and associated documentation
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    46
 files (the 'Software'), to deal in the Software without
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    47
 restriction, including without limitation the rights to use,
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    48
 copy, modify, merge, publish, distribute, sublicense, and/or sell
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    49
 copies of the Software, and to permit persons to whom the
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    50
 Software is furnished to do so, subject to the following
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    51
 conditions:
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    52
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    53
 The above copyright notice and this permission notice shall be
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    54
 included in all copies or substantial portions of the Software.
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    55
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    56
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    57
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    58
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    59
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    60
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    61
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    62
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    63
 OTHER DEALINGS IN THE SOFTWARE.
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    64
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    65
"
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    66
! !
59
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    67
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    68
!WCActionAdded class methodsFor:'accessing'!
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    69
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    70
actionName
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    71
    "Superclass says that I am responsible to implement this method"
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    72
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    73
    ^'A'
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    74
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    75
    "Created: / 16-03-2008 / 08:49:10 / janfrog"
670
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    76
    "Modified: / 02-11-2009 / 17:23:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    77
! !
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    78
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    79
!WCActionAdded class methodsFor:'others'!
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    80
c583b0c8107c Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    81
version_CVS
806
3bf02b0556c0 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 670
diff changeset
    82
    ^ '$Header$'
59
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    83
! !
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    84
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    85
!WCActionAdded methodsFor:'accessing'!
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    86
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    87
icon
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    88
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    89
    ^SVN::IconLibrary add
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    90
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    91
    "Created: / 24-06-2009 / 15:07:15 / Jan Vrany <vranyj1@fel.cvut.cz>"
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    92
! !
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    93
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    94
!WCActionAdded methodsFor:'processing'!
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    95
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    96
processEntry: entry using: processor 
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    97
    "
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    98
             Double dispath to a processor, passing an entry"
a11de448ffa0 initial checkin
fm
parents:
diff changeset
    99
    
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   100
    ^ processor processAddedEntry: entry
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   101
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   102
    "Modified: / 27-08-2009 / 08:50:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   103
! !
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   104
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   105
!WCActionAdded class methodsFor:'documentation'!
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   106
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   107
version
806
3bf02b0556c0 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 670
diff changeset
   108
    ^ '$Header$'
212
cb679c147c90 changed: #version_SVN
fm
parents: 59
diff changeset
   109
!
cb679c147c90 changed: #version_SVN
fm
parents: 59
diff changeset
   110
cb679c147c90 changed: #version_SVN
fm
parents: 59
diff changeset
   111
version_SVN
806
3bf02b0556c0 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 670
diff changeset
   112
    ^ '§Id: SVN__WCActionAdded.st 362 2011-08-08 13:07:42Z vranyj1 §'
59
a11de448ffa0 initial checkin
fm
parents:
diff changeset
   113
! !