Skip to content

Fix broken links #532

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CONTRIBUTING.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ classes for each feature.
== Bugs

If you think you found a bug, file a ticket on the {issues
tracker}[https://github.com/rdoc/rdoc/issues] on github.
tracker}[https://github.com/ruby/rdoc/issues] on github.

If your bug involves an error RDoc produced please include a sample file that
illustrates the problem or link to the repository or gem that is associated
Expand All @@ -17,8 +17,8 @@ with the bug.
Please include steps to reproduce the issue. Here are some examples of good
issues:

* https://github.com/rdoc/rdoc/issues/55
* https://github.com/rdoc/rdoc/issues/61
* https://github.com/ruby/rdoc/issues/55
* https://github.com/ruby/rdoc/issues/61

== Developer Quick Start

Expand All @@ -35,7 +35,7 @@ This will install all the necessary dependencies for development with rake,
generate documentation and run the tests for the first time.

If the tests don't pass on the first run check the {Travis CI page for
RDoc}[https://travis-ci.org/rdoc/rdoc] to see if there are any known failures
RDoc}[https://travis-ci.org/ruby/rdoc] to see if there are any known failures
(there shouldn't be).

You can now use `rake` and `autotest` to run the tests.
Expand Down
2 changes: 1 addition & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ contain just Markup-style markup (with or without leading '#' comment
markers). If directory names are passed to RDoc, they are scanned
recursively for C and Ruby source files only.

To generate documentation using +rake+ see RDoc::Task[https://rdoc.github.io/rdoc/RDocTask.html].
To generate documentation using +rake+ see RDoc::Task[https://ruby.github.io/rdoc/RDocTask.html].

To generate documentation programmatically:

Expand Down
4 changes: 2 additions & 2 deletions lib/rdoc/generator/template/darkfish/_footer.rhtml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<footer id="validator-badges" role="contentinfo">
<p><a href="http://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> <%= RDoc::VERSION %>.
<p><a href="https://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> <%= RDoc::VERSION %>.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>
4 changes: 2 additions & 2 deletions lib/rdoc/markup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@
#
# Example links:
#
# https://github.com/rdoc/rdoc
# https://github.com/ruby/rdoc
# mailto:[email protected]
# {RDoc Documentation}[http://rdoc.rubyforge.org]
# {RDoc Markup}[rdoc-ref:RDoc::Markup]
Expand Down Expand Up @@ -764,7 +764,7 @@ def self.parse str

Please file a bug report with the above information at:

https://github.com/rdoc/rdoc/issues
https://github.com/ruby/rdoc/issues

EOF
raise
Expand Down
2 changes: 1 addition & 1 deletion lib/rdoc/servlet.rb
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def error exception, req, res
<pre>#{ERB::Util.html_escape exception.message}</pre>

<p>Please report this to the
<a href="https://github.com/rdoc/rdoc/issues">RDoc issues tracker</a>. Please
<a href="https://github.com/ruby/rdoc/issues">RDoc issues tracker</a>. Please
include the RDoc version, the URI above and exception class, message and
backtrace. If you're viewing a gem's documentation, include the gem name and
version. If you're viewing Ruby's documentation, include the version of ruby.
Expand Down
6 changes: 3 additions & 3 deletions test/test_rdoc_markup_to_html_snippet.rb
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,9 @@ def test_convert_limit_paragraphs
rdoc = <<-RDOC
= \RDoc - Ruby Documentation System

* {RDoc Project Page}[https://github.com/rdoc/rdoc/]
* {RDoc Documentation}[https://rdoc.github.io/rdoc]
* {RDoc Bug Tracker}[https://github.com/rdoc/rdoc/issues]
* {RDoc Project Page}[https://github.com/ruby/rdoc]
* {RDoc Documentation}[https://ruby.github.io/rdoc]
* {RDoc Bug Tracker}[https://github.com/ruby/rdoc/issues]

== DESCRIPTION:

Expand Down