Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
spudtrooper committed Mar 14, 2011
1 parent f2f0013 commit 088db59
Show file tree
Hide file tree
Showing 154 changed files with 9,457 additions and 0 deletions.
141 changes: 141 additions & 0 deletions doc/classes/Rd.html
@@ -0,0 +1,141 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Module: Rd</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
<script type="text/javascript">
// <![CDATA[

function popupCode( url ) {
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
}

function toggleCode( id ) {
if ( document.getElementById )
elem = document.getElementById( id );
else if ( document.all )
elem = eval( "document.all." + id );
else
return false;

elemStyle = elem.style;

if ( elemStyle.display != "block" ) {
elemStyle.display = "block"
} else {
elemStyle.display = "none"
}

return true;
}

// Make codeblocks hidden by default
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )

// ]]>
</script>

</head>
<body>



<div id="classHeader">
<table class="header-table">
<tr class="top-aligned-row">
<td><strong>Module</strong></td>
<td class="class-name-in-header">Rd</td>
</tr>
<tr class="top-aligned-row">
<td><strong>In:</strong></td>
<td>
<a href="../files/lib/rdio_rb.html">
lib/rdio.rb
</a>
<br />
</td>
</tr>

</table>
</div>
<!-- banner header -->

<div id="bodyContent">



<div id="contextContent">

<div id="description">
<p>
Silly syntax so you can say Rd::io&#8230;blah...blah...blah
</p>

</div>


</div>

<div id="method-list">
<h3 class="section-bar">Methods</h3>

<div class="name-list">
<a href="#M000121">io</a>&nbsp;&nbsp;
</div>
</div>

</div>


<!-- if includes -->

<div id="section">








<!-- if method_list -->
<div id="methods">
<h3 class="section-bar">Public Class methods</h3>

<div id="method-M000121" class="method-detail">
<a name="M000121"></a>

<div class="method-heading">
<a href="Rd.src/M000121.html" target="Code" class="method-signature"
onclick="popupCode('Rd.src/M000121.html');return false;">
<span class="method-name">io</span><span class="method-args">()</span>
</a>
</div>

<div class="method-description">
<p>
Returns the shared <a href="Rdio/Api.html">Rdio::Api</a> instance from
Rdio::api
</p>
</div>
</div>


</div>


</div>


<div id="validator-badges">
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
</div>

</body>
</html>
18 changes: 18 additions & 0 deletions doc/classes/Rd.src/M000121.html
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<head>
<title>io (Rd)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body class="standalone-code">
<pre><span class="ruby-comment cmt"># File lib/rdio.rb, line 77</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">io</span>
<span class="ruby-constant">Rdio</span><span class="ruby-operator">::</span><span class="ruby-identifier">api</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html>

0 comments on commit 088db59

Please sign in to comment.