cvs: peardoc /en/package system-entities.xml /en/package/system system-daemon.xml /en/package/system/system-daemon console-action.xml daemons-vs-cronjobs.xml
[email protected] ("Christian Weiske")
| Newsgroups | php.pear.doc |
|---|---|
| Message-ID | <cvscweiske1235168020@cvsserver> |
cweiske Fri Feb 20 22:13:40 2009 UTC
Modified files:
/peardoc/en/package system-entities.xml
/peardoc/en/package/system system-daemon.xml
/peardoc/en/package/system/system-daemon console-action.xml
daemons-vs-cronjobs.xml
Log:
Fix system_daemon docs and add it to the manual (was missing in
system-entities.xml)
http://cvs.php.net/viewvc.cgi/peardoc/en/package/system-entities.xml?r1=1.1&r2=1.2&diff_format=u
Index: peardoc/en/package/system-entities.xml
diff -u peardoc/en/package/system-entities.xml:1.1 peardoc/en/package/system-entities.xml:1.2
--- peardoc/en/package/system-entities.xml:1.1 Sat Oct 11 23:10:03 2008
+++ peardoc/en/package/system-entities.xml Fri Feb 20 22:13:40 2009
@@ -1,4 +1,5 @@
&package.system.folders;
&package.system.mount;
+&package.system.system-daemon;
&package.system.system-procwatch;
&package.system.windrives;
http://cvs.php.net/viewvc.cgi/peardoc/en/package/system/system-daemon.xml?r1=1.1&r2=1.2&diff_format=u
Index: peardoc/en/package/system/system-daemon.xml
diff -u peardoc/en/package/system/system-daemon.xml:1.1 peardoc/en/package/system/system-daemon.xml:1.2
--- peardoc/en/package/system/system-daemon.xml:1.1 Fri Feb 20 16:53:06 2009
+++ peardoc/en/package/system/system-daemon.xml Fri Feb 20 22:13:40 2009
@@ -10,7 +10,6 @@
</abstract>
</info>
- <chapter>
&package.system.system-daemon.introduction;
&package.system.system-daemon.what-is-a-daemon;
&package.system.system-daemon.why-php;
@@ -21,6 +20,4 @@
&package.system.system-daemon.examples;
&package.system.system-daemon.console-action;
&package.system.system-daemon.troubleshooting;
-
- </chapter>
</book>
\ No newline at end of file
http://cvs.php.net/viewvc.cgi/peardoc/en/package/system/system-daemon/console-action.xml?r1=1.1&r2=1.2&diff_format=u
Index: peardoc/en/package/system/system-daemon/console-action.xml
diff -u peardoc/en/package/system/system-daemon/console-action.xml:1.1 peardoc/en/package/system/system-daemon/console-action.xml:1.2
--- peardoc/en/package/system/system-daemon/console-action.xml:1.1 Fri Feb 20 16:55:07 2009
+++ peardoc/en/package/system/system-daemon/console-action.xml Fri Feb 20 22:13:40 2009
@@ -11,10 +11,10 @@
</info>
<para>
- Now that we've created an example daemon, it's time to fire
+ Now that we've created an example daemon, it's time to fire
it up! I'm going to assume the name of your daemon is logparser.
This can be changed with the statement:
-
+
<programlisting role="php"><![CDATA[
<?php
System_Daemon::setOption("appName", "logparser")
@@ -91,7 +91,7 @@
<para>
Run on boot
- Surely you want your daemon to run at system boot.. So on Debian & Ubuntu you could type:
+ Surely you want your daemon to run at system boot.. So on Debian & Ubuntu you could type:
<programlisting role="bash"><![CDATA[
update-rc.d logparser defaults
@@ -104,6 +104,5 @@
]]></programlisting>
</para>
- </para>
</chapter>
\ No newline at end of file
http://cvs.php.net/viewvc.cgi/peardoc/en/package/system/system-daemon/daemons-vs-cronjobs.xml?r1=1.1&r2=1.2&diff_format=u
Index: peardoc/en/package/system/system-daemon/daemons-vs-cronjobs.xml
diff -u peardoc/en/package/system/system-daemon/daemons-vs-cronjobs.xml:1.1 peardoc/en/package/system/system-daemon/daemons-vs-cronjobs.xml:1.2
--- peardoc/en/package/system/system-daemon/daemons-vs-cronjobs.xml:1.1 Fri Feb 20 16:55:07 2009
+++ peardoc/en/package/system/system-daemon/daemons-vs-cronjobs.xml Fri Feb 20 22:13:40 2009
@@ -17,7 +17,7 @@
<itemizedlist>
<listitem>
<para>
- What if the previous run hasn't finished yet? Overlap can seriously damage your data & cause siginificant load on your machines.
+ What if the previous run hasn't finished yet? Overlap can seriously damage your data & cause siginificant load on your machines.
</para>
</listitem>
<listitem>