]> git.cworth.org Git - sup/blob - lib/sup/modes/thread-view-mode.rb
remove debugging change
[sup] / lib / sup / modes / thread-view-mode.rb
1 require 'open3'
2 module Redwood
3
4 class ThreadViewMode < LineCursorMode
5   ## this holds all info we need to lay out a message
6   class MessageLayout
7     attr_accessor :top, :bot, :prev, :next, :depth, :width, :state, :color, :star_color, :orig_new
8   end
9
10   class ChunkLayout
11     attr_accessor :state
12   end
13
14   DATE_FORMAT = "%B %e %Y %l:%M%P"
15   INDENT_SPACES = 2 # how many spaces to indent child messages
16
17   HookManager.register "detailed-headers", <<EOS
18 Add or remove headers from the detailed header display of a message.
19 Variables:
20   message: The message whose headers are to be formatted.
21   headers: A hash of header (name, value) pairs, initialized to the default
22            headers.
23 Return value:
24   None. The variable 'headers' should be modified in place.
25 EOS
26
27   register_keymap do |k|
28     k.add :toggle_detailed_header, "Toggle detailed header", 'h'
29     k.add :show_header, "Show full message header", 'H'
30     k.add :activate_chunk, "Expand/collapse or activate item", :enter
31     k.add :expand_all_messages, "Expand/collapse all messages", 'E'
32     k.add :edit_draft, "Edit draft", 'e'
33     k.add :send_draft, "Send draft", 'y'
34     k.add :edit_labels, "Edit or add labels for a thread", 'l'
35     k.add :expand_all_quotes, "Expand/collapse all quotes in a message", 'o'
36     k.add :jump_to_next_open, "Jump to next open message", 'n'
37     k.add :jump_to_prev_open, "Jump to previous open message", 'p'
38     k.add :align_current_message, "Align current message in buffer", 'z'
39     k.add :toggle_starred, "Star or unstar message", '*'
40     k.add :toggle_new, "Toggle unread/read status of message", 'N'
41 #    k.add :collapse_non_new_messages, "Collapse all but unread messages", 'N'
42     k.add :reply, "Reply to a message", 'r'
43     k.add :forward, "Forward a message or attachment", 'f'
44     k.add :alias, "Edit alias/nickname for a person", 'i'
45     k.add :edit_as_new, "Edit message as new", 'D'
46     k.add :save_to_disk, "Save message/attachment to disk", 's'
47     k.add :search, "Search for messages from particular people", 'S'
48     k.add :compose, "Compose message to person", 'm'
49     k.add :subscribe_to_list, "Subscribe to/unsubscribe from mailing list", "("
50     k.add :unsubscribe_from_list, "Subscribe to/unsubscribe from mailing list", ")"
51     k.add :pipe_message, "Pipe message or attachment to a shell command", '|'
52
53     k.add_multi "(a)rchive/(d)elete/mark as (s)pam/mark as u(N)read:", '.' do |kk|
54       kk.add :archive_and_kill, "Archive this thread and kill buffer", 'a'
55       kk.add :delete_and_kill, "Delete this thread and kill buffer", 'd'
56       kk.add :spam_and_kill, "Mark this thread as spam and kill buffer", 's'
57       kk.add :unread_and_kill, "Mark this thread as unread and kill buffer", 'N'
58     end
59
60     k.add_multi "(a)rchive/(d)elete/mark as (s)pam/mark as u(N)read/do (n)othing:", ',' do |kk|
61       kk.add :archive_and_next, "Archive this thread, kill buffer, and view next", 'a'
62       kk.add :delete_and_next, "Delete this thread, kill buffer, and view next", 'd'
63       kk.add :spam_and_next, "Mark this thread as spam, kill buffer, and view next", 's'
64       kk.add :unread_and_next, "Mark this thread as unread, kill buffer, and view next", 'N'
65       kk.add :do_nothing_and_next, "Kill buffer, and view next", 'n'
66     end
67
68     k.add_multi "(a)rchive/(d)elete/mark as (s)pam/mark as u(N)read/do (n)othing:", ']' do |kk|
69       kk.add :archive_and_prev, "Archive this thread, kill buffer, and view previous", 'a'
70       kk.add :delete_and_prev, "Delete this thread, kill buffer, and view previous", 'd'
71       kk.add :spam_and_prev, "Mark this thread as spam, kill buffer, and view previous", 's'
72       kk.add :unread_and_prev, "Mark this thread as unread, kill buffer, and view previous", 'N'
73       kk.add :do_nothing_and_prev, "Kill buffer, and view previous", 'n'
74     end
75   end
76
77   ## there are a couple important instance variables we hold to format
78   ## the thread and to provide line-based functionality. @layout is a
79   ## map from Messages to MessageLayouts, and @chunk_layout from
80   ## Chunks to ChunkLayouts.  @message_lines is a map from row #s to
81   ## Message objects.  @chunk_lines is a map from row #s to Chunk
82   ## objects. @person_lines is a map from row #s to Person objects.
83
84   def initialize thread, hidden_labels=[], index_mode=nil
85     super()
86     @thread = thread
87     @hidden_labels = hidden_labels
88
89     ## used for dispatch-and-next
90     @index_mode = index_mode
91     @dying = false
92
93     @layout = SavingHash.new { MessageLayout.new }
94     @chunk_layout = SavingHash.new { ChunkLayout.new }
95     earliest, latest = nil, nil
96     latest_date = nil
97     altcolor = false
98
99     @thread.each do |m, d, p|
100       next unless m
101       earliest ||= m
102       @layout[m].state = initial_state_for m
103       @layout[m].color = altcolor ? :alternate_patina_color : :message_patina_color
104       @layout[m].star_color = altcolor ? :alternate_starred_patina_color : :starred_patina_color
105       @layout[m].orig_new = m.has_label? :read
106       altcolor = !altcolor
107       if latest_date.nil? || m.date > latest_date
108         latest_date = m.date
109         latest = m
110       end
111     end
112
113     @layout[latest].state = :open if @layout[latest].state == :closed
114     @layout[earliest].state = :detailed if earliest.has_label?(:unread) || @thread.size == 1
115
116     @thread.remove_label :unread
117     regen_text
118   end
119
120   def draw_line ln, opts={}
121     if ln == curpos
122       super ln, :highlight => true
123     else
124       super
125     end
126   end
127   def lines; @text.length; end
128   def [] i; @text[i]; end
129
130   def show_header
131     m = @message_lines[curpos] or return
132     BufferManager.spawn_unless_exists("Full header for #{m.id}") do
133       TextMode.new m.raw_header
134     end
135   end
136
137   def toggle_detailed_header
138     m = @message_lines[curpos] or return
139     @layout[m].state = (@layout[m].state == :detailed ? :open : :detailed)
140     update
141   end
142
143   def reply
144     m = @message_lines[curpos] or return
145     mode = ReplyMode.new m
146     BufferManager.spawn "Reply to #{m.subj}", mode
147   end
148
149   def subscribe_to_list
150     m = @message_lines[curpos] or return
151     if m.list_subscribe && m.list_subscribe =~ /<mailto:(.*?)\?(subject=(.*?))>/
152       ComposeMode.spawn_nicely :from => AccountManager.account_for(m.recipient_email), :to => [Person.from_address($1)], :subj => $3
153     else
154       BufferManager.flash "Can't find List-Subscribe header for this message."
155     end
156   end
157
158   def unsubscribe_from_list
159     m = @message_lines[curpos] or return
160     if m.list_unsubscribe && m.list_unsubscribe =~ /<mailto:(.*?)\?(subject=(.*?))>/
161       ComposeMode.spawn_nicely :from => AccountManager.account_for(m.recipient_email), :to => [Person.from_address($1)], :subj => $3
162     else
163       BufferManager.flash "Can't find List-Unsubscribe header for this message."
164     end
165   end
166
167   def forward
168     if(chunk = @chunk_lines[curpos]) && chunk.is_a?(Chunk::Attachment)
169       ForwardMode.spawn_nicely :attachments => [chunk]
170     elsif(m = @message_lines[curpos])
171       ForwardMode.spawn_nicely :message => m
172     end
173   end
174
175   include CanAliasContacts
176   def alias
177     p = @person_lines[curpos] or return
178     alias_contact p
179     update
180   end
181
182   def search
183     p = @person_lines[curpos] or return
184     mode = PersonSearchResultsMode.new [p]
185     BufferManager.spawn "Search for #{p.name}", mode
186     mode.load_threads :num => mode.buffer.content_height
187   end    
188
189   def compose
190     p = @person_lines[curpos]
191     if p
192       ComposeMode.spawn_nicely :to_default => p
193     else
194       ComposeMode.spawn_nicely
195     end
196   end    
197
198   def edit_labels
199     reserved_labels = @thread.labels.select { |l| LabelManager::RESERVED_LABELS.include? l }
200     new_labels = BufferManager.ask_for_labels :label, "Labels for thread: ", @thread.labels
201
202     return unless new_labels
203     @thread.labels = (reserved_labels + new_labels).uniq
204     new_labels.each { |l| LabelManager << l }
205     update
206     UpdateManager.relay self, :labeled, @thread.first
207   end
208
209   def toggle_starred
210     m = @message_lines[curpos] or return
211     toggle_label m, :starred
212   end
213
214   def toggle_new
215     m = @message_lines[curpos] or return
216     toggle_label m, :unread
217   end
218
219   def toggle_label m, label
220     if m.has_label? label
221       m.remove_label label
222     else
223       m.add_label label
224     end
225     ## TODO: don't recalculate EVERYTHING just to add a stupid little
226     ## star to the display
227     update
228     UpdateManager.relay self, :single_message_labeled, m
229   end
230
231   ## called when someone presses enter when the cursor is highlighting
232   ## a chunk. for expandable chunks (including messages) we toggle
233   ## open/closed state; for viewable chunks (like attachments) we
234   ## view.
235   def activate_chunk
236     chunk = @chunk_lines[curpos] or return
237     layout = 
238       if chunk.is_a?(Message)
239         @layout[chunk]
240       elsif chunk.expandable?
241         @chunk_layout[chunk]
242       end
243     if layout
244       layout.state = (layout.state != :closed ? :closed : :open)
245       #cursor_down if layout.state == :closed # too annoying
246       update
247     elsif chunk.viewable?
248       view chunk
249     end
250   end
251
252   def edit_as_new
253     m = @message_lines[curpos] or return
254     mode = ComposeMode.new(:body => m.quotable_body_lines, :to => m.to, :cc => m.cc, :subj => m.subj, :bcc => m.bcc, :refs => m.refs, :replytos => m.replytos)
255     BufferManager.spawn "edit as new", mode
256     mode.edit_message
257   end
258
259   def save_to_disk
260     chunk = @chunk_lines[curpos] or return
261     case chunk
262     when Chunk::Attachment
263       default_dir = File.join(($config[:default_attachment_save_dir] || "."), chunk.filename)
264       fn = BufferManager.ask_for_filename :filename, "Save attachment to file: ", default_dir
265       save_to_file(fn) { |f| f.print chunk.raw_content } if fn
266     else
267       m = @message_lines[curpos]
268       fn = BufferManager.ask_for_filename :filename, "Save message to file: "
269       return unless fn
270       save_to_file(fn) do |f|
271         m.each_raw_message_line { |l| f.print l }
272       end
273     end
274   end
275
276   def edit_draft
277     m = @message_lines[curpos] or return
278     if m.is_draft?
279       mode = ResumeMode.new m
280       BufferManager.spawn "Edit message", mode
281       BufferManager.kill_buffer self.buffer
282       mode.edit_message
283     else
284       BufferManager.flash "Not a draft message!"
285     end
286   end
287
288   def send_draft
289     m = @message_lines[curpos] or return
290     if m.is_draft?
291       mode = ResumeMode.new m
292       BufferManager.spawn "Send message", mode
293       BufferManager.kill_buffer self.buffer
294       mode.send_message
295     else
296       BufferManager.flash "Not a draft message!"
297     end
298   end
299
300   def jump_to_first_open loose_alignment=false
301     m = @message_lines[0] or return
302     if @layout[m].state != :closed
303       jump_to_message m, loose_alignment
304     else
305       jump_to_next_open loose_alignment
306     end
307   end
308
309   def jump_to_next_open loose_alignment=false
310     return continue_search_in_buffer if in_search? # hack: allow 'n' to apply to both operations
311     m = (curpos ... @message_lines.length).argfind { |i| @message_lines[i] }
312     return unless m
313     while nextm = @layout[m].next
314       break if @layout[nextm].state != :closed
315       m = nextm
316     end
317     jump_to_message nextm, loose_alignment if nextm
318   end
319
320   def align_current_message
321     m = @message_lines[curpos] or return
322     jump_to_message m
323   end
324
325   def jump_to_prev_open loose_alignment=false
326     m = (0 .. curpos).to_a.reverse.argfind { |i| @message_lines[i] } # bah, .to_a
327     return unless m
328     ## jump to the top of the current message if we're in the body;
329     ## otherwise, to the previous message
330     
331     top = @layout[m].top
332     if curpos == top
333       while(prevm = @layout[m].prev)
334         break if @layout[prevm].state != :closed
335         m = prevm
336       end
337       jump_to_message prevm, loose_alignment if prevm
338     else
339       jump_to_message m, loose_alignment
340     end
341   end
342
343   IDEAL_TOP_CONTEXT = 3 # try and give 3 rows of top context
344   IDEAL_LEFT_CONTEXT = 4 # try and give 4 columns of left context
345   def jump_to_message m, loose_alignment=false
346     l = @layout[m]
347     left = l.depth * INDENT_SPACES
348     right = left + l.width
349
350     ## jump to the top line
351     if loose_alignment
352       jump_to_line [l.top - IDEAL_TOP_CONTEXT, 0].max # give 3 lines of top context
353     else
354       jump_to_line l.top
355     end
356
357     ## jump to the left column
358     ideal_left = left +
359       if loose_alignment
360         -IDEAL_LEFT_CONTEXT + (l.width - buffer.content_width + IDEAL_LEFT_CONTEXT + 1).clamp(0, IDEAL_LEFT_CONTEXT)
361       else
362         0
363       end
364
365     jump_to_col [ideal_left, 0].max
366
367     ## either way, move the cursor to the first line
368     set_cursor_pos l.top
369   end
370
371   def expand_all_messages
372     @global_message_state ||= :closed
373     @global_message_state = (@global_message_state == :closed ? :open : :closed)
374     @layout.each { |m, l| l.state = @global_message_state }
375     update
376   end
377
378   def collapse_non_new_messages
379     @layout.each { |m, l| l.state = l.orig_new ? :open : :closed }
380     update
381   end
382
383   def expand_all_quotes
384     if(m = @message_lines[curpos])
385       quotes = m.chunks.select { |c| (c.is_a?(Chunk::Quote) || c.is_a?(Chunk::Signature)) && c.lines.length > 1 }
386       numopen = quotes.inject(0) { |s, c| s + (@chunk_layout[c].state == :open ? 1 : 0) }
387       newstate = numopen > quotes.length / 2 ? :closed : :open
388       quotes.each { |c| @chunk_layout[c].state = newstate }
389       update
390     end
391   end
392
393   def cleanup
394     @layout = @chunk_layout = @text = nil # for good luck
395   end
396
397   def archive_and_kill; archive_and_then :kill end
398   def spam_and_kill; spam_and_then :kill end
399   def delete_and_kill; delete_and_then :kill end
400   def unread_and_kill; unread_and_then :kill end
401
402   def archive_and_next; archive_and_then :next end
403   def spam_and_next; spam_and_then :next end
404   def delete_and_next; delete_and_then :next end
405   def unread_and_next; unread_and_then :next end
406   def do_nothing_and_next; do_nothing_and_then :next end
407
408   def archive_and_prev; archive_and_then :prev end
409   def spam_and_prev; spam_and_then :prev end
410   def delete_and_prev; delete_and_then :prev end
411   def unread_and_prev; unread_and_then :prev end
412   def do_nothing_and_prev; do_nothing_and_then :prev end
413
414   def archive_and_then op
415     dispatch op do
416       @thread.remove_label :inbox
417       UpdateManager.relay self, :archived, @thread.first
418     end
419   end
420
421   def spam_and_then op
422     dispatch op do
423       @thread.apply_label :spam
424       UpdateManager.relay self, :spammed, @thread.first
425     end
426   end
427
428   def delete_and_then op
429     dispatch op do
430       @thread.apply_label :deleted
431       UpdateManager.relay self, :deleted, @thread.first
432     end
433   end
434
435   def unread_and_then op
436     dispatch op do
437       @thread.apply_label :unread
438       UpdateManager.relay self, :unread, @thread.first
439     end
440   end
441
442   def do_nothing_and_then op
443     dispatch op
444   end
445
446   def dispatch op
447     return if @dying
448     @dying = true
449
450     l = lambda do
451       yield if block_given?
452       BufferManager.kill_buffer_safely buffer
453     end
454
455     case op
456     when :next
457       @index_mode.launch_next_thread_after @thread, &l
458     when :prev
459       @index_mode.launch_prev_thread_before @thread, &l
460     when :kill
461       l.call
462     else
463       raise ArgumentError, "unknown thread dispatch operation #{op.inspect}"
464     end
465   end
466   private :dispatch
467
468   def pipe_message
469     chunk = @chunk_lines[curpos]
470     chunk = nil unless chunk.is_a?(Chunk::Attachment)
471     message = @message_lines[curpos] unless chunk
472
473     return unless chunk || message
474
475     command = BufferManager.ask(:shell, "pipe command: ")
476     return if command.nil? || command.empty?
477
478     output = pipe_to_process(command) do |stream|
479       if chunk
480         stream.print chunk.raw_content
481       else
482         message.each_raw_message_line { |l| stream.print l }
483       end
484     end
485
486     if output
487       BufferManager.spawn "Output of '#{command}'", TextMode.new(output)
488     else
489       BufferManager.flash "'#{command}' done!"
490     end
491   end
492
493 private
494
495   def initial_state_for m
496     if m.has_label?(:starred) || m.has_label?(:unread)
497       :open
498     else
499       :closed
500     end
501   end
502
503   def update
504     regen_text
505     buffer.mark_dirty if buffer
506   end
507
508   ## here we generate the actual content lines. we accumulate
509   ## everything into @text, and we set @chunk_lines and
510   ## @message_lines, and we update @layout.
511   def regen_text
512     @text = []
513     @chunk_lines = []
514     @message_lines = []
515     @person_lines = []
516
517     prevm = nil
518     @thread.each do |m, depth, parent|
519       unless m.is_a? Message # handle nil and :fake_root
520         @text += chunk_to_lines m, nil, @text.length, depth, parent
521         next
522       end
523       l = @layout[m]
524
525       ## is this still necessary?
526       next unless @layout[m].state # skip discarded drafts
527
528       ## build the patina
529       text = chunk_to_lines m, l.state, @text.length, depth, parent, l.color, l.star_color
530       
531       l.top = @text.length
532       l.bot = @text.length + text.length # updated below
533       l.prev = prevm
534       l.next = nil
535       l.depth = depth
536       # l.state we preserve
537       l.width = 0 # updated below
538       @layout[l.prev].next = m if l.prev
539
540       (0 ... text.length).each do |i|
541         @chunk_lines[@text.length + i] = m
542         @message_lines[@text.length + i] = m
543         lw = text[i].flatten.select { |x| x.is_a? String }.map { |x| x.display_length }.sum
544       end
545
546       @text += text
547       prevm = m 
548       if l.state != :closed
549         m.chunks.each do |c|
550           cl = @chunk_layout[c]
551
552           ## set the default state for chunks
553           cl.state ||=
554             if c.expandable? && c.respond_to?(:initial_state)
555               c.initial_state
556             else
557               :closed
558             end
559
560           text = chunk_to_lines c, cl.state, @text.length, depth
561           (0 ... text.length).each do |i|
562             @chunk_lines[@text.length + i] = c
563             @message_lines[@text.length + i] = m
564             lw = text[i].flatten.select { |x| x.is_a? String }.map { |x| x.display_length }.sum - (depth * INDENT_SPACES)
565             l.width = lw if lw > l.width
566           end
567           @text += text
568         end
569         @layout[m].bot = @text.length
570       end
571     end
572   end
573
574   def message_patina_lines m, state, start, parent, prefix, color, star_color
575     prefix_widget = [color, prefix]
576
577     open_widget = [color, (state == :closed ? "+ " : "- ")]
578     new_widget = [color, (m.has_label?(:unread) ? "N" : " ")]
579     starred_widget = if m.has_label?(:starred)
580         [star_color, "*"]
581       else
582         [color, " "]
583       end
584     attach_widget = [color, (m.has_label?(:attachment) ? "@" : " ")]
585
586     case state
587     when :open
588       @person_lines[start] = m.from
589       [[prefix_widget, open_widget, new_widget, attach_widget, starred_widget,
590         [color, 
591             "#{m.from ? m.from.mediumname : '?'} to #{m.recipients.map { |l| l.shortname }.join(', ')} #{m.date.to_nice_s} (#{m.date.to_nice_distance_s})"]]]
592
593     when :closed
594       @person_lines[start] = m.from
595       [[prefix_widget, open_widget, new_widget, attach_widget, starred_widget,
596         [color, 
597         "#{m.from ? m.from.mediumname : '?'}, #{m.date.to_nice_s} (#{m.date.to_nice_distance_s})  #{m.snippet}"]]]
598
599     when :detailed
600       @person_lines[start] = m.from
601       from_line = [[prefix_widget, open_widget, new_widget, attach_widget, starred_widget,
602           [color, "From: #{m.from ? format_person(m.from) : '?'}"]]]
603
604       addressee_lines = []
605       unless m.to.empty?
606         m.to.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
607         addressee_lines += format_person_list "   To: ", m.to
608       end
609       unless m.cc.empty?
610         m.cc.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
611         addressee_lines += format_person_list "   Cc: ", m.cc
612       end
613       unless m.bcc.empty?
614         m.bcc.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
615         addressee_lines += format_person_list "   Bcc: ", m.bcc
616       end
617
618       headers = OrderedHash.new
619       headers["Date"] = "#{m.date.strftime DATE_FORMAT} (#{m.date.to_nice_distance_s})"
620       headers["Subject"] = m.subj
621
622       show_labels = @thread.labels - LabelManager::HIDDEN_RESERVED_LABELS
623       unless show_labels.empty?
624         headers["Labels"] = show_labels.map { |x| x.to_s }.sort.join(', ')
625       end
626       if parent
627         headers["In reply to"] = "#{parent.from.mediumname}'s message of #{parent.date.strftime DATE_FORMAT}"
628       end
629
630       HookManager.run "detailed-headers", :message => m, :headers => headers
631       
632       from_line + (addressee_lines + headers.map { |k, v| "   #{k}: #{v}" }).map { |l| [[color, prefix + "  " + l]] }
633     end
634   end
635
636   def format_person_list prefix, people
637     ptext = people.map { |p| format_person p }
638     pad = " " * prefix.display_length
639     [prefix + ptext.first + (ptext.length > 1 ? "," : "")] + 
640       ptext[1 .. -1].map_with_index do |e, i|
641         pad + e + (i == ptext.length - 1 ? "" : ",")
642       end
643   end
644
645   def format_person p
646     p.longname + (ContactManager.is_aliased_contact?(p) ? " (#{ContactManager.alias_for p})" : "")
647   end
648
649   ## todo: check arguments on this overly complex function
650   def chunk_to_lines chunk, state, start, depth, parent=nil, color=nil, star_color=nil
651     prefix = " " * INDENT_SPACES * depth
652     case chunk
653     when :fake_root
654       [[[:missing_message_color, "#{prefix}<one or more unreceived messages>"]]]
655     when nil
656       [[[:missing_message_color, "#{prefix}<an unreceived message>"]]]
657     when Message
658       message_patina_lines(chunk, state, start, parent, prefix, color, star_color) +
659         (chunk.is_draft? ? [[[:draft_notification_color, prefix + " >>> This message is a draft. Hit 'e' to edit, 'y' to send. <<<"]]] : [])
660
661     else
662       raise "Bad chunk: #{chunk.inspect}" unless chunk.respond_to?(:inlineable?) ## debugging
663       if chunk.inlineable?
664         chunk.lines.map { |line| [[chunk.color, "#{prefix}#{line}"]] }
665       elsif chunk.expandable?
666         case state
667         when :closed
668           [[[chunk.patina_color, "#{prefix}+ #{chunk.patina_text}"]]]
669         when :open
670           [[[chunk.patina_color, "#{prefix}- #{chunk.patina_text}"]]] + chunk.lines.map { |line| [[chunk.color, "#{prefix}#{line}"]] }
671         end
672       else
673         [[[chunk.patina_color, "#{prefix}x #{chunk.patina_text}"]]]
674       end
675     end
676   end
677
678   def view chunk
679     BufferManager.flash "viewing #{chunk.content_type} attachment..."
680     success = chunk.view!
681     BufferManager.erase_flash
682     BufferManager.completely_redraw_screen
683     unless success
684       BufferManager.spawn "Attachment: #{chunk.filename}", TextMode.new(chunk.to_s, chunk.filename)
685       BufferManager.flash "Couldn't execute view command, viewing as text."
686     end
687   end
688 end
689
690 end