arcadia 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. data/README +69 -77
  2. data/arcadia.rb +1097 -770
  3. data/base/a-commons.rb +480 -0
  4. data/base/a-contracts.rb +207 -322
  5. data/base/{a-utils.rb → a-tkcommons.rb} +933 -993
  6. data/conf/arcadia.conf +130 -203
  7. data/conf/arcadia.res.rb +1332 -1325
  8. data/ext/ae-action-dispatcher/ae-action-dispatcher.conf +6 -0
  9. data/ext/ae-action-dispatcher/ae-action-dispatcher.rb +22 -0
  10. data/ext/ae-complete-code/ae-complete-code.conf +2 -2
  11. data/ext/ae-complete-code/ae-complete-code.rb +82 -80
  12. data/ext/ae-doc-code/ae-doc-code.conf +2 -2
  13. data/ext/ae-doc-code/ae-doc-code.rb +114 -111
  14. data/ext/ae-editor/ae-editor.conf +110 -105
  15. data/ext/ae-editor/ae-editor.rb +2501 -2287
  16. data/ext/ae-editor/langs/conf.lang +15 -0
  17. data/ext/ae-editor/langs/lang.lang.bind +1 -0
  18. data/ext/ae-editor/langs/rb.lang +67 -0
  19. data/ext/ae-editor/langs/rbw.lang.bind +1 -0
  20. data/ext/ae-event-log/ae-event-log.rb +45 -52
  21. data/ext/ae-file-history/ae-file-history.conf +4 -4
  22. data/ext/ae-file-history/ae-file-history.rb +298 -286
  23. data/ext/ae-flag/ae-flag.conf +6 -6
  24. data/ext/ae-flag/ae-flag.rb +12 -12
  25. data/ext/ae-inspector/ae-inspector.conf +3 -3
  26. data/ext/ae-inspector/ae-inspector.rb +2 -2
  27. data/ext/ae-output-event/ae-output-event.conf +15 -15
  28. data/ext/ae-output/ae-output.conf +5 -3
  29. data/ext/ae-output/ae-output.rb +62 -33
  30. data/ext/ae-palette/ae-palette.conf +3 -3
  31. data/ext/ae-palette/ae-palette.rb +265 -306
  32. data/ext/ae-rad/ae-rad-inspector.rb +1534 -0
  33. data/{base/a-libs.rb → ext/ae-rad/ae-rad-libs.rb} +1118 -846
  34. data/ext/ae-rad/ae-rad-palette.rb +273 -0
  35. data/ext/ae-rad/ae-rad.conf +71 -0
  36. data/ext/ae-rad/ae-rad.rb +56 -0
  37. data/{lib → ext/ae-rad/lib}/tk/al-tk.rb +21 -110
  38. data/{lib → ext/ae-rad/lib}/tk/al-tk.res.rb +0 -0
  39. data/{lib → ext/ae-rad/lib}/tk/al-tkarcadia.rb +26 -26
  40. data/{lib → ext/ae-rad/lib}/tk/al-tkcustom.rb +70 -70
  41. data/{lib → ext/ae-rad/lib}/tkext/al-bwidget.rb +194 -194
  42. data/{lib → ext/ae-rad/lib}/tkext/al-iwidgets.rb +25 -25
  43. data/{lib → ext/ae-rad/lib}/tkext/al-tile.rb +173 -173
  44. data/{lib → ext/ae-rad/lib}/tkext/al-tktable.rb +0 -0
  45. data/ext/ae-ruby-debug/ae-ruby-debug.conf +7 -4
  46. data/ext/ae-ruby-debug/ae-ruby-debug.rb +278 -142
  47. data/ext/ae-search-in-files/ae-search-in-files.conf +15 -0
  48. data/ext/ae-search-in-files/ae-search-in-files.rb +284 -0
  49. data/ext/ae-shell/ae-shell.rb +88 -8
  50. data/ext/ae-shell/sh.rb +7 -0
  51. metadata +93 -79
  52. data/base/a-contracts-work.rb +0 -219
  53. data/base/a-ext.rb +0 -280
  54. data/ext/ae-debug/ae-debug.conf +0 -7
  55. data/ext/ae-debug/ae-debug.rb +0 -601
  56. data/ext/ae-debug/debug1.57.rb +0 -998
@@ -0,0 +1,15 @@
1
+ name=search_in_files
2
+ labels=Search in files
3
+ frames=1.1
4
+ active=yes
5
+ require=ext/ae-search-in-files/ae-search-in-files
6
+ class=SearchInFilesService
7
+
8
+ font=courier 10
9
+ font.bold=courier 10 bold
10
+ color.background=#ffffff
11
+ color.foreground=#000000
12
+ freebsd::font=courier 12 italic
13
+ freebsd::font.bold=courier 12 bold
14
+ win::font={Courier New} 9
15
+ win::font.bold={Courier New} 9 bold
@@ -0,0 +1,284 @@
1
+ #
2
+ # ae-search-in-files.rb - Arcadia Ruby ide
3
+ # by Antonio Galeone <antonio-galeone@rubyforge.org>
4
+ #
5
+
6
+ class SearchInFilesService < ArcadiaExt
7
+
8
+ def on_before_build(_event)
9
+ Arcadia.add_listener(SearchInFilesListener.new(self),SearchInFilesEvent)
10
+ end
11
+
12
+ end
13
+
14
+
15
+ class SearchInFilesListener
16
+ def initialize(_service)
17
+ @service = _service
18
+ create_find
19
+ end
20
+
21
+ def on_before_search_in_files(_event)
22
+ if _event.what.nil?
23
+ @find.show
24
+ end
25
+ end
26
+
27
+ #def on_search_in_files(_event)
28
+ #Arcadia.new_msg(self, "... ti ho fregato!")
29
+ #end
30
+
31
+ #def on_after_search_in_files(_event)
32
+ #end
33
+
34
+ def create_find
35
+ @find = FindFrame.new(@service.arcadia.layout.root)
36
+ @find.on_close=proc{@find.hide}
37
+ @find.hide
38
+ @find.b_go.bind('1', proc{Thread.new{do_find}})
39
+ @find.e_what_entry.bind_append('KeyRelease'){|e|
40
+ case e.keysym
41
+ when 'Return'
42
+ do_find
43
+ Tk.callback_break
44
+ end
45
+ }
46
+
47
+ end
48
+ private :create_find
49
+
50
+ def do_find
51
+ return if @find.e_what.text.strip.length == 0 || @find.e_filter.text.strip.length == 0 || @find.e_dir.text.strip.length == 0
52
+ @find.hide
53
+ if !defined?(@search_output)
54
+ @search_output = SearchOutput.new(@service)
55
+ else
56
+ @service.frame_raise
57
+ end
58
+ _search_title = 'search result for : "'+@find.e_what.text+'" in :"'+@find.e_dir.text+'"'+' ['+@find.e_filter.text+']'
59
+ _filter = @find.e_dir.text+'/**/'+@find.e_filter.text
60
+ _files = Dir[_filter]
61
+ _node = @search_output.new_result(_search_title, _files.length)
62
+ @progress_bar = TkProgressframe.new(@service.arcadia.layout.root, _files.length)
63
+ @progress_bar.title('Searching')
64
+ #@progress_bar.on_cancel=proc{cancel}
65
+ pattern = Regexp.new(@find.e_what.text)
66
+ _files.each do |_filename|
67
+ File.open(_filename) do |file|
68
+ file.grep(pattern) do |line|
69
+ @search_output.add_result(_node, _filename, file.lineno.to_s, line)
70
+ end
71
+ end
72
+ @progress_bar.progress
73
+ end
74
+ @progress_bar.destroy
75
+
76
+ end
77
+
78
+
79
+ end
80
+
81
+ class SearchOutput
82
+ def initialize(_ext)
83
+ @sequence = 0
84
+ @ext = _ext
85
+ left_frame = TkFrame.new(@ext.frame).place('x' => '0','y' => '0','relheight' => '1','width' => '25')
86
+ #right_frame = TkFrame.new(@ext.frame).place('x' => '25','y' => '0','relwidth' => '1', 'relheight' => '1', 'width' => '-25')
87
+ @results = {}
88
+ _open_file = proc do |tree, sel|
89
+ n_parent, n = sel.split('@@@')
90
+ Arcadia.process_event(OpenBufferEvent.new(self,'file'=>@results[n_parent][n][0], 'row'=>@results[n_parent][n][1])) if n && @results[n_parent][n]
91
+ #EditorContract.instance.open_file(self, 'file'=>@results[n_parent][n][0], 'line'=>@results[n_parent][n][1]) if n && @results[n_parent][n]
92
+ end
93
+
94
+ @tree = Tk::BWidget::Tree.new(@ext.frame){
95
+ background '#FFFFFF'
96
+ relief 'flat'
97
+ showlines true
98
+ linesfill '#e7de8f'
99
+ selectcommand _open_file
100
+ deltay 15
101
+ }.place('x' => '25','y' => '0','relwidth' => '1', 'relheight' => '1', 'width' => '-40', 'height'=>'-15')
102
+ #---- y scrollbar
103
+ _yscrollcommand = proc{|*args| @tree.yview(*args)}
104
+ _yscrollbar = TkScrollbar.new(@ext.frame){|s|
105
+ #width 8
106
+ command _yscrollcommand
107
+ }.pack('side'=>'right', 'fill'=>'y')
108
+ @tree.yscrollcommand proc{|first,last| _yscrollbar.set(first,last)}
109
+ #---- x scrollbar
110
+ _xscrollcommand = proc{|*args| @tree.xview(*args)}
111
+ _xscrollbar = TkScrollbar.new(@ext.frame){|s|
112
+ #width 8
113
+ orient 'horizontal'
114
+ command _xscrollcommand
115
+ }.pack('side'=>'bottom', 'fill'=>'x')
116
+ @tree.xscrollcommand proc{|first,last| _xscrollbar.set(first,last)}
117
+
118
+ _proc_clear = proc{clear_tree}
119
+
120
+ @button_u = Tk::BWidget::Button.new(left_frame){
121
+ image TkPhotoImage.new('dat' => CLEAR_GIF)
122
+ helptext 'Clear'
123
+ foreground 'blue'
124
+ command _proc_clear
125
+ relief 'groove'
126
+ pack('side' =>'top', 'anchor'=>'n',:padx=>0, :pady=>0)
127
+ }
128
+
129
+ @found_color='#3f941b'
130
+ @not_found_color= 'red'
131
+ @item_color='#6fc875'
132
+ end
133
+
134
+ def clear_tree
135
+ @tree.delete(@tree.nodes('root'))
136
+ @results.clear
137
+ end
138
+
139
+ def new_node_name
140
+ @sequence = @sequence + 1
141
+ return 'n'+@sequence.to_s
142
+ end
143
+
144
+ def new_result(_text, _length=0)
145
+ @results.each_key{|key| @tree.close_tree(key)}
146
+ _r_node = new_node_name
147
+ @text_result = _text
148
+ #_text = _text + ' { '+_length.to_s+' found }'
149
+ #_length > 0 ? _color='#3f941b':_color = 'red'
150
+ @tree.insert('end', 'root' ,_r_node, {
151
+ 'fill'=>@not_found_color,
152
+ 'open'=>true,
153
+ 'anchor'=>'w',
154
+ 'font' => @ext.conf('font.bold'),
155
+ 'text' => _text
156
+ })
157
+ Tk.update
158
+ @results[_r_node]={}
159
+ @count = 0
160
+ return _r_node
161
+ end
162
+
163
+ def add_result(_node, _file, _line='', _line_text='')
164
+ @count = @count+1
165
+ @tree.itemconfigure(_node, 'fill'=>@found_color, 'text'=>@text_result+' { '+@count.to_s+' found }')
166
+ _text = _file+':'+_line+' : '+_line_text
167
+ _node_name = new_node_name
168
+ @tree.insert('end', _node ,_node+'@@@'+_node_name, {
169
+ 'fill'=>@item_color,
170
+ 'anchor'=>'w',
171
+ 'font' => @ext.conf('font'),
172
+ 'text' => _text.strip
173
+ })
174
+ @results[_node][_node_name]=[_file,_line]
175
+ Tk.update
176
+ end
177
+
178
+ end
179
+
180
+ class FindFrame < TkFloatTitledFrame
181
+ attr_reader :e_what
182
+ attr_reader :e_what_entry
183
+ attr_reader :e_filter
184
+ attr_reader :e_dir
185
+ attr_reader :b_go
186
+ def initialize(_parent)
187
+ super(_parent)
188
+ y0 = 10
189
+ d = 23
190
+ TkLabel.new(self.frame){
191
+ text 'Find what:'
192
+ place('x' => 8,'y' => y0,'height' => 19)
193
+ }
194
+ y0 = y0 + d
195
+ @e_what = Tk::BWidget::ComboBox.new(self.frame){
196
+ editable true
197
+ justify 'left'
198
+ relief 'ridge'
199
+ autocomplete 'true'
200
+ entrybg '#FFFFFF'
201
+ expand 'tab'
202
+ takefocus 'true'
203
+ place('relwidth' => 1, 'width'=>-16,'x' => 8,'y' => y0,'height' => 19)
204
+ }
205
+ @e_what_entry = TkWinfo.children(@e_what)[0]
206
+ y0 = y0 + d
207
+ TkLabel.new(self.frame){
208
+ text 'Files filter:'
209
+ place('x' => 8,'y' => y0,'height' => 19)
210
+ }
211
+ y0 = y0 + d
212
+
213
+ @e_filter = Tk::BWidget::ComboBox.new(self.frame){
214
+ editable true
215
+ justify 'left'
216
+ relief 'ridge'
217
+ autocomplete 'true'
218
+ #insertbackground '#FFFFFF'
219
+ entrybg '#FFFFFF'
220
+ expand 'tab'
221
+ takefocus 'true'
222
+ #pack('padx'=>10, 'fill'=>'x')
223
+ place('relwidth' => 1, 'width'=>-16,'x' => 8,'y' => y0,'height' => 19)
224
+ }
225
+ @e_filter.text('*.rb')
226
+ y0 = y0 + d
227
+
228
+ TkLabel.new(self.frame){
229
+ text 'Directory:'
230
+ place('x' => 8,'y' => y0,'height' => 19)
231
+ }
232
+ y0 = y0 + d
233
+
234
+ _h_frame = TkFrame.new(self.frame).place('relwidth' => 1, 'width'=>-16,'x' => 8,'y' => y0,'height' => 19)
235
+ @e_dir = Tk::BWidget::ComboBox.new(_h_frame){
236
+ editable true
237
+ justify 'left'
238
+ relief 'ridge'
239
+ autocomplete 'true'
240
+ #insertbackground '#FFFFFF'
241
+ entrybg '#FFFFFF'
242
+ expand 'tab'
243
+ takefocus 'true'
244
+ #pack('side'=>'left','fill'=>'x')
245
+ pack('fill'=>'x')
246
+ #place('relwidth' => 1, 'width'=>-16,'x' => 8,'y' => y0,'height' => 19)
247
+ }
248
+ @e_dir.text(Dir.pwd)
249
+ @b_dir = TkButton.new(_h_frame){
250
+ compound 'none'
251
+ default 'disabled'
252
+ text '...'
253
+ overrelief 'raised'
254
+ justify 'center'
255
+ pack('side'=>'right','ipadx'=>5, 'padx'=>5)
256
+ }.bind('1', proc{
257
+ _d = Tk.chooseDirectory('initialdir'=>@e_dir.text,'mustexist'=>true)
258
+ if _d && _d.strip.length > 0
259
+ @e_dir.text(_d)
260
+ end
261
+ })
262
+
263
+ y0 = y0 + d
264
+ y0 = y0 + d
265
+ @buttons_frame = TkFrame.new(self.frame).pack('fill'=>'x', 'side'=>'bottom')
266
+
267
+ @b_go = TkButton.new(@buttons_frame){|_b_go|
268
+ compound 'none'
269
+ default 'disabled'
270
+ text 'Find'
271
+ overrelief 'raised'
272
+ justify 'center'
273
+ pack('side'=>'right','ipadx'=>5, 'padx'=>5)
274
+ }
275
+ place('x'=>100,'y'=>100,'height'=> 220,'width'=> 300)
276
+ end
277
+
278
+ def show
279
+ super
280
+ self.focus
281
+ @e_what.focus
282
+ @e_what_entry.selection_range(0,'end')
283
+ end
284
+ end
@@ -4,13 +4,93 @@
4
4
  #
5
5
 
6
6
  require "tk"
7
- require "base/a-utils"
7
+ #require "base/a-utils"
8
8
 
9
9
  class Shell < ArcadiaExt
10
10
 
11
- def build
11
+ def on_before_build(_event)
12
+ Arcadia.add_listener(self, SystemExecEvent)
13
+ Arcadia.add_listener(self, RunRubyFileEvent)
14
+ end
15
+
16
+ def on_build(_event)
12
17
  @run_threads = Array.new
13
18
  end
19
+
20
+ def on_system_exec(_event)
21
+ begin
22
+ # _cmd_ = "|ruby #{File.dirname(__FILE__)}/sh.rb #{_event.command} 2>&1"
23
+ # p _cmd_
24
+ # Thread.new do
25
+ # open(_cmd_,"r"){|f|
26
+ # Arcadia.new_debug_msg(self, f.read)
27
+ # }
28
+ # end
29
+ _cmd_ = "#{_event.command}"
30
+ if is_windows?
31
+ io = IO.popen(_cmd_)
32
+ else
33
+ Process.fork{
34
+ open(_cmd_,"r"){|f|
35
+ Arcadia.new_debug_msg(self, f.read)
36
+ #Arcadia.new_debug_msg(self, f.read)
37
+ }
38
+ }
39
+ end
40
+ rescue Exception => e
41
+ Arcadia.new_debug_msg(self, e)
42
+ end
43
+
44
+ end
45
+
46
+ def on_run_ruby_file(_event)
47
+ _filename = _event.file
48
+ _filename = @arcadia['pers']['run.file.last'] if _filename == "*LAST"
49
+ if _filename && File.exists?(_filename)
50
+ begin
51
+ @arcadia['pers']['run.file.last']=_filename
52
+ _cmd_ = "|"+@arcadia['conf']['shell.ruby']+" "+_filename+" 2>&1"
53
+ open(_cmd_,"r"){|f|
54
+ _readed = f.read
55
+ Arcadia.new_debug_msg(self, _readed)
56
+ _event.add_result(self, 'output'=>_readed)
57
+ }
58
+ rescue Exception => e
59
+ Arcadia.new_debug_msg(self, e)
60
+ end
61
+ end
62
+ end
63
+
64
+ def on_system_exec_bo(_event)
65
+ command = "#{_event.command} 2>&1"
66
+ (RUBY_PLATFORM.include?('mswin32'))?_cmd="cmd":_cmd='sh'
67
+ if is_windows?
68
+ Thread.new{
69
+ Arcadia.new_debug_msg(self, 'inizio')
70
+ @io = IO.popen(_cmd,'r+')
71
+ @io.puts(command)
72
+ result = ''
73
+ while line = @io.gets
74
+ result << line
75
+ end
76
+ Arcadia.new_debug_msg(self, result)
77
+ }
78
+ else
79
+ Process.fork{
80
+ open(_cmd_,"r"){|f|
81
+ Arcadia.new_debug_msg(self, f.read)
82
+ }
83
+ }
84
+ end
85
+ end
86
+
87
+
88
+
89
+ def is_windows?
90
+ !(RUBY_PLATFORM =~ /(win|w)32$/).nil?
91
+ #RUBY_PLATFORM.include?('win')
92
+ end
93
+
14
94
 
15
95
  def run_last
16
96
  run($arcadia['pers']['run.file.last'])
@@ -33,16 +113,16 @@ class Shell < ArcadiaExt
33
113
  def run(_filename=nil)
34
114
  if _filename
35
115
  begin
36
- $arcadia['pers']['run.file.last']=_filename
37
- @run_threads << Thread.new{
116
+ @arcadia['pers']['run.file.last']=_filename
117
+ @run_threads << Thread.new do
38
118
  _cmd_ = "|"+$arcadia['conf']['shell.ruby']+" "+_filename+" 2>&1"
39
- # MsgContract.instance.out_debug(self, _cmd_)
119
+ # Arcadia.new_debug_msg(self, _cmd_)
40
120
  @cmd = open(_cmd_,"r"){|f|
41
- MsgContract.instance.out_debug(self, f.read)
121
+ Arcadia.new_debug_msg(self, f.read)
42
122
  }
43
- }
123
+ end
44
124
  rescue Exception => e
45
- MsgContract.instance.out_debug(self, e)
125
+ Arcadia.new_debug_msg(self, e)
46
126
  end
47
127
  end
48
128
  end
@@ -0,0 +1,7 @@
1
+ _std_ = "ruby"
2
+ $*.each{|arg|
3
+ _std_=_std_+" "+arg
4
+ }
5
+ if Kernel.system(_std_)
6
+ Kernel.system('y')
7
+ end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.11
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: arcadia
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.3
7
- date: 2007-07-02 00:00:00 +02:00
6
+ version: 0.2.0
7
+ date: 2007-10-25 00:00:00 +02:00
8
8
  summary: An Ide for Ruby application building with ruby-tk.
9
9
  require_paths:
10
10
  - lib
@@ -25,115 +25,82 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
25
25
  platform: ruby
26
26
  signing_key:
27
27
  cert_chain:
28
+ post_install_message:
28
29
  authors:
29
30
  - Antonio Galeone
30
31
  files:
31
- - base/a-libs.rb
32
- - base/a-ext.rb
33
- - base/a-utils.rb
34
32
  - base/a-contracts.rb
35
- - base/a-contracts-work.rb
33
+ - base/a-commons.rb
34
+ - base/a-tkcommons.rb
36
35
  - conf/arcadia.conf
37
36
  - conf/arcadia.init.rb
38
37
  - conf/arcadia.res.rb
39
38
  - ext/ae-inspector
40
- - ext/ae-shell
41
- - ext/ae-complete-code
42
- - ext/ae-palette
43
- - ext/ae-debug
44
- - ext/ae-editor
45
- - ext/ae-output
46
- - ext/ae-event-log
47
- - ext/ae-output-event
48
- - ext/ae-file-history
49
- - ext/ae-doc-code
50
- - ext/ae-ruby-debug
51
- - ext/ae-flag
52
39
  - ext/ae-inspector/ae-inspector.rb
53
40
  - ext/ae-inspector/ae-inspector.conf
41
+ - ext/ae-shell
54
42
  - ext/ae-shell/ae-shell.conf
55
43
  - ext/ae-shell/ae-shell.rb
44
+ - ext/ae-shell/sh.rb
45
+ - ext/ae-complete-code
56
46
  - ext/ae-complete-code/ae-complete-code.conf
57
47
  - ext/ae-complete-code/ae-complete-code.rb
48
+ - ext/ae-palette
58
49
  - ext/ae-palette/ae-palette.rb
59
50
  - ext/ae-palette/ae-palette.conf
60
- - ext/ae-debug/ae-debug.rb
61
- - ext/ae-debug/debug1.57.rb
62
- - ext/ae-debug/ae-debug.conf
51
+ - ext/ae-editor
63
52
  - ext/ae-editor/ae-editor.rb
64
53
  - ext/ae-editor/ae-editor.conf
54
+ - ext/ae-editor/langs
55
+ - ext/ae-editor/langs/rbw.lang.bind
56
+ - ext/ae-editor/langs/rb.lang
57
+ - ext/ae-editor/langs/conf.lang
58
+ - ext/ae-editor/langs/lang.lang.bind
59
+ - ext/ae-output
65
60
  - ext/ae-output/ae-output.rb
66
61
  - ext/ae-output/ae-output.conf
62
+ - ext/ae-event-log
67
63
  - ext/ae-event-log/ae-event-log.conf
68
64
  - ext/ae-event-log/ae-event-log.rb
65
+ - ext/ae-output-event
69
66
  - ext/ae-output-event/ae-output-event.conf
67
+ - ext/ae-file-history
70
68
  - ext/ae-file-history/ae-file-history.rb
71
69
  - ext/ae-file-history/ae-file-history.conf
70
+ - ext/ae-doc-code
72
71
  - ext/ae-doc-code/ae-doc-code.rb
73
72
  - ext/ae-doc-code/ae-doc-code.conf
73
+ - ext/ae-ruby-debug
74
74
  - ext/ae-ruby-debug/ae-ruby-debug.rb
75
75
  - ext/ae-ruby-debug/ae-ruby-debug.conf
76
+ - ext/ae-flag
76
77
  - ext/ae-flag/ae-flag.rb
77
78
  - ext/ae-flag/ae-flag.conf
78
- - lib/tk
79
- - lib/tkext
80
- - lib/tk/al-tk.rb
81
- - lib/tk/al-tkarcadia.rb
82
- - lib/tk/al-tkcustom.rb
83
- - lib/tk/al-tk.res.rb
84
- - lib/tkext/al-bwidget.rb
85
- - lib/tkext/al-iwidgets.rb
86
- - lib/tkext/al-tile.rb
87
- - lib/tkext/al-tktable.rb
79
+ - ext/ae-search-in-files
80
+ - ext/ae-search-in-files/ae-search-in-files.rb
81
+ - ext/ae-search-in-files/ae-search-in-files.conf
82
+ - ext/ae-rad
83
+ - ext/ae-rad/ae-rad.rb
84
+ - ext/ae-rad/ae-rad.conf
85
+ - ext/ae-rad/ae-rad-inspector.rb
86
+ - ext/ae-rad/ae-rad-palette.rb
87
+ - ext/ae-rad/lib
88
+ - ext/ae-rad/lib/tkext
89
+ - ext/ae-rad/lib/tkext/al-bwidget.rb
90
+ - ext/ae-rad/lib/tkext/al-iwidgets.rb
91
+ - ext/ae-rad/lib/tkext/al-tile.rb
92
+ - ext/ae-rad/lib/tkext/al-tktable.rb
93
+ - ext/ae-rad/lib/tk
94
+ - ext/ae-rad/lib/tk/al-tk.rb
95
+ - ext/ae-rad/lib/tk/al-tkarcadia.rb
96
+ - ext/ae-rad/lib/tk/al-tkcustom.rb
97
+ - ext/ae-rad/lib/tk/al-tk.res.rb
98
+ - ext/ae-rad/ae-rad-libs.rb
99
+ - ext/ae-action-dispatcher
100
+ - ext/ae-action-dispatcher/ae-action-dispatcher.rb
101
+ - ext/ae-action-dispatcher/ae-action-dispatcher.conf
88
102
  - tcl/BWidget-1.8.0
89
103
  - tcl/BWidget-1.8.0/BWman
90
- - tcl/BWidget-1.8.0/demo
91
- - tcl/BWidget-1.8.0/images
92
- - tcl/BWidget-1.8.0/lang
93
- - tcl/BWidget-1.8.0/tests
94
- - tcl/BWidget-1.8.0/arrow.tcl
95
- - tcl/BWidget-1.8.0/bitmap.tcl
96
- - tcl/BWidget-1.8.0/button.tcl
97
- - tcl/BWidget-1.8.0/buttonbox.tcl
98
- - tcl/BWidget-1.8.0/color.tcl
99
- - tcl/BWidget-1.8.0/combobox.tcl
100
- - tcl/BWidget-1.8.0/dialog.tcl
101
- - tcl/BWidget-1.8.0/dragsite.tcl
102
- - tcl/BWidget-1.8.0/dropsite.tcl
103
- - tcl/BWidget-1.8.0/dynhelp.tcl
104
- - tcl/BWidget-1.8.0/entry.tcl
105
- - tcl/BWidget-1.8.0/font.tcl
106
- - tcl/BWidget-1.8.0/init.tcl
107
- - tcl/BWidget-1.8.0/label.tcl
108
- - tcl/BWidget-1.8.0/labelentry.tcl
109
- - tcl/BWidget-1.8.0/labelframe.tcl
110
- - tcl/BWidget-1.8.0/listbox.tcl
111
- - tcl/BWidget-1.8.0/mainframe.tcl
112
- - tcl/BWidget-1.8.0/messagedlg.tcl
113
- - tcl/BWidget-1.8.0/notebook.tcl
114
- - tcl/BWidget-1.8.0/pagesmgr.tcl
115
- - tcl/BWidget-1.8.0/panedw.tcl
116
- - tcl/BWidget-1.8.0/panelframe.tcl
117
- - tcl/BWidget-1.8.0/passwddlg.tcl
118
- - tcl/BWidget-1.8.0/pkgIndex.tcl
119
- - tcl/BWidget-1.8.0/progressbar.tcl
120
- - tcl/BWidget-1.8.0/progressdlg.tcl
121
- - tcl/BWidget-1.8.0/scrollframe.tcl
122
- - tcl/BWidget-1.8.0/scrollview.tcl
123
- - tcl/BWidget-1.8.0/scrollw.tcl
124
- - tcl/BWidget-1.8.0/separator.tcl
125
- - tcl/BWidget-1.8.0/spinbox.tcl
126
- - tcl/BWidget-1.8.0/statusbar.tcl
127
- - tcl/BWidget-1.8.0/titleframe.tcl
128
- - tcl/BWidget-1.8.0/tree.tcl
129
- - tcl/BWidget-1.8.0/utils.tcl
130
- - tcl/BWidget-1.8.0/wizard.tcl
131
- - tcl/BWidget-1.8.0/xpm2image.tcl
132
- - tcl/BWidget-1.8.0/widget.tcl
133
- - tcl/BWidget-1.8.0/CHANGES.txt
134
- - tcl/BWidget-1.8.0/ChangeLog
135
- - tcl/BWidget-1.8.0/LICENSE.txt
136
- - tcl/BWidget-1.8.0/README.txt
137
104
  - tcl/BWidget-1.8.0/BWman/options.htm
138
105
  - tcl/BWidget-1.8.0/BWman/BWidget.html
139
106
  - tcl/BWidget-1.8.0/BWman/Button.html
@@ -172,6 +139,7 @@ files:
172
139
  - tcl/BWidget-1.8.0/BWman/index.html
173
140
  - tcl/BWidget-1.8.0/BWman/navtree.html
174
141
  - tcl/BWidget-1.8.0/BWman/ArrowButton.html
142
+ - tcl/BWidget-1.8.0/demo
175
143
  - tcl/BWidget-1.8.0/demo/x1.xbm
176
144
  - tcl/BWidget-1.8.0/demo/bwidget.xbm
177
145
  - tcl/BWidget-1.8.0/demo/demo.tcl
@@ -181,6 +149,7 @@ files:
181
149
  - tcl/BWidget-1.8.0/demo/tmpldlg.tcl
182
150
  - tcl/BWidget-1.8.0/demo/tree.tcl
183
151
  - tcl/BWidget-1.8.0/demo/basic.tcl
152
+ - tcl/BWidget-1.8.0/images
184
153
  - tcl/BWidget-1.8.0/images/warning.gif
185
154
  - tcl/BWidget-1.8.0/images/copy.gif
186
155
  - tcl/BWidget-1.8.0/images/cut.gif
@@ -212,12 +181,57 @@ files:
212
181
  - tcl/BWidget-1.8.0/images/underline.gif
213
182
  - tcl/BWidget-1.8.0/images/undo.gif
214
183
  - tcl/BWidget-1.8.0/images/bold.gif
184
+ - tcl/BWidget-1.8.0/lang
215
185
  - tcl/BWidget-1.8.0/lang/da.rc
216
186
  - tcl/BWidget-1.8.0/lang/de.rc
217
187
  - tcl/BWidget-1.8.0/lang/en.rc
218
188
  - tcl/BWidget-1.8.0/lang/es.rc
219
189
  - tcl/BWidget-1.8.0/lang/fr.rc
190
+ - tcl/BWidget-1.8.0/tests
220
191
  - tcl/BWidget-1.8.0/tests/entry.test
192
+ - tcl/BWidget-1.8.0/arrow.tcl
193
+ - tcl/BWidget-1.8.0/bitmap.tcl
194
+ - tcl/BWidget-1.8.0/button.tcl
195
+ - tcl/BWidget-1.8.0/buttonbox.tcl
196
+ - tcl/BWidget-1.8.0/color.tcl
197
+ - tcl/BWidget-1.8.0/combobox.tcl
198
+ - tcl/BWidget-1.8.0/dialog.tcl
199
+ - tcl/BWidget-1.8.0/dragsite.tcl
200
+ - tcl/BWidget-1.8.0/dropsite.tcl
201
+ - tcl/BWidget-1.8.0/dynhelp.tcl
202
+ - tcl/BWidget-1.8.0/entry.tcl
203
+ - tcl/BWidget-1.8.0/font.tcl
204
+ - tcl/BWidget-1.8.0/init.tcl
205
+ - tcl/BWidget-1.8.0/label.tcl
206
+ - tcl/BWidget-1.8.0/labelentry.tcl
207
+ - tcl/BWidget-1.8.0/labelframe.tcl
208
+ - tcl/BWidget-1.8.0/listbox.tcl
209
+ - tcl/BWidget-1.8.0/mainframe.tcl
210
+ - tcl/BWidget-1.8.0/messagedlg.tcl
211
+ - tcl/BWidget-1.8.0/notebook.tcl
212
+ - tcl/BWidget-1.8.0/pagesmgr.tcl
213
+ - tcl/BWidget-1.8.0/panedw.tcl
214
+ - tcl/BWidget-1.8.0/panelframe.tcl
215
+ - tcl/BWidget-1.8.0/passwddlg.tcl
216
+ - tcl/BWidget-1.8.0/pkgIndex.tcl
217
+ - tcl/BWidget-1.8.0/progressbar.tcl
218
+ - tcl/BWidget-1.8.0/progressdlg.tcl
219
+ - tcl/BWidget-1.8.0/scrollframe.tcl
220
+ - tcl/BWidget-1.8.0/scrollview.tcl
221
+ - tcl/BWidget-1.8.0/scrollw.tcl
222
+ - tcl/BWidget-1.8.0/separator.tcl
223
+ - tcl/BWidget-1.8.0/spinbox.tcl
224
+ - tcl/BWidget-1.8.0/statusbar.tcl
225
+ - tcl/BWidget-1.8.0/titleframe.tcl
226
+ - tcl/BWidget-1.8.0/tree.tcl
227
+ - tcl/BWidget-1.8.0/utils.tcl
228
+ - tcl/BWidget-1.8.0/wizard.tcl
229
+ - tcl/BWidget-1.8.0/xpm2image.tcl
230
+ - tcl/BWidget-1.8.0/widget.tcl
231
+ - tcl/BWidget-1.8.0/CHANGES.txt
232
+ - tcl/BWidget-1.8.0/ChangeLog
233
+ - tcl/BWidget-1.8.0/LICENSE.txt
234
+ - tcl/BWidget-1.8.0/README.txt
221
235
  - arcadia.rb
222
236
  - README
223
237
  test_files: []