mercurial/HGSourceCodeManagementSettingsAppl.st
author Claus Gittinger <cg@exept.de>
Tue, 16 Jul 2019 15:06:16 +0200
branchcvs_MAIN
changeset 882 7408432b5364
parent 874 d99aae20b9ea
permissions -rw-r--r--
#OTHER by cg refactoring and bugfix
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
210
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
     1
"
335
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
     2
stx:libscm - a new source code management library for Smalltalk/X
509
f92210d4585b Updated copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 449
diff changeset
     3
Copyright (C) 2012-2015 Jan Vrany
335
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
     4
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
     5
This library is free software; you can redistribute it and/or
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
     6
modify it under the terms of the GNU Lesser General Public
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
     7
License as published by the Free Software Foundation; either
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
     8
version 2.1 of the License. 
210
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
     9
335
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    10
This library is distributed in the hope that it will be useful,
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    11
but WITHOUT ANY WARRANTY; without even the implied warranty of
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    13
Lesser General Public License for more details.
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    14
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    15
You should have received a copy of the GNU Lesser General Public
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    16
License along with this library; if not, write to the Free Software
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    17
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
210
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
    18
"
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
    19
"{ Package: 'stx:libscm/mercurial' }"
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
    20
543
7de1b340a316 class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 512
diff changeset
    21
"{ NameSpace: Smalltalk }"
7de1b340a316 class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 512
diff changeset
    22
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
    23
AbstractSourceCodeManagementSettingsAppl subclass:#HGSourceCodeManagementSettingsAppl
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
    24
	instanceVariableNames:'defaultLogo hgCommand hgDiff2Command hgDiff3Command hgAutopush
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
    25
		infoPanel hgrcAspect'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
    26
	classVariableNames:'IgnoreCheckUsername IgnoreCheckMenuLayout'
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
    27
	poolDictionaries:''
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
    28
	category:'SCM-Mercurial-StX-Interface'
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
    29
!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
    30
210
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
    31
!HGSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
    32
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
    33
copyright
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
    34
"
335
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    35
stx:libscm - a new source code management library for Smalltalk/X
509
f92210d4585b Updated copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 449
diff changeset
    36
Copyright (C) 2012-2015 Jan Vrany
335
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    37
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    38
This library is free software; you can redistribute it and/or
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    39
modify it under the terms of the GNU Lesser General Public
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    40
License as published by the Free Software Foundation; either
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    41
version 2.1 of the License. 
210
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
    42
335
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    43
This library is distributed in the hope that it will be useful,
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    44
but WITHOUT ANY WARRANTY; without even the implied warranty of
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    45
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    46
Lesser General Public License for more details.
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    47
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    48
You should have received a copy of the GNU Lesser General Public
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    49
License along with this library; if not, write to the Free Software
7e19ab19148b Changed license to LGPL2.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 210
diff changeset
    50
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
210
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
    51
"
882
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    52
!
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    53
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    54
documentation
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    55
"
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    56
    documentation to be added.
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    57
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    58
    class:
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    59
        <a short class summary here, describing what instances represent>
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    60
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    61
    responsibilities:    
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    62
        <describing what my main role is>
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    63
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    64
    collaborators:    
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    65
        <describing with whom and how I talk to>
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    66
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    67
    API:
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    68
        <public api and main messages>
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    69
        
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    70
    example:
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    71
        <a one-line examples on how to use - can also be in a separate example method>
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    72
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    73
    implementation:
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    74
        <implementation points>
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    75
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    76
    [author:]
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    77
        Claus Gittinger
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    78
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    79
    [instance variables:]
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    80
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    81
    [class variables:]
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    82
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    83
    [see also:]
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    84
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    85
"
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    86
!
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    87
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    88
examples
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    89
"
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    90
 Notice that everything between [exBegin] and [exEnd] is extracted by the html-doc generator
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    91
 to create nicely formatted and clickable executable examples in the generated html-doc.
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    92
 (see the browser's class-documentation menu items for more)
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    93
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    94
 opening the application:
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    95
                                                        [exBegin]
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    96
    HGSourceCodeManagementSettingsAppl open
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    97
                                                        [exEnd]
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    98
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
    99
 opening the application on some model:
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   100
                                                        [exBegin]
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   101
    HGSourceCodeManagementSettingsAppl openOn:aModel
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   102
                                                        [exEnd]
7408432b5364 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 874
diff changeset
   103
"
210
54a73fa50d40 Added copyright notice.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 196
diff changeset
   104
! !
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   105
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   106
!HGSourceCodeManagementSettingsAppl class methodsFor:'initialization'!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   107
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   108
initialize
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   109
    "Invoked at system start or when the class is dynamically loaded."
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   110
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   111
    "/ please change as required (and remove this comment)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   112
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   113
    IgnoreCheckUsername := false.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   114
    IgnoreCheckMenuLayout := false.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   115
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   116
    "Modified: / 18-02-2014 / 11:46:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   117
! !
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   118
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   119
!HGSourceCodeManagementSettingsAppl class methodsFor:'image specs'!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   120
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   121
defaultIcon
500
de559e4d92ec Mark program icons with resource
Stefan Vogel <sv@exept.de>
parents: 498
diff changeset
   122
    <resource: #programImage>
de559e4d92ec Mark program icons with resource
Stefan Vogel <sv@exept.de>
parents: 498
diff changeset
   123
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   124
    ^ self defaultIcon3
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   125
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   126
    "Created: / 22-12-2011 / 13:47:11 / cg"
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   127
!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   128
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   129
defaultIcon1
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   130
    <resource: #image>
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   131
    "This resource specification was automatically generated
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   132
     by the ImageEditor of ST/X."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   133
    "Do not manually edit this!! If it is corrupted,
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   134
     the ImageEditor may not be able to read the specification."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   135
    "
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   136
     self defaultIcon1 inspect
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   137
     ImageEditor openOnClass:self andSelector:#defaultIcon1
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   138
     Icon flushCachedIcons"
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   139
    
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   140
    ^ Icon 
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   141
        constantNamed:'MercurialSourceCodeManagementSettingsAppl class defaultIcon1'
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   142
        ifAbsentPut:[
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   143
            (Depth8Image new)
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   144
                width:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   145
                height:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   146
                photometric:(#palette);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   147
                bitsPerSample:(#[ 8 ]);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   148
                samplesPerPixel:(1);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   149
                bits:(ByteArray 
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   150
                            fromPackedString:'
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   151
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHCA@PEA D@@@@@@@@@@@@@@@@@@@@GA@ HB@ HB@$C
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   152
B @@@@@@@@@@@@@@@@,IB@ HB@ HB@ LA@4@@@@@@@@@@@@@C LLB@ HB@ HB@ HB@<P@@@@@@@@@@@@BPPHB@ HB@ HB@ HBADR@@@@@@@@@@@@D0$HB@ H
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   153
B@ HB@ HB@ SA@@@@@@@@@@@@APLB@ HB@ HB@ HB@ IEP@@@@@VA@LW@Q OC@ HB@ HB@ HB@ LFPD@@@DLBP\Q@@@ZF0 LB@ HB@ HB@ IF@X@@A0HA!!4^
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   154
@@@SF!!<_@@$HB@ HB@0FH@L@@BDI@AHC@@@@HP@O@BHIB@ HB@LFH0H@@@@ABQ0@@@@@@@@!!A@@DB@ HCA0OI@8@@@@@@@@@@A\@@@@@@@XDB@ HBP8%I D@
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   155
@@@@@@@BA@$D@P@@@@8IB@ LC P''C0@@@@@@@@DIB@ HBQ0@@@8LA@XA@Q<Y@0@@@@@@@@PLB@ DA@@@@@PCB" JC2T[@@@@@@@@@@PLB@PPBP@@@@P)JB$I
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   156
J!!HA@@@@@@@@@B,LBQXCKB,@A XACQP-F0L@@@@@@@@@@@(RK"T,D0@@BA,/LCD@L @@@@@@@@@@@@@@@ $!!@@@@@QTTC@ 3@@@@@@@@@@@@@@@@@@@@@@@@
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   157
@CP\L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   158
                colorMapFromArray:#[ 143 136 136 208 208 208 192 192 184 176 176 176 175 168 168 176 168 168 191 184 184 191 176 176 159 152 144 160 160 160 239 232 224 192 184 184 159 152 160 207 192 200 207 200 200 144 144 144 224 224 224 160 152 160 127 120 120 144 144 136 128 128 128 111 104 104 207 200 208 239 232 240 95 88 88 96 96 96 79 72 80 112 112 120 192 192 200 223 208 208 111 104 96 80 80 80 64 64 64 223 216 216 128 120 128 31 24 24 32 32 24 79 72 64 64 56 56 47 40 40 240 240 240 239 224 224 63 48 48 191 184 176 112 112 104 64 64 56 63 56 56 48 48 48 48 40 48 127 112 120 160 160 168 208 200 208 224 224 216 ];
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   159
                mask:((ImageMask new)
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   160
                            width:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   161
                            height:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   162
                            bits:(ByteArray 
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   163
                                        fromPackedString:'@@@@@@@@@G>@@O? @_?0@??8@??8@??<@??<O??>__?>_O?>_G?>NA?>@P_>A<_<C>_<C>_8C>_8C>?0C<? @8?@@@\@@@@@');
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   164
                            yourself);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   165
                yourself
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   166
        ]
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   167
!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   168
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   169
defaultIcon2
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   170
    <resource: #image>
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   171
    "This resource specification was automatically generated
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   172
     by the ImageEditor of ST/X."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   173
    "Do not manually edit this!! If it is corrupted,
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   174
     the ImageEditor may not be able to read the specification."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   175
    "
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   176
     self defaultIcon2 inspect
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   177
     ImageEditor openOnClass:self andSelector:#defaultIcon2
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   178
     Icon flushCachedIcons"
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   179
    
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   180
    ^ Icon 
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   181
        constantNamed:'MercurialSourceCodeManagementSettingsAppl class defaultIcon2'
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   182
        ifAbsentPut:[
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   183
            (Depth8Image new)
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   184
                width:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   185
                height:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   186
                photometric:(#palette);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   187
                bitsPerSample:(#[ 8 ]);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   188
                samplesPerPixel:(1);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   189
                bits:(ByteArray 
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   190
                            fromPackedString:'
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   191
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHCA@PEA D@@@@@@@@@@@@@@@@@@@@GA@ HB@ HB@$C
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   192
B @@@@@@@@@@@@@@@@,IB@ HB@ HB@ LA@4@@@@@@@@@@@@@C LLB@ HB@ HB@ HB@<P@@@@@@@@@@@@BPPHB@ HB@ HB@ HBADR@@@@@@@@@@@@D0$HB@ H
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   193
B@ HB@ HB@ SA@@@@@@@@@@@@APLB@ HB@ HB@ HB@ IEP@@@@@VA@LW@Q OC@ HB@ HB@ HB@ LFPD@@@DLBP\Q@@@ZF0 LB@ HB@ HB@ IF@X@@A0HA!!4^
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   194
@@@SF!!<_@@$HB@ HB@0FH@L@@BDI@AH:N#\7HP@O@BHIB@ HB@LFH0H@@@@ABS\:N#(:M0@!!A@@DB@ HCA0OI@8@@@@@M#(:@A\@@C\@@@XDB@ HBP8%I D@
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   195
@@@@M3 7A@$D@P@@@@8IB@ LC P''C0@@@C\7N#$:N0 HHA0@@@8LA@XA@Q<Y@0@@@@@7NS(7B@  HB@@@@PCB" JC2T[@@@@@@@@M34LBB@<OAP @@P)JB$I
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   196
J!!HA@@@@@@@@@B,LHB@YHB@ A XACQP-F0L@@@@@@@@ @@(RK"T H@@@BA,/LCD@L @@@@@@@@@@HB@ HB@ MP@@@QTTC@ 3@@@@@@@@@@@@@A$ HB@5@@@@
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   197
@CP\L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   198
                colorMapFromArray:#[ 143 136 136 208 208 208 192 192 184 176 176 176 175 168 168 176 168 168 191 184 184 191 176 176 159 152 144 160 160 160 239 232 224 192 184 184 159 152 160 207 192 200 207 200 200 144 144 144 224 224 224 160 152 160 127 120 120 144 144 136 128 128 128 111 104 104 207 200 208 239 232 240 95 88 88 96 96 96 79 72 80 112 112 120 192 192 200 223 208 208 111 104 96 80 80 80 64 64 64 223 216 216 128 120 128 31 24 24 32 32 24 79 72 64 64 56 56 47 40 40 240 240 240 239 224 224 63 48 48 191 184 176 112 112 104 64 64 56 63 56 56 48 48 48 48 40 48 127 112 120 160 160 168 208 200 208 224 224 216 0 0 0 0 64 0 32 96 32 96 192 128 32 128 64 32 160 64 32 128 32 32 32 32 32 64 32 ];
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   199
                mask:((ImageMask new)
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   200
                            width:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   201
                            height:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   202
                            bits:(ByteArray 
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   203
                                        fromPackedString:'@@@@@@@@@G>@@O? @_?0@??8@??8@??<@??<O??>__?>_O?>_??>O=?>GR_>G<_<_>_<O>_8G?_8C??0K<? G<?@C8\@@@@@');
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   204
                            yourself);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   205
                yourself
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   206
        ]
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   207
!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   208
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   209
defaultIcon3
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   210
    <resource: #image>
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   211
    "This resource specification was automatically generated
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   212
     by the ImageEditor of ST/X."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   213
    "Do not manually edit this!! If it is corrupted,
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   214
     the ImageEditor may not be able to read the specification."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   215
    "
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   216
     self defaultIcon3 inspect
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   217
     ImageEditor openOnClass:self andSelector:#defaultIcon3
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   218
     Icon flushCachedIcons"
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   219
    
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   220
    ^ Icon constantNamed:'HGSourceCodeManagementSettingsAppl defaultIcon3'
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   221
        ifAbsentPut:[
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   222
            (Depth8Image new)
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   223
                width:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   224
                height:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   225
                photometric:(#palette);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   226
                bitsPerSample:(#[ 8 ]);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   227
                samplesPerPixel:(1);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   228
                bits:(ByteArray 
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   229
                            fromPackedString:'
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   230
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHCA@PEA D@@@@@@@@@@@@@@@@@@@@GA@ HB@ HB@$C
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   231
B @@@@@@@@@@@@@@@@,IB@ HB@ HB@ LA@4@@@@@@@@@@@@@C LLB@ HB@ HB@ HB@<N@@@@@@@@@@@@BPPHB@ HB@ HB@ HBADR@@@@@@@@@@@@D0$HB@ H
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   232
B@ HB@ HB@ SA@@@@@@@@@@@@APLB@ HB@ HB@ HB@ IEP@@@@@VA@LW@Q OC@ HB@ HB@ HB@ LFPD@@@DLBP\Q@@@ZF0 LB@ HB@ HB@ IF@X@@A0HA!!4^
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   233
@@@SF!!<_@@$HB@ HB@0FH@L@@BDI@AH:N#\7HP@O@BHIB@ HB@LFH0H@@@@ABS\:N#(:M0@!!A@@DB@ HCA0OI@8@@@@@M#(:@A\@@C\@@@XDB@ HBP8%I D@
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   234
@@@@M3 7A@$D@P@@@@8IB@ LDA@''C0@@@C\7N#$:N0 HOA0@@@8LA@XADA@Y@0@@@@@7NS(7B@ <OC0@@@PCB" JDA@[@@@@@@@@M4@LBC0?O38<@@P)DA@P
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   235
DA@PDA@@@@@@@B,LOC0=OC0<A XADA@PDA@PDA@@@@@<@@(RK"T<O@@@BA,/LCD@DA@@@@@@@@@@OC0<OC0<MP@@@QTTC@ 3DA@@@@@@@@@@@C4<OC05@@@@
501
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   236
@CP\L0@@DA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   237
                colorMapFromArray:#[ 174 169 169 255 255 255 233 233 230 216 216 216 213 209 209 214 209 209 232 229 229 229 223 223 191 187 181 197 197 197 255 255 255 233 230 230 194 189 194 247 244 245 251 250 250 177 177 177 131 0 0 194 189 194 155 149 149 175 175 169 157 157 157 136 128 128 251 251 251 255 255 255 117 108 108 118 118 118 97 89 98 139 139 147 240 240 242 255 255 255 137 128 118 98 98 98 79 79 79 255 255 255 156 149 156 38 30 30 39 39 30 97 89 79 79 69 69 58 49 49 255 255 255 255 255 255 77 59 59 229 226 223 137 137 128 79 79 69 77 69 69 59 59 59 59 49 59 154 140 147 199 199 204 251 251 251 255 255 255 0 0 0 0 64 0 32 96 32 96 192 128 32 128 64 32 160 64 32 128 32 64 64 64 96 96 96 128 128 128 32 32 32 32 64 32 ];
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   238
                mask:((ImageMask new)
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   239
                            width:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   240
                            height:24;
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   241
                            bits:(ByteArray 
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   242
                                        fromPackedString:'@@@@@@@@@G>@@O? @_?0@??8@??8@??<@??<O??>__?>_O?>_??>O=?>GR_>G<_<_>_<O>_8G?_>C??>K<?0G<?0C8\0@@@@');
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   243
                            yourself);
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   244
                yourself
4be1efdcbf41 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 500
diff changeset
   245
        ]
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   246
!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   247
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   248
defaultLogo
850
9c354eda73cc #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
   249
    <resource: #programImage>
9c354eda73cc #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
   250
65
f693fc95ec17 - nicer icon
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents: 54
diff changeset
   251
    ^ HGIconLibrary hgLogo2
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   252
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   253
    "Created: / 04-10-2012 / 19:01:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
65
f693fc95ec17 - nicer icon
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents: 54
diff changeset
   254
    "Modified: / 15-11-2012 / 23:12:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
850
9c354eda73cc #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 742
diff changeset
   255
    "Modified: / 28-07-2018 / 09:56:23 / Claus Gittinger"
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   256
! !
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   257
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   258
!HGSourceCodeManagementSettingsAppl class methodsFor:'interface specs'!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   259
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   260
windowSpec
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   261
    "This resource specification was automatically generated
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   262
     by the UIPainter of ST/X."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   263
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   264
    "Do not manually edit this!! If it is corrupted,
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   265
     the UIPainter may not be able to read the specification."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   266
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   267
    "
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   268
     UIPainter new openOnClass:HGSourceCodeManagementSettingsAppl andSelector:#windowSpec
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   269
     HGSourceCodeManagementSettingsAppl new openInterface:#windowSpec
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   270
     HGSourceCodeManagementSettingsAppl open
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   271
    "
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   272
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   273
    <resource: #canvas>
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   274
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   275
    ^ 
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   276
    #(FullSpec
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   277
       name: windowSpec
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   278
       window: 
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   279
      (WindowSpec
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   280
         label: 'Mercurial Settings'
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   281
         name: 'Mercurial Settings'
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   282
         min: (Point 10 10)
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   283
         bounds: (Rectangle 0 0 695 627)
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   284
       )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   285
       component: 
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   286
      (SpecCollection
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   287
         collection: (
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   288
          (LabelSpec
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   289
             label: ' Mercurial Settings'
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   290
             name: 'MercurialSettingsTitle'
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   291
             layout: (LayoutFrame 0 0 0 0 0 1 66 0)
683
86155053e3ae #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   292
             style: (FontDescription helvetica medium roman 18 #'iso10646-1' nil nil)
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   293
             backgroundColor: (Color 100.0 100.0 100.0)
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   294
             translateLabel: true
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   295
             adjust: left
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   296
           )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   297
          (LabelSpec
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   298
             label: 'Logo'
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   299
             name: 'MercurialLogo'
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   300
             layout: (LayoutFrame -71 1 -1 0 4 1 65 0)
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   301
             hasCharacterOrientedLabel: false
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   302
             backgroundColor: (Color 100.0 100.0 100.0)
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   303
             translateLabel: true
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   304
             labelChannel: defaultLogo
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   305
           )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   306
          (ViewSpec
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   307
             name: 'OuterPanel'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   308
             layout: (LayoutFrame 0 0 67 0 0 1 0 1)
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   309
             component: 
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   310
            (SpecCollection
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   311
               collection: (
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   312
                (SubCanvasSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   313
                   name: 'InfoPanel'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   314
                   layout: (LayoutFrame 0 0 0 0 0 1 40 0)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   315
                   level: 0
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   316
                   initiallyInvisible: true
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   317
                   hasHorizontalScrollBar: false
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   318
                   hasVerticalScrollBar: false
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   319
                   clientKey: infoPanel
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   320
                   createNewBuilder: false
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   321
                 )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   322
                (ViewSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   323
                   name: 'InnerPanel'
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   324
                   layout: (LayoutFrame 0 0 0 0 0 1 0 1)
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   325
                   component: 
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   326
                  (SpecCollection
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   327
                     collection: (
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   328
                      (CheckBoxSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   329
                         label: 'Show in Menus'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   330
                         name: 'CheckBox1'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   331
                         layout: (LayoutFrame 0 0 0 0 0 1 30 0)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   332
                         activeHelpKey: shownInBrowserMenus
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   333
                         model: shownInBrowserMenusHolder
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   334
                         translateLabel: true
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   335
                       )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   336
                      (ViewSpec
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   337
                         name: 'Settings'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   338
                         layout: (LayoutFrame 0 0 40 0 0 1 0 1)
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   339
                         component: 
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   340
                        (SpecCollection
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   341
                           collection: (
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   342
                            (VerticalPanelViewSpec
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   343
                               name: 'GeneralSettingsPanel'
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   344
                               layout: (LayoutFrame 0 0 0 0 0 1 0 1)
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   345
                               horizontalLayout: fit
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   346
                               verticalLayout: top
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   347
                               horizontalSpace: 3
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   348
                               verticalSpace: 3
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   349
                               component: 
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   350
                              (SpecCollection
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   351
                                 collection: (
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   352
                                  (ViewSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   353
                                     name: 'Panel1'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   354
                                     component: 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   355
                                    (SpecCollection
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   356
                                       collection: (
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   357
                                        (LabelSpec
683
86155053e3ae #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   358
                                           label: '''hg'' Command:'
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   359
                                           name: 'CommandLabel'
683
86155053e3ae #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   360
                                           layout: (LayoutFrame 5 0 -3 0 150 0 27 0)
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   361
                                           translateLabel: true
683
86155053e3ae #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   362
                                           adjust: right
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   363
                                         )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   364
                                        (FilenameInputFieldSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   365
                                           name: 'HGCommand'
683
86155053e3ae #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   366
                                           layout: (LayoutFrame 150 0 0 0 -100 1 0 1)
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   367
                                           enableChannel: hgEnabled
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   368
                                           model: hgCommand
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   369
                                           acceptOnPointerLeave: true
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   370
                                           emptyFieldReplacementText: 'Autodetect'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   371
                                         )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   372
                                        (ActionButtonSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   373
                                           label: 'Test'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   374
                                           name: 'HGCommandTest'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   375
                                           layout: (LayoutFrame -100 1 0 0 -8 1 0 1)
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   376
                                           visibilityChannel: false
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   377
                                           translateLabel: true
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   378
                                           model: doTestHGCommand
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   379
                                         )
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   380
                                        (ActionButtonSpec
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   381
                                           label: 'Browse'
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   382
                                           name: 'BrowseButton'
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   383
                                           layout: (LayoutFrame -100 1 0 0 -8 1 0 1)
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   384
                                           translateLabel: true
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   385
                                           model: doSelectHGCommand
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   386
                                           enableChannel: hgEnabled
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   387
                                         )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   388
                                        )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   389
                                      
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   390
                                     )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   391
                                     extent: (Point 695 25)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   392
                                   )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   393
                                  (ViewSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   394
                                     name: 'Spacer1'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   395
                                     extent: (Point 695 15)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   396
                                   )
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   397
                                  (CheckBoxSpec
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   398
                                     label: 'Automatically push changes to upstream repository'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   399
                                     name: 'CheckBox2'
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   400
                                     enableChannel: hgEnabled
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   401
                                     model: hgAutopush
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   402
                                     translateLabel: true
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   403
                                     extent: (Point 695 22)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   404
                                   )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   405
                                  (ViewSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   406
                                     name: 'Spacer2'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   407
                                     extent: (Point 695 14)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   408
                                   )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   409
                                  (ViewSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   410
                                     name: 'SettingsFile'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   411
                                     component: 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   412
                                    (SpecCollection
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   413
                                       collection: (
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   414
                                        (LabelSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   415
                                           label: 'Mercurial user configuration file:'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   416
                                           name: 'Label1'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   417
                                           layout: (LayoutFrame 25 0 -1 0 0 1 24 0)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   418
                                           translateLabel: true
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   419
                                           adjust: left
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   420
                                         )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   421
                                        (LinkButtonSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   422
                                           label: 'LinkButton'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   423
                                           name: 'EditPreferences'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   424
                                           layout: (LayoutFrame 25 0 28 0 -100 1 58 0)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   425
                                           foregroundColor: (Color 0.0 0.0 100.0)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   426
                                           translateLabel: true
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   427
                                           labelChannel: hgrcAspect
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   428
                                           adjust: left
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   429
                                           model: doEditHGRC
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   430
                                           enableChannel: hgEnabled
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   431
                                         )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   432
                                        (ActionButtonSpec
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   433
                                           label: 'Edit'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   434
                                           name: 'Button1'
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   435
                                           layout: (LayoutFrame -106 1 -17 0.5 -6 1 8 0.5)
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   436
                                           translateLabel: true
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   437
                                           model: doEditHGRC
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   438
                                           enableChannel: hgEnabled
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   439
                                         )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   440
                                        )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   441
                                      
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   442
                                     )
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   443
                                     extent: (Point 695 92)
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   444
                                   )
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   445
                                  )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   446
                                
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   447
                               )
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   448
                             )
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   449
                            )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   450
                          
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   451
                         )
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   452
                       )
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   453
                      )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   454
                    
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   455
                   )
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   456
                 )
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   457
                )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   458
              
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   459
             )
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   460
           )
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   461
          )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   462
        
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   463
       )
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   464
     )
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   465
! !
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   466
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   467
!HGSourceCodeManagementSettingsAppl class methodsFor:'queries'!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   468
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   469
managerClass
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   470
    "backlink to my manager class (needed by the settings app)"
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   471
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   472
    ^ HGSourceCodeManager
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   473
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   474
    "Created: / 19-04-2011 / 12:46:52 / cg"
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   475
    "Modified: / 13-11-2012 / 22:15:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   476
! !
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   477
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   478
!HGSourceCodeManagementSettingsAppl methodsFor:'actions'!
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   479
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   480
doCheckSettings
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   481
    "Perform some sanity check on current configuration"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   482
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   483
    self doCheckUsername ifFalse:[ ^ self ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   484
    self doCheckMenuLayout ifFalse:[ ^ self ].    
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   485
    self doCheckCommand ifFalse:[ ^ self ].    
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   486
     self infoPanel hide.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   487
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   488
    "Created: / 18-02-2014 / 10:04:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   489
    "Modified: / 21-02-2014 / 10:32:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   490
!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   491
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   492
doEditHGRC
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   493
    <resource: #uiCallback>
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   494
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   495
    | hgrc editor |
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   496
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   497
    hgrc := self hgrcAspect value asString string asFilename.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   498
    hgrc exists ifFalse:[ 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   499
        hgrc writingFileDo:[ :s |
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   500
            s nextPutAll: HGConfig userConfigFileTemplate
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   501
        ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   502
    ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   503
    editor := WorkspaceApplication new.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   504
    editor open.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   505
    editor enqueueDelayedAction:[
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   506
        editor loadFile: hgrc.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   507
        editor syntaxHolder value: nil.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   508
    ]
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   509
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   510
    "Modified: / 18-02-2014 / 10:43:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   511
!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   512
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   513
doSelectHGCommand
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   514
    | guess executable |
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   515
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   516
    guess := OperatingSystem pathOfCommand: 'hg'.
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   517
    executable := Dialog requestFileName:(resources string:'Select hg command') default: guess ifFail:[ ^ self ].
449
d55058b5d58d Try to be fool-proof: when configured command as whole exists as file, use it as it is.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 444
diff changeset
   518
    (executable includes: Character space) ifTrue:[ 
d55058b5d58d Try to be fool-proof: when configured command as whole exists as file, use it as it is.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 444
diff changeset
   519
        executable := '"' , executable , '"'.
d55058b5d58d Try to be fool-proof: when configured command as whole exists as file, use it as it is.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 444
diff changeset
   520
    ].
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   521
    self hgCommand value: executable
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   522
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   523
    "Created: / 21-02-2014 / 10:13:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
449
d55058b5d58d Try to be fool-proof: when configured command as whole exists as file, use it as it is.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 444
diff changeset
   524
    "Modified: / 17-07-2014 / 19:39:31 / jv"
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   525
!
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   526
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   527
doTestHGCommand
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   528
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   529
    self hgCommand value isEmptyOrNil ifTrue:[
183
8f8315881c72 Bugfix in Settings (checking for Mercurial version).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 151
diff changeset
   530
        self doTestHGCommand: HGCommand hgCommand
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   531
    ] ifFalse:[
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   532
        self doTestHGCommand: self hgCommand value
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   533
    ]
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   534
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   535
    "Created: / 19-11-2012 / 21:32:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
183
8f8315881c72 Bugfix in Settings (checking for Mercurial version).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 151
diff changeset
   536
    "Modified: / 21-01-2013 / 04:59:14 / jv"
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   537
!
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   538
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   539
doTestHGCommand: command
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   540
    | version versionString |
196
30c54b661abd Documentation scripts for Windows
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 195
diff changeset
   541
    (OperatingSystem canExecuteCommand: command) ifFalse:[
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   542
        Dialog warn: 'Cannot execute hg command.\\Make sure Metcurial is installed and PATH is set up correctly' withCRs.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   543
        ^self.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   544
    ].
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   545
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   546
    [
183
8f8315881c72 Bugfix in Settings (checking for Mercurial version).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 151
diff changeset
   547
        versionString := OperatingSystem getCommandOutputFrom:('"%1" --version' bindWith:command).
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   548
        version := (HGCommandParser on: versionString) parseCommandVersion.
196
30c54b661abd Documentation scripts for Windows
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 195
diff changeset
   549
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   550
        (HGCommand hgVersionIsSupported:version) ifTrue:[
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   551
            Dialog information: ('Installed Mercurial version is OK.\\Reported version: ', versionString) withCRs.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   552
        ] ifFalse:[
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   553
            Dialog warn: ('Installed Mercurial is not (yet) supported.\\Reported version: ', versionString) withCRs.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   554
        ].
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   555
    ] on: HGCommandError do:[
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   556
        Dialog warn: 'Failed to read ''',command,' --version'''.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   557
        ^self
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   558
    ].
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   559
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   560
    "Created: / 19-11-2012 / 21:32:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
183
8f8315881c72 Bugfix in Settings (checking for Mercurial version).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 151
diff changeset
   561
    "Modified: / 21-01-2013 / 05:12:39 / jv"
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   562
! !
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   563
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   564
!HGSourceCodeManagementSettingsAppl methodsFor:'actions-checks'!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   565
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   566
doCheckCommand
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   567
    "Check `hg` command. Return true if `hg` command exists
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   568
     and of supported version, false otherwise."
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   569
444
8987b87a562a hg command setting refactored to allow command and arguments to be specified.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 378
diff changeset
   570
    | command |
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   571
444
8987b87a562a hg command setting refactored to allow command and arguments to be specified.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 378
diff changeset
   572
    command := self hgCommand value.
8987b87a562a hg command setting refactored to allow command and arguments to be specified.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 378
diff changeset
   573
    command isEmptyOrNil ifTrue:[         
8987b87a562a hg command setting refactored to allow command and arguments to be specified.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 378
diff changeset
   574
        command := OperatingSystem pathOfCommand:'hg'.
8987b87a562a hg command setting refactored to allow command and arguments to be specified.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 378
diff changeset
   575
        command isNil ifTrue:[ 
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   576
            self infoPanel 
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   577
                reset;
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   578
                beWarning;
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   579
                message: (resources string:'Cannot find path to `hg` command');
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   580
                addButtonWithLabel: (self resources string:'Browse') action: [self infoPanel hide. self doSelectHGCommand ];
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   581
                show.            
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   582
            ^ false                
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   583
        ].
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   584
    ].
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   585
    [
444
8987b87a562a hg command setting refactored to allow command and arguments to be specified.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 378
diff changeset
   586
        HGCommand hgCommandValidate: command 
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   587
    ] on: HGInvalidVersionError do:[:ex | 
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   588
        self infoPanel 
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   589
            reset;
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   590
            beWarning;
874
d99aae20b9ea #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 855
diff changeset
   591
            message: (resources string:'Unsupported Mercurial version %1' with: (ex parameter asStringWith: $.));
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   592
            addButtonWithLabel: (self resources string:'Browse') action: [self infoPanel hide. self doSelectHGCommand ];
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   593
            show.            
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   594
        ^ false                            
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   595
    ] on: HGCommandError do:[:ex |
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   596
        self infoPanel 
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   597
            reset;
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   598
            beWarning;
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   599
            message: (resources string:ex description);
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   600
            addButtonWithLabel: (self resources string:'Browse') action: [self infoPanel hide. self doSelectHGCommand ];
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   601
            show.            
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   602
        ^ false                            
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   603
    ].
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   604
    ^ true.
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   605
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   606
    "Created: / 21-02-2014 / 09:58:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
874
d99aae20b9ea #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 855
diff changeset
   607
    "Modified: / 08-06-2019 / 13:51:56 / Claus Gittinger"
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   608
!
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   609
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   610
doCheckMenuLayout
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   611
    "Check if browser SCM menu layouyt is not #old. Return true, if yes,
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   612
     false otherwise. As a sideffect, show message in info panel"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   613
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   614
    IgnoreCheckUsername ifTrue:[ ^ true ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   615
    (UserPreferences current sourceCodeManagementMenuLayout = #old) ifTrue:[ 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   616
        self infoPanel 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   617
            reset;
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   618
            beWarning;
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   619
            message: (resources string:'SCM menu layout in set to ''old'' which does not support HG');
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   620
            addButtonWithLabel: (self resources string:'Use ''Compact''') action: [
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   621
                UserPreferences current sourceCodeManagementMenuLayout: #compact.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   622
                (Dialog confirm: (resources string: 'Settings changed to ''Compact''\\Save settings?') withCRs) ifTrue:[ 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   623
                    SettingsDialog saveSettingsWithoutAskingForFile
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   624
                ].
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   625
                self doCheckCommand
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   626
            ];
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   627
            addButtonWithLabel: (self resources string:'Use ''Inline''') action: [
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   628
                UserPreferences current sourceCodeManagementMenuLayout: #inline.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   629
                (Dialog confirm: (resources string: 'Settings changed to ''Compact''\\Save settings?') withCRs) ifTrue:[ 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   630
                    SettingsDialog saveSettingsWithoutAskingForFile
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   631
                ].
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   632
                self doCheckCommand
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   633
            ];
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   634
            addButtonWithLabel: (resources string:'Ignore') action: [IgnoreCheckUsername := true.  self infoPanel hide.];
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   635
            show.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   636
        ^ false
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   637
    ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   638
    ^ true.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   639
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   640
    "Created: / 18-02-2014 / 11:46:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   641
    "Modified: / 21-02-2014 / 10:32:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   642
!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   643
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   644
doCheckUsername
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   645
    "Check if username is configured. Return true, if yes,
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   646
     false otherwise. As a sideffect, show message in info panel"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   647
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   648
    | username |
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   649
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   650
    IgnoreCheckUsername ifTrue:[ ^ true ].
543
7de1b340a316 class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 512
diff changeset
   651
    [
7de1b340a316 class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 512
diff changeset
   652
        username := HGConfig userConfig ui_username.
7de1b340a316 class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 512
diff changeset
   653
    ] on:HGCommandError do:[
7de1b340a316 class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 512
diff changeset
   654
    ].
7de1b340a316 class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 512
diff changeset
   655
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   656
    "/ Check for lazy users which only uncomment the line and
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   657
    "/ does not bother with filling in proper values. See
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   658
    "/ HGConfig userConfigFileTemplate          
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   659
    (username isNil or:[username = 'FirstName LastName <Email>']) ifTrue:[ 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   660
        self infoPanel 
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   661
            reset;
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   662
            beWarning;
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   663
            message: (resources string:'Commit author signature not configured');
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   664
            addButtonWithLabel: (self resources string:'Edit') action: [self doEditHGRC. self doCheckMenuLayout];
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   665
            addButtonWithLabel: (resources string:'Ignore') action: [IgnoreCheckUsername := true. self doCheckMenuLayout];
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   666
            show.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   667
        ^ false
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   668
    ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   669
    ^ true.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   670
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   671
    "Created: / 18-02-2014 / 11:30:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   672
! !
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   673
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   674
!HGSourceCodeManagementSettingsAppl methodsFor:'aspects'!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   675
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   676
hgAutopush
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   677
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   678
    hgAutopush isNil ifTrue:[
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   679
        hgAutopush := self settingsAspectFor: #hgAutopush
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   680
    ].
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   681
    ^ hgAutopush
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   682
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   683
    "Created: / 10-12-2012 / 02:38:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   684
!
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   685
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   686
hgCommand
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   687
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   688
    hgCommand isNil ifTrue:[
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   689
        hgCommand := self settingsAspectFor: #hgCommand.
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   690
        hgCommand onChangeSend: #doCheckCommand to: self.
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   691
    ].
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   692
    ^ hgCommand
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   693
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   694
    "Modified: / 21-02-2014 / 10:33:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   695
!
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   696
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   697
hgDiff2Command
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   698
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   699
    hgDiff2Command isNil ifTrue:[
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   700
        hgDiff2Command := self settingsAspectFor: #hgDiff2Command
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   701
    ].
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   702
    ^ hgDiff2Command
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   703
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   704
    "Created: / 19-11-2012 / 21:30:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   705
!
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   706
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   707
hgDiff3Command
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   708
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   709
    hgDiff3Command isNil ifTrue:[
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   710
        hgDiff3Command := self settingsAspectFor: #hgDiff3Command
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   711
    ].
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   712
    ^ hgDiff3Command
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   713
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   714
    "Created: / 19-11-2012 / 21:30:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   715
!
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   716
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   717
hgrcAspect
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   718
    <resource: #uiAspect>
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   719
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   720
    hgrcAspect isNil ifTrue:[
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   721
        | hgrc |
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   722
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   723
        hgrc := HGConfig userConfigFile asString asText.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   724
        hgrc actionForAll:[ self doEditHGRC ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   725
        hgrcAspect := hgrc asValue.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   726
    ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   727
    ^ hgrcAspect.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   728
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   729
    "Modified: / 18-02-2014 / 10:40:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   730
!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   731
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   732
infoPanel
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   733
    infoPanel isNil ifTrue:[
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   734
        infoPanel := Tools::InlineMessageDialog new
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   735
    ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   736
    ^ infoPanel
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   737
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   738
    "Created: / 09-02-2012 / 19:23:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   739
    "Modified: / 18-02-2014 / 10:02:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   740
!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   741
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   742
settings
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   743
    ^#(hgCommand hgAutopush)
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   744
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   745
    "Created: / 10-12-2012 / 02:40:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   746
!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   747
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   748
shownInBrowserMenusHolder
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   749
    shownInBrowserMenusHolder isNil ifTrue:[
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   750
        shownInBrowserMenusHolder := true asValue.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   751
        shownInBrowserMenusHolder onChangeSend:#updateModifiedChannel to:self.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   752
        shownInBrowserMenusHolder onChangeSend:#doCheckSettings to:self.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   753
    ].
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   754
    ^ shownInBrowserMenusHolder.
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   755
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   756
    "Created: / 18-02-2014 / 10:05:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   757
! !
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   758
378
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   759
!HGSourceCodeManagementSettingsAppl methodsFor:'aspects-queries'!
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   760
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   761
hgEnabled
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   762
    ^ self shownInBrowserMenusHolder
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   763
5c36325d6f60 Better `hg` command configuration handling and validation.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 375
diff changeset
   764
    "Created: / 21-02-2014 / 10:37:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   765
! !
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   766
497
cffa1d498c9a wiki url
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   767
!HGSourceCodeManagementSettingsAppl methodsFor:'help'!
cffa1d498c9a wiki url
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   768
cffa1d498c9a wiki url
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   769
editorHelpRelativeWikiURL
cffa1d498c9a wiki url
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   770
    "the relative URL of the dialog-description in the Wiki"
cffa1d498c9a wiki url
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   771
cffa1d498c9a wiki url
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   772
    ^ 'Settings_HGSourceCodeManagerSettings'
cffa1d498c9a wiki url
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   773
! !
cffa1d498c9a wiki url
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   774
80
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   775
!HGSourceCodeManagementSettingsAppl methodsFor:'helpers'!
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   776
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   777
settingsAspectFor: settingName
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   778
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   779
    |holder|
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   780
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   781
    self createBuilder.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   782
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   783
    (holder := builder bindingAt:settingName) isNil ifTrue:[
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   784
        holder := (currentUserPrefs perform: settingName asSymbol) asValue.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   785
        holder onChangeSend:#updateModifiedChannel to:self.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   786
        builder aspectAt:settingName put:holder
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   787
    ].
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   788
    ^ holder.
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   789
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   790
    "Created: / 25-05-2009 / 18:43:42 / Jan Vrany <vranyj1@fel.cvut.cz>"
8f300696b26b Added configurable path to 'hg' command.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 67
diff changeset
   791
    "Modified: / 22-12-2011 / 15:13:37 / cg"
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   792
! !
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   793
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   794
!HGSourceCodeManagementSettingsAppl methodsFor:'hooks'!
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   795
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   796
commonPostOpen
742
9454fad5faf1 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 683
diff changeset
   797
    super commonPostOpen.
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   798
    self doCheckSettings
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   799
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   800
    "Created: / 18-02-2014 / 10:05:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   801
! !
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   802
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   803
!HGSourceCodeManagementSettingsAppl methodsFor:'protocol'!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   804
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   805
basicReadSettings
49
ffb879bfafe7 - stx_libscm_mercurial
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents: 46
diff changeset
   806
    self shownInBrowserMenusHolder value:HGSourceCodeManager shownInBrowserMenus.
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   807
    self readAspects:self settings from:currentUserPrefs
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   808
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   809
    "Modified: / 10-12-2012 / 02:41:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   810
!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   811
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   812
basicSaveSettings
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   813
    HGSourceCodeManager shownInBrowserMenus:self shownInBrowserMenusHolder value.
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   814
    self writeAspects: self settings to: currentUserPrefs
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   815
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   816
    "Modified: / 10-12-2012 / 02:40:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   817
!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   818
192
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   819
help
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   820
    |filename|
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   821
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   822
    filename := self helpFilename.
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   823
    filename isNil ifTrue:[
855
2a1f45756924 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
   824
        self warn:('Sorry - no Help available here.').
192
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   825
        ^ self.
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   826
    ].
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   827
    self withWaitCursorDo:[
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   828
        | file |
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   829
196
30c54b661abd Documentation scripts for Windows
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 195
diff changeset
   830
        file := (HTMLDocumentView helpFileFor: filename) asFilename.
192
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   831
        file isNil ifTrue:[
196
30c54b661abd Documentation scripts for Windows
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 195
diff changeset
   832
            file := (Smalltalk getPackageDirectoryForPackage: self class package) / 'docs' / 'output' / 'html' / 'settings.html'.
192
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   833
        ].
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   834
        file exists ifTrue:[
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   835
            HTMLDocumentView openDocumentation: file.
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   836
        ] ifFalse:[
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   837
            self warn:'Missing help file: doc/online/<language>/help/' , filename,'\\You can download missing files from "www.exept.de".' withCRs.
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   838
        ]
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   839
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   840
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   841
    ].
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   842
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   843
    "Created: / 22-01-2013 / 20:39:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
855
2a1f45756924 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
   844
    "Modified: / 09-08-2018 / 15:30:52 / Claus Gittinger"
192
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   845
!
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   846
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   847
helpFilename
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   848
    "subclasses must return the relative name of a helpFile
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   849
     in the doc/online/<language>/help directory.
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   850
     Or nil, if no help is available."
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   851
196
30c54b661abd Documentation scripts for Windows
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 195
diff changeset
   852
    ^'HG/settings.html'.
192
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   853
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   854
    "
196
30c54b661abd Documentation scripts for Windows
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 195
diff changeset
   855
        HGSourceCodeManagementSettingsAppl basicNew help
192
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   856
    "
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   857
c40e091cc26e Added reference to help file.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 183
diff changeset
   858
    "Modified (comment): / 22-01-2013 / 20:37:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   859
! !
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   860
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   861
!HGSourceCodeManagementSettingsAppl methodsFor:'queries'!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   862
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   863
hasUnsavedChanges
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   864
49
ffb879bfafe7 - stx_libscm_mercurial
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents: 46
diff changeset
   865
    (HGSourceCodeManager shownInBrowserMenus ~= self shownInBrowserMenusHolder value)
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   866
        ifTrue:[^ true].
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   867
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   868
    ^ self hasChangedAspectIn:self settings asComparedTo: currentUserPrefs
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   869
151
527a1e85aef8 Support for 'autopush' in commit dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 115
diff changeset
   870
    "Modified: / 10-12-2012 / 02:40:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   871
! !
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   872
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   873
!HGSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   874
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   875
version
683
86155053e3ae #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   876
    ^ '$Header$'
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   877
!
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   878
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   879
version_CVS
683
86155053e3ae #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   880
    ^ '$Header$'
498
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   881
!
45cfae5e535b class: HGSourceCodeManagementSettingsAppl
Claus Gittinger <cg@exept.de>
parents: 497
diff changeset
   882
54
66045198bfbc More changes towards self hosting. Some work on model is still missing...
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents: 49
diff changeset
   883
version_HG
115
b1ed2d29054b version_HG changed to return string.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 80
diff changeset
   884
b1ed2d29054b version_HG changed to return string.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 80
diff changeset
   885
    ^ '$Changeset: <not expanded> $'
54
66045198bfbc More changes towards self hosting. Some work on model is still missing...
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents: 49
diff changeset
   886
!
66045198bfbc More changes towards self hosting. Some work on model is still missing...
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents: 49
diff changeset
   887
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   888
version_SVN
683
86155053e3ae #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   889
    ^ '$Id$'
46
d5a192b11a1a - More Smalltalk/X support
vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
parents:
diff changeset
   890
! !
183
8f8315881c72 Bugfix in Settings (checking for Mercurial version).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 151
diff changeset
   891
375
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   892
6ecd3ade39be More sanity check in HG settings dialog.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 339
diff changeset
   893
HGSourceCodeManagementSettingsAppl initialize!