Changeset 4524 for trunk/manuals
- Timestamp:
- 10/20/08 19:20:18 (3 months ago)
- Location:
- trunk/manuals
- Files:
-
- 9 modified
-
index.html (modified) (1 diff)
-
refman/index.html (modified) (1 diff)
-
refman/methods/asserta1.html (modified) (2 diffs)
-
refman/methods/assertz1.html (modified) (2 diffs)
-
refman/refman.header (modified) (1 diff)
-
userman/categories.html (modified) (2 diffs)
-
userman/index.html (modified) (1 diff)
-
userman/running.html (modified) (2 diffs)
-
userman/userman.header (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/manuals/index.html
r4517 r4524 32 32 <div class="copyright"> 33 33 <span>Copyright © <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> — <a href="http://logtalk.org">Logtalk.org</a></span><br/> 34 <span>Last updated on: October 19, 2008</span>34 <span>Last updated on: October 20, 2008</span> 35 35 </div> 36 36 <div class="navbottom"> -
trunk/manuals/refman/index.html
r4517 r4524 321 321 <div class="copyright"> 322 322 <span>Copyright © <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> — <a href="http://logtalk.org">Logtalk.org</a></span><br/> 323 <span>Last updated on: October 19, 2008</span>323 <span>Last updated on: October 20, 2008</span> 324 324 </div> 325 325 <div class="navbottom"> -
trunk/manuals/refman/methods/asserta1.html
r4500 r4524 27 27 asserta((Head:-Body))</pre> 28 28 <p> 29 Asserts a clause as the first one for an object's dynamic predicate. If the predicate is not already declared, then a dynamic predicate declaration is added to the object .29 Asserts a clause as the first one for an object's dynamic predicate. If the predicate is not already declared, then a dynamic predicate declaration is added to the object (assuming that the compiler option <code>dynamic_declarations</code> was switched on when the object was created or compiled). 30 30 </p> 31 31 <p> … … 68 68 <div class="copyright"> 69 69 <span>Copyright © <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> — <a href="http://logtalk.org">Logtalk.org</a></span><br/> 70 <span>Last updated on: October 12, 2008</span>70 <span>Last updated on: October 20, 2008</span> 71 71 </div> 72 72 <div class="navbottom"> -
trunk/manuals/refman/methods/assertz1.html
r4500 r4524 27 27 assertz((Head:-Body))</pre> 28 28 <p> 29 Asserts a clause as the last one for an object's dynamic predicate. If the predicate is not already declared, then a dynamic predicate declaration is added to the object .29 Asserts a clause as the last one for an object's dynamic predicate. If the predicate is not already declared, then a dynamic predicate declaration is added to the object (assuming that the compiler option <code>dynamic_declarations</code> was switched on when the object was created or compiled). 30 30 </p> 31 31 <p> … … 68 68 <div class="copyright"> 69 69 <span>Copyright © <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> — <a href="http://logtalk.org">Logtalk.org</a></span><br/> 70 <span>Last updated on: October 12, 2008</span>70 <span>Last updated on: October 20, 2008</span> 71 71 </div> 72 72 <div class="navbottom"> -
trunk/manuals/refman/refman.header
r4517 r4524 36 36 <span>http://logtalk.org/</span> 37 37 </p> 38 <p class="date">Last updated on October 19, 2008</p>38 <p class="date">Last updated on October 20, 2008</p> 39 39 </div> 40 40 -
trunk/manuals/userman/categories.html
r4511 r4524 68 68 :- end_category.</pre> 69 69 <p> 70 This allows us to add new functionality to existing objects without requiring access or modifications to their source code. Common uses are adding logging or debugging functionality to a set of objects. 70 This allows us to add new functionality to existing objects without requiring access or modifications to their source code. Common uses are adding logging or debugging functionality to a set of objects. Complemented objects need to be compiled with the <code>complements</code> compiler option switched on. 71 71 </p> 72 72 <p> … … 349 349 <div class="copyright"> 350 350 <span>Copyright © <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> — <a href="http://logtalk.org">Logtalk.org</a></span><br/> 351 <span>Last updated on: October 17, 2008</span>351 <span>Last updated on: October 20, 2008</span> 352 352 </div> 353 353 <div class="navbottom"> -
trunk/manuals/userman/index.html
r4511 r4524 304 304 <div class="copyright"> 305 305 <span>Copyright © <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> — <a href="http://logtalk.org">Logtalk.org</a></span><br/> 306 <span>Last updated on: October 17, 2008</span>306 <span>Last updated on: October 20, 2008</span> 307 307 </div> 308 308 <div class="navbottom"> -
trunk/manuals/userman/running.html
r4481 r4524 167 167 <dt><code>debug(Option)</code></dt> 168 168 <dd>Controls the compilation of source files in debug mode (the Logtalk built-in debugger can only be used with files compiled in this mode). Possible option values are <code>on</code> and <code>off</code> (the usual default).</dd> 169 </dl> 170 <dl> 171 <dt><code>complements(Option)</code></dt> 172 <dd>Allows objects to be compiled with support for complementing categories turned off in order to improve performance and security. Possible option values are <code>on</code> and <code>off</code> (the usual default). This option can be used on a per-object basis. Note that changing this option is of no consequence for objects already compiled and loaded.</dd> 173 </dl> 174 <dl> 175 <dt><code>dynamic_declarations(Option)</code></dt> 176 <dd>Allows objects to be compiled with support for dynamic declaration of new predicates turned off in order to improve performance and security. Possible option values are <code>on</code> and <code>off</code> (the usual default). This option can be used on a per-object basis. Note that changing this option is of no consequence for objects already compiled and loaded.</dd> 169 177 </dl> 170 178 <dl> … … 521 529 <div class="copyright"> 522 530 <span>Copyright © <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> — <a href="http://logtalk.org">Logtalk.org</a></span><br/> 523 <span>Last updated on: October 4, 2008</span>531 <span>Last updated on: October 20, 2008</span> 524 532 </div> 525 533 <div class="navbottom"> -
trunk/manuals/userman/userman.header
r4511 r4524 36 36 <span>http://logtalk.org/</span> 37 37 </p> 38 <p class="date">Last updated on October 17, 2008</p>38 <p class="date">Last updated on October 20, 2008</p> 39 39 </div> 40 40
