From aec930df1ddf7bb56e2746521dc24da7226ab771 Mon Sep 17 00:00:00 2001 From: Alex Dunae Date: Wed, 19 Dec 2007 22:44:00 +0000 Subject: [PATCH] Deleted extras/rdoc_template.rb --- extras/rdoc_template.rb | 528 ---------------------------------------- 1 file changed, 528 deletions(-) delete mode 100644 extras/rdoc_template.rb diff --git a/extras/rdoc_template.rb b/extras/rdoc_template.rb deleted file mode 100644 index 4f2caff..0000000 --- a/extras/rdoc_template.rb +++ /dev/null @@ -1,528 +0,0 @@ -CAMPING_EXTRAS_DIR = File.expand_path(File.dirname(__FILE__)) - -module Generators -class HTMLGenerator - def generate_html - @files_and_classes = { - 'allfiles' => gen_into_index(@files), - 'allclasses' => gen_into_index(@classes), - "initial_page" => main_url, - 'realtitle' => CGI.escapeHTML(@options.title), - 'charset' => @options.charset - } - - # the individual descriptions for files and classes - gen_into(@files) - gen_into(@classes) - gen_main_index - - # this method is defined in the template file - write_extra_pages if defined? write_extra_pages - RDoc.send :remove_const, :Page # clean up for other templates - end - - def gen_into(list) - hsh = @files_and_classes.dup - list.each do |item| - if item.document_self - op_file = item.path - hsh['root'] = item.path.split("/").map { ".." }[1..-1].join("/") - item.instance_variable_set("@values", hsh) - File.makedirs(File.dirname(op_file)) - File.open(op_file, "w") { |file| item.write_on(file) } - end - end - end - - def gen_into_index(list) - res = [] - list.each do |item| - hsh = item.value_hash - hsh['href'] = item.path - hsh['name'] = item.index_name - res << hsh - end - res - end - - def gen_main_index - template = TemplatePage.new(RDoc::Page::INDEX) - File.open("index.html", "w") do |f| - values = @files_and_classes.dup - if @options.inline_source - values['inline_source'] = true - end - template.write_html_on(f, values) - end - #['Camping.gif', 'permalink.gif'].each do |img| - # ipath = File.join(CAMPING_EXTRAS_DIR, img) - # File.copy(ipath, img) - #end - end -end -end - - -module RDoc -module Page -###################################################################### -# -# The following is used for the -1 option -# - -FONTS = "verdana,arial,'Bitstream Vera Sans',helvetica,sans-serif" - -STYLE = %{ -body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { - margin:0; - padding:0; - text-align: left; -} - -a { outline:none; } - -table { border-collapse:collapse; border-spacing:0; } - -fieldset,img { border:0; } - -address,caption,cite,code,dfn,em,strong,th,var { font-style:normal; font-weight:normal; } - -ol,ul { list-style:none; } - -caption,th { text-align:left; } - -h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight:normal; } - -q:before,q:after { content:''; } - -abbr,acronym { border:0; } - -body { - font: 13px/18px Arial, sans-serif; -} - - - a, a:visited { color: #00f; } - #container { width: 900px; margin: 18px auto; } - #left { - width: 200px; - float: left; - } - #content { - width: 660px; - padding: 0 0 0 20px; - margin-left: 220px; - - } - - tt { - font: 13px/18px monospace; - } - pre { - border: 1px dotted #ccc; - padding: 9px; - background-color: #D7EAF2; - margin: 9px 0; - } - - dt { - width: 100px; - - } - - dd { - margin: 0 0 9px 20px; - - } - - - li { - margin-left: 18px; - list-style: disc; - } - - ul, pre, p { - margin-bottom: 18px; - } - - - h1 { - font: bold 22px/27px Arial; - margin-bottom: 9px - } - - - h2 { - font: bold 18px/27px Arial; - margin-bottom: 9px - } - - h3 { - font: bold 16px/18px Arial; - margin: 9px 0; - } - - h3.section-bar { - font: 15px/18px Arial; - margin: 27px 0 9px -20px; - padding: 3px; - background-color: #dedede; - } - - - #content h1, #content h2, #content h3 { - margin-left: -20px; - } - - h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, - a.method-signature { - color: #000; - - text-decoration: none; - } - - .method-detail { - margin-bottom: 18px; - padding: 9px 0; - border-bottom: 1px solid #aaa; - } - - .method-heading { - - margin-left: -20px; - margin-bottom: 9px; - } - .method-heading a { - font: bold 14px/18px Arial; - - - - } - - .meta { - padding: 0 0 9px; - } - - .meta, .meta a { - color: #666; - } - - .method-source-code { display: none; } - - .dyn-source { background-color: #775915; padding: 4px 8px; margin: 0; display: none; } - .dyn-source pre { color: #DDDDDD; font-size: 8pt; } - .source-link { text-align: right; font-size: 8pt; } - .ruby-comment { color: green; font-style: italic } - .ruby-constant { color: #CCDDFF; font-weight: bold; } - .ruby-identifier { color: #CCCCCC; } - .ruby-ivar { color: #BBCCFF; } - .ruby-keyword { color: #EEEEFF; font-weight: bold } - .ruby-node { color: #FFFFFF; } - .ruby-operator { color: #CCCCCC; } - .ruby-regexp { color: #DDFFDD; } - .ruby-value { color: #FFAAAA; font-style: italic } - .kw { color: #DDDDFF; font-weight: bold } - .cmt { color: #CCFFCC; font-style: italic } - .str { color: #EECCCC; font-style: italic } - .re { color: #EECCCC; } -} - -CONTENTS_XML = %{ -IF:description -%description% -ENDIF:description - -IF:requires -

Requires:

- -ENDIF:requires - -IF:attributes -

Attributes

- -START:attributes - -END:attributes -
%name%%rw%%a_desc%
-ENDIF:attributes - -IF:includes -

Includes

- -ENDIF:includes - -START:sections -IF:method_list -

Methods

-START:method_list -IF:methods -START:methods -
-
- -

-IF:callseq -%callseq% -ENDIF:callseq -IFNOT:callseq -%name%%params%

-ENDIF:callseq -
-IF:m_desc -%m_desc% -ENDIF:m_desc - -IF:sourcecode -
- -
-
-%sourcecode%
-
-
-
-ENDIF:sourcecode -
-END:methods -ENDIF:methods -END:method_list -ENDIF:method_list -END:sections -} - -############################################################################ - - -BODY = %{ - - - - -IF:title - %realtitle% » %title% -ENDIF:title -IFNOT:title - %realtitle% -ENDIF:title - - - - - - -
- -
-

Files

-
    -START:allfiles -
  • %name%
  • -END:allfiles -
-IF:allclasses -

Classes

-
    -START:allclasses -
  • %name%
  • -END:allclasses -
-ENDIF:allclasses -
-
- !INCLUDE! -
-
- - -} - -############################################################################### - -FILE_PAGE = <<_FILE_PAGE_ -
-#{CONTENTS_XML} -
-_FILE_PAGE_ - -################################################################### - -CLASS_PAGE = %{ -
-

-IF:parent -%classmod% %full_name% < HREF:par_url:parent: -ENDIF:parent -IFNOT:parent -%classmod% %full_name% -ENDIF:parent -

-
-IF:infiles -(in files -START:infiles -HREF:full_path_url:full_path: -END:infiles -) -ENDIF:infiles -
} + CONTENTS_XML + %{ -
-} - -################################################################### - -METHOD_LIST = %{ -IF:includes -
Included modules

-
-START:includes - HREF:aref:name: -END:includes -
-ENDIF:includes - -IF:method_list -START:method_list -IF:methods - - -
%type% %category% methods
-START:methods - -IF:callseq -%callseq% -ENDIF:callseq -IFNOT:callseq - %name%%params% -ENDIF:callseq -IF:codeurl -src -ENDIF:codeurl - -IF:m_desc -
-%m_desc% -
-ENDIF:m_desc -IF:aka -
-This method is also aliased as -START:aka -%name% -END:aka -
-ENDIF:aka -IF:sourcecode -
- -
-
-%sourcecode%
-
-
-
-ENDIF:sourcecode -END:methods -ENDIF:methods -END:method_list -ENDIF:method_list -} - - -########################## Index ################################ - -FR_INDEX_BODY = %{ -!INCLUDE! -} - -FILE_INDEX = %{ - - - - - - - -START:entries -%name%
-END:entries - -} - -CLASS_INDEX = FILE_INDEX -METHOD_INDEX = FILE_INDEX - -INDEX = %{ - - - -%realtitle% - - -Click here to open the docs. - - -} - -end -end