doc/manual-html/chapter-6.html in copland-0.8.0 vs doc/manual-html/chapter-6.html in copland-1.0.0

- old
+ new

@@ -12,12 +12,12 @@ <span class="product">Copland&mdash;</span><br /> <span class="tagline">compose yourself...</span> </div> </td><td valign='middle' align='right'> <div class="info"> - Copland Version: <strong>0.8.0</strong><br /> - Manual Last Updated: <strong>2004-09-27 03:37 GMT</strong> + Copland Version: <strong>1.0.0</strong><br /> + Manual Last Updated: <strong>2004-10-12 02:22 GMT</strong> </div> </td></tr> </table> </div> @@ -37,18 +37,26 @@ <ol type="1"> <li><a href="chapter-1.html#s1">What is Copland?</a></li> - <li><a href="chapter-1.html#s2">Features</a></li> + <li><a href="chapter-1.html#s2">What Can Copland Do For Me?</a></li> - <li><a href="chapter-1.html#s3">Getting Copland</a></li> + <li><a href="chapter-1.html#s3">Copland <em>sans</em> Buzzwords</a></li> - <li><a href="chapter-1.html#s4">License Information</a></li> + <li><a href="chapter-1.html#s4">Copland <em>avec</em> Buzzwords</a></li> - <li><a href="chapter-1.html#s5">Support</a></li> + <li><a href="chapter-1.html#s5">The Buzzwords Themselves</a></li> + <li><a href="chapter-1.html#s6">Features</a></li> + + <li><a href="chapter-1.html#s7">Getting Copland</a></li> + + <li><a href="chapter-1.html#s8">License Information</a></li> + + <li><a href="chapter-1.html#s9">Support</a></li> + </ol> </li> <li> <a href="chapter-2.html"> @@ -147,12 +155,14 @@ <ol type="1"> <li><a href="chapter-8.html#s1">Descriptor Syntax</a></li> - <li><a href="chapter-8.html#s2">DefaultSymbolSource</a></li> + <li><a href="chapter-8.html#s2">FactoryDefaults</a></li> + <li><a href="chapter-8.html#s3">ApplicationDefaults</a></li> + </ol> </li> <li> <a href="chapter-9.html"> @@ -164,58 +174,72 @@ </ol> </li> <li> <a href="chapter-10.html"> + Logging + </a> + + <ol type="1"> + + <li><a href="chapter-10.html#s1">Log Factory</a></li> + + <li><a href="chapter-10.html#s2">Configuration</a></li> + + </ol> + </li> + + <li> + <a href="chapter-11.html"> Service Factories </a> <ol type="1"> - <li><a href="chapter-10.html#s1">Schemas</a></li> + <li><a href="chapter-11.html#s1">Schemas</a></li> - <li><a href="chapter-10.html#s2">How do they work?</a></li> + <li><a href="chapter-11.html#s2">How do they work?</a></li> - <li><a href="chapter-10.html#s3">BuilderFactory</a></li> + <li><a href="chapter-11.html#s3">BuilderFactory</a></li> </ol> </li> <li> - <a href="chapter-11.html"> + <a href="chapter-12.html"> Schemas </a> <ol type="1"> - <li><a href="chapter-11.html#s1">Basic Format</a></li> + <li><a href="chapter-12.html#s1">Basic Format</a></li> - <li><a href="chapter-11.html#s2">Subschemas</a></li> + <li><a href="chapter-12.html#s2">Subschemas</a></li> - <li><a href="chapter-11.html#s3">Arrays</a></li> + <li><a href="chapter-12.html#s3">Arrays</a></li> - <li><a href="chapter-11.html#s4">Named vs. Anonymous Schemas</a></li> + <li><a href="chapter-12.html#s4">Named vs. Anonymous Schemas</a></li> - <li><a href="chapter-11.html#s5">Extending Schemas</a></li> + <li><a href="chapter-12.html#s5">Extending Schemas</a></li> - <li><a href="chapter-11.html#s6">Limitations</a></li> + <li><a href="chapter-12.html#s6">Limitations</a></li> </ol> </li> <li> - <a href="chapter-12.html"> + <a href="chapter-13.html"> Listeners and Event Producers </a> <ol type="1"> - <li><a href="chapter-12.html#s1">Event Producers</a></li> + <li><a href="chapter-13.html#s1">Event Producers</a></li> - <li><a href="chapter-12.html#s2">Listeners</a></li> + <li><a href="chapter-13.html#s2">Listeners</a></li> - <li><a href="chapter-12.html#s3">The Registry as an Event Producer</a></li> + <li><a href="chapter-13.html#s3">The Registry as an Event Producer</a></li> </ol> </li> </ol> @@ -344,9 +368,13 @@ <td>This must be either a string or a hash. If it is a string, then it references another schema (either in this package or a different one). Otherwise, it&#8217;s format is described in more detail in the chapter &#8220;Schemas&#8221;. This is only needed by services that define service or interceptor factories.</td> </tr> <tr> <td style="vertical-align:top;"><code>listen-to</code></td> <td>This must be an array of service point names. If the referrenced service points are not defined in the same package as the current service point, their full names (including package) must be given, otherwise the package name may be omitted. Every time the current service point is instantiated, the new instance will be added as a listener to each of the service points listed here, to be notified when some service-specific event is triggered. See the chapter on &#8220;Listeners and Event Producers&#8221; for more information.</td> + </tr> + <tr> + <td style="vertical-align:top;"><code>visibility</code></td> + <td>This must be either the value &#8220;public&#8221; or &#8220;private&#8221;. It defaults to &#8220;public&#8221;. If it is &#8220;private&#8221;, then the service point is not visible outside of its containing package. it is often the case that a particular package will have a few public services that are facades for multiple private services. See the <code>copland.webrick</code> package for an example.</td> </tr> </table> <p>Of these attributes, only <code>implementor</code> is required.<br /> </p>