summaryrefslogtreecommitdiffstats
path: root/doc/classes/Git/Object.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/Git/Object.html')
-rw-r--r--doc/classes/Git/Object.html179
1 files changed, 179 insertions, 0 deletions
diff --git a/doc/classes/Git/Object.html b/doc/classes/Git/Object.html
new file mode 100644
index 0000000..499a044
--- /dev/null
+++ b/doc/classes/Git/Object.html
@@ -0,0 +1,179 @@
+<?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>Class: Git::Object</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>Class</strong></td>
+ <td class="class-name-in-header">Git::Object</td>
+ </tr>
+ <tr class="top-aligned-row">
+ <td><strong>In:</strong></td>
+ <td>
+ <a href="../../files/lib/git/object_rb.html">
+ lib/git/object.rb
+ </a>
+ <br />
+ </td>
+ </tr>
+
+ <tr class="top-aligned-row">
+ <td><strong>Parent:</strong></td>
+ <td>
+ <a href="Object.html">
+ Object
+ </a>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <!-- banner header -->
+
+ <div id="bodyContent">
+
+
+
+ <div id="contextContent">
+
+
+
+ </div>
+
+ <div id="method-list">
+ <h3 class="section-bar">Methods</h3>
+
+ <div class="name-list">
+ <a href="#M000120">new</a>&nbsp;&nbsp;
+ </div>
+ </div>
+
+ </div>
+
+
+ <!-- if includes -->
+
+ <div id="section">
+
+ <div id="class-list">
+ <h3 class="section-bar">Classes and Modules</h3>
+
+ Class <a href="Object/AbstractObject.html" class="link">Git::Object::AbstractObject</a><br />
+Class <a href="Object/Blob.html" class="link">Git::Object::Blob</a><br />
+Class <a href="Object/Commit.html" class="link">Git::Object::Commit</a><br />
+Class <a href="Object/Tag.html" class="link">Git::Object::Tag</a><br />
+Class <a href="Object/Tree.html" class="link">Git::Object::Tree</a><br />
+
+ </div>
+
+
+
+
+
+
+
+ <!-- if method_list -->
+ <div id="methods">
+ <h3 class="section-bar">Public Class methods</h3>
+
+ <div id="method-M000120" class="method-detail">
+ <a name="M000120"></a>
+
+ <div class="method-heading">
+ <a href="#M000120" class="method-signature">
+ <span class="method-name">new</span><span class="method-args">(base, objectish, is_tag = false)</span>
+ </a>
+ </div>
+
+ <div class="method-description">
+ <p>
+if we&#8217;re calling this, we don&#8217;t know what type it is yet so
+this is our little factory method
+</p>
+ <p><a class="source-toggle" href="#"
+ onclick="toggleCode('M000120-source');return false;">[Source]</a></p>
+ <div class="method-source-code" id="M000120-source">
+<pre>
+<span class="ruby-comment cmt"># File lib/git/object.rb, line 87</span>
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">new</span>(<span class="ruby-identifier">base</span>, <span class="ruby-identifier">objectish</span>, <span class="ruby-identifier">is_tag</span> = <span class="ruby-keyword kw">false</span>)
+ <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">is_tag</span>
+ <span class="ruby-identifier">sha</span> = <span class="ruby-identifier">base</span>.<span class="ruby-identifier">lib</span>.<span class="ruby-identifier">tag_sha</span>(<span class="ruby-identifier">objectish</span>)
+ <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">sha</span> <span class="ruby-operator">==</span> <span class="ruby-value str">''</span>
+ <span class="ruby-identifier">raise</span> <span class="ruby-constant">Git</span><span class="ruby-operator">::</span><span class="ruby-constant">GitTagNameDoesNotExist</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">objectish</span>)
+ <span class="ruby-keyword kw">end</span>
+ <span class="ruby-keyword kw">return</span> <span class="ruby-constant">Tag</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">base</span>, <span class="ruby-identifier">sha</span>, <span class="ruby-identifier">objectish</span>)
+ <span class="ruby-keyword kw">else</span>
+ <span class="ruby-identifier">sha</span> = <span class="ruby-identifier">base</span>.<span class="ruby-identifier">lib</span>.<span class="ruby-identifier">revparse</span>(<span class="ruby-identifier">objectish</span>)
+ <span class="ruby-identifier">type</span> = <span class="ruby-identifier">base</span>.<span class="ruby-identifier">lib</span>.<span class="ruby-identifier">object_type</span>(<span class="ruby-identifier">sha</span>)
+ <span class="ruby-keyword kw">end</span>
+
+ <span class="ruby-identifier">klass</span> =
+ <span class="ruby-keyword kw">case</span> <span class="ruby-identifier">type</span>
+ <span class="ruby-keyword kw">when</span> <span class="ruby-regexp re">/blob/</span><span class="ruby-operator">:</span> <span class="ruby-constant">Blob</span>
+ <span class="ruby-keyword kw">when</span> <span class="ruby-regexp re">/commit/</span><span class="ruby-operator">:</span> <span class="ruby-constant">Commit</span>
+ <span class="ruby-keyword kw">when</span> <span class="ruby-regexp re">/tree/</span><span class="ruby-operator">:</span> <span class="ruby-constant">Tree</span>
+ <span class="ruby-keyword kw">end</span>
+ <span class="ruby-identifier">klass</span><span class="ruby-operator">::</span><span class="ruby-identifier">new</span>(<span class="ruby-identifier">base</span>, <span class="ruby-identifier">sha</span>)
+ <span class="ruby-keyword kw">end</span>
+</pre>
+ </div>
+ </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> \ No newline at end of file