SVN__WorkingCopyBrowser.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 01 Oct 2011 13:05:10 +0200
changeset 817 c258e10fedc3
parent 775 f321c3505bf7
child 975 252400afabd6
permissions -rw-r--r--
checkin to get version methods correct
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     1
"
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     2
 Copyright (c) 2007-2010 Jan Vrany
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     3
 Copyright (c) 2009-2010 eXept Software AG
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     4
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     5
 Permission is hereby granted, free of charge, to any person
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     6
 obtaining a copy of this software and associated documentation
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     7
 files (the 'Software'), to deal in the Software without
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     8
 restriction, including without limitation the rights to use,
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
     9
 copy, modify, merge, publish, distribute, sublicense, and/or sell
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    10
 copies of the Software, and to permit persons to whom the
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    11
 Software is furnished to do so, subject to the following
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    12
 conditions:
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    13
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    14
 The above copyright notice and this permission notice shall be
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    15
 included in all copies or substantial portions of the Software.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    16
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    17
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    18
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    19
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    20
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    21
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    22
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    23
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    24
 OTHER DEALINGS IN THE SOFTWARE.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    25
"
403
7358e44af42e *** empty log message ***
fm
parents: 330
diff changeset
    26
"{ Package: 'stx:libsvn' }"
9
c4040560b58d initial checkin
fm
parents:
diff changeset
    27
c4040560b58d initial checkin
fm
parents:
diff changeset
    28
"{ NameSpace: SVN }"
c4040560b58d initial checkin
fm
parents:
diff changeset
    29
c4040560b58d initial checkin
fm
parents:
diff changeset
    30
Browser subclass:#WorkingCopyBrowser
c4040560b58d initial checkin
fm
parents:
diff changeset
    31
	instanceVariableNames:''
c4040560b58d initial checkin
fm
parents:
diff changeset
    32
	classVariableNames:''
c4040560b58d initial checkin
fm
parents:
diff changeset
    33
	poolDictionaries:''
c4040560b58d initial checkin
fm
parents:
diff changeset
    34
	category:'SVN-UI-Browsers'
c4040560b58d initial checkin
fm
parents:
diff changeset
    35
!
c4040560b58d initial checkin
fm
parents:
diff changeset
    36
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    37
!WorkingCopyBrowser class methodsFor:'documentation'!
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    38
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    39
copyright
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    40
"
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    41
 Copyright (c) 2007-2010 Jan Vrany
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    42
 Copyright (c) 2009-2010 eXept Software AG
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    43
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    44
 Permission is hereby granted, free of charge, to any person
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    45
 obtaining a copy of this software and associated documentation
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    46
 files (the 'Software'), to deal in the Software without
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    47
 restriction, including without limitation the rights to use,
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    48
 copy, modify, merge, publish, distribute, sublicense, and/or sell
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    49
 copies of the Software, and to permit persons to whom the
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    50
 Software is furnished to do so, subject to the following
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    51
 conditions:
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    52
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    53
 The above copyright notice and this permission notice shall be
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    54
 included in all copies or substantial portions of the Software.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    55
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    56
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    57
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    58
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    59
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    60
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    61
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    62
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    63
 OTHER DEALINGS IN THE SOFTWARE.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    64
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    65
"
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    66
! !
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    67
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    68
!WorkingCopyBrowser class methodsFor:'instance creation'!
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    69
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    70
on: aWorkingCopy
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    71
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    72
    ^self new workingCopy: aWorkingCopy
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    73
! !
9
c4040560b58d initial checkin
fm
parents:
diff changeset
    74
c4040560b58d initial checkin
fm
parents:
diff changeset
    75
!WorkingCopyBrowser class methodsFor:'interface specs'!
c4040560b58d initial checkin
fm
parents:
diff changeset
    76
c4040560b58d initial checkin
fm
parents:
diff changeset
    77
windowSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
    78
    "This resource specification was automatically generated
c4040560b58d initial checkin
fm
parents:
diff changeset
    79
     by the UIPainter of ST/X."
c4040560b58d initial checkin
fm
parents:
diff changeset
    80
c4040560b58d initial checkin
fm
parents:
diff changeset
    81
    "Do not manually edit this!! If it is corrupted,
c4040560b58d initial checkin
fm
parents:
diff changeset
    82
     the UIPainter may not be able to read the specification."
c4040560b58d initial checkin
fm
parents:
diff changeset
    83
c4040560b58d initial checkin
fm
parents:
diff changeset
    84
    "
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    85
     UIPainter new openOnClass:SVN::WorkingCopyBrowser andSelector:#windowSpec
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    86
     SVN::WorkingCopyBrowser new openInterface:#windowSpec
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    87
     SVN::WorkingCopyBrowser open
9
c4040560b58d initial checkin
fm
parents:
diff changeset
    88
    "
c4040560b58d initial checkin
fm
parents:
diff changeset
    89
c4040560b58d initial checkin
fm
parents:
diff changeset
    90
    <resource: #canvas>
c4040560b58d initial checkin
fm
parents:
diff changeset
    91
c4040560b58d initial checkin
fm
parents:
diff changeset
    92
    ^ 
c4040560b58d initial checkin
fm
parents:
diff changeset
    93
     #(FullSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
    94
        name: windowSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
    95
        window: 
c4040560b58d initial checkin
fm
parents:
diff changeset
    96
       (WindowSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
    97
          label: 'Working Copy Status'
c4040560b58d initial checkin
fm
parents:
diff changeset
    98
          name: 'Working Copy Status'
c4040560b58d initial checkin
fm
parents:
diff changeset
    99
          min: (Point 10 10)
c4040560b58d initial checkin
fm
parents:
diff changeset
   100
          bounds: (Rectangle 0 0 300 300)
c4040560b58d initial checkin
fm
parents:
diff changeset
   101
        )
c4040560b58d initial checkin
fm
parents:
diff changeset
   102
        component: 
c4040560b58d initial checkin
fm
parents:
diff changeset
   103
       (SpecCollection
c4040560b58d initial checkin
fm
parents:
diff changeset
   104
          collection: (
c4040560b58d initial checkin
fm
parents:
diff changeset
   105
           (DataSetSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
   106
              name: 'WCEntryTable'
c4040560b58d initial checkin
fm
parents:
diff changeset
   107
              layout: (LayoutFrame 0 0 0 0 0 1 -30 1)
c4040560b58d initial checkin
fm
parents:
diff changeset
   108
              model: selectionHolder
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   109
              menu: entryMenu
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   110
              hasHorizontalScrollBar: true
c4040560b58d initial checkin
fm
parents:
diff changeset
   111
              hasVerticalScrollBar: true
c4040560b58d initial checkin
fm
parents:
diff changeset
   112
              dataList: workingCopyEntriesAspect
c4040560b58d initial checkin
fm
parents:
diff changeset
   113
              useIndex: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   114
              columnHolder: wcEntryTableColumns
c4040560b58d initial checkin
fm
parents:
diff changeset
   115
            )
c4040560b58d initial checkin
fm
parents:
diff changeset
   116
           (CheckBoxSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
   117
              label: 'Show only changed etries'
c4040560b58d initial checkin
fm
parents:
diff changeset
   118
              name: 'ShowOnlyChanged'
c4040560b58d initial checkin
fm
parents:
diff changeset
   119
              layout: (LayoutFrame 0 0 -30 1 0 1 0 1)
c4040560b58d initial checkin
fm
parents:
diff changeset
   120
              model: showOnlyChanged
c4040560b58d initial checkin
fm
parents:
diff changeset
   121
              translateLabel: true
c4040560b58d initial checkin
fm
parents:
diff changeset
   122
            )
c4040560b58d initial checkin
fm
parents:
diff changeset
   123
           )
c4040560b58d initial checkin
fm
parents:
diff changeset
   124
         
c4040560b58d initial checkin
fm
parents:
diff changeset
   125
        )
c4040560b58d initial checkin
fm
parents:
diff changeset
   126
      )
c4040560b58d initial checkin
fm
parents:
diff changeset
   127
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   128
c4040560b58d initial checkin
fm
parents:
diff changeset
   129
!WorkingCopyBrowser class methodsFor:'menu specs'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   130
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   131
entryMenu
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   132
    "This resource specification was automatically generated
c4040560b58d initial checkin
fm
parents:
diff changeset
   133
     by the MenuEditor of ST/X."
c4040560b58d initial checkin
fm
parents:
diff changeset
   134
c4040560b58d initial checkin
fm
parents:
diff changeset
   135
    "Do not manually edit this!! If it is corrupted,
c4040560b58d initial checkin
fm
parents:
diff changeset
   136
     the MenuEditor may not be able to read the specification."
c4040560b58d initial checkin
fm
parents:
diff changeset
   137
c4040560b58d initial checkin
fm
parents:
diff changeset
   138
    "
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   139
     MenuEditor new openOnClass:SVN::WorkingCopyBrowser andSelector:#entryMenu
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   140
     (Menu new fromLiteralArrayEncoding:(SVN::WorkingCopyBrowser entryMenu)) startUp
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   141
    "
c4040560b58d initial checkin
fm
parents:
diff changeset
   142
c4040560b58d initial checkin
fm
parents:
diff changeset
   143
    <resource: #menu>
c4040560b58d initial checkin
fm
parents:
diff changeset
   144
c4040560b58d initial checkin
fm
parents:
diff changeset
   145
    ^ 
c4040560b58d initial checkin
fm
parents:
diff changeset
   146
     #(Menu
c4040560b58d initial checkin
fm
parents:
diff changeset
   147
        (
c4040560b58d initial checkin
fm
parents:
diff changeset
   148
         (MenuItem
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   149
            label: 'Show changes'
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   150
            itemValue: entryMenuShowChanges
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   151
            translateLabel: true
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   152
            labelImage: (ResourceRetriever #'SVN::IconLibrary' compare 'Show changes')
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   153
          )
c4040560b58d initial checkin
fm
parents:
diff changeset
   154
         (MenuItem
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   155
            label: '-'
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   156
          )
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   157
         (MenuItem
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   158
            label: 'Revert'
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   159
            itemValue: entryMenuRevert
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   160
            translateLabel: true
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   161
            labelImage: (ResourceRetriever #'SVN::IconLibrary' revert 'Revert')
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   162
          )
c4040560b58d initial checkin
fm
parents:
diff changeset
   163
         )
c4040560b58d initial checkin
fm
parents:
diff changeset
   164
        nil
c4040560b58d initial checkin
fm
parents:
diff changeset
   165
        nil
c4040560b58d initial checkin
fm
parents:
diff changeset
   166
      )
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   167
! !
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   168
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   169
!WorkingCopyBrowser class methodsFor:'others'!
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   170
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   171
version_CVS
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   172
    ^ '$Header$'
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   173
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   174
c4040560b58d initial checkin
fm
parents:
diff changeset
   175
!WorkingCopyBrowser class methodsFor:'plugIn spec'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   176
c4040560b58d initial checkin
fm
parents:
diff changeset
   177
aspectSelectors
c4040560b58d initial checkin
fm
parents:
diff changeset
   178
    "This resource specification was automatically generated
c4040560b58d initial checkin
fm
parents:
diff changeset
   179
     by the UIPainter of ST/X."
c4040560b58d initial checkin
fm
parents:
diff changeset
   180
c4040560b58d initial checkin
fm
parents:
diff changeset
   181
    "Do not manually edit this. If it is corrupted,
c4040560b58d initial checkin
fm
parents:
diff changeset
   182
     the UIPainter may not be able to read the specification."
c4040560b58d initial checkin
fm
parents:
diff changeset
   183
c4040560b58d initial checkin
fm
parents:
diff changeset
   184
    "Return a description of exported aspects;
c4040560b58d initial checkin
fm
parents:
diff changeset
   185
     these can be connected to aspects of an embedding application
c4040560b58d initial checkin
fm
parents:
diff changeset
   186
     (if this app is embedded in a subCanvas)."
c4040560b58d initial checkin
fm
parents:
diff changeset
   187
c4040560b58d initial checkin
fm
parents:
diff changeset
   188
    ^ #(
c4040560b58d initial checkin
fm
parents:
diff changeset
   189
        #model
c4040560b58d initial checkin
fm
parents:
diff changeset
   190
      ).
c4040560b58d initial checkin
fm
parents:
diff changeset
   191
c4040560b58d initial checkin
fm
parents:
diff changeset
   192
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   193
c4040560b58d initial checkin
fm
parents:
diff changeset
   194
!WorkingCopyBrowser class methodsFor:'tableColumns specs'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   195
c4040560b58d initial checkin
fm
parents:
diff changeset
   196
wcEntryTableColumns
c4040560b58d initial checkin
fm
parents:
diff changeset
   197
    "This resource specification was automatically generated
c4040560b58d initial checkin
fm
parents:
diff changeset
   198
     by the DataSetBuilder of ST/X."
c4040560b58d initial checkin
fm
parents:
diff changeset
   199
c4040560b58d initial checkin
fm
parents:
diff changeset
   200
    "Do not manually edit this!! If it is corrupted,
c4040560b58d initial checkin
fm
parents:
diff changeset
   201
     the DataSetBuilder may not be able to read the specification."
c4040560b58d initial checkin
fm
parents:
diff changeset
   202
c4040560b58d initial checkin
fm
parents:
diff changeset
   203
    "
c4040560b58d initial checkin
fm
parents:
diff changeset
   204
     DataSetBuilder new openOnClass:SVN::WorkingCopyStatusUI andSelector:#wcEntryTableColumns
c4040560b58d initial checkin
fm
parents:
diff changeset
   205
    "
c4040560b58d initial checkin
fm
parents:
diff changeset
   206
c4040560b58d initial checkin
fm
parents:
diff changeset
   207
    <resource: #tableColumns>
c4040560b58d initial checkin
fm
parents:
diff changeset
   208
c4040560b58d initial checkin
fm
parents:
diff changeset
   209
    ^#(
c4040560b58d initial checkin
fm
parents:
diff changeset
   210
      (DataSetColumnSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
   211
         label: ''
c4040560b58d initial checkin
fm
parents:
diff changeset
   212
         activeHelpKey: ''
c4040560b58d initial checkin
fm
parents:
diff changeset
   213
         labelButtonType: Button
c4040560b58d initial checkin
fm
parents:
diff changeset
   214
         printSelector: statusIcon
c4040560b58d initial checkin
fm
parents:
diff changeset
   215
         canSelect: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   216
         showRowSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   217
         showColSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   218
       )
c4040560b58d initial checkin
fm
parents:
diff changeset
   219
      (DataSetColumnSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
   220
         label: 'Container'
c4040560b58d initial checkin
fm
parents:
diff changeset
   221
         activeHelpKey: ''
c4040560b58d initial checkin
fm
parents:
diff changeset
   222
         labelButtonType: Button
c4040560b58d initial checkin
fm
parents:
diff changeset
   223
         printSelector: pathText
c4040560b58d initial checkin
fm
parents:
diff changeset
   224
         canSelect: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   225
         showRowSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   226
         showColSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   227
       )
c4040560b58d initial checkin
fm
parents:
diff changeset
   228
      (DataSetColumnSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
   229
         label: 'Rev'
c4040560b58d initial checkin
fm
parents:
diff changeset
   230
         activeHelpKey: ''
c4040560b58d initial checkin
fm
parents:
diff changeset
   231
         labelButtonType: Button
c4040560b58d initial checkin
fm
parents:
diff changeset
   232
         printSelector: revision
c4040560b58d initial checkin
fm
parents:
diff changeset
   233
         canSelect: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   234
         showRowSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   235
         showColSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   236
       )
c4040560b58d initial checkin
fm
parents:
diff changeset
   237
      (DataSetColumnSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
   238
         label: 'Author'
c4040560b58d initial checkin
fm
parents:
diff changeset
   239
         activeHelpKey: ''
c4040560b58d initial checkin
fm
parents:
diff changeset
   240
         labelButtonType: Button
c4040560b58d initial checkin
fm
parents:
diff changeset
   241
         printSelector: author
c4040560b58d initial checkin
fm
parents:
diff changeset
   242
         canSelect: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   243
         showRowSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   244
         showColSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   245
       )
c4040560b58d initial checkin
fm
parents:
diff changeset
   246
      (DataSetColumnSpec
c4040560b58d initial checkin
fm
parents:
diff changeset
   247
         label: 'Date'
c4040560b58d initial checkin
fm
parents:
diff changeset
   248
         activeHelpKey: ''
c4040560b58d initial checkin
fm
parents:
diff changeset
   249
         labelButtonType: Button
c4040560b58d initial checkin
fm
parents:
diff changeset
   250
         printSelector: date
c4040560b58d initial checkin
fm
parents:
diff changeset
   251
         canSelect: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   252
         showRowSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   253
         showColSeparator: false
c4040560b58d initial checkin
fm
parents:
diff changeset
   254
       )
c4040560b58d initial checkin
fm
parents:
diff changeset
   255
      )
c4040560b58d initial checkin
fm
parents:
diff changeset
   256
c4040560b58d initial checkin
fm
parents:
diff changeset
   257
    "Modified: / 18-08-2009 / 14:31:10 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   258
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   259
c4040560b58d initial checkin
fm
parents:
diff changeset
   260
!WorkingCopyBrowser methodsFor:'accessing'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   261
c4040560b58d initial checkin
fm
parents:
diff changeset
   262
workingCopy
c4040560b58d initial checkin
fm
parents:
diff changeset
   263
c4040560b58d initial checkin
fm
parents:
diff changeset
   264
    ^self model
c4040560b58d initial checkin
fm
parents:
diff changeset
   265
c4040560b58d initial checkin
fm
parents:
diff changeset
   266
    "Created: / 11-04-2008 / 10:20:36 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   267
    "Modified: / 12-04-2008 / 21:02:26 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   268
!
c4040560b58d initial checkin
fm
parents:
diff changeset
   269
c4040560b58d initial checkin
fm
parents:
diff changeset
   270
workingCopy: aWorkingCopy
c4040560b58d initial checkin
fm
parents:
diff changeset
   271
c4040560b58d initial checkin
fm
parents:
diff changeset
   272
    self model: aWorkingCopy
c4040560b58d initial checkin
fm
parents:
diff changeset
   273
c4040560b58d initial checkin
fm
parents:
diff changeset
   274
    "Created: / 11-04-2008 / 10:20:22 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   275
    "Modified: / 12-04-2008 / 21:02:34 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   276
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   277
c4040560b58d initial checkin
fm
parents:
diff changeset
   278
!WorkingCopyBrowser methodsFor:'aspects'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   279
c4040560b58d initial checkin
fm
parents:
diff changeset
   280
showOnlyChanged
c4040560b58d initial checkin
fm
parents:
diff changeset
   281
c4040560b58d initial checkin
fm
parents:
diff changeset
   282
    |holder|
c4040560b58d initial checkin
fm
parents:
diff changeset
   283
c4040560b58d initial checkin
fm
parents:
diff changeset
   284
    (holder := builder bindingAt:#showOnlyChanged) isNil ifTrue:[
c4040560b58d initial checkin
fm
parents:
diff changeset
   285
        holder := true asValue.
c4040560b58d initial checkin
fm
parents:
diff changeset
   286
        holder onChangeEvaluate:
c4040560b58d initial checkin
fm
parents:
diff changeset
   287
            [self model changed].
c4040560b58d initial checkin
fm
parents:
diff changeset
   288
        builder aspectAt:#showOnlyChanged put:holder.
c4040560b58d initial checkin
fm
parents:
diff changeset
   289
    ].
c4040560b58d initial checkin
fm
parents:
diff changeset
   290
    ^ holder.
c4040560b58d initial checkin
fm
parents:
diff changeset
   291
c4040560b58d initial checkin
fm
parents:
diff changeset
   292
    "Created: / 21-10-2008 / 18:53:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   293
!
c4040560b58d initial checkin
fm
parents:
diff changeset
   294
c4040560b58d initial checkin
fm
parents:
diff changeset
   295
workingCopyEntriesAspect
c4040560b58d initial checkin
fm
parents:
diff changeset
   296
c4040560b58d initial checkin
fm
parents:
diff changeset
   297
c4040560b58d initial checkin
fm
parents:
diff changeset
   298
    |holder|
c4040560b58d initial checkin
fm
parents:
diff changeset
   299
c4040560b58d initial checkin
fm
parents:
diff changeset
   300
    (holder := builder bindingAt:#workingCopyEntriesAspect) isNil ifTrue:[
c4040560b58d initial checkin
fm
parents:
diff changeset
   301
        holder := (PluggableAdaptor on: self modelHolder)
c4040560b58d initial checkin
fm
parents:
diff changeset
   302
                    getBlock:[:model|self workingCopyEntries]
c4040560b58d initial checkin
fm
parents:
diff changeset
   303
                    putBlock:[:model :value|self error:'Should never be sent']
c4040560b58d initial checkin
fm
parents:
diff changeset
   304
                    updateBlock:[:model :aspect :value|true].
c4040560b58d initial checkin
fm
parents:
diff changeset
   305
        builder aspectAt:#workingCopyEntriesAspect put:holder.
c4040560b58d initial checkin
fm
parents:
diff changeset
   306
    ].
c4040560b58d initial checkin
fm
parents:
diff changeset
   307
    ^ holder.
c4040560b58d initial checkin
fm
parents:
diff changeset
   308
c4040560b58d initial checkin
fm
parents:
diff changeset
   309
    "Created: / 11-04-2008 / 10:24:40 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   310
    "Modified: / 21-10-2008 / 18:55:05 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   311
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   312
c4040560b58d initial checkin
fm
parents:
diff changeset
   313
!WorkingCopyBrowser methodsFor:'hooks'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   314
c4040560b58d initial checkin
fm
parents:
diff changeset
   315
commonPostBuild
c4040560b58d initial checkin
fm
parents:
diff changeset
   316
c4040560b58d initial checkin
fm
parents:
diff changeset
   317
    ^self model changed
c4040560b58d initial checkin
fm
parents:
diff changeset
   318
c4040560b58d initial checkin
fm
parents:
diff changeset
   319
    "Created: / 11-04-2008 / 10:33:10 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   320
    "Modified: / 12-04-2008 / 21:05:05 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   321
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   322
c4040560b58d initial checkin
fm
parents:
diff changeset
   323
!WorkingCopyBrowser methodsFor:'menu actions'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   324
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   325
entryMenuRevert
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   326
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   327
    | entry |
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   328
    entry := self selection.
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   329
    entry ifNotNil:[entry revert]
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   330
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   331
    "Modified: / 09-10-2008 / 20:30:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   332
    "Created: / 05-12-2009 / 20:10:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   333
!
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   334
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   335
entryMenuShowChanges
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   336
    self entryMenuShowChangesAgainst:SVN::Revision head
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   337
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   338
    "Modified: / 09-10-2008 / 20:30:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   339
    "Created: / 05-12-2009 / 20:10:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   340
!
c4040560b58d initial checkin
fm
parents:
diff changeset
   341
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   342
entryMenuShowChangesAgainst:rev 
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   343
    |wc entry wcChangeSet repoChangeSet diffset lang |
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   344
    wc := self model.
c4040560b58d initial checkin
fm
parents:
diff changeset
   345
    entry := self selection.
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   346
    lang := entry programmingLanguage.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   347
    (lang notNil and: [lang isSmalltalk]) ifTrue:[
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   348
        wcChangeSet := wc changeSetForContainer:entry path.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   349
        wcChangeSet name: wcChangeSet name, ' (working copy)'.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   350
        repoChangeSet := wc branch changeSetForContainer:entry path revision:rev.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   351
        diffset := ChangeSetDiff versionA:wcChangeSet versionB:repoChangeSet.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   352
        (Tools::ChangeSetDiffTool new)
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   353
            beSingleColumn;
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   354
            diffset:diffset;
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   355
            title:('%1: Diffbetween working copy and rev. %2 ' bindWith: entry path with: rev printString);
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   356
            open
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   357
    ] ifFalse:[
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   358
        | text1 text2 |
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   359
        text1 := (wc containerReadStreamFor: entry path) contents asString.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   360
        text2 := wc branch cat: entry path.
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   361
        (Tools::TextDiffTool new)
817
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   362
            labelA: 'Working copy';
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   363
            labelB: ('r %1' bindWith: rev printString);
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   364
            textA: text1; textB: text2;
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   365
            title:('%1: Diffbetween working copy and rev. %2 ' bindWith: entry path with: rev printString);
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   366
            open
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   367
    ]
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   368
c4040560b58d initial checkin
fm
parents:
diff changeset
   369
    "Created: / 09-10-2008 / 20:14:24 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   370
    "Modified: / 09-08-2009 / 14:14:21 / Jan Vrany <vranyj1@fel.cvut.cz>"
775
f321c3505bf7 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
   371
    "Modified: / 07-07-2011 / 23:09:09 / jv"
817
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   372
    "Modified: / 01-09-2011 / 12:15:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   373
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   374
c4040560b58d initial checkin
fm
parents:
diff changeset
   375
!WorkingCopyBrowser methodsFor:'private'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   376
c4040560b58d initial checkin
fm
parents:
diff changeset
   377
workingCopyEntries
c4040560b58d initial checkin
fm
parents:
diff changeset
   378
    | status |
c4040560b58d initial checkin
fm
parents:
diff changeset
   379
c4040560b58d initial checkin
fm
parents:
diff changeset
   380
    status := self model status.
c4040560b58d initial checkin
fm
parents:
diff changeset
   381
    ^ self showOnlyChanged value 
c4040560b58d initial checkin
fm
parents:
diff changeset
   382
        ifTrue: [ status reject: [:entry | entry status isNormal ] ]
c4040560b58d initial checkin
fm
parents:
diff changeset
   383
        ifFalse: [ status ]
c4040560b58d initial checkin
fm
parents:
diff changeset
   384
c4040560b58d initial checkin
fm
parents:
diff changeset
   385
    "Created: / 21-10-2008 / 18:55:34 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   386
    "Modified: / 18-08-2009 / 09:12:04 / Jan Vrany <vranyj1@fel.cvut.cz>"
c4040560b58d initial checkin
fm
parents:
diff changeset
   387
! !
c4040560b58d initial checkin
fm
parents:
diff changeset
   388
c4040560b58d initial checkin
fm
parents:
diff changeset
   389
!WorkingCopyBrowser class methodsFor:'documentation'!
c4040560b58d initial checkin
fm
parents:
diff changeset
   390
817
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   391
version
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   392
    ^ '$Header$'
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   393
!
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   394
210
7640b1431703 changed: #version_SVN
fm
parents: 9
diff changeset
   395
version_SVN
817
c258e10fedc3 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 775
diff changeset
   396
    ^ '§Id: SVN__WorkingCopyBrowser.st 367 2011-09-01 11:32:31Z vranyj1 §'
9
c4040560b58d initial checkin
fm
parents:
diff changeset
   397
! !