diff options
| author | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-24 17:01:11 +0000 |
|---|---|---|
| committer | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-24 17:01:11 +0000 |
| commit | 3b83f1f7b9e7f8fc05cd3be379b615f2ca7c9d20 (patch) | |
| tree | 1763c2ccb53d548863dddfe9031a95dce1919351 | |
| parent | 6026b2f72f65ce8b74ac203c41fedef1096afbf5 (diff) | |
| download | ruby-3b83f1f7b9e7f8fc05cd3be379b615f2ca7c9d20.tar.gz ruby-3b83f1f7b9e7f8fc05cd3be379b615f2ca7c9d20.tar.xz ruby-3b83f1f7b9e7f8fc05cd3be379b615f2ca7c9d20.zip | |
Get --one-page working with C code
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6018 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/rdoc/generators/template/html/one_page_html.rb | 8 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu Mar 25 02:00:18 2004 Dave Thomas <dave@pragprog.com> + + * lib/rdoc/generators/template/html/one_page_html.rb (Page): + Fix to work with C modules. + Wed Mar 24 21:17:00 2004 Gavin Sinclair <gsinclair@soyabean.com.au> * lib/uri.rb: Documented (thanks Dmitry V. Sabanin). diff --git a/lib/rdoc/generators/template/html/one_page_html.rb b/lib/rdoc/generators/template/html/one_page_html.rb index ca69908c9..19441f472 100644 --- a/lib/rdoc/generators/template/html/one_page_html.rb +++ b/lib/rdoc/generators/template/html/one_page_html.rb @@ -52,7 +52,13 @@ IF:method_list START:method_list IF:methods START:methods -<h4>%type% %category% method: <a name="%aref%">%name%%params%</a></h4> +<h4>%type% %category% method: +IF:callseq +<a name="%aref%">%callseq%</a> +ENDIF:callseq +IFNOT:callseq +<a name="%aref%">%name%%params%</a></h4> +ENDIF:callseq IF:m_desc %m_desc% |
