mercurial/HGCommitTask.st
changeset 210 54a73fa50d40
parent 158 591092ed5641
child 248 b1a6ab0c86a1
equal deleted inserted replaced
209:1ac6a3ac648a 210:54a73fa50d40
       
     1 "
       
     2  COPYRIGHT (c) 2012-2013 by Jan Vrany
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libscm/mercurial' }"
    12 "{ Package: 'stx:libscm/mercurial' }"
     2 
    13 
     3 SCMAbstractCommitTask subclass:#HGCommitTask
    14 SCMAbstractCommitTask subclass:#HGCommitTask
     4 	instanceVariableNames:'author remote branch'
    15 	instanceVariableNames:'author remote branch'
     5 	classVariableNames:''
    16 	classVariableNames:''
     6 	poolDictionaries:''
    17 	poolDictionaries:''
     7 	category:'SCM-Mercurial-StX-Tasks'
    18 	category:'SCM-Mercurial-StX-Tasks'
     8 !
    19 !
     9 
    20 
       
    21 !HGCommitTask class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2012-2013 by Jan Vrany
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 ! !
    10 
    36 
    11 !HGCommitTask methodsFor:'accessing'!
    37 !HGCommitTask methodsFor:'accessing'!
    12 
    38 
    13 author
    39 author
    14     ^author isNil ifTrue:[
    40     ^author isNil ifTrue:[
   100 !
   126 !
   101 
   127 
   102 version_SVN
   128 version_SVN
   103     ^ '§Id::                                                                                                                        §'
   129     ^ '§Id::                                                                                                                        §'
   104 ! !
   130 ! !
       
   131