SVN__ListCommand.st
changeset 695 6767e9bad300
parent 448 8c30a64870e5
child 824 f8a52ef83887
equal deleted inserted replaced
694:e4a1c3265ff5 695:6767e9bad300
       
     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 BranchCommand subclass:#ListCommand
    30 BranchCommand subclass:#ListCommand
     7 	classVariableNames:''
    32 	classVariableNames:''
     8 	poolDictionaries:''
    33 	poolDictionaries:''
     9 	category:'SVN-Private-Commands'
    34 	category:'SVN-Private-Commands'
    10 !
    35 !
    11 
    36 
       
    37 !ListCommand 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 ! !
    12 
    67 
    13 !ListCommand class methodsFor:'executing'!
    68 !ListCommand class methodsFor:'executing'!
    14 
    69 
    15 list: url 
    70 list: url 
    16     ^ (self new)
    71     ^ (self new)
    17         url: url;
    72         url: url;
    18         execute
    73         execute
    19 
    74 
    20     "Created: / 19-03-2008 / 08:27:10 / janfrog"
    75     "Created: / 19-03-2008 / 08:27:10 / janfrog"
    21     "Modified: / 19-08-2009 / 13:28:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
    76     "Modified: / 19-08-2009 / 13:28:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    77 ! !
       
    78 
       
    79 !ListCommand class methodsFor:'others'!
       
    80 
       
    81 version_CVS
       
    82     ^ '$ÂHeader: /cvs/stx/stx/libsvn/SVN__ListCommand.st,v 1.4 2009/10/19 12:23:45 fm Exp Â$'
    22 ! !
    83 ! !
    23 
    84 
    24 !ListCommand methodsFor:'accessing'!
    85 !ListCommand methodsFor:'accessing'!
    25 
    86 
    26 recursive
    87 recursive
    85 ! !
   146 ! !
    86 
   147 
    87 !ListCommand class methodsFor:'documentation'!
   148 !ListCommand class methodsFor:'documentation'!
    88 
   149 
    89 version
   150 version
    90     ^ '$Header$'
   151     ^ '$Id$'
    91 !
       
    92 
       
    93 version_CVS
       
    94     ^ '$Header$'
       
    95 !
   152 !
    96 
   153 
    97 version_SVN
   154 version_SVN
    98     ^'§Id: SVN__ListCommand.st 110 2009-08-19 13:21:10Z vranyj1 §'
   155     ^ '§Id: SVN__ListCommand.st 350 2011-07-07 18:42:56Z vranyj1 §'
    99 ! !
   156 ! !