Method: EntryController#show_entry

Defined in:
lib/entry_controller.rb

#show_entryObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/entry_controller.rb', line 3

def show_entry
 begin
   LOGGER.debug("initializing EntryWindow")

   @command_window = CommandWindow.new( @scr ) 

   # The formatter formats a blog entry but does not paginate it


   set_content_area
   @command_window.help_prompt
   begin 
     @content_area.draw
   end while parse_entry_page_command != :exit
 end
end