]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
more documentation rST fixes
authorChristian Weiske <cweiske@cweiske.de>
Thu, 26 May 2011 19:44:29 +0000 (21:44 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Thu, 26 May 2011 19:44:29 +0000 (21:44 +0200)
build.xml
doc/developers/debugging.rst
doc/developers/running-unit-tests.rst

index 5a2a7fc9d2cfee87f9cd36ab06223b614cc27715..d0637c75d46bfbe00b8b27baefec11a29d4741ea 100644 (file)
--- a/build.xml
+++ b/build.xml
       <include name="doc/**.rst"/>
       <include name="doc/**/*.rst"/>
       <exclude name="doc/LICENSE.txt"/>
+      <exclude name="doc/developers/TODO.rst"/>
      </fileset>
    </foreach>
   </target>
index 7f84da6e5e5c58707b115206ad74e638e0fdfc9a..6bee309dc5c321744137885fd931b49aa0ddb7a4 100644 (file)
@@ -4,17 +4,21 @@ How to debug SemanticScuttle
 
 Database queries
 ----------------
-In config.php, enable debugMode.
-Further, add the following there:
--------
-register_shutdown_function(
-    create_function('', <<<FNC
-\$GLOBALS['db'] = SemanticScuttle_Service_Factory::getDb();
-\$GLOBALS['db']->sql_report('display');
-FNC
-    )
-);
-------
-To see database queries in SemanticScuttle, add
-> ?explain=1
+
+In ``data/config.php``, enable ``debugMode``.
+Further, add the following afterwards: ::
+
+  register_shutdown_function(
+      create_function('', <<<FNC
+  \$GLOBALS['db'] = SemanticScuttle_Service_Factory::getDb();
+  \$GLOBALS['db']->sql_report('display');
+  FNC
+      )
+  );
+
+
+To see database queries in SemanticScuttle, add ::
+
+  ?explain=1
+
 to your URL.
index 556055f7696fd30df9c1599e70d02c631c2d8461..8b0fa0de53e13ec122737c6efa5786cfb8b678a6 100644 (file)
@@ -1,21 +1,26 @@
 Running unit tests
 ==================
 
-Go to the SemanticScuttle main directory and run
- $ php tests/AllTests.php
-or
- $ phpunit tests/AllTests.php
-also remember the --verbose parameter to PHPUnit.
+Go to the SemanticScuttle ``tests`` directory and run ``phpunit``::
 
-If you want to run a specific test class only:
- $ phpunit tests/BookmarksTest.php
+  $ cd tests
+  $ phpunit .
 
-If you need to test one method only:
+also remember the ``--verbose`` parameter to PHPUnit.
+
+If you want to run a specific test class only: ::
+
+ $ cd tests
+ $ phpunit BookmarksTest.php
+
+If you need to test one method only: ::
+
+ $ cd tests
  $ phpunit --filter BookmarkTest::testUnificationOfBookmarks tests/BookmarkTest.php
 
 
 Caveats
 -------
-Having debugging enabled and database driver "mysql4" activated
-will lead to failing tests because of FOUND_ROWS() usage, which
+Having debugging enabled and database driver "``mysql4``" activated
+will lead to failing tests because of ``FOUND_ROWS()`` usage, which
 does not work nicely with database debugging.