summaryrefslogtreecommitdiffstats
path: root/lib/rdoc/generators
Commit message (Collapse)AuthorAgeFilesLines
* Complete RDoc namespace changedrbrain2008-01-1311-3971/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15018 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Reorganize RDoc generatorsdrbrain2008-01-1311-246/+224
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Clean up namespacing of RI's classesdrbrain2008-01-081-17/+17
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add additional information to RDoc template valuesdrbrain2008-01-071-36/+38
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Use ERB instead of custom template language for RDoc.drbrain2008-01-079-1364/+642
| | | | | | | | Remove old_html template. Convert all templates to ERB. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14935 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Convert RDoc to OptionParser, clean up -h output, namespace Options under RDoc.drbrain2008-01-074-26/+27
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Merge documentation from the same class on ri generation.drbrain2008-01-071-9/+15
| | | | | | | | Fixes bug where documentation could disappear. Fix typo in lib/rdoc/options.rb git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Collapse namespaces and refactor requires in RDocdrbrain2008-01-074-364/+343
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Clean up comments and whitespace in RDoc generatorsdrbrain2008-01-074-262/+248
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14919 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Mon Dec 24 23:04:57 2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>nahi2007-12-243-8/+5
| | | | | | | | | | | | | | | | * lib/ftools.rb: removed obsoleted lib. use fileutils instead (by eban). * lib/rdoc/rdoc.rb, lib/rdoc/generators/*, lib/rake.rb: let it use fileutils instead of ftools. * lib/shell/command-processor.rb: removed unused references to ftools. * lib/parsedate.rb: removed. see [ruby-core:12535], [ruby-dev:31969]. * lib/README: updated. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk (install-doc): reverted.nobu2006-09-171-1/+1
| | | | | | | | | * instruby.rb: stores file name list without destdir prefix. * lib/rdoc/generators/ri_generator.rb: do not chdir twice. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* cached rdoc diagrams, private rdoc comments, minor clarifications in ↵ryan2006-07-081-4/+11
| | | | | | debug.rb and pp.rb git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10491 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/rdoc/diagram.rb:ocean2006-01-135-57/+57
| | | | | | | | | | | | | | | | | - properly quote bare element attributes - terminates dangling elements (e.g. <img>, <br>, <link>, etc) - converts "CVS" to the more HTML-friendly acronym element - adds missing type attributes to style elements based on Paul Duncan's patch <pabs@pablotron.org> [ruby-core:7028] * lib/rdoc/generators/html_generator.rb: ditto. * lib/rdoc/generators/template/html/hefss.rb: ditto. * lib/rdoc/generators/template/html/html.rb: ditto. * lib/rdoc/generators/template/html/kilmer.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9828 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c: replace rb_protect_inspect() and rb_inspecting_p() bymatz2005-03-042-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rb_exec_recursive() in eval.c. * eval.c (rb_exec_recursive): new function. * array.c (rb_ary_join): use rb_exec_recursive(). * array.c (rb_ary_inspect, rb_ary_hash): ditto. * file.c (rb_file_join): ditto. * hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto. * io.c (rb_io_puts): ditto. * object.c (rb_obj_inspect): ditto * struct.c (rb_struct_inspect): ditto. * lib/set.rb (SortedSet::setup): a hack to shut up warning. [ruby-talk:132866] * lib/time.rb (Time::strptime): add new function. inspired by [ruby-talk:132815]. * lib/parsedate.rb (ParseDate::strptime): ditto. * regparse.c: move st_*_strend() functions from st.c. fixed some potential memory leaks. * exception error messages updated. [ruby-core:04497] * ext/socket/socket.c (Init_socket): add bunch of Socket constants. Patch from Sam Roberts <sroberts@uniserve.com>. [ruby-core:04409] * array.c (rb_ary_s_create): no need for negative argc check. [ruby-core:04463] * array.c (rb_ary_unshift_m): ditto. * lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass of StandardError class, not Exception class. [ruby-core:04429] * parse.y (fcall_gen): lvar(arg) will be evaluated as lvar.call(arg) when lvar is a defined local variable. [new] * object.c (rb_class_initialize): call inherited method before calling initializing block. * eval.c (rb_thread_start_1): initialize newly pushed frame. * lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE. fixed: [ruby-core:04444] * eval.c (is_defined): NODE_IASGN is an assignment. * ext/readline/readline.c (Readline.readline): use rl_outstream and rl_instream. [ruby-dev:25699] * ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check [ruby-dev:25675] * misc/ruby-mode.el: [ruby-core:04415] * lib/rdoc/generators/html_generator.rb: [ruby-core:04412] * lib/rdoc/generators/ri_generator.rb: ditto. * struct.c (make_struct): fixed: [ruby-core:04402] * ext/curses/curses.c (window_color_set): [ruby-core:04393] * ext/socket/socket.c (Init_socket): SO_REUSEPORT added. [ruby-talk:130092] * object.c: [ruby-doc:818] * parse.y (open_args): fix too verbose warnings for the space before argument parentheses. [ruby-dev:25492] * parse.y (parser_yylex): ditto. * parse.y (parser_yylex): the first expression in the parentheses should not be a command. [ruby-dev:25492] * lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330] * object.c (Init_Object): remove Object#type. [ruby-core:04335] * st.c (st_foreach): report success/failure by return value. [ruby-Bugs-1396] * parse.y: forgot to initialize parser struct. [ruby-dev:25492] * parse.y (parser_yylex): no tLABEL on EXPR_BEG. [ruby-talk:127711] * document updates - [ruby-core:04296], [ruby-core:04301], [ruby-core:04302], [ruby-core:04307] * dir.c (rb_push_glob): should work for NUL delimited patterns. * dir.c (rb_glob2): should aware of offset in the pattern. * string.c (rb_str_new4): should propagate taintedness. * env.h: rename member names in struct FRAME; last_func -> callee, orig_func -> this_func, last_class -> this_class. * struct.c (rb_struct_set): use original method name, not callee name, to retrieve member slot. [ruby-core:04268] * time.c (time_strftime): protect from format modification from GC finalizers. * object.c (Init_Object): remove rb_obj_id_obsolete() * eval.c (rb_mod_define_method): incomplete subclass check. [ruby-dev:25464] * gc.c (rb_data_object_alloc): klass may be NULL. [ruby-list:40498] * bignum.c (rb_big_rand): should return positive random number. [ruby-dev:25401] * bignum.c (rb_big_rand): do not use rb_big_modulo to generate random bignums. [ruby-dev:25396] * variable.c (rb_autoload): [ruby-dev:25373] * eval.c (svalue_to_avalue): [ruby-dev:25366] * string.c (rb_str_justify): [ruby-dev:25367] * io.c (rb_f_select): [ruby-dev:25312] * ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072] * struct.c (make_struct): [ruby-dev:25249] * dir.c (dir_open_dir): new function. [ruby-dev:25242] * io.c (rb_f_open): add type check for return value from to_open. * lib/pstore.rb (PStore#transaction): Use the empty content when a file is not found. [ruby-dev:24561] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update kilmer template to use sectionsdave2004-12-291-0/+14
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Don't show r/w accessot flags if none were specified for custom attributesdave2004-12-121-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7537 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix CSS typo that meant h2 headings were invisibledave2004-12-081-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 1. Force --inline-source if --one-file givendave2004-11-202-305/+424
| | | | | | | | | | | 2. Add new :section: directive which starts a new section in the output. The title following :section: is used as the section heading, and the remainder of the comment containing the section is used as introductory text. Subsequent methods, aliases, attributes, and classes will be documented in this section. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7344 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* James Buck's patch for call-seqdave2004-09-091-1/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6877 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Minor parse problem if hyperlink text starts \w+:...dave2004-07-131-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Use real right arrow for -> in call-seqdave2004-07-121-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6615 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Allow multiple words in braces before a linkdave2004-07-121-2/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6611 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Allow "do" after "for". Fix up css for standalone code windowdave2004-05-262-9/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6407 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* SYSTEM identifiers must be absolutedave2004-05-242-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Change symbol lookup scheme in HTML generationdave2004-05-101-4/+12
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6289 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Search parent for unqualified constantsdave2004-05-101-0/+8
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6286 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Don't include &block if we have yield parametersdave2004-05-051-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Remove leading ./ from filenames so that cross references work OKdave2004-04-041-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Get --one-page working with C codedave2004-03-241-1/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6018 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Allow templates to be specified outside the RDoc treedave2004-03-241-3/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Force RDoc html background to whitedave2004-03-201-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (pipe_open): erred program name should be reported bynobu2004-03-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | exceptions, instead of the first argument. * process.c (rb_spawn): ditto. * process.c (proc_spawn_v): use first argument as program name. * win32/win32.c (rb_w32_aspawn): ditto. * win32/win32.c (CreateChild): search executable file if no program name given. * lib/drb/extservm.rb (invoke_service_command): use Process.spawn. [ruby-dev:23103] * lib/rdoc/ri/ri_display.rb (setup_pager): use IO.popen. [ruby-dev:23086], [ruby-dev:23103] * lib/rdoc/diagram.rb (convert_to_png): ditto. * lib/rdoc/generators/chm_generator.rb (compile_project): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Deal with case where first file processed contains a :stopdoc:dave2004-02-241-1/+14
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix constant value extraction. Escape HTML in constant valuesdave2004-02-231-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Support visibility modifiers for attributesdave2004-02-191-5/+11
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5786 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Support https in hyperlinksdave2004-02-061-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5636 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Allow link: in Tidylinksdave2004-01-291-15/+17
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5582 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add one_page_htmldave2004-01-251-0/+116
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5550 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Document lib/English. Add top-level aliases to rdoc html outputdave2004-01-203-45/+27
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Finish documenting internal stuff. See Changelog for other detailsdave2004-01-021-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix problem with private alias to public methoddave2003-12-311-3/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5355 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix HTML generated for .chm post-processingdave2003-12-301-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Forgot to save buffer.... sighdave2003-12-245-1266/+1285
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add file.c comments (and necessary support in parse_c.rb)dave2003-12-211-2/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5234 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix dependency issuedave2003-12-191-1/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Annotate enum.c. Add pager support, and report on methods in included modulesdave2003-12-181-2/+37
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Put RDoc comments into array.c, and refine rdoc/ri to deal with stuff that arosedave2003-12-161-18/+39
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5202 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Initial load of support for ri/rdoc integrationdave2003-12-161-0/+202
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Support inline source in Kilmer templatedave2003-12-072-0/+21
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5129 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add RDocdave2003-12-0110-0/+4131
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e