Skip to content

Commit

Permalink
fixed links to doc. closes #150
Browse files Browse the repository at this point in the history
  • Loading branch information
pablohoffman committed Jun 24, 2012
1 parent 1187a1e commit aac26d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/topics/selectors.rst
Expand Up @@ -69,7 +69,7 @@ To explain how to use the selectors we'll use the `Scrapy shell` (which
provides interactive testing) and an example page located in the Scrapy
documentation server:

http://doc.scrapy.org/_static/selectors-sample1.html
http://doc.scrapy.org/en/latest/_static/selectors-sample1.html

.. _topics-selectors-htmlcode:

Expand All @@ -82,7 +82,7 @@ Here's its HTML code:

First, let's open the shell::

scrapy shell http://doc.scrapy.org/_static/selectors-sample1.html
scrapy shell http://doc.scrapy.org/en/latest/_static/selectors-sample1.html

Then, after the shell loads, you'll have some selectors already instantiated and
ready to use.
Expand Down
2 changes: 1 addition & 1 deletion scrapy/telnet.py
Expand Up @@ -78,7 +78,7 @@ def _get_telnet_vars(self):
'prefs': print_live_refs,
'hpy': hpy,
'help': "This is Scrapy telnet console. For more info see: " \
"http://doc.scrapy.org/topics/telnetconsole.html", # see #284
"http://doc.scrapy.org/en/latest/topics/telnetconsole.html",
}
send_catch_log(update_telnet_vars, telnet_vars=telnet_vars)
return telnet_vars
2 changes: 1 addition & 1 deletion scrapyd/website.py
Expand Up @@ -79,7 +79,7 @@ def render_GET(self, txrequest):
<p>Example using <a href="http://curl.haxx.se/">curl</a>:</p>
<p><code>curl http://localhost:6800/schedule.json -d project=default -d spider=somespider</code></p>
<p>For more information about the API, see the <a href="http://doc.scrapy.org/topics/scrapyd.html">Scrapyd documentation</a></p>
<p>For more information about the API, see the <a href="http://doc.scrapy.org/en/latest/topics/scrapyd.html">Scrapyd documentation</a></p>
</body>
</html>
""" % vars
Expand Down

0 comments on commit aac26d3

Please sign in to comment.