Browse CVS Repository
Contents of /geeklogjp/geeklog-1/emailgeeklogstories
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1.1.1 -
( show annotations)
( download)
(vendor branch)
Sat Sep 23 16:37:09 2006 UTC
(17 years, 6 months ago)
by taca
Branch: MAIN, geeklog
CVS Tags: geeklog-1-4-1b1, geeklog-1-4-0sr5-1, HEAD
Branch point for: geeklog-jp
Changes since 1.1: +0 -0 lines
Geeklog 1.4.0sr5-1をimportします。
| 1 |
#!/usr/local/bin/php -q |
| 2 |
<?php |
| 3 |
// This code snippet is responsible for emailing Geeklog stories to users |
| 4 |
// for the topics they select. |
| 5 |
// |
| 6 |
// For this script to work you must have compiled PHP so it can also be |
| 7 |
// used as a shell scripting language. You should call this script from |
| 8 |
// your crontab (man crontab). You will also need to set the exectuable |
| 9 |
// flags for this file. |
| 10 |
|
| 11 |
// Change this path to point to your lib-common.php file |
| 12 |
include('/path/to/geeklog/lib-common.php'); |
| 13 |
|
| 14 |
COM_emailUserTopics(); |
| 15 |
?> |
|