File: tc_links.html

package info (click to toggle)
ruby-mechanize 2.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,416 kB
  • sloc: ruby: 11,645; makefile: 7; sh: 4
file content (21 lines) | stat: -rw-r--r-- 827 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
  <body>
    <a href="thing.html"><b>Bold Dude</b></a>
    <a href="thing.html" rel="nofollow">Dude</a>
    <a href="thing.html" rel="me">Aaron <b>James</b> Patterson</a>
    <a href="thing.html" id="bold_aaron_link" rel="me nofollow"><b>Aaron</b> Patterson</a>
    <a href="thing.html" class="thing_link">Thing!</a>
    <a href="thing.html">Ruby <b>Rocks!</b></a>
    <!-- Testing a bug with escaped stuff in links:
      http://rubygems.org/pipermail/mechanize-users/2006-September/000002.html
    -->
    <a href="link%20with%20space.html">encoded space</a>
    <a href="link with space.html">not encoded space</a>
    <!-- End escaped bug -->
    <a href="unusual&&%3F%3F%23%23.html">unusual characters</a>

    <a href="">empty href</a>

    <a href="javascript:new_page('1')">javascript link</a>
  </body>
</html>