]> git.cworth.org Git - sup/blob - lib/sup/modes/thread-view-mode.rb
Display a default save path for attachments
[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 => [PersonManager.person_for($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 => [PersonManager.person_for($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       fn = BufferManager.ask_for_filename :filename, "Save attachment to file: ", ($config[:default_attachment_save_dir] + chunk.filename)
264       save_to_file(fn) { |f| f.print chunk.raw_content } if fn
265     else
266       m = @message_lines[curpos]
267       fn = BufferManager.ask_for_filename :filename, "Save message to file: "
268       return unless fn
269       save_to_file(fn) do |f|
270         m.each_raw_message_line { |l| f.print l }
271       end
272     end
273   end
274
275   def edit_draft
276     m = @message_lines[curpos] or return
277     if m.is_draft?
278       mode = ResumeMode.new m
279       BufferManager.spawn "Edit message", mode
280       BufferManager.kill_buffer self.buffer
281       mode.edit_message
282     else
283       BufferManager.flash "Not a draft message!"
284     end
285   end
286
287   def send_draft
288     m = @message_lines[curpos] or return
289     if m.is_draft?
290       mode = ResumeMode.new m
291       BufferManager.spawn "Send message", mode
292       BufferManager.kill_buffer self.buffer
293       mode.send_message
294     else
295       BufferManager.flash "Not a draft message!"
296     end
297   end
298
299   def jump_to_first_open loose_alignment=false
300     m = @message_lines[0] or return
301     if @layout[m].state != :closed
302       jump_to_message m, loose_alignment
303     else
304       jump_to_next_open loose_alignment
305     end
306   end
307
308   def jump_to_next_open loose_alignment=false
309     return continue_search_in_buffer if in_search? # hack: allow 'n' to apply to both operations
310     m = (curpos ... @message_lines.length).argfind { |i| @message_lines[i] }
311     return unless m
312     while nextm = @layout[m].next
313       break if @layout[nextm].state != :closed
314       m = nextm
315     end
316     jump_to_message nextm, loose_alignment if nextm
317   end
318
319   def align_current_message
320     m = @message_lines[curpos] or return
321     jump_to_message m
322   end
323
324   def jump_to_prev_open loose_alignment=false
325     m = (0 .. curpos).to_a.reverse.argfind { |i| @message_lines[i] } # bah, .to_a
326     return unless m
327     ## jump to the top of the current message if we're in the body;
328     ## otherwise, to the previous message
329     
330     top = @layout[m].top
331     if curpos == top
332       while(prevm = @layout[m].prev)
333         break if @layout[prevm].state != :closed
334         m = prevm
335       end
336       jump_to_message prevm, loose_alignment if prevm
337     else
338       jump_to_message m, loose_alignment
339     end
340   end
341
342   IDEAL_TOP_CONTEXT = 3 # try and give 3 rows of top context
343   IDEAL_LEFT_CONTEXT = 4 # try and give 4 columns of left context
344   def jump_to_message m, loose_alignment=false
345     l = @layout[m]
346     left = l.depth * INDENT_SPACES
347     right = left + l.width
348
349     ## jump to the top line
350     if loose_alignment
351       jump_to_line [l.top - IDEAL_TOP_CONTEXT, 0].max # give 3 lines of top context
352     else
353       jump_to_line l.top
354     end
355
356     ## jump to the left column
357     ideal_left = left +
358       if loose_alignment
359         -IDEAL_LEFT_CONTEXT + (l.width - buffer.content_width + IDEAL_LEFT_CONTEXT + 1).clamp(0, IDEAL_LEFT_CONTEXT)
360       else
361         0
362       end
363
364     jump_to_col [ideal_left, 0].max
365
366     ## either way, move the cursor to the first line
367     set_cursor_pos l.top
368   end
369
370   def expand_all_messages
371     @global_message_state ||= :closed
372     @global_message_state = (@global_message_state == :closed ? :open : :closed)
373     @layout.each { |m, l| l.state = @global_message_state }
374     update
375   end
376
377   def collapse_non_new_messages
378     @layout.each { |m, l| l.state = l.orig_new ? :open : :closed }
379     update
380   end
381
382   def expand_all_quotes
383     if(m = @message_lines[curpos])
384       quotes = m.chunks.select { |c| (c.is_a?(Chunk::Quote) || c.is_a?(Chunk::Signature)) && c.lines.length > 1 }
385       numopen = quotes.inject(0) { |s, c| s + (@chunk_layout[c].state == :open ? 1 : 0) }
386       newstate = numopen > quotes.length / 2 ? :closed : :open
387       quotes.each { |c| @chunk_layout[c].state = newstate }
388       update
389     end
390   end
391
392   def cleanup
393     @layout = @chunk_layout = @text = nil # for good luck
394   end
395
396   def archive_and_kill; archive_and_then :kill end
397   def spam_and_kill; spam_and_then :kill end
398   def delete_and_kill; delete_and_then :kill end
399   def unread_and_kill; unread_and_then :kill end
400
401   def archive_and_next; archive_and_then :next end
402   def spam_and_next; spam_and_then :next end
403   def delete_and_next; delete_and_then :next end
404   def unread_and_next; unread_and_then :next end
405   def do_nothing_and_next; do_nothing_and_then :next end
406
407   def archive_and_prev; archive_and_then :prev end
408   def spam_and_prev; spam_and_then :prev end
409   def delete_and_prev; delete_and_then :prev end
410   def unread_and_prev; unread_and_then :prev end
411   def do_nothing_and_prev; do_nothing_and_then :prev end
412
413   def archive_and_then op
414     dispatch op do
415       @thread.remove_label :inbox
416       UpdateManager.relay self, :archived, @thread.first
417     end
418   end
419
420   def spam_and_then op
421     dispatch op do
422       @thread.apply_label :spam
423       UpdateManager.relay self, :spammed, @thread.first
424     end
425   end
426
427   def delete_and_then op
428     dispatch op do
429       @thread.apply_label :deleted
430       UpdateManager.relay self, :deleted, @thread.first
431     end
432   end
433
434   def unread_and_then op
435     dispatch op do
436       @thread.apply_label :unread
437       UpdateManager.relay self, :unread, @thread.first
438     end
439   end
440
441   def do_nothing_and_then op
442     dispatch op
443   end
444
445   def dispatch op
446     return if @dying
447     @dying = true
448
449     l = lambda do
450       yield if block_given?
451       BufferManager.kill_buffer_safely buffer
452     end
453
454     case op
455     when :next
456       @index_mode.launch_next_thread_after @thread, &l
457     when :prev
458       @index_mode.launch_prev_thread_before @thread, &l
459     when :kill
460       l.call
461     else
462       raise ArgumentError, "unknown thread dispatch operation #{op.inspect}"
463     end
464   end
465   private :dispatch
466
467   def pipe_message
468     chunk = @chunk_lines[curpos]
469     chunk = nil unless chunk.is_a?(Chunk::Attachment)
470     message = @message_lines[curpos] unless chunk
471
472     return unless chunk || message
473
474     command = BufferManager.ask(:shell, "pipe command: ")
475     return if command.nil? || command.empty?
476
477     output = pipe_to_process(command) do |stream|
478       if chunk
479         stream.print chunk.raw_content
480       else
481         message.each_raw_message_line { |l| stream.print l }
482       end
483     end
484
485     if output
486       BufferManager.spawn "Output of '#{command}'", TextMode.new(output)
487     else
488       BufferManager.flash "'#{command}' done!"
489     end
490   end
491
492 private
493
494   def initial_state_for m
495     if m.has_label?(:starred) || m.has_label?(:unread)
496       :open
497     else
498       :closed
499     end
500   end
501
502   def update
503     regen_text
504     buffer.mark_dirty if buffer
505   end
506
507   ## here we generate the actual content lines. we accumulate
508   ## everything into @text, and we set @chunk_lines and
509   ## @message_lines, and we update @layout.
510   def regen_text
511     @text = []
512     @chunk_lines = []
513     @message_lines = []
514     @person_lines = []
515
516     prevm = nil
517     @thread.each do |m, depth, parent|
518       unless m.is_a? Message # handle nil and :fake_root
519         @text += chunk_to_lines m, nil, @text.length, depth, parent
520         next
521       end
522       l = @layout[m]
523
524       ## is this still necessary?
525       next unless @layout[m].state # skip discarded drafts
526
527       ## build the patina
528       text = chunk_to_lines m, l.state, @text.length, depth, parent, l.color, l.star_color
529       
530       l.top = @text.length
531       l.bot = @text.length + text.length # updated below
532       l.prev = prevm
533       l.next = nil
534       l.depth = depth
535       # l.state we preserve
536       l.width = 0 # updated below
537       @layout[l.prev].next = m if l.prev
538
539       (0 ... text.length).each do |i|
540         @chunk_lines[@text.length + i] = m
541         @message_lines[@text.length + i] = m
542         lw = text[i].flatten.select { |x| x.is_a? String }.map { |x| x.length }.sum
543       end
544
545       @text += text
546       prevm = m 
547       if l.state != :closed
548         m.chunks.each do |c|
549           cl = @chunk_layout[c]
550
551           ## set the default state for chunks
552           cl.state ||=
553             if c.expandable? && c.respond_to?(:initial_state)
554               c.initial_state
555             else
556               :closed
557             end
558
559           text = chunk_to_lines c, cl.state, @text.length, depth
560           (0 ... text.length).each do |i|
561             @chunk_lines[@text.length + i] = c
562             @message_lines[@text.length + i] = m
563             lw = text[i].flatten.select { |x| x.is_a? String }.map { |x| x.length }.sum - (depth * INDENT_SPACES)
564             l.width = lw if lw > l.width
565           end
566           @text += text
567         end
568         @layout[m].bot = @text.length
569       end
570     end
571   end
572
573   def message_patina_lines m, state, start, parent, prefix, color, star_color
574     prefix_widget = [color, prefix]
575
576     open_widget = [color, (state == :closed ? "+ " : "- ")]
577     new_widget = [color, (m.has_label?(:unread) ? "N" : " ")]
578     starred_widget = if m.has_label?(:starred)
579         [star_color, "*"]
580       else
581         [color, " "]
582       end
583     attach_widget = [color, (m.has_label?(:attachment) ? "@" : " ")]
584
585     case state
586     when :open
587       @person_lines[start] = m.from
588       [[prefix_widget, open_widget, new_widget, attach_widget, starred_widget,
589         [color, 
590             "#{m.from ? m.from.mediumname : '?'} to #{m.recipients.map { |l| l.shortname }.join(', ')} #{m.date.to_nice_s} (#{m.date.to_nice_distance_s})"]]]
591
592     when :closed
593       @person_lines[start] = m.from
594       [[prefix_widget, open_widget, new_widget, attach_widget, starred_widget,
595         [color, 
596         "#{m.from ? m.from.mediumname : '?'}, #{m.date.to_nice_s} (#{m.date.to_nice_distance_s})  #{m.snippet}"]]]
597
598     when :detailed
599       @person_lines[start] = m.from
600       from_line = [[prefix_widget, open_widget, new_widget, attach_widget, starred_widget,
601           [color, "From: #{m.from ? format_person(m.from) : '?'}"]]]
602
603       addressee_lines = []
604       unless m.to.empty?
605         m.to.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
606         addressee_lines += format_person_list "   To: ", m.to
607       end
608       unless m.cc.empty?
609         m.cc.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
610         addressee_lines += format_person_list "   Cc: ", m.cc
611       end
612       unless m.bcc.empty?
613         m.bcc.each_with_index { |p, i| @person_lines[start + addressee_lines.length + from_line.length + i] = p }
614         addressee_lines += format_person_list "   Bcc: ", m.bcc
615       end
616
617       headers = OrderedHash.new
618       headers["Date"] = "#{m.date.strftime DATE_FORMAT} (#{m.date.to_nice_distance_s})"
619       headers["Subject"] = m.subj
620
621       show_labels = @thread.labels - LabelManager::HIDDEN_RESERVED_LABELS
622       unless show_labels.empty?
623         headers["Labels"] = show_labels.map { |x| x.to_s }.sort.join(', ')
624       end
625       if parent
626         headers["In reply to"] = "#{parent.from.mediumname}'s message of #{parent.date.strftime DATE_FORMAT}"
627       end
628
629       HookManager.run "detailed-headers", :message => m, :headers => headers
630       
631       from_line + (addressee_lines + headers.map { |k, v| "   #{k}: #{v}" }).map { |l| [[color, prefix + "  " + l]] }
632     end
633   end
634
635   def format_person_list prefix, people
636     ptext = people.map { |p| format_person p }
637     pad = " " * prefix.length
638     [prefix + ptext.first + (ptext.length > 1 ? "," : "")] + 
639       ptext[1 .. -1].map_with_index do |e, i|
640         pad + e + (i == ptext.length - 1 ? "" : ",")
641       end
642   end
643
644   def format_person p
645     p.longname + (ContactManager.is_aliased_contact?(p) ? " (#{ContactManager.alias_for p})" : "")
646   end
647
648   ## todo: check arguments on this overly complex function
649   def chunk_to_lines chunk, state, start, depth, parent=nil, color=nil, star_color=nil
650     prefix = " " * INDENT_SPACES * depth
651     case chunk
652     when :fake_root
653       [[[:missing_message_color, "#{prefix}<one or more unreceived messages>"]]]
654     when nil
655       [[[:missing_message_color, "#{prefix}<an unreceived message>"]]]
656     when Message
657       message_patina_lines(chunk, state, start, parent, prefix, color, star_color) +
658         (chunk.is_draft? ? [[[:draft_notification_color, prefix + " >>> This message is a draft. Hit 'e' to edit, 'y' to send. <<<"]]] : [])
659
660     else
661       raise "Bad chunk: #{chunk.inspect}" unless chunk.respond_to?(:inlineable?) ## debugging
662       if chunk.inlineable?
663         chunk.lines.map { |line| [[chunk.color, "#{prefix}#{line}"]] }
664       elsif chunk.expandable?
665         case state
666         when :closed
667           [[[chunk.patina_color, "#{prefix}+ #{chunk.patina_text}"]]]
668         when :open
669           [[[chunk.patina_color, "#{prefix}- #{chunk.patina_text}"]]] + chunk.lines.map { |line| [[chunk.color, "#{prefix}#{line}"]] }
670         end
671       else
672         [[[chunk.patina_color, "#{prefix}x #{chunk.patina_text}"]]]
673       end
674     end
675   end
676
677   def view chunk
678     BufferManager.flash "viewing #{chunk.content_type} attachment..."
679     success = chunk.view!
680     BufferManager.erase_flash
681     BufferManager.completely_redraw_screen
682     unless success
683       BufferManager.spawn "Attachment: #{chunk.filename}", TextMode.new(chunk.to_s, chunk.filename)
684       BufferManager.flash "Couldn't execute view command, viewing as text."
685     end
686   end
687 end
688
689 end