AbstractSourceCodeManagementSettingsAppl.st
author Claus Gittinger <cg@exept.de>
Wed, 11 Jan 2012 15:40:54 +0100
changeset 11085 a7bc28fc65f0
parent 11082 11b9be1f0345
child 11125 59ee0c157f3c
permissions -rw-r--r--
changed: #helpSpec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10057
36e5aa192050 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10056
diff changeset
     1
"
10056
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
10057
36e5aa192050 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10056
diff changeset
     3
	      All Rights Reserved
10030
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
     4
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
     5
 This software is furnished under a license and may be used
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
     6
 only in accordance with the terms of that license and with the
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
     8
 be provided or otherwise made available to, or used by, any
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
     9
 other person.  No title to or ownership of the software is
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    10
 hereby transferred.
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    11
"
9849
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
AbstractSettingsApplication subclass:#AbstractSourceCodeManagementSettingsAppl
11068
dcd5bc8ed585 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
    15
	instanceVariableNames:'shownInBrowserMenusHolder'
10057
36e5aa192050 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10056
diff changeset
    16
	classVariableNames:''
36e5aa192050 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10056
diff changeset
    17
	poolDictionaries:''
36e5aa192050 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10056
diff changeset
    18
	category:'System-SourceCodeManagement'
9849
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
10030
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    21
!AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    22
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    23
copyright
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    24
"
10056
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
10057
36e5aa192050 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10056
diff changeset
    26
	      All Rights Reserved
10030
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    27
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    28
 This software is furnished under a license and may be used
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    29
 only in accordance with the terms of that license and with the
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    31
 be provided or otherwise made available to, or used by, any
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    32
 other person.  No title to or ownership of the software is
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    33
 hereby transferred.
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    34
"
10056
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    35
!
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    36
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    37
documentation
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    38
"
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    39
    Abstract superclass of all source-code managers.
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    40
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    41
    These should implement an interface similar to what is found in CVSSourceCodeManager,
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    42
    providing methods to checkin/out files from a central repository.
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    43
10144
e32d27a81b87 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 10057
diff changeset
    44
    Not all managers will probably provide the same set of functions; 
10056
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    45
    time will show, if such an abstraction is possible
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    46
    (the way source code management systems organize their code is different, some
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    47
    keep individual per-class version numbers (CVS, RCS, Store) others keep an overall
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    48
    (configuration-) id (SVN).
309affc75a8c added: #documentation
Claus Gittinger <cg@exept.de>
parents: 10030
diff changeset
    49
"
10030
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
    50
! !
9849
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
11082
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    52
!AbstractSourceCodeManagementSettingsAppl class methodsFor:'help specs'!
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    53
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    54
helpSpec
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    55
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    56
     by the UIHelpTool of ST/X."
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    57
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    58
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    59
     the UIHelpTool may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    60
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    61
    "
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    62
     UIHelpTool openOnClass:CVSSourceCodeManagementSettingsAppl    
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    63
    "
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    64
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    65
    <resource: #help>
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    66
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    67
    ^ super helpSpec addPairsFrom:#(
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    68
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    69
#shownInBrowserMenus
11085
a7bc28fc65f0 changed: #helpSpec
Claus Gittinger <cg@exept.de>
parents: 11082
diff changeset
    70
'If checked, the Systembrowser includes operations for me in its SCM menus.'
11082
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    71
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    72
)
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    73
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    74
    "Created: / 11-01-2012 / 15:38:11 / cg"
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    75
! !
Claus Gittinger <cg@exept.de>
parents: 11068
diff changeset
    76
10979
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    77
!AbstractSourceCodeManagementSettingsAppl class methodsFor:'image specs'!
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    78
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    79
defaultIcon
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    80
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    81
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    82
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    83
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    84
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    85
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    86
    "
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    87
     self defaultIcon inspect
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    88
     ImageEditor openOnClass:self andSelector:#defaultIcon
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    89
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    90
    "
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    91
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    92
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    93
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    94
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    95
        constantNamed:#'AbstractSettingsApplication::SourceCodeManagementSettingsAppl class defaultIcon'
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    96
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    97
@@@@@@@@@@@A@PHB@0P@@@@@@@@@@@@@@@@@@@HEA \HA $JB0HD@@@@@@@@@@@@@@HLA04NC0HD@@L@@ P@@@@@@@@@@@@ED@ NDP@@@@@@@@@D@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    98
@@@BA \FAPP@@@@@@@@@@@P@@@@@@@@@AQ@RC0@@@@@@@@@@@@@@@@@@@@@@@@TGA!!DD@@@@@@@@@@@@@@@@@@@D@PDIA08OA@@@@@@@@@@@@@@@@@@@AP S
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
    99
A0XIBPXGC0P@@@@@@@@@@@@@@@@ECAPLBPXOAP@@@@@@EQX@@@@@@@@@@@TIE@XOAP@@@@@@EQ\XE @@@@@@@@@@AP$OAP@@@@@@FQ\ZE!! V@@@@@@@@@@@E
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
   100
F0@@@@@@EQ\ZF!!(VFAX@@@@@@@@@@@@@@@@ZEQ\VE!!(ZF!!XWF @@@@@@@@@@@@@@@@@@@A\ZE!!(@@@@@@@@@@@@@@@@@@@@@@@@XE!!XZ@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
   101
@@@@@@@@EQ(V@@@@@@@@@@@@@@@@@@@@@@@@EQ\VE @@@@@@@@@@@@@@@@@@@@@@EQ VE @@@@@@@@@@@@@@F @@@@@WEQ VE!!(@@@@@@@@@@@@@@@@@E!!\W
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
   102
EQXVE @@@@@@@@@@@@@@@@@@@@@@@A(Z@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 32 64 0 0 64 0 32 32 0 0 32 0 32 96 32 96 192 128 192 224 192 160 224 160 32 128 64 64 96 64 64 96 32 32 160 64 160 224 192 64 160 96 32 128 32 224 224 224 64 128 64 160 192 160 224 224 192 32 160 96 160 160 160 64 64 64 96 96 96 128 128 128 192 192 192 32 32 32 32 64 32]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O8@@?>@A??@A?C C<@0C8@PC8@@??@@??F@_>O@O<_ G8?0C1?8A#?<@C?<@@_@H@_@L@?@GC>@C?>@A?<@@_0@') ; yourself); yourself]
10984
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   103
!
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   104
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   105
defaultIconSmall
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   106
    "This resource specification was automatically generated
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   107
     by the ImageEditor of ST/X."
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   108
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   109
    "Do not manually edit this!! If it is corrupted,
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   110
     the ImageEditor may not be able to read the specification."
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   111
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   112
    "
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   113
     self defaultIconSmall inspect
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   114
     ImageEditor openOnClass:self andSelector:#defaultIconSmall
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   115
     Icon flushCachedIcons
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   116
    "
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   117
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   118
    <resource: #image>
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   119
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   120
    ^Icon
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   121
        constantNamed:'AbstractSourceCodeManagementSettingsAppl class defaultIconSmall'
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   122
        ifAbsentPut:[(Depth8Image new) width: 11; height: 11; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   123
@@@@@@0LAPT@@@@@@@@EC@0LC@T@@@@@@ 0L@@@@@@T@@@@EA T@@@@@@@@EAP0IC@<@@AX@@@@EBP0E@@@VE!!X@@@@EF0@@E!!(ZFAX@@@@@@AXVE1XVE @V
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   124
@@@@@@@VE @@@@@VE!!XVE!!X@@@@@@@@WE!!XV@@@@@@@a') ; colorMapFromArray:#[0 0 0 32 64 0 0 64 0 32 32 0 0 32 0 32 96 32 96 192 128 192 224 192 160 224 160 32 128 64 64 96 64 64 96 32 32 160 64 160 224 192 64 160 96 32 128 32 224 224 224 64 128 64 160 192 160 224 224 192 32 160 96 160 160 160 64 64 64 96 96 96 128 128 128 192 192 192 32 32 32 32 64 32]; mask:((ImageMask new) width: 11; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0@_ C!!@N@C< G''@L>@G8DF@O8@_@@@a') ; yourself); yourself]
10979
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
   125
! !
Claus Gittinger <cg@exept.de>
parents: 10144
diff changeset
   126
9849
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
!AbstractSourceCodeManagementSettingsAppl class methodsFor:'queries'!
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
managerClass
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
    "backlink to my manager class (needed by the settings app)"
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
    self subclassResponsibility
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
    "Created: / 19-04-2011 / 12:47:28 / cg"
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
!
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
managerTypeName
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
    ^ self managerClass managerTypeName
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
    "Created: / 19-04-2011 / 12:48:37 / cg"
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
! !
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
11063
bae37a424fa8 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 10984
diff changeset
   143
!AbstractSourceCodeManagementSettingsAppl methodsFor:'aspects'!
bae37a424fa8 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 10984
diff changeset
   144
11068
dcd5bc8ed585 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
   145
shownInBrowserMenusHolder
dcd5bc8ed585 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
   146
    shownInBrowserMenusHolder isNil ifTrue:[
dcd5bc8ed585 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
   147
        shownInBrowserMenusHolder := true asValue.
dcd5bc8ed585 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
   148
        shownInBrowserMenusHolder onChangeSend:#updateModifiedChannel to:self
11063
bae37a424fa8 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 10984
diff changeset
   149
    ].
11068
dcd5bc8ed585 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
   150
    ^ shownInBrowserMenusHolder.
11063
bae37a424fa8 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 10984
diff changeset
   151
11068
dcd5bc8ed585 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
   152
    "Created: / 10-01-2012 / 00:16:13 / cg"
11063
bae37a424fa8 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 10984
diff changeset
   153
! !
bae37a424fa8 preps for \"showInBrowserMenus\"
Claus Gittinger <cg@exept.de>
parents: 10984
diff changeset
   154
9849
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
!AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
10984
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   157
version
11085
a7bc28fc65f0 changed: #helpSpec
Claus Gittinger <cg@exept.de>
parents: 11082
diff changeset
   158
    ^ '$Header: /cvs/stx/stx/libtool/AbstractSourceCodeManagementSettingsAppl.st,v 1.11 2012-01-11 14:40:54 cg Exp $'
10984
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   159
!
f460c387f2b8 added: #defaultIconSmall
Claus Gittinger <cg@exept.de>
parents: 10979
diff changeset
   160
9849
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
version_CVS
11085
a7bc28fc65f0 changed: #helpSpec
Claus Gittinger <cg@exept.de>
parents: 11082
diff changeset
   162
    ^ '$Header: /cvs/stx/stx/libtool/AbstractSourceCodeManagementSettingsAppl.st,v 1.11 2012-01-11 14:40:54 cg Exp $'
10030
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
   163
!
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
   164
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
   165
version_SVN
486922eb13e0 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 9849
diff changeset
   166
    ^ '§Id§'
9849
68ad7519769a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
! !