DataBaseSourceCodeManagerUtilities.st
author Claus Gittinger <cg@exept.de>
Sun, 07 Jul 2019 23:42:57 +0200
changeset 4453 5e6ad8c5a97e
parent 4216 c5a42101576c
permissions -rw-r--r--
#FEATURE by cg class: AbstractSourceCodeManager class added: #revisionLogOfFile:fromRevision:toRevision: #revisionLogOfFile:fromRevision:toRevision:finishAfter: #revisionLogOfFile:numberOfRevisions: comment/format in: #revisionLogOf:fromRevision:toRevision:numberOfRevisions:fileName:directory:module: #revisionLogOf:numberOfRevisions:fileName:directory:module:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4216
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     1
"
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     2
 COPYRIGHT (c) 2014 by Claus Gittinger
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     3
              All Rights Reserved
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     4
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     5
 This software is furnished under a license and may be used
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     6
 only in accordance with the terms of that license and with the
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     8
 be provided or otherwise made available to, or used by, any
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
     9
 other person.  No title to or ownership of the software is
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    10
 hereby transferred.
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    11
"
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
4216
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    14
"{ NameSpace: Smalltalk }"
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    15
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
SourceCodeManagerUtilities subclass:#DataBaseSourceCodeManagerUtilities
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'System-SourceCodeManagement'
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
4216
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    23
!DataBaseSourceCodeManagerUtilities class methodsFor:'documentation'!
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    24
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    25
copyright
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    26
"
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    27
 COPYRIGHT (c) 2014 by Claus Gittinger
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    28
              All Rights Reserved
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    29
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    30
 This software is furnished under a license and may be used
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    31
 only in accordance with the terms of that license and with the
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    33
 be provided or otherwise made available to, or used by, any
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    34
 other person.  No title to or ownership of the software is
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    35
 hereby transferred.
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    36
"
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    37
! !
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!DataBaseSourceCodeManagerUtilities class methodsFor:'documentation'!
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
version
4216
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    42
    ^ '$Header$'
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
version_CVS
4216
c5a42101576c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
    46
    ^ '$Header$'
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
! !
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48