hilfer 0.10.1 → 0.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,8 @@
1
+ === 0.11.3 / 2011-06-21
2
+
3
+ * Remove Hoe
4
+ * Fixes for ruby 1.9
5
+
1
6
  === 0.10.1 / 2009-08-03
2
7
 
3
8
  * Rework process launching and waiting for more robustity (sic)
@@ -1,4 +1,3 @@
1
- ChangeLog
2
1
  History.txt
3
2
  Manifest.txt
4
3
  README.txt
data/Rakefile CHANGED
@@ -1,23 +1,54 @@
1
- require 'rubygems'
2
- require 'rake/clean'
3
- require 'hoe'
4
- require 'lib/hilfer/version.rb'
1
+ begin
2
+ require 'bones'
3
+ rescue LoadError
4
+ abort '### Please install the "bones" gem ###'
5
+ end
5
6
 
6
- Hoe.new('hilfer', Hilfer::VERSION) do |s|
7
- s.author = "John Anderson"
8
- s.email = "john at semiosix dot com"
7
+ require 'rake/clean'
8
+ ensure_in_path 'lib'
9
+ require 'hilfer/version.rb'
10
+
11
+ Bones do
12
+ name 'hilfer'
13
+ authors 'John Anderson'
14
+ email 'panic@semiosix.com'
15
+ url 'http://hilfer.rubyforge.org/hilfer'
16
+ version Hilfer::VERSION
17
+ description "Programmers file browser for SciTE"
18
+
19
+ gem.need_tar false
20
+
21
+ depend_on 'gtk2'
22
+
23
+ # read file list from Manifest.txt
24
+ gem.files File.new('Manifest.txt').to_a.map( &:chomp )
25
+
26
+ # List of files to generate rdoc from
27
+ # Not the same as the rdoc -i which is list of files
28
+ # to search for include directives
29
+ rdoc.include %w{README.txt ^lib/clevic/.*\.rb$ models/examples.rb History.txt TODO}
30
+
31
+ # List of Regexs to exclude from rdoc processing
32
+ rdoc.exclude %w{^pkg.*}
33
+
34
+ # Include URL for git browser in rdoc output
35
+ rdoc.opts %W{-W http://gitweb.semiosix.com/hilfer.cgi?p=clevic;a=blob;f=%s;hb=HEAD} #--template=#{Gem.required_location("allison", "allison.rb")}}
36
+
37
+ rdoc.main 'README.txt'
9
38
  end
10
39
 
11
- desc "Runs Hilfer quietly"
40
+ CLEAN.include %w[ChangeLog **/.DS_Store tmp *.log doc website/doc]
41
+
42
+ desc "Runs Hilfer with debug"
12
43
  task :run do |t|
13
44
  ARGV.shift()
14
- exec "ruby -Ilib bin/hilfer -q #{ARGV.join(' ')}"
45
+ exec "ruby -Ilib bin/hilfer --debug #{ARGV.join(' ')}"
15
46
  end
16
47
 
17
- desc "Runs Hilfer with lots of debugging"
18
- task :verbose do |t|
48
+ desc "Runs Hilfer quietly"
49
+ task :quiet do |t|
19
50
  ARGV.shift()
20
- exec "ruby -w -Ilib bin/hilfer -dq #{ARGV.join(' ')}"
51
+ exec "ruby -w -Ilib bin/hilfer -q #{ARGV.join(' ')}"
21
52
  end
22
53
 
23
54
  desc 'Runs irb in this project\'s context'
@@ -27,14 +58,6 @@ task :irb do |t|
27
58
  exec "irb -Ilib"
28
59
  end
29
60
 
30
- task 'ChangeLog' do |t|
31
- `svn2cl -i --break-before-msg`
32
- end
33
-
34
- CLEAN.include 'ChangeLog'
35
-
36
- task :docs => 'ChangeLog'
37
-
38
61
  task :version do
39
62
  puts Hilfer::VERSION
40
63
  end
data/bin/hilfer CHANGED
File without changes
@@ -4,7 +4,7 @@ module Gdk
4
4
  if @lookup.nil?
5
5
  @lookup = {}
6
6
  constants.each do |c|
7
- val = eval( c )
7
+ val = eval( c.to_s )
8
8
  @lookup[val] = c
9
9
  end
10
10
  end
@@ -1,3 +1,4 @@
1
+ require 'fileutils'
1
2
  require 'hilfer/window.rb'
2
3
 
3
4
  # handle director interface to scite
@@ -5,7 +6,10 @@ class SciteEditor
5
6
  # options can contain :debug
6
7
  # view is a GtkTreeView
7
8
  def initialize( options = {} )
9
+ # commands to scite are sent here
8
10
  @scite_pipe_name = "/tmp/hilfer.#{ENV['USER']}.#{Process.pid}.scite"
11
+
12
+ # commands from scite arrive here
9
13
  @director_pipe_name = "/tmp/hilfer.#{ENV['USER']}.#{Process.pid}.director"
10
14
  @pipe_name_file = "/tmp/hilfer.#{ENV['USER']}.scite"
11
15
 
@@ -55,8 +59,8 @@ class SciteEditor
55
59
  def send_cmd( cmd, arg = '' )
56
60
  launch
57
61
  File.open( @scite_pipe_name, 'a' ) do |file|
58
- file.puts "#{cmd.to_s}:#{arg.to_s}"
59
62
  puts "sending: #{cmd.to_s}:#{arg.to_s}" if debug?
63
+ file.puts "#{cmd.to_s}:#{arg.to_s}"
60
64
  end
61
65
  end
62
66
 
@@ -175,8 +179,14 @@ class SciteEditor
175
179
  protected
176
180
 
177
181
  def start_listener
178
-
182
+ # wait for scite pipe otherwise scite sometimes hangs and
183
+ # doesn't receive open requests
179
184
  sleep 0.1 while !File.exists? @scite_pipe_name
185
+ puts "#{@scite_pipe_name} exists" if debug?
186
+
187
+ # wait for director pipe as well
188
+ sleep 0.1 while !File.exists? @director_pipe_name
189
+ puts "#{@director_pipe_name} exists" if debug?
180
190
 
181
191
  Thread.new do
182
192
  begin
@@ -184,49 +194,70 @@ protected
184
194
  rescue Errno::ENOENT
185
195
  puts "pipe gone away, so stop listening" if debug?
186
196
  rescue Exception => e
187
- print "listener thread ended: ", e.inspect, "\n"
197
+ puts "listener thread ended: #{e.message}"
188
198
  puts e.backtrace
189
199
  end
190
200
  end
191
201
 
192
202
  end
203
+
204
+ def react( line )
205
+ puts "reacting to #{line}" if debug?
206
+ case line
207
+ # scite sends one of these for each file opened
208
+ when /^opened:(.*)$/
209
+ set_selection( $1 )
193
210
 
194
- # respond to strings from scite
195
- def listen
196
- File.open( @director_pipe_name ).each( "\x0" ) do |line|
197
- begin
198
- line = line.slice(0...-1) if line[-1] = 0
199
- print "heard #{line}\n" if debug?
200
- case line
201
- # scite sends one of these for each file opened
202
- when /^opened:(.*)$/
203
- set_selection( $1 )
211
+ # scite sends one of these each time the buffer is switched
212
+ when /^switched:(.*)$/
213
+ set_selection( $1 )
214
+
215
+ # response to askfilename, as sent by synchronize_path
216
+ when /^filename:(.*)$/
217
+ set_selection( $1 )
204
218
 
205
- # scite sends one of these each time the buffer is switched
206
- when /^switched:(.*)$/
207
- set_selection( $1 )
219
+ # the specified file has just been saved. Do nothing.
220
+ # TODO could check that it exists and add it if not.
221
+ when /^saved:(.*)$/
222
+
223
+ when /^closing$/
224
+ puts "SciTE closing"
208
225
 
209
- # response to askfilename, as sent by synchronize_path
210
- when /^filename:(.*)$/
211
- set_selection( $1 )
226
+ # print it out
227
+ else
228
+ puts "unknown from scite: #{line}"
229
+ end
230
+ end
212
231
 
213
- # the specified file has just been saved. Do nothing.
214
- # TODO could check that it exists and add it if not.
215
- when /^saved:(.*)$/
216
-
217
- when /^closing$/
218
- puts "SciTE closing"
219
- break
232
+ # respond to strings from scite
233
+ def listen
234
+ select_listen do |line|
235
+ puts "read line: #{line.inspect}" if debug?
236
+ line.gsub!( /[\0\n]+$/, '' )
237
+ next if line.empty?
238
+ react( line )
239
+ end
240
+ rescue EOFError
241
+ # just exit quietly, because scite has closed down
242
+ rescue Exception => e
243
+ puts "caught Exception in listen: #{e.inspect}"
244
+ puts e.backtrace
245
+ end
246
+
247
+ # doesn't work with scite 2.x
248
+ def block_listen
249
+ File.open( @director_pipe_name ).each( "\x0" ) do |line|
250
+ yield line
251
+ end
252
+ end
220
253
 
221
- # print it out
222
- else
223
- print "unknown from scite: ", line, "\n" if debug?
224
- end
225
- rescue Exception => e
226
- print "caught Exception in listen: ", e.inspect, "\n"
227
- puts e.backtrace
254
+ # works with scite 1.x and 2.x
255
+ def select_listen
256
+ File.open( @director_pipe_name ) do |director_pipe|
257
+ while IO.select( [director_pipe] )
258
+ line = director_pipe.read_nonblock( 4096 )
259
+ yield line
228
260
  end
229
261
  end
230
262
  end
231
-
232
263
  end
@@ -29,7 +29,7 @@ require 'hilfer/xterm.rb'
29
29
  begin
30
30
  require 'hilfer/rails_locator.rb'
31
31
  HAS_RAILS_LOCATOR = true
32
- rescue
32
+ rescue LoadError
33
33
  puts "ActiveSupport not loaded. No rails-specific keystrokes"
34
34
  HAS_RAILS_LOCATOR = false
35
35
  end
@@ -38,7 +38,7 @@ end
38
38
  begin
39
39
  require 'hilfer/svn_colours.rb'
40
40
  HAS_SUBVERSION = true
41
- rescue
41
+ rescue LoadError
42
42
  puts "svn/client not loaded. Coloured SVN status will not be displayed."
43
43
  HAS_SUBVERSION = false
44
44
  end
@@ -196,19 +196,19 @@ class TreeViewer
196
196
  item = iter[0]
197
197
 
198
198
  # figure out which icon to use
199
- stock =
199
+ icon =
200
200
  if item.dir?
201
201
  if renderer.expanded?
202
202
  Gtk::Stock::OPEN
203
203
  else
204
- Gtk::Stock::OPEN
204
+ Gtk::Stock::DIRECTORY
205
205
  end
206
206
  else
207
207
  Gtk::Stock::FILE
208
208
  end
209
209
 
210
210
  # set the icon
211
- renderer.pixbuf = @view.render_icon( stock, Gtk::IconSize::MENU, 'cell_renderer' )
211
+ renderer.pixbuf = @view.render_icon( icon, Gtk::IconSize::MENU, 'cell_renderer' )
212
212
  end
213
213
 
214
214
  # display the file name
@@ -317,8 +317,9 @@ class TreeViewer
317
317
  end
318
318
  end
319
319
  end
320
-
320
+
321
321
  # handle keypresses
322
+ # TODO use HandlerDefn
322
323
  def init_keys
323
324
  @view.signal_connect( 'key-press-event' ) do |widget,event|
324
325
  puts "event: #{event.inspect}" if $options[:debug]
@@ -369,7 +370,7 @@ class TreeViewer
369
370
  confirm_delete_files( iters )
370
371
 
371
372
  # ctrl-e and F2 edits the file name
372
- when event.match( :e, :f2 ) && event.state.control_mask?
373
+ when ( event.e? && event.state.control_mask? ) || event.f2?
373
374
  # make sure all the files are selected
374
375
  rows = widget.selection.selected_rows
375
376
  rows.each do |path|
@@ -397,15 +398,15 @@ class TreeViewer
397
398
 
398
399
  # ctrl-c copies current selections as text
399
400
  when event.c? && event.state.control_mask? && !event.state.shift_mask?
400
- paths = ""
401
+ paths = []
401
402
 
402
403
  # fetch all selected items
403
404
  # don't use a join here so we get a trailing newline
404
405
  widget.selection.selected_each do |model, path, iter|
405
- paths << model.get_value( iter, 0 ).path << "\n"
406
+ paths << model.get_value( iter, 0 ).path
406
407
  end
407
408
 
408
- Gtk::Clipboard.get( Gdk::Selection::CLIPBOARD ).text = paths
409
+ Gtk::Clipboard.get( Gdk::Selection::CLIPBOARD ).text = paths.join("\n")
409
410
 
410
411
  # ctrl-v selects the files in the clipboard
411
412
  when event.v? && event.state.control_mask? && !event.state.shift_mask?
@@ -568,7 +569,7 @@ class TreeViewer
568
569
  end
569
570
 
570
571
  # left means close level(s)
571
- when event.left? && event.state.empty?
572
+ when event.left?
572
573
  widget.selection.selected_each do |model, path, iter|
573
574
  widget.collapse_row( path ) if iter[0].dir?
574
575
  end
@@ -1,3 +1,3 @@
1
1
  module Hilfer
2
- VERSION = '0.10.1'
2
+ VERSION = '0.11.3'
3
3
  end
@@ -19,7 +19,7 @@ class Window
19
19
 
20
20
  def self.list
21
21
  `wmctrl -lp`.split("\n").map do |line|
22
- line =~ /^(0x[\da-z]+)\s+(-?\d+)\s+(\d+)\s+(.*)/i
22
+ line =~ /^(0x[[:xdigit:]]+)\s+(-?\d+)\s+(\d+)\s+(.*)/i
23
23
  Window.new( $1, $2, $3, $4 )
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,47 +1,50 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: hilfer
3
- version: !ruby/object:Gem::Version
4
- version: 0.10.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.11.3
5
+ prerelease:
5
6
  platform: ruby
6
- authors:
7
+ authors:
7
8
  - John Anderson
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
-
12
- date: 2009-08-03 00:00:00 +02:00
12
+ date: 2011-06-21 00:00:00.000000000 +02:00
13
13
  default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: hoe
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: gtk2
17
+ requirement: &70808530 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 0.90.9
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *70808530
26
+ - !ruby/object:Gem::Dependency
27
+ name: bones
28
+ requirement: &70808250 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: 3.7.0
17
34
  type: :development
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 1.8.2
24
- version:
25
- description: |-
26
- Gtk2 directory browser for SciTE with plenty of keyboard shortcuts for directory
27
- and file navigation. It understands some of the Rails directory structure.
28
- Subversion file status is highlighted with different colours.
29
-
30
- Once upon a time there was a directory browser called jaffm (Just a File Manager).
31
- I liked the idea of an ultra simple file browser, but jaffm went extinct. So
32
- I wrote hilfer.
33
- email: john at semiosix dot com
34
- executables:
35
+ prerelease: false
36
+ version_requirements: *70808250
37
+ description: Programmers file browser for SciTE
38
+ email: panic@semiosix.com
39
+ executables:
35
40
  - hilfer
36
41
  - ssc
37
42
  extensions: []
38
-
39
- extra_rdoc_files:
43
+ extra_rdoc_files:
40
44
  - History.txt
41
- - Manifest.txt
42
45
  - README.txt
43
- files:
44
- - ChangeLog
46
+ - TODO
47
+ files:
45
48
  - History.txt
46
49
  - Manifest.txt
47
50
  - README.txt
@@ -64,34 +67,35 @@ files:
64
67
  - lib/hilfer/window.rb
65
68
  - lib/hilfer/xterm.rb
66
69
  - lib/hilfer/xfce_terminal.rb
70
+ - test/test_key_matcher.rb
67
71
  has_rdoc: true
68
- homepage: http://www.rubyforge.org/projects/hilfer
72
+ homepage: http://hilfer.rubyforge.org/hilfer
69
73
  licenses: []
70
-
71
74
  post_install_message:
72
- rdoc_options:
75
+ rdoc_options:
76
+ - -W
77
+ - http://gitweb.semiosix.com/hilfer.cgi?p=clevic;a=blob;f=%s;hb=HEAD
73
78
  - --main
74
79
  - README.txt
75
- require_paths:
80
+ require_paths:
76
81
  - lib
77
- required_ruby_version: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- version: "0"
82
- version:
83
- required_rubygems_version: !ruby/object:Gem::Requirement
84
- requirements:
85
- - - ">="
86
- - !ruby/object:Gem::Version
87
- version: "0"
88
- version:
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ! '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
89
94
  requirements: []
90
-
91
95
  rubyforge_project: hilfer
92
- rubygems_version: 1.3.5
96
+ rubygems_version: 1.6.2
93
97
  signing_key:
94
98
  specification_version: 3
95
- summary: Gtk2 directory browser for SciTE with plenty of keyboard shortcuts for directory and file navigation
96
- test_files:
99
+ summary: http://www.
100
+ test_files:
97
101
  - test/test_key_matcher.rb
data/ChangeLog DELETED
@@ -1,342 +0,0 @@
1
- 2009-08-03 15:52 panic
2
-
3
- * [r4358] History.txt, lib/hilfer/scite_editor.rb,
4
- lib/hilfer/tree_viewer.rb:
5
- Change pipe names. Add some comments.
6
-
7
- 2009-08-03 15:12 panic
8
-
9
- * [r4357] lib/hilfer/scite_editor.rb:
10
- Fix the process launching and waiting for scite. Change to
11
- debug?. Other debug message tweaks.
12
-
13
- 2009-08-03 14:32 panic
14
-
15
- * [r4356] lib/hilfer/tree_viewer.rb:
16
- whitespace changes
17
-
18
- 2009-08-01 18:53 panic
19
-
20
- * [r4355] lib/hilfer/version.rb:
21
- bump version
22
-
23
- 2009-08-01 18:52 panic
24
-
25
- * [r4353] Manifest.txt, lib/hilfer/window.rb:
26
- Remove debug output. Add files to Manifest.
27
-
28
- 2009-08-01 18:40 panic
29
-
30
- * [r4352] History.txt, README.txt:
31
- Notes and docs
32
-
33
- 2009-08-01 18:28 panic
34
-
35
- * [r4351] bin/hilfer, lib/hilfer/extensions.rb,
36
- lib/hilfer/scite_editor.rb, lib/hilfer/tree_viewer.rb,
37
- lib/hilfer/window.rb:
38
- Pass options to SciteEditor. Fix single-char event name matching.
39
- make sure wmctrl -l is matched with hex digits. Use puts instead
40
- of print.
41
-
42
- 2009-08-01 17:56 panic
43
-
44
- * [r4350] README.txt, lib/hilfer/extensions.rb,
45
- lib/hilfer/tree_viewer.rb, test, test/test_key_matcher.rb:
46
- Don't use scancodes anymore. Make keystroke checking more modular
47
- for easier testing.
48
-
49
- 2009-08-01 17:27 panic
50
-
51
- * [r4349] test, test-dir:
52
- move out of the way
53
-
54
- 2009-08-01 15:54 panic
55
-
56
- * [r4348] History.txt, Manifest.txt, TODO,
57
- lib/hilfer/scite_editor.rb, lib/hilfer/tree_viewer_window.rb,
58
- lib/hilfer/version.rb, lib/hilfer/window.rb,
59
- lib/hilfer/xfce_terminal.rb:
60
- raise window using wmctrl when files opened
61
-
62
- 2009-02-05 14:37 panic
63
-
64
- * [r4083] History.txt, lib/hilfer/tree_viewer.rb,
65
- lib/hilfer/version.rb:
66
- hack for Desktop Comfort Laser
67
-
68
- 2008-04-11 13:37 panic
69
-
70
- * [r3487] Manifest.txt, Rakefile, lib/hilfer/version.rb:
71
- add xfce_terminal to Manifest.txt
72
-
73
- 2008-04-11 09:36 panic
74
-
75
- * [r3486] Rakefile:
76
- clean up ChangeLog'
77
-
78
- 2008-04-11 09:27 panic
79
-
80
- * [r3485] README.txt:
81
- fix home page link
82
-
83
- 2008-04-11 09:17 panic
84
-
85
- * [r3483] History.txt, Rakefile, lib/hilfer/tree_viewer.rb,
86
- lib/hilfer/version.rb, lib/hilfer/xfce_terminal.rb:
87
- 0.9.4. ad xfce terminal. add version flag. fix ChangeLog issues
88
-
89
- 2008-04-11 08:47 panic
90
-
91
- * [r3482] bin/hilfer:
92
- add version flag
93
-
94
- 2008-04-10 13:20 panic
95
-
96
- * [r3480] History.txt, Rakefile, lib/hilfer/version.rb:
97
- Remove text-format dependency. Increase version
98
-
99
- 2008-04-10 12:56 panic
100
-
101
- * [r3479] ., History.txt, Manifest.txt, README.txt, Rakefile:
102
- clean up packaging and docs files
103
-
104
- 2008-04-10 12:33 panic
105
-
106
- * [r3476] History.txt:
107
- history changes
108
-
109
- 2008-04-10 12:27 panic
110
-
111
- * [r3475] History.txt, Manifest.txt, README.txt, Rakefile, TODO,
112
- bin/hilfer, bin/ssc, lib/hilfer/gnome_terminal.rb,
113
- lib/hilfer/hilfer_config.rb, lib/hilfer/hilfer_item.rb,
114
- lib/hilfer/hilfer_model.rb, lib/hilfer/rails_locator.rb,
115
- lib/hilfer/svn_colours.rb, lib/hilfer/tree_viewer.rb,
116
- lib/hilfer/tree_viewer_window.rb, lib/hilfer/version.rb,
117
- lib/hilfer/xterm.rb:
118
- Implement graceful failure for optional dependencies. Move
119
- classes to separate files.
120
-
121
- 2008-04-02 08:21 panic
122
-
123
- * [r3457] lib/hilfer/tree_viewer.rb:
124
- alt-q toggles editor shutdown
125
-
126
- 2008-04-01 21:28 panic
127
-
128
- * [r3456] Rakefile, bin/hilfer, lib/hilfer/svn_colours.rb,
129
- lib/hilfer/tree_viewer.rb:
130
- allow loading of svn/client to fail gracefully. output modifier
131
- mask in debug. Don't use -w, because of all the activerecord
132
- verbiage.
133
-
134
- 2008-04-01 20:21 panic
135
-
136
- * [r3455] README.txt:
137
- link to RubyForge project from docs pages
138
-
139
- 2008-04-01 18:37 panic
140
-
141
- * [r3454] History.txt, Rakefile:
142
- dependencies were the wrong way round
143
-
144
- 2008-04-01 18:18 panic
145
-
146
- * [r3453] Rakefile:
147
- bump version
148
-
149
- 2008-04-01 18:18 panic
150
-
151
- * [r3452] Rakefile, bin/hilfer, lib/hilfer/tree_viewer.rb:
152
- ruby-gtk is not a gem. find icon properly. fix enter key.
153
-
154
- 2008-04-01 15:31 panic
155
-
156
- * [r3451] ., History.txt, Manifest.txt, README.txt, Rakefile, TODO,
157
- bin/hilfer-icon.png, lib/hilfer/hilfer-icon.png,
158
- lib/hilfer/scite_editor.rb, lib/hilfer/svn_colours.rb:
159
- documentation
160
-
161
- 2008-04-01 14:45 panic
162
-
163
- * [r3450] ext:
164
- remove old bash files
165
-
166
- 2008-04-01 14:45 panic
167
-
168
- * [r3449] Manifest.txt, README.txt, Rakefile, bin/ssc,
169
- ext/Rakefile, ext/bin/ec, ext/bin/sd:
170
- add ssc. Rakefile for ext/bin
171
-
172
- 2008-04-01 09:38 panic
173
-
174
- * [r3448] bin/hilfer, lib/hilfer/scite_editor.rb:
175
- fix scite quitting
176
-
177
- 2008-03-31 19:54 panic
178
-
179
- * [r3446] ext, ext/bin, ext/bin/ec, ext/bin/sd, ext/ec,
180
- ext/extconf.rb, ext/sd, ext/setup.rb:
181
- first attempt at installing bash scripts
182
-
183
- 2008-03-31 19:17 panic
184
-
185
- * [r3445] Rakefile, TODO, bin/ec, bin/sd, ext, ext/ec,
186
- ext/extconf.rb, ext/sd, extconf.rb:
187
- create ext dir for bash scripts
188
-
189
- 2008-03-31 15:17 panic
190
-
191
- * [r3444] Rakefile:
192
- bump version
193
-
194
- 2008-03-31 15:16 panic
195
-
196
- * [r3443] Rakefile, TODO, bin/hilfer, dev/listen.rb,
197
- lib/hilfer/scite_editor.rb, lib/hilfer/tree_viewer.rb:
198
- copy files to editor. Improve cleanup. Option to quit editor on
199
- close. Relative paths for paste.
200
-
201
- 2008-03-31 12:22 panic
202
-
203
- * [r3442] Manifest.txt:
204
- add svn_colours
205
-
206
- 2008-03-31 12:22 panic
207
-
208
- * [r3441] bin/ed:
209
- remove
210
-
211
- 2008-03-31 12:21 panic
212
-
213
- * [r3440] bin/hilfer:
214
- remove tabs
215
- make sure app operates without the icon
216
-
217
- 2008-03-31 12:20 panic
218
-
219
- * [r3439] lib/hilfer/tree_viewer.rb:
220
- make sure Ctrl-Enter on a top-level file doesn't cause crash
221
-
222
- 2008-03-31 12:19 panic
223
-
224
- * [r3438] Rakefile:
225
- remove commented lines
226
- add a run and an irb task
227
-
228
- 2008-03-10 21:14 panic
229
-
230
- * [r3389] TODO:
231
- done
232
-
233
- 2008-03-10 21:05 panic
234
-
235
- * [r3388] History.txt, Manifest.txt, README.txt, Rakefile,
236
- bin/hilfer, bin/hilfer-icon.png, lib/hilfer/hilfer-icon.png,
237
- lib/hilfer/hilfer.rb:
238
- get gem creation working with Hoe
239
-
240
- 2008-03-09 21:15 panic
241
-
242
- * [r3387] ., Rakefile, bin, bin/ec, bin/ed, bin/hilfer, bin/sd,
243
- dev/hilfer.png, ec, ed, hilfer, hilfer-icon.png, hilfer.png,
244
- lib/hilfer/hilfer-icon.png, lib/hilfer/hilfer.rb,
245
- lib/hilfer/tree_viewer.rb, sd:
246
- do gem-compatible directory structure
247
-
248
- 2008-03-09 20:13 panic
249
-
250
- * [r3386] Rakefile, dev, dev/listen.rb, hilfer.rb,
251
- lib/hilfer/extconf.rb, lib/hilfer/rails_locator.rb, listen.rb,
252
- model.rb, model/model.rb, rails_locator.rb, scite_editor.rb,
253
- svn_colours.rb, tree_viewer.rb:
254
- remove old unused files
255
-
256
- 2007-06-14 10:55 panic
257
-
258
- * [r3283] Rakefile, extconf.rb, lib, lib/hilfer,
259
- lib/hilfer/extconf.rb, lib/hilfer/hilfer.rb,
260
- lib/hilfer/rails_locator.rb, lib/hilfer/scite_editor.rb,
261
- lib/hilfer/svn_colours.rb, lib/hilfer/tree_viewer.rb,
262
- tree_viewer.rb:
263
- add missing files
264
-
265
- 2007-06-04 13:25 panic
266
-
267
- * [r3270] ., TODO, ec, hilfer.rb, hilfer_options.rb,
268
- rails_locator.rb, scite_editor.rb, sd, svn_colours.rb:
269
- merged from no-model
270
-
271
- 2006-08-12 11:36 panic
272
-
273
- * [r2384] model, model/custom-list.c, model/custom-list.h,
274
- model/hilfer_tree_model.c, model/hilfer_tree_model.h,
275
- model/sec-custom-model-code.html:
276
- add model code
277
-
278
- 2006-08-12 11:34 root
279
-
280
- * [r2383] test:
281
- fix trunk oops
282
-
283
- 2006-08-12 11:34 root
284
-
285
- * [r2382] scite_editor.rb:
286
- fix trunk oops
287
-
288
- 2006-08-12 11:34 root
289
-
290
- * [r2381] model.rb:
291
- fix trunk oops
292
-
293
- 2006-08-12 11:34 root
294
-
295
- * [r2380] listen.rb:
296
- fix trunk oops
297
-
298
- 2006-08-12 11:34 root
299
-
300
- * [r2379] hilfer_options.rb:
301
- fix trunk oops
302
-
303
- 2006-08-12 11:34 root
304
-
305
- * [r2378] hilfer.rb:
306
- fix trunk oops
307
-
308
- 2006-08-12 11:34 root
309
-
310
- * [r2377] hilfer.png:
311
- fix trunk oops
312
-
313
- 2006-08-12 11:34 root
314
-
315
- * [r2376] hilfer-icon.png:
316
- fix trunk oops
317
-
318
- 2006-08-12 11:34 root
319
-
320
- * [r2375] hilfer:
321
- fix trunk oops
322
-
323
- 2006-08-12 11:34 root
324
-
325
- * [r2374] ed:
326
- fix trunk oops
327
-
328
- 2006-08-12 11:34 root
329
-
330
- * [r2373] ec:
331
- fix trunk oops
332
-
333
- 2006-08-12 11:34 root
334
-
335
- * [r2372] TODO:
336
- fix trunk oops
337
-
338
- 2006-08-12 11:22 panic
339
-
340
- * [r2368] .:
341
- make trunk
342
-