BookmarkEditor.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 14 Jun 2018 22:19:39 +0100
branchjv
changeset 18227 d25a407ba86d
parent 12431 9f0c59c742d5
child 18532 cccb41254edf
permissions -rw-r--r--
Mini testrunner: show "green" if there's at least one pass and rest is pass or skip This is more meaningfull result then showing "gray" if there's at least one skip.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     2
 Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     3
 Copyright (c) 2009-2010 eXept Software AG
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     5
 Permission is hereby granted, free of charge, to any person
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     6
 obtaining a copy of this software and associated documentation
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     7
 files (the 'Software'), to deal in the Software without
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     8
 restriction, including without limitation the rights to use,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
     9
 copy, modify, merge, publish, distribute, sublicense, and/or sell
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    10
 copies of the Software, and to permit persons to whom the
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    11
 Software is furnished to do so, subject to the following
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    12
 conditions:
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    13
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    14
 The above copyright notice and this permission notice shall be
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    15
 included in all copies or substantial portions of the Software.
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    16
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    17
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    18
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    19
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    20
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    21
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    22
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    23
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    24
 OTHER DEALINGS IN THE SOFTWARE.
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"{ Package: 'stx:libtool' }"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
SimpleDialog subclass:#BookmarkEditor
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
	instanceVariableNames:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
	classVariableNames:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
	poolDictionaries:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
	category:'Interface-Bookmarks'
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!BookmarkEditor class methodsFor:'documentation'!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
copyright
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    39
 Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    40
 Copyright (c) 2009-2010 eXept Software AG
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    41
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    42
 Permission is hereby granted, free of charge, to any person
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    43
 obtaining a copy of this software and associated documentation
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    44
 files (the 'Software'), to deal in the Software without
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    45
 restriction, including without limitation the rights to use,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    46
 copy, modify, merge, publish, distribute, sublicense, and/or sell
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    47
 copies of the Software, and to permit persons to whom the
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    48
 Software is furnished to do so, subject to the following
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    49
 conditions:
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
10082
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    51
 The above copyright notice and this permission notice shall be
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    52
 included in all copies or substantial portions of the Software.
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    53
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    54
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    55
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    56
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    57
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    58
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    59
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    60
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
bdb956e8e195 copyright
Claus Gittinger <cg@exept.de>
parents: 9973
diff changeset
    61
 OTHER DEALINGS IN THE SOFTWARE.
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
! !
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
!BookmarkEditor class methodsFor:'documentation'!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
version_CVS
12123
4bde08cebd48 trunk branched into /branches/jv
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 10082
diff changeset
    68
    ^ '§Header: /cvs/stx/stx/libtool/BookmarkEditor.st,v 1.2 2011/07/03 18:00:45 cg Exp §'
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    71
version_HG
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    72
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    73
    ^ '$Changeset: <not expanded> $'
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    74
!
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    75
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
version_SVN
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    77
    ^ '$Id: BookmarkEditor.st 7854 2012-01-30 17:49:41Z vranyj1 $'
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    78
! !
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    79