Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8963

Show
Ignore:
Timestamp:
03/01/08 22:14:06 (6 months ago)
Author:
tobie
Message:

Remove reference to Prototype from @title instance variable.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/pdoc/trunk/CHANGELOG

    r8962 r8963  
     1* Remove reference to Prototype from @title instance variable. [Tobie] 
     2 
    13* Update TextMate bundle to reflect latest syntax changes. [Tobie] 
    24 
  • spinoffs/pdoc/trunk/lib/p_doc/generators/html/page.rb

    r8944 r8963  
    3030         
    3131        def title 
    32           "Prototype API documentation
     32          "
    3333        end 
    3434         
     
    5151         
    5252        def title 
    53           "#{super} | #{@doc_instance.full_name} #{@doc_instance.type}" 
     53          " | #{@doc_instance.full_name} #{@doc_instance.type}" 
    5454        end 
    5555      end 
  • spinoffs/pdoc/trunk/rakefile

    r8945 r8963  
    1414desc "Empties the output directory and builds the documentation." 
    1515task :doc => [:remove_doc, :build_doc] 
     16 
  • spinoffs/pdoc/trunk/README

    r8960 r8963  
    206206#### Constants 
    207207 
    208 Constant's value are specified using the equal sign (`=`). 
     208Constant must have their value specified using the equal sign (`=`). 
    209209 
    210210    /**  
  • spinoffs/pdoc/trunk/templates/html/layout.erb

    r8944 r8963  
    55<head> 
    66        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
    7         <title><%= @title %></title> 
     7        <title>Prototype API documentation<%= @title %></title> 
    88        <meta name="generator" content="PDoc"> 
    99        <%= javascript_include_tag "prototype", "effects", "controls", "application", "code_highlighter" %>