updated generated documentation
This commit is contained in:
parent
54164b752c
commit
e5f7f2bed8
|
@ -20,8 +20,8 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
#
|
||||
# Author : $Author: fgerlits $
|
||||
# Version : $Revision: 1.10 $
|
||||
# Author : $Author: maroy $
|
||||
# Version : $Revision: 1.11 $
|
||||
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/Attic/Makefile,v $
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
|
@ -156,3 +156,11 @@ modules_setup:
|
|||
products_setup:
|
||||
${SCHEDULER_DIR}/bin/autogen.sh
|
||||
|
||||
distclean:
|
||||
${MAKE} -c ${CORE_DIR} distclean
|
||||
${MAKE} -c ${DB_DIR} distclean
|
||||
${MAKE} -c ${STORAGE_DIR} distclean
|
||||
${MAKE} -c ${PLAYLIST_EXECUTOR_DIR} distclean
|
||||
${MAKE} -c ${EVENT_SCHEDULER_DIR} distclean
|
||||
${MAKE} -c ${SCHEDULER_DIR} distclean
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#
|
||||
#
|
||||
# Author : $Author: maroy $
|
||||
# Version : $Revision: 1.1 $
|
||||
# Version : $Revision: 1.2 $
|
||||
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/bin/gen_coverage_data.sh,v $
|
||||
#-------------------------------------------------------------------------------
|
||||
#-------------------------------------------------------------------------------
|
||||
|
@ -45,6 +45,8 @@ coverage_report_dir=$docdir/coverage
|
|||
core_coverage_file=$modules_dir/core/tmp/coverage.info
|
||||
db_coverage_file=$modules_dir/db/tmp/coverage.info
|
||||
storage_coverage_file=$modules_dir/storage/tmp/coverage.info
|
||||
eventScheduler_coverage_file=$modules_dir/eventScheduler/tmp/coverage.info
|
||||
playlistExecutor_coverage_file=$modules_dir/playlistExecutor/tmp/coverage.info
|
||||
scheduler_coverage_file=$products_dir/scheduler/tmp/coverage.info
|
||||
|
||||
coverage_file=$tmpdir/coverage.info
|
||||
|
@ -59,6 +61,8 @@ genhtml=$usrdir/bin/genhtml
|
|||
$modules_dir/core/bin/gen_coverage_data.sh
|
||||
$modules_dir/db/bin/gen_coverage_data.sh
|
||||
$modules_dir/storage/bin/gen_coverage_data.sh
|
||||
$modules_dir/eventScheduler/bin/gen_coverage_data.sh
|
||||
$modules_dir/playlistExecutor/bin/gen_coverage_data.sh
|
||||
$products_dir/scheduler/bin/gen_coverage_data.sh
|
||||
|
||||
|
||||
|
@ -71,6 +75,8 @@ echo "" > $coverage_file
|
|||
cat $core_coverage_file | sed -e "s/core\/tmp\//core\//g" >> $coverage_file
|
||||
cat $db_coverage_file | sed -e "s/db\/tmp\//db\//g" >> $coverage_file
|
||||
cat $storage_coverage_file | sed -e "s/storage\/tmp\//storage\//g" >> $coverage_file
|
||||
cat $eventScheduler_coverage_file | sed -e "s/eventScheduler\/tmp\//eventScheduler\//g" >> $coverage_file
|
||||
cat $playlistExecutor_coverage_file | sed -e "s/playlistExecuto\/tmp\//playlistExecuto\//g" >> $coverage_file
|
||||
cat $scheduler_coverage_file | sed -e "s/scheduler\/tmp\//scheduler\//g" >> $coverage_file
|
||||
|
||||
rm -rf $coverage_report_dir
|
||||
|
|
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
|
||||
<title>LiveSupport developer documentation</title>
|
||||
<meta content="$Author: maroy $" name="author">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Preface</h1>
|
||||
This document is part of the <a href="http://livesupport.campware.org/">LiveSupport</a>
|
||||
project, Copyright © 2004 <a href="http://www.mdlf.org/">Media
|
||||
Development Loan Fund</a>, under the GNU <a
|
||||
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
|
||||
<ul>
|
||||
<li>Author: $Author: maroy $</li>
|
||||
<li>Version: $Revision: 1.1 $</li>
|
||||
<li>Location: $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/doc/index.html,v $</li>
|
||||
</ul>
|
||||
<h1>Scope</h1>
|
||||
This document collects LiveSupport developer documentation, both
|
||||
generated and handwritten.<br>
|
||||
<h1>Introduction</h1>
|
||||
The links below provide useful documentation for the LiveSupport
|
||||
developer.<br>
|
||||
<h1>Static documentaiton.<br>
|
||||
</h1>
|
||||
<ul>
|
||||
<li>LiveSupport <a href="developmentEnvironment/index.html">development
|
||||
environment</a></li>
|
||||
<li>UML <a href="model/index.html">model</a><br>
|
||||
</li>
|
||||
</ul>
|
||||
<h1>Generated documentation</h1>
|
||||
<ul>
|
||||
<li>XML-RPC <a href="xml-rpc_doc/html/hierarchy.html">interface
|
||||
description</a> for the scheduler daemon<br>
|
||||
</li>
|
||||
<li>C++ <a href="doxygen/html/index.html">class documentation</a><br>
|
||||
</li>
|
||||
<li>Unit test <a href="testResults.html">results</a></li>
|
||||
<li>C++ code coverage <a href="coverage/index.html">results</a></li>
|
||||
<li>flawfinder <a href="flawfinderReport.html">results</a><br>
|
||||
</li>
|
||||
</ul>
|
||||
<br>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue