first commit

This commit is contained in:
Jeena Paradies 2010-06-12 17:59:50 +02:00
commit 2bba8c5fee
122 changed files with 8389 additions and 0 deletions

View file

@ -0,0 +1,210 @@
<?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: CFPropertyList</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">CFPropertyList</td>
</tr>
<tr class="top-aligned-row">
<td><strong>In:</strong></td>
<td>
<a href="../files/rbBinaryCFPropertyList_rb.html">
rbBinaryCFPropertyList.rb
</a>
<br />
<a href="../files/rbCFPropertyList_rb.html">
rbCFPropertyList.rb
</a>
<br />
<a href="../files/rbCFTypes_rb.html">
rbCFTypes.rb
</a>
<br />
<a href="../files/rbXMLCFPropertyList_rb.html">
rbXMLCFPropertyList.rb
</a>
<br />
</td>
</tr>
</table>
</div>
<!-- banner header -->
<div id="bodyContent">
<div id="contextContent">
<div id="description">
<p>
<a href="CFPropertyList.html">CFPropertyList</a> implementation parser
class to read, manipulate and write <a
href="CFPropertyList/XML.html">XML</a> property list files (plist(5)) as
defined by Apple
</p>
<table>
<tr><td valign="top">Author:</td><td>Christian Kruse (<a href="mailto:cjk@wwwtech.de">cjk@wwwtech.de</a>)
</td></tr>
<tr><td valign="top">Copyright:</td><td>Copyright (c) 2010
</td></tr>
<tr><td valign="top">License:</td><td>Distributes under the same terms as Ruby
</td></tr>
</table>
</div>
</div>
<div id="method-list">
<h3 class="section-bar">Methods</h3>
<div class="name-list">
<a href="#M000001">guess</a>&nbsp;&nbsp;
<a href="#M000002">native_types</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="CFPropertyList/Binary.html" class="link">CFPropertyList::Binary</a><br />
Class <a href="CFPropertyList/CFArray.html" class="link">CFPropertyList::CFArray</a><br />
Class <a href="CFPropertyList/CFBoolean.html" class="link">CFPropertyList::CFBoolean</a><br />
Class <a href="CFPropertyList/CFData.html" class="link">CFPropertyList::CFData</a><br />
Class <a href="CFPropertyList/CFDate.html" class="link">CFPropertyList::CFDate</a><br />
Class <a href="CFPropertyList/CFDictionary.html" class="link">CFPropertyList::CFDictionary</a><br />
Class <a href="CFPropertyList/CFInteger.html" class="link">CFPropertyList::CFInteger</a><br />
Class <a href="CFPropertyList/CFReal.html" class="link">CFPropertyList::CFReal</a><br />
Class <a href="CFPropertyList/CFString.html" class="link">CFPropertyList::CFString</a><br />
Class <a href="CFPropertyList/CFType.html" class="link">CFPropertyList::CFType</a><br />
Class <a href="CFPropertyList/List.html" class="link">CFPropertyList::List</a><br />
Class <a href="CFPropertyList/ParserInterface.html" class="link">CFPropertyList::ParserInterface</a><br />
Class <a href="CFPropertyList/XML.html" class="link">CFPropertyList::XML</a><br />
</div>
<!-- if method_list -->
<div id="methods">
<h3 class="section-bar">Public Instance methods</h3>
<div id="method-M000001" class="method-detail">
<a name="M000001"></a>
<div class="method-heading">
<a href="CFPropertyList.src/M000001.html" target="Code" class="method-signature"
onclick="popupCode('CFPropertyList.src/M000001.html');return false;">
<span class="method-name">guess</span><span class="method-args">(object, options = {})</span>
</a>
</div>
<div class="method-description">
<p>
Create <a href="CFPropertyList/CFType.html">CFType</a> hierarchy by
guessing the correct <a href="CFPropertyList/CFType.html">CFType</a>, e.g.
</p>
<pre>
x = {
'a' =&gt; ['b','c','d']
}
cftypes = CFPropertyList.guess(x)
</pre>
</div>
</div>
<div id="method-M000002" class="method-detail">
<a name="M000002"></a>
<div class="method-heading">
<a href="CFPropertyList.src/M000002.html" target="Code" class="method-signature"
onclick="popupCode('CFPropertyList.src/M000002.html');return false;">
<span class="method-name">native_types</span><span class="method-args">(object,keys_as_symbols=false)</span>
</a>
</div>
<div class="method-description">
<p>
Converts a <a href="CFPropertyList/CFType.html">CFType</a> hiercharchy to
native Ruby types
</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>