Changeset 8963
- Timestamp:
- 03/01/08 22:14:06 (6 months ago)
- Files:
-
- spinoffs/pdoc/trunk/CHANGELOG (modified) (1 diff)
- spinoffs/pdoc/trunk/lib/p_doc/generators/html/page.rb (modified) (2 diffs)
- spinoffs/pdoc/trunk/rakefile (modified) (1 diff)
- spinoffs/pdoc/trunk/README (modified) (1 diff)
- spinoffs/pdoc/trunk/templates/html/layout.erb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/pdoc/trunk/CHANGELOG
r8962 r8963 1 * Remove reference to Prototype from @title instance variable. [Tobie] 2 1 3 * Update TextMate bundle to reflect latest syntax changes. [Tobie] 2 4 spinoffs/pdoc/trunk/lib/p_doc/generators/html/page.rb
r8944 r8963 30 30 31 31 def title 32 " Prototype API documentation"32 "" 33 33 end 34 34 … … 51 51 52 52 def title 53 " #{super}| #{@doc_instance.full_name} #{@doc_instance.type}"53 " | #{@doc_instance.full_name} #{@doc_instance.type}" 54 54 end 55 55 end spinoffs/pdoc/trunk/rakefile
r8945 r8963 14 14 desc "Empties the output directory and builds the documentation." 15 15 task :doc => [:remove_doc, :build_doc] 16 spinoffs/pdoc/trunk/README
r8960 r8963 206 206 #### Constants 207 207 208 Constant 's value are specified using the equal sign (`=`).208 Constant must have their value specified using the equal sign (`=`). 209 209 210 210 /** spinoffs/pdoc/trunk/templates/html/layout.erb
r8944 r8963 5 5 <head> 6 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 7 <title> <%= @title %></title>7 <title>Prototype API documentation<%= @title %></title> 8 8 <meta name="generator" content="PDoc"> 9 9 <%= javascript_include_tag "prototype", "effects", "controls", "application", "code_highlighter" %>