merging the edits made in the 1.0.x branch to the trunk, for /doc

This commit is contained in:
fgerlits 2005-11-21 16:58:09 +00:00
parent 51181f7b45
commit eed5067e1f
21 changed files with 1260 additions and 9 deletions

View file

@ -84,6 +84,7 @@ Second, LiveSupport expects:
running on the development computer</li> running on the development computer</li>
<li><a href="http://www.php.net/">PHP</a> interpreter</li> <li><a href="http://www.php.net/">PHP</a> interpreter</li>
<li><a href="http://www.php.net/">PHP</a> apache module</li> <li><a href="http://www.php.net/">PHP</a> apache module</li>
<li> PHP iconv extension (--with-iconv)<br>
<li><a href="http://www.php.net/domxml">DOMXML</a> PHP extension - an <li><a href="http://www.php.net/domxml">DOMXML</a> PHP extension - an
XMLv2 module for PHP<br> XMLv2 module for PHP<br>
</li> </li>

View file

@ -24,6 +24,12 @@ The links below provide useful documentation for the LiveSupport
developer.<br> developer.<br>
<h1>Static documentation<br> <h1>Static documentation<br>
</h1> </h1>
<h2>User documentation</h2>
<ul>
<li><a href="quickstart/index.html">quickstart</a></li>
<li><a href="manual/index.html">manual</a></li>
</ul>
<h2>Developer documentation</h2>
<ul> <ul>
<li><a href="gettingStarted.html">getting started</a> with <li><a href="gettingStarted.html">getting started</a> with
LiveSupport development</li> LiveSupport development</li>

View file

@ -126,7 +126,7 @@ importantly a PHP-capable web server (we assume apache), and a database
server (we assume PostgreSQL). <br> server (we assume PostgreSQL). <br>
<h2>Database</h2> <h2>Database</h2>
LiveSupport expects a <a href="http://www.postgresql.org/">PostgreSQL</a> LiveSupport expects a <a href="http://www.postgresql.org/">PostgreSQL</a>
database, version 7.4 or later, to be installed on your system. You will database, version 7.4 or later, to be installed on your system. You will
also need a postgresql driver for unixODBC; this may be in the unixODBC also need a postgresql driver for unixODBC; this may be in the unixODBC
package, or may need to be installed separately.<br> package, or may need to be installed separately.<br>
<br> <br>
@ -168,7 +168,7 @@ If you changed this setting, increase "post_max_size" to something bigger than "
Please note the user group your apache daemon is running as (usually <code>apache</code> Please note the user group your apache daemon is running as (usually <code>apache</code>
or <code>www-data</code>), you will need this information later. Later or <code>www-data</code>), you will need this information later. Later
on in this document, this group will be referred to as <code>&lt;apache-group&gt;</code>. For the automatic install scripts to work, the user on in this document, this group will be referred to as <code>&lt;apache-group&gt;</code>. For the automatic install scripts to work, the user
running them must either be <code>root</code>, or belong to running them must either be <code>root</code>, or belong to
<code>&lt;apache-group&gt;</code>.<br> <code>&lt;apache-group&gt;</code>.<br>
<br> <br>
Also note the document root directory for your apache installation Also note the document root directory for your apache installation
@ -176,16 +176,14 @@ Also note the document root directory for your apache installation
or <code>/var/www/&lt;yourhost&gt;/htdocs</code>). Later on in this or <code>/var/www/&lt;yourhost&gt;/htdocs</code>). Later on in this
document, this directory will be referred to as <code>&lt;www-root&gt;</code>.<br> document, this directory will be referred to as <code>&lt;www-root&gt;</code>.<br>
<h2>Alsa</h2> <h2>ALSA</h2>
Please check if alsa is installed and configured properly. Please check if ALSA is installed and configured properly.
<br><code>cat /proc/asound/cards</code><br> should show entry for your soundcard. File /proc/asound/cards should contain entry(s) for your soundcard(s).
<br> <br>
If not, maybe you do not have suitable alsa module for your soundcard on the system. Try to If not, maybe you do not have suitable ALSA module for your soundcard on the system. Search you package manager for "alsa-modules" and figure out which are suitable for your kernel version and architecture.
<br><code>apt-get install alsa-modules-2.4.27-2-386</code><br>
or one other from <a href="http://packages.debian.org/cgi-bin/search_packages.pl?version=stable&subword=1&exact=&arch=any&releases=all&case=insensitive&keywords=alsa-modules&searchon=names" target="_blank">http://packages.debian.org/cgi-bin/search_packages.pl...</a>. or one other from <a href="http://packages.debian.org/cgi-bin/search_packages.pl?version=stable&subword=1&exact=&arch=any&releases=all&case=insensitive&keywords=alsa-modules&searchon=names" target="_blank">http://packages.debian.org/cgi-bin/search_packages.pl...</a>.
<br> <br>
Then run <br><code>alsaconf</code><br> and check Then run "alsaconf" and check /proc/asound/cards again.
<br><code>cat /proc/asound/cards</code><br> again.
<h1>Obtaining LiveSupport sources</h1> <h1>Obtaining LiveSupport sources</h1>

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View file

@ -0,0 +1,62 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif"><strong></strong></font></p>
<div align="center">
<table width="562" border="0" cellspacing="2" cellpadding="0">
<tr>
<td colspan="2" valign="top"><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif"><strong><font size="+3"><img src="outline_clouds.jpg" width="551" height="185"></font></strong></font></td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top"><img src="livesupport_logo_blends.png" width="114" height="83" align="top"></td>
<td valign="top"><p><font size="+3" face="Bitstream Vera Sans, Verdana, Arial, sans-serif"><strong><font color="#F95916" size="6">LiveSupport 1.0</font><br>
</strong><font size="+2">Demo and Install CD
</font></font></p>
</td>
</tr>
<tr>
<td width="24%" valign="top">&nbsp;</td>
<td width="76%"><p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif">This
CD is a bootable version of Linux for PCs that includes a demo version
of LiveSupport preinstalled.</font></p>
<p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif">To start,
insert this CD into your CD-ROM drive and restart your computer.<br>
You will be prompted for a boot option. Type &#8216;knoppix&#8217; and the
enter key and the startup procedure will continue.</font></p> <p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif">The <a href="http://www.kde.org">K
Desktop environment</a> (KDE), which is very similar to Windows, will appear. To
start the LiveSupport Studio application, click on its desktop icon.</font></p>
<p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif"> For both
LiveSupport Studio and web access, The username is &#8216;root,&#8217; and
the password is &#8216;q&#8217; for the demo.</font></p>
<p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif">You may
also access LiveSupport Station on this demo through a web browser.
Click the globe icon in the task bar to start the Mozilla Firefox browser.</font></p>
<p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif"> In the
URL field, type: <a href="http://localhost/livesupport">http://localhost/livesupport</a>.</font></p>
<p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif"> You
may also choose to install the operating system and LiveSupport to
your
hard disk. Note: Installation to the hard disk is intended for experienced
users, and is intended for new computers. </font></p>
<p><font face="Bitstream Vera Sans, Verdana, Arial, sans-serif">As with
most open source software, LiveSupport is undergoing frequent updates.
For more information, including news about program updates, check our
website
frequently
at <a href="http://livesupport.campware.org">http://livesupport.campware.org</a></font></p></td>
</tr>
</table>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB