Skip to content

Commit

Permalink
"gh-pages" branch update
Browse files Browse the repository at this point in the history
  • Loading branch information
canonic-epicure committed Sep 14, 2011
1 parent 1eb86c5 commit a538717
Show file tree
Hide file tree
Showing 8 changed files with 207 additions and 6 deletions.
9 changes: 9 additions & 0 deletions doc/html/Joose/Attribute.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link type="text/css" rel="stylesheet" href="http://joose.it/markdown.css " />
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions doc/html/Joose/Attribute/Accessor/Combined.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link type="text/css" rel="stylesheet" href="http://joose.it/markdown.css " />
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions doc/html/Joose/Attribute/Delegate.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link type="text/css" rel="stylesheet" href="http://joose.it/markdown.css " />
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions doc/html/Joose/Attribute/Lazy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link type="text/css" rel="stylesheet" href="http://joose.it/markdown.css " />
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions doc/html/Joose/Attribute/Trigger.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link type="text/css" rel="stylesheet" href="http://joose.it/markdown.css " />
</head>
<body>

</body>
</html>
10 changes: 6 additions & 4 deletions doc/html/Joose/Manual/Attributes.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1 id="introduction">INTRODUCTION</h1>

<p>Attributes are also referred to as slots or properties.</p>

<p>However, all the "attributes magic" is often skipped by beginners, as its generally an advanced topic. Thats why its provided outside of the core, as JooseX.Attribute extension.
<p>However, all the "attributes magic" is often skipped by beginners, as its generally an advanced topic. Thats why its provided outside of the core, as Joose.Attribute extension.
In this document we'll cover only the base capabilities of attributes, which are included in the core.</p>

<h1 id="basicattribute-havebuilder">BASIC ATTRIBUTE - <code>have</code> builder</h1>
Expand Down Expand Up @@ -87,6 +87,8 @@ <h2 id="defaultvalue">Default value</h2>
<p>If you'll provide a function as the value for <code>init</code>, it will be called during initialization with the following signature:
<code>func(attributeName, config)</code>, where <code>config</code> is the 1st argument passed to constructor. Function will be called as class's method (in the instance's scope).</p>

<p><strong>The exception</strong> from this rule is the function which represent the constructor of some class. Such function <strong>will not</strong> be called during initialization.</p>

<p>Value, returned from function, will be used for initialization. <strong>Note</strong>, that if there is setter method, it won't be used during initialization - value will be just assigned to instance.</p>

<p>Any other values, provided as <code>init</code> value, will be applied to prototype of the class directly.</p>
Expand Down Expand Up @@ -225,7 +227,7 @@ <h2 id="custommetaclass">Custom Metaclass </h2>

<pre><code> has : {
password : {
meta : JooseX.Attribute.Hashed,
meta : Joose.Attribute.Hashed,

init : '12345',
hashType : 'SHA-1',
Expand All @@ -234,7 +236,7 @@ <h2 id="custommetaclass">Custom Metaclass </h2>
}
</code></pre>

<p>In this case, the <code>password</code> attribute will be created using hypotetical <code>JooseX.Attribute.Hashed</code> metaclss, which probably will provide a special setter method, which replace the actual attribute value with its hashed version.</p>
<p>In this case, the <code>password</code> attribute will be created using hypotetical <code>Joose.Attribute.Hashed</code> metaclss, which probably will provide a special setter method, which replace the actual attribute value with its hashed version.</p>

<p>There are a number of JooseX modules on JSAN which provide useful attribute metaclasses. See <a href="JooseX.html">Joose.Manual.JooseX</a> for some examples. You can also write your own metaclasses.
See the "Meta" and "Extending" recipes in <a href="../Cookbook.html">Joose.Cookbook</a> for examples.</p>
Expand All @@ -247,7 +249,7 @@ <h1 id="attributeinheritance">ATTRIBUTE INHERITANCE</h1>

<h1 id="moreonattributes">MORE ON ATTRIBUTES</h1>

<p>Joose attributes are a big topic, and this document glosses over a few aspects. We recommend that you read the <a href="http://samuraijack.github.com/JooseX-Attribute">JooseX.Attribute</a> documentation as further reading.</p>
<p>Joose attributes are a big topic, and this document glosses over a few aspects. We recommend that you read the <a href="http://samuraijack.github.com/JooseX-Attribute">Joose.Attribute</a> documentation as further reading.</p>

<h1 id="author">AUTHOR</h1>

Expand Down
4 changes: 2 additions & 2 deletions doc/html/Joose/Manual/JooseX.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1 id="joosex">JooseX?</h1>

<p>This document covers a few of the ones we like best.</p>

<h1 id="joosex.attribute">JooseX.Attribute</h1>
<h1 id="joose.attribute">Joose.Attribute</h1>

<p>If you only look at one extension, it should be this one. It provides a lot of additional features for class's attributes, including lazy initialization,
triggering, delegation and much more.</p>
Expand Down Expand Up @@ -54,7 +54,7 @@ <h1 id="joosex.attribute">JooseX.Attribute</h1>
})
</code></pre>

<p>For further reading please refer to <a href="http://samuraijack.github.com/JooseX-Attribute">JooseX.Attribute</a></p>
<p>For further reading please refer to <a href="http://samuraijack.github.com/JooseX-Attribute">Joose.Attribute</a></p>

<h1 id="joosex.namespace.depended">JooseX.Namespace.Depended</h1>

Expand Down
154 changes: 154 additions & 0 deletions doc/html/Joose/Meta/Singleton.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link type="text/css" rel="stylesheet" href="http://joose.it/markdown.css " />
</head>
<body>
<h1 id="name">Name</h1>

<p>JooseX.Class.Singleton - a trait, turning your class into singleton</p>

<h1 id="synopsis">SYNOPSIS</h1>

<pre><code> Class("Some.Class", {

trait : JooseX.Class.Singleton,

has : {
attribute : null
},


methods : {

configure : function (params) {
}
}
})

var instance1 = new Some.Class({
attribute : 'value'
})

var instance2 = new Some.Class()

//preferred way
var instance3 = Some.Class()

t.ok(instance1 == instance2 &amp;&amp; instance2 == instance3, '3 ways to access a singleton instance - choose one')


//or equivalent declaration

Singleton("Some.Class", {

has : {
attribute : null
},


methods : {

configure : function (params) {
this.attribute = params
}
}
})
</code></pre>

<h1 id="description">DESCRIPTION</h1>

<p><code>JooseX.Class.Singleton</code> is a meta-role, turning your class into singleton.</p>

<p>You can apply it as a trait (the 1st example in the synopsys), or you can use the new declaration helper: <code>Singleton</code></p>

<h1 id="usage">USAGE</h1>

<p>To receive the singleton instance use the constructor of the class. You can use it in any form - with or without <code>new</code> keyword.</p>

<pre><code> Singleton('Some.Class', {
...
})

var instance = Some.Class()

//or

var instance = new Some.Class()
</code></pre>

<p>The first call to constructor will <em>instantiate</em> singleton. The parameters passed to this first call, will be passed into actual underlaying constructor.</p>

<p>The further calls to constructor will <em>reconfigure</em> singleton. The parameters passed to further calls, will be passed into call to <code>configure</code> method
of the class (if it has one).</p>

<h1 id="inheritance">INHERITANCE</h1>

<p>Note, that by default, the subclasses uses the same metaclass as their parents. Thus, if you'll subclass the singleton, the resulting class will be
a singleton either (even without applied traits or <code>Singleton</code> helper usage):</p>

<pre><code> Class('Some.Singleton', {
trait : JooseX.Class.Singleton,
...
})


// this class will be a singleton as well

Class('Another.Class', {
isa : Some.Singleton
})
</code></pre>

<p>If you'd like to avoid this - then specify the metaclass explicitly:</p>

<pre><code> // this class will be a usual class
// inheriting all attributes/methods of Some.Singleton
// but not its "singleton-nessment"

Class('Another.Class', {
meta : Joose.Meta.Class,

isa : Some.Singleton
})
</code></pre>

<h1 id="gettinghelp">GETTING HELP</h1>

<p>This extension is supported via github issues tracker: <a href="http://github.com/SamuraiJack/JooseX-Class-Singleton/issues">http://github.com/SamuraiJack/JooseX-Class-Singleton/issues</a></p>

<p>For general Joose questions you can also visit #joose on irc.freenode.org or the forum at: <a href="http://joose.it/forum">http://joose.it/forum</a></p>

<h1 id="seealso">SEE ALSO</h1>

<p>Web page of this module: <a href="http://github.com/SamuraiJack/JooseX-Class-Singleton/">http://github.com/SamuraiJack/JooseX-Class-Singleton/</a></p>

<p>General documentation for Joose: <a href="http://Joose.github.com/Joose">http://Joose.github.com/Joose</a></p>

<h1 id="bugs">BUGS</h1>

<p>All complex software has bugs lurking in it, and this module is no exception.</p>

<p>Please report any bugs through the web interface at <a href="http://github.com/SamuraiJack/JooseX-Class-Singleton/issues">http://github.com/SamuraiJack/JooseX-Class-Singleton/issues</a></p>

<h1 id="authors">AUTHORS</h1>

<p>Nickolay Platonov <a href="&#x6D;&#97;&#x69;l&#116;&#111;:&#x6E;&#x70;la&#116;&#111;&#110;&#111;&#x76;&#64;&#99;&#112;&#x61;&#x6E;&#46;&#111;&#x72;&#x67;">&#x6E;&#x70;la&#116;&#111;&#110;&#111;&#x76;&#64;&#99;&#112;&#x61;&#x6E;&#46;&#111;&#x72;&#x67;</a></p>

<h1 id="copyrightandlicense">COPYRIGHT AND LICENSE</h1>

<p>Copyright (c) 2009, Nickolay Platonov</p>

<p>All rights reserved.</p>

<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>

<ul>
<li>Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</li>
<li>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</li>
<li>Neither the name of Nickolay Platonov nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. </li>
</ul>

<p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. </p>
</body>
</html>

0 comments on commit a538717

Please sign in to comment.