|
From: mdw c. <myd...@li...> - 2001-11-23 11:49:48
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs
Modified Files:
count.php
Log Message:
OK,
now count.php does just one thing : it saves the HTTP_REFERES.
look inside your DATABASE at the two tables called :
- REFERES
- REF_DAY
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/count.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- count.php 2001/11/23 10:48:12 1.1
+++ count.php 2001/11/23 11:49:47 1.2
@@ -1,87 +1,87 @@
<?PHP
+
include('./include/mydynaweb.init.php');
include(DYNA_ROOT . '/include/mydynaweb.libs.php');
$DBH=new db();
$DBH->open($dbName, $dbServer, $dbUser, $dbPass);
-
-
-$rqt = new query($DBH);
-$rqt->query($DBH, $sql);
-
-
-
-$sql = "";
-$rqt = new query($DBH);
-$rqt->query($DBH, $sql);
-header ("Status: 302\nLocation: images/mydynawebpowered.gif\n\n");
+referer_exists($HTTP_REFERER, $DBH);
$DBH->close();
+header ("Location: images/poweredbymydynaweb.gif");
+die();
function get_stats_vals($HTTP_REFERER, $REMOTE_ADDR) {
- $today = date ("Y-m-d");
- $DYNAVISIT = DVISIT;
- $sql = "select PAGEVIEWS, VISITS, PEOPLE
- from STATS
- where DAY=$today";
- $rqt = new query($DBH);
- $rqt->query($DBH, $sql);
- $old_stats = $rqt->getrow();
-
- // if the ip is unknown, +1 in all
- if (!referer_exists($HTTP_REFERER), $DBH) {
-
- setcookie('DYNAVISIT', '1', (time() + 30 * 60));
- $sql = "INSERT INTO hit_$mon
- (day, ip, nb_hit, nb_visit, referer)
- VALUES ($day, '$IP', 1, 1, '$REFER')";
- $rqt = new query($DBH);
- $rqt->query($DBH, $sql) or print $rqt->error();
- return(1);
-
- }
- //elsif there is no visit cookie, +1 in visit & hit
- else {
- if (! isset($DYNAVISIT)) {
- setcookie('DYNAVISIT', '1', (time() + 30 * 60));
- $new_nb_hit = NB_HIT+1;
- $new_nb_visit = NB_VIS+1;
- $sql = "UPDATE hit_$mon set nb_hit=$new_nb_hit, nb_visit=$new_nb_visit, referer='$REFER'
- WHERE ip='$IP' and day=$day";
- $rqt = new query($DBH);
- $rqt->query($DBH, $sql) or print $rqt->error();
- return(1);
- }
- else {
- // else +1 in hit
- $new_nb_hit = NB_HIT+1;
- $sql = "UPDATE hit_$mon set nb_hit=$new_nb_hit, referer='$REFER'
- WHERE ip='$IP' and day=$day";
- $rqt = new query($DBH);
- $rqt->query($DBH, $sql) or print $rqt->error();
- return(1);
+ return 1;
- }
-
}
function referer_exists($REF, $DBH) {
-/* Check if the referer is known
+/* Boolean
+ -> Check if the referer is known
If not, we add it in the referer DB
*/
+ $today = date("Y-m-d");
- $sql = "select REF_ID, NB
+ $sql = "select REFERERS.REF_ID, NB
from REF_DAY, REFERERS
where REF_DAY.DAY = '$today'
and REF_DAY.REF_ID = REFERERS.REF_ID
and REFERERS.REF_URL = '$REF'";
-
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ $row = $rqt->getrow();
+
+
+ if (!$row[1]) // there is no entry for that referer today, send FALSE
+ {
+ // referer exists in the referer DB ?
+ $sql = "select REF_ID
+ from REFERERS
+ where REF_URL='$REF'";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ $refrow = $rqt->getrow();
+ $REFID = 0;
+
+ if ($refrow[0]) { // yes, it is known
+ $REFID = $refrow[0];
+ }
+ else // no, first time we see that referer !
+ {
+ $sql = "insert into REFERERS
+ (REF_URL) values ('$REF')";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ $REFID = $DBH->lastid();
+ }
+
+ // we have the referer ID, we can add that ref in the ref table for today
+ $sql = "insert into REF_DAY
+ (REF_ID, DAY, NB)
+ values ($REFID, '$today', 1)";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+
+ return (0);
+ }
+ else // referer exists, increment NB and send TRUE
+ {
+ $nb = $row[1] + 1;
+ $sql = "update REF_DAY
+ set NB=$nb
+ where REF_ID=".$row[0];
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+
+ return(1);
+ }
}
|
|
From: mdw c. <myd...@li...> - 2001-11-23 13:37:24
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/templates/smarty
Modified Files:
main.html
Log Message:
JavaScript call to the counter
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/templates/smarty/main.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- main.html 2001/11/23 11:46:49 1.3
+++ main.html 2001/11/23 13:37:23 1.4
@@ -4,6 +4,7 @@
<HEAD>
<TITLE>~SITE_TITLE~ - ~PAGE_TITLE~</TITLE>
+
<style type="text/css">
A {
@@ -112,7 +113,10 @@
<font face="tahoma,helvetica,arial" size="-1">~QUOTATION~</font>
</td>
<td align="right">
- <a href="http://mydynaweb.sf.net"><img src="count.php" border="0"></a>
+ <script src="include/count.js"></script>
+ <script>
+ count_this_hit();
+ </script>
</td>
</tr>
</table>
|
|
From: mdw c. <myd...@li...> - 2001-11-23 13:38:25
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/include Added Files: count.js Log Message: Now a JavaScript function is called in whatever HTML page to count. We are able, in this way to count what we want... now : just referers are counted. |
|
From: mdw c. <myd...@li...> - 2001-11-23 14:12:21
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs
Modified Files:
count.php
Log Message:
There is a problem with php counter :
a script called in img src does not inherrit the parent environement vars.
Indeed : count.php is a script called from a HTML page like that :
<img src='count.php'>
the script count.php doesn't see $HTTP_REFERER when it is called like that.
but when you follow a link to count.php, the var $HTTP_REFERER is set.
To bypass this problem I have to make a JavaScript function that make a call to count.php with the value I need in the URL.
The JavaScript now write something like that :
<img src='count.php?REF=the_referrer'>
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/count.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- count.php 2001/11/23 11:49:47 1.2
+++ count.php 2001/11/23 14:12:21 1.3
@@ -7,6 +7,10 @@
$DBH=new db();
$DBH->open($dbName, $dbServer, $dbUser, $dbPass);
+if (isset($REF)) {
+ $HTTP_REFERER = $REF;
+}
+
referer_exists($HTTP_REFERER, $DBH);
$DBH->close();
|
|
From: mdw c. <myd...@li...> - 2001-11-23 14:13:31
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/templates/smarty Modified Files: main.html Log Message: The JavaScript call is OK =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/templates/smarty/main.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- main.html 2001/11/23 13:37:23 1.4 +++ main.html 2001/11/23 14:13:31 1.5 @@ -112,7 +112,7 @@ <td align="left"> <font face="tahoma,helvetica,arial" size="-1">~QUOTATION~</font> </td> - <td align="right"> + <td align="center"> <script src="include/count.js"></script> <script> count_this_hit(); |
|
From: mdw c. <myd...@li...> - 2001-11-23 16:04:21
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs Modified Files: count.php Log Message: Now the count process is quite finished. It manages the vistor, visit and page views counters. The olny problem is that I cannot manage to set a cookie on remote client from an img src source. If I get the PHP script from its own url (ie http://sukria.net/count.php) it works fine and I have my unique cookie ; but when it is called from the image source, the cookie is not set... Tip : to see if mydynaweb knows you (you have a DYNA_UNIQUE cookie), look at the logo that is displayed : - it is the "MydynaWeb powered" one ? mydynaweb doesn't know you - it is a cup of coffee ? mydynaweb knows you ! =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/count.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- count.php 2001/11/23 14:12:21 1.3 +++ count.php 2001/11/23 16:04:20 1.4 @@ -3,6 +3,7 @@ include('./include/mydynaweb.init.php'); include(DYNA_ROOT . '/include/mydynaweb.libs.php'); + $DBH=new db(); $DBH->open($dbName, $dbServer, $dbUser, $dbPass); @@ -11,22 +12,103 @@ $HTTP_REFERER = $REF; } -referer_exists($HTTP_REFERER, $DBH); +count_stats($DYNA_UNIQUE, $DYNA_VISIT, $DBH); +manage_referer($HTTP_REFERER, $DBH); +if (!isset($DYNA_UNIQUE)) { + header ("Location: images/poweredbymydynaweb.gif"); +} +else { + header ("Location: images/coffee.gif"); +} $DBH->close(); -header ("Location: images/poweredbymydynaweb.gif"); die(); -function get_stats_vals($HTTP_REFERER, $REMOTE_ADDR) { - return 1; + +/**************************************** + SUBROUTINES +****************************************/ + +function count_stats($DYNA_UNIQUE, $DYNA_VISIT, $DBH) { + + // Global datas : we'll need it everywhere in the func + // today + $today = date("Y-m-d"); + + // get the number of old stats + $sql = "SELECT PAGEVIEWS, VISITS, PEOPLE + from STATS + where DAY='$today'"; + $rqt = new query($DBH); + $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error()); + $old = $rqt->getrow(); + + if (!$rqt->numrows()) { // this is the first hit of the day + $sql = "insert into STATS + (DAY, PAGEVIEWS, VISITS, PEOPLE) + values ('$today', 0, 0, 0)"; + $rqt = new query($DBH); + $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error()); + + } + + // is the user known by us ? + if (strlen($DYNA_UNIQUE)) { // yes, I know you man ! + + // Is it a new visit ? (more than 30 min.) + if (isset($DYNA_VISIT)) { // no ;) + $PAGES = $old['PAGEVIEWS'] + 1; + $VISITS = $old['VISITS']; + $PEOPLE = $old['PEOPLE']; + + } + else { // yes, this guy likes my site hehe !! ;) + $PAGES = $old['PAGEVIEWS'] + 1; + $VISITS = $old['VISITS'] + 1; + $PEOPLE = $old['PEOPLE']; + } + } + else { // no, never seen before... + + + // first, let me give you a name... + $letters = array('@', '-', '_', 'S', 'U', 'K', 'R', 'I', 'A', 'R', 'U', 'L', 'E', 'Z'); + $UNIQUE_NUMBER = ($letters[rand(0, sizeof($letters))] . + $letters[rand(0, sizeof($letters))] . + $letters[rand(0, sizeof($letters))] . + time() . + getmypid() . + rand(10000, 65535)); + setcookie('DYNA_UNIQUE', $UNIQUE_NUMBER, (time() + 3600*24*365*10), '/'); + + // This is your first visit + setcookie('DYNA_VISIT', '1', (time() + 30 * 60)); + + $PAGES = $old['PAGEVIEWS'] + 1; + $VISITS = $old['VISITS'] + 1; + $PEOPLE = $old['PEOPLE'] + 1; + } + + + // now, we have to store in the DB the new vals of the stats : + $sql = "UPDATE STATS + SET PAGEVIEWS=$PAGES, + VISITS=$VISITS, + PEOPLE=$PEOPLE + WHERE DAY='$today'"; + $rqt = new query($DBH); + $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error()); + + + return 1; } -function referer_exists($REF, $DBH) { +function manage_referer($REF, $DBH) { /* Boolean -> Check if the referer is known If not, we add it in the referer DB |
|
From: mdw c. <myd...@li...> - 2001-11-26 22:56:55
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/templates/smarty Modified Files: main.html Log Message: The count system is finished. If you want to test it, make sure to launch - $DYNAROOT/sql/db_upgrade/from-0.3.5__to-0.3.6/create-referer.sql - $DYNAROOT/sql/db_upgrade/from-0.3.5__to-0.3.6/create-stats.sql - $DYNAROOT/sql/db_upgrade/from-0.3.5__to-0.3.6/create-users.sql Then set your theme to 'smarty' because this the only one who is tagged with the count function. You would be able to see the hits getting filled in your DB :) it saves the referers that point to your site, the different users that comes the number of hits, page views and users. TO DO : - the script that can show the stats in a nice way. =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/templates/smarty/main.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- main.html 2001/11/23 14:13:31 1.5 +++ main.html 2001/11/26 22:56:54 1.6 @@ -127,7 +127,6 @@ </center> - </BODY> </HTML> |
|
From: mdw c. <myd...@li...> - 2001-11-26 22:56:55
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs
Modified Files:
count.php
Log Message:
The count system is finished.
If you want to test it, make sure to launch
- $DYNAROOT/sql/db_upgrade/from-0.3.5__to-0.3.6/create-referer.sql
- $DYNAROOT/sql/db_upgrade/from-0.3.5__to-0.3.6/create-stats.sql
- $DYNAROOT/sql/db_upgrade/from-0.3.5__to-0.3.6/create-users.sql
Then set your theme to 'smarty' because this the only one who is tagged with the count function.
You would be able to see the hits getting filled in your DB :)
it saves the referers that point to your site,
the different users that comes
the number of hits, page views and users.
TO DO :
- the script that can show the stats in a nice way.
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/count.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- count.php 2001/11/23 16:04:20 1.4
+++ count.php 2001/11/26 22:56:54 1.5
@@ -12,9 +12,16 @@
$HTTP_REFERER = $REF;
}
-count_stats($DYNA_UNIQUE, $DYNA_VISIT, $DBH);
+// we store the referer and add it if not exists
manage_referer($HTTP_REFERER, $DBH);
+// we store the cookie user and add it if not exists
+manage_user($DYNA_UNIQUE, $DBH);
+
+// we count the stats
+count_stats($DYNA_UNIQUE, $DYNA_VISIT, $DBH);
+
+
if (!isset($DYNA_UNIQUE)) {
header ("Location: images/poweredbymydynaweb.gif");
}
@@ -76,7 +83,7 @@
// first, let me give you a name...
- $letters = array('@', '-', '_', 'S', 'U', 'K', 'R', 'I', 'A', 'R', 'U', 'L', 'E', 'Z');
+ $letters = array('S', 'U', 'K', 'R', 'I', 'A', 'R', 'U', 'L', 'E', 'Z');
$UNIQUE_NUMBER = ($letters[rand(0, sizeof($letters))] .
$letters[rand(0, sizeof($letters))] .
$letters[rand(0, sizeof($letters))] .
@@ -107,6 +114,68 @@
return 1;
}
+function manage_user($COOKIE, $DBH) {
+/* Boolean
+ -> Check if the user's cookie is known
+ If not, we add it in the user DB
+*/
+ $today = date("Y-m-d");
+
+ $sql = "select USERS.USER_ID, NB
+ from USERS_DAY, USERS
+ where USERS_DAY.DAY = '$today'
+ and USERS_DAY.USER_ID = USERS.USER_ID
+ and USERS.USER_COOKIE = '$COOKIE'";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ $row = $rqt->getrow();
+
+
+ if (!$row[1]) // there is no entry for that cookie today, send FALSE
+ {
+ // cookie exists in the cookie DB ?
+ $sql = "select USER_ID
+ from USERS
+ where USER_COOKIE='$COOKIE'";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ $cookrow = $rqt->getrow();
+ $COOKID = 0;
+
+ if ($cookrow[0]) { // yes, it is known
+ $COOKID = $cookrow[0];
+ }
+ else // no, first time we see that cookie !
+ {
+ $sql = "insert into USERS
+ (USER_COOKIE) values ('$COOKIE')";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ $COOKID = $DBH->lastid();
+ }
+
+ // we have the cookie ID, we can add that cookie in the cookie table for today
+ $sql = "insert into USERS_DAY
+ (USER_ID, DAY, NB)
+ values ($COOKID, '$today', 1)";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+
+ return (0);
+ }
+ else // cookie exists, increment NB and send TRUE
+ {
+ $nb = $row[1] + 1;
+ $sql = "update USERS_DAY
+ set NB=$nb
+ where USER_ID=".$row[0];
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+
+ return(1);
+ }
+
+}
function manage_referer($REF, $DBH) {
/* Boolean
|
|
From: mdw c. <myd...@li...> - 2001-12-01 12:14:57
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/db
Modified Files:
mysql.php
Log Message:
replacing pconnect by conect in order to dave system ressources.
Thanks ben for this very interesting report !
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/db/mysql.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- mysql.php 2001/07/09 13:44:51 1.3
+++ mysql.php 2001/12/01 12:14:56 1.4
@@ -18,7 +18,7 @@
function open($database, $host, $user, $password) {
if(empty($user)){
- $this->connect_id=@mysql_pconnect();
+ $this->connect_id=@mysql_connect();
}
else{
$this->connect_id=@mysql_pconnect($host, $user, $password);
|
|
From: mdw c. <myd...@li...> - 2001-12-01 12:18:06
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/db
Modified Files:
mysql.php
Log Message:
connect instead of pconnect
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/db/mysql.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- mysql.php 2001/12/01 12:14:56 1.4
+++ mysql.php 2001/12/01 12:18:05 1.5
@@ -21,7 +21,7 @@
$this->connect_id=@mysql_connect();
}
else{
- $this->connect_id=@mysql_pconnect($host, $user, $password);
+ $this->connect_id=@mysql_connect($host, $user, $password);
}
if ($this->connect_id) {
|
|
From: mdw c. <myd...@li...> - 2001-12-02 16:08:21
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/admin
Modified Files:
add_box.php new_page.php
Log Message:
Documentation stuff for page creation
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/admin/add_box.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- add_box.php 2001/11/19 16:58:27 1.2
+++ add_box.php 2001/12/02 16:08:20 1.3
@@ -66,7 +66,6 @@
$helplink = ("<a href='#' onClick=\"open_popup('".popup_help_url('building', 'box')."');return(false);\">" . translate("HELP", $DBH) . "</a>");
-
print "<p>$helplink</p>";
?>
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/admin/new_page.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- new_page.php 2001/11/08 03:11:12 1.1
+++ new_page.php 2001/12/02 16:08:20 1.2
@@ -2,6 +2,7 @@
// include the kernel
include('../include/mydynaweb.init.php');
include(DYNA_ROOT . '/include/mydynaweb.libs.php');
+include(DYNA_ROOT . '/include/admin-libs.php');
// open a db connexion
$DBH=new db();
@@ -32,7 +33,10 @@
send_success("Page '$titre' successfully created");
die;}
-Admin_popup_header("Add a new page", "");
+Admin_popup_header("Add a new page", "", 'js/utils.js');
+
+$helplink = ("<a href='#' onClick=\"open_popup('".popup_help_url('filling', 'page')."');return(false);\">" . translate("HELP", $DBH) . "</a>");
+print "<p>$helplink</p>";
?>
|
|
From: mdw c. <myd...@li...> - 2001-12-02 16:08:21
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/admin/js
Modified Files:
utils.js
Log Message:
Documentation stuff for page creation
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/admin/js/utils.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- utils.js 2001/10/12 20:40:07 1.1
+++ utils.js 2001/12/02 16:08:20 1.2
@@ -2,7 +2,7 @@
{
var URL = page_to_open;
var NAME = "help";
- var SPEC = "SCROLLBARS=yes,WIDTH=300,HEIGHT=380,RESIZABLE=NO";
+ var SPEC = "SCROLLBARS=yes,WIDTH=640,HEIGHT=480,RESIZABLE=YES,MENUBAR=NO";
window.open(URL, NAME, SPEC);
|
|
From: mdw c. <myd...@li...> - 2001-12-02 16:09:02
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/help/building Modified Files: box.FR.html languages.EN.html languages.FR.html members.EN.html members.FR.html top_bar.EN.html top_bar.FR.html topic.EN.html topic.FR.html Log Message: Changing the bgcolor of help files =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/box.FR.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- box.FR.html 2001/11/19 11:15:21 1.1 +++ box.FR.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/languages.EN.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- languages.EN.html 2001/10/22 12:51:15 1.1 +++ languages.EN.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/languages.FR.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- languages.FR.html 2001/10/12 22:43:54 1.1 +++ languages.FR.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/members.EN.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- members.EN.html 2001/10/22 13:05:37 1.1 +++ members.EN.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/members.FR.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- members.FR.html 2001/10/12 22:43:54 1.1 +++ members.FR.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/top_bar.EN.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- top_bar.EN.html 2001/10/17 12:40:26 1.1 +++ top_bar.EN.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/top_bar.FR.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- top_bar.FR.html 2001/10/17 12:40:27 1.1 +++ top_bar.FR.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/topic.EN.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- topic.EN.html 2001/10/12 22:43:54 1.1 +++ topic.EN.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/building/topic.FR.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- topic.FR.html 2001/10/12 22:43:54 1.1 +++ topic.FR.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> |
|
From: mdw c. <myd...@li...> - 2001-12-02 16:09:32
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/help Modified Files: cache.EN.html cache.FR.html calendar.EN.html calendar.FR.html nohelp.EN.html nohelp.FR.html Log Message: Changing the bgcolor of help files =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/cache.EN.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- cache.EN.html 2001/11/19 00:12:32 1.1 +++ cache.EN.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <p> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/cache.FR.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- cache.FR.html 2001/11/19 00:52:48 1.1 +++ cache.FR.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <p> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/calendar.EN.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- calendar.EN.html 2001/11/19 14:44:07 1.2 +++ calendar.EN.html 2001/12/02 16:09:02 1.3 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <p> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/calendar.FR.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- calendar.FR.html 2001/11/19 14:44:07 1.1 +++ calendar.FR.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <p> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/nohelp.EN.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- nohelp.EN.html 2001/10/12 20:36:07 1.1 +++ nohelp.EN.html 2001/12/02 16:09:02 1.2 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <p> =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/help/nohelp.FR.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- nohelp.FR.html 2001/10/13 08:49:17 1.5 +++ nohelp.FR.html 2001/12/02 16:09:02 1.6 @@ -28,7 +28,7 @@ </HEAD> -<BODY bgcolor="#667788"> +<BODY bgcolor="#b4bfc7"> <CENTER> @@ -69,7 +69,7 @@ <div align="right"> <i>L'équipe de MyDynaWeb</i> <br> - CVS $Revision: 1.5 $ + CVS $Revision: 1.6 $ </div> <p> </p> |
|
From: mdw c. <myd...@li...> - 2001-12-02 16:09:45
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/help/filling Log Message: Directory /cvsroot/mydynaweb/mydynaweb/htdocs/help/filling added to the repository |
|
From: mdw c. <myd...@li...> - 2001-12-02 16:10:22
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/help/filling Added Files: page.EN.html page.FR.html Log Message: Docs for pages |
|
From: mdw c. <myd...@li...> - 2001-12-06 16:28:41
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs
Modified Files:
count.php
Log Message:
REFERER replaced by REFERRER
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/count.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- count.php 2001/11/26 22:56:54 1.5
+++ count.php 2001/12/06 16:28:40 1.6
@@ -184,11 +184,11 @@
*/
$today = date("Y-m-d");
- $sql = "select REFERERS.REF_ID, NB
- from REF_DAY, REFERERS
+ $sql = "select REFERRERS.REF_ID, NB
+ from REF_DAY, REFERRERS
where REF_DAY.DAY = '$today'
- and REF_DAY.REF_ID = REFERERS.REF_ID
- and REFERERS.REF_URL = '$REF'";
+ and REF_DAY.REF_ID = REFERRERS.REF_ID
+ and REFERRERS.REF_URL = '$REF'";
$rqt = new query($DBH);
$rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
$row = $rqt->getrow();
@@ -198,7 +198,7 @@
{
// referer exists in the referer DB ?
$sql = "select REF_ID
- from REFERERS
+ from REFERRERS
where REF_URL='$REF'";
$rqt = new query($DBH);
$rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
@@ -210,7 +210,7 @@
}
else // no, first time we see that referer !
{
- $sql = "insert into REFERERS
+ $sql = "insert into REFERRERS
(REF_URL) values ('$REF')";
$rqt = new query($DBH);
$rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
|
|
From: mdw c. <myd...@li...> - 2001-12-11 10:36:55
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/datas/FR Modified Files: fortunes.txt Log Message: New quotations stuff =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/datas/FR/fortunes.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- fortunes.txt 2001/07/28 18:32:58 1.1 +++ fortunes.txt 2001/12/11 10:36:55 1.2 @@ -1,167 +1,13 @@ +KDE est au window manager ce que Mandrake est à Linux ; un mauvais simulacre. +- Anonyme (quelqu'un qui n'aime visiblement pas KDE :) %%% -12:41 Je me demandais.... entre les hoax, les FUD, et les trolls, - ya des trucs intéressants sur le net ? -12:46 les images de cul, les warez et les mp3, pourquoi ? +L'expansion de l'univers est un coredump en cours... +- Anonyme %%% -16:09 Bon courage, j'ai vu des netscape rester freezés pendant des - semaines entieres sans faire le moindre core dump -16:13 finalement, Netscape est stable, une fois qu'il freeze -%%% -16:51 comment je peux faire pour assembler 3 gifs pour avoir une gif - animée ? -16:53 16:51 tu fais 3 pages html, tu fais des liens vers les pages et - y plukalciké :-p -%%% -12:20 en parlant d'uptime. C'est normal que j'ai reussi a freezer mon PC - en deplacant des fichiers avec Midnight Commander ? -12:22 si c'est /proc/kcore, c'est normal :) -%%% -12:20 Midnight Commander n'a jamais ete tres stable (je l'utilise - depuis 3 ans). Mais qu'est-ce qu'il est pratique ! -12:31 12:24 Windows n'a jamais été très stable (je l'utilise depuis 3 - heures), mais qu'est-ce qu'il est pratique! Le seul pb, c'est - quand le clavier se blo -%%% -17:17 luser, c'est un programme pour Linux ? -%%% -12:35 le bon linuxien sait s'affranchir des contraintes esthétiques et - des avantages morphologiques des superbes hôtesses et préférer le - mode texte ! (rhhha... laissez les moi !) -%%% -19:35 KDE est au window manager ce que Mandrake est à Linux. -%%% -00:52 hier j'étais en train de taper un mail quand netscape a freezé. - ben j'ai fait une copie de /proc/kcore, j'ai grepé dedans sur des - mots que j'avais tapés, et j'ai récupéré tout ce que j'avais tapé - en mémoire. linux roulaiez! -%%% -15:37 c koi des "fortunes"? -15:43 fortunes donne des citations et autres très sympa, avec tu peux - devenir comique et te faire une fortune d'ou le nom ;-) -%%% -16:48 du ftp ou y'a du DIVX, ca existe ca ?? -17:11 16:48 J'ai une 20aine de DivX ici : ftp://127.0.0.1/divx -17:17 attention l'url de 17.11 et un piege a con.. -17:21 17:17 euh, non j'en ai trouvé pleins moi aussi sur la meme url... - pas de bol, je les avais déjà toutes ! -%%% -15:47 arg: le fichier modules.dep generé a la compil du mon noyau est - VIDE! c pas normal je suppose.. qq1 a deja vu ça? -15:54 15:47 j'ai vu ça une fois, c'etait en 66 au vietnam. une vraie - boucherie. -%%% -19:59 pour ceux d'entre vous qui ont une mdk 7.2 : est ce que la gestion - des packs déconne? (moi oui) -20:12 19:59 c'est quoi un pack ? -21:04 20:12 Un carton qui emprisonne les bières -%%% -14:33 z'avez pas aut'chose à foutre que de glandouiller sur cette - tribune à 2 francs ?... -14:34 14:33 non, on est payé, faudrait travailler en plus ? -%%% -14:21 comment elles sont nommées les partoches UDma avant lilo ? - /dev/hd? pleeeaassseeeee !! -14:24 14:21 ????? tu prends quoi ??? putain ca doit dechirer grave !!! -%%% -15:37 On configure comment la resolution ecran sous gnome ??? -%%% -09:28 comment on configure Apache pour pouvoir s'y connecter en FTP ? -%%% -13:12 Je suis sous Windows et ça n'a pas planté depuis 5 minutes ! Waouh -13:13 a mon avis, qd tu dis je suis sous windows, tu dois te proteger de - la pluie avec le CD et c pour ca q ca ne plante pas -%%% -14:24 combien y a-t-il de tribunes libres dans la galaxie ? -14:28 14:24 sûrement une infinité ... Mais si ils pondent autatn de - conneries qu'ici, ça vaut pas le coup d'aller les chercher :) -%%% -16:09 Keske je ne donnerai pas pour integrer les fortunes!! -%%% -06:12 merde! ca fait une semaine que j'ai commencer à lire la doc de - latex! j'ai pas vu le temps passer, je vais me coucher... -%%% -12:06 taxe et redevance, y'a autant de différence qu'entre enculade et - sodomie. -%%% -09:05 Si tu n'es pas content qu'on te dénonce quand tu joues au gr0 - warL0rd, alors retourne au bac à sable. Un lamer n'a pas droit à - la moindre pitié. -%%% -14:57 Qu'est ce que on peut faire pour dire à son voisin de bureau - "ARRETE de taper comme un BOURRIN sur ton CLAVIER, tu me broie - l'oreille gauche" sans se faire traiter de gronaze ? -15:26 14:57 sois plus lourd que lui, par exemple active le keyclick sur - ton clavier -%%% -11:06 Besoin d'aide d'urgence! Qqun sait comment faire pour que les - messages d'erreur system n'apparaisse plus sur la console ? -11:16 11:06 -> "shutdown -h now" : en gros tu demande à l'ordinateur de - fermer sa gueule à partir de maintenant. -11:17 merci de l'aide -%%% -12:01 c quoi un bnetd en deux mot svp -12:02 12:01 un b netd -%%% -16:09 Le changement d'heure c'est demain soir ? -16:12 1609 non c tte les 60 minutes!! -%%% -14:59 14.56 tout a fait! le secteur public et le reflet du secteur - privé! en fait c'est surtout les structure de + de 1000 personnes! - dans un pme tu trime et t'es pas bien payer par contre tu peux - faire des truc interessant! enfin moi g donné maintenant je su -15:01 14:59 ce ? -%%% -17:37 qq1 aurait une idée de password, ch'ui en manque d'inspiration ? -17:39 17:37 "rsla91*t" c'est un passwd très fiable. C'est celui du - root sur ma machine (293.127.102.98), personne ne l'a encore - trouvé. -17:42 17:39 j00 h4ve b33n F00l3d I 0Wn J00 ! -%%% -14:32 Win 98 Béta 2 il sort quand? -14:34 14.32 Bah c'est WinMeuhMeuh! Je l'ai installé , il s'installe tres - bien! C'est apres que ca merde... Ceci dit il s'installe tres - bien... En plus j'ai eu le droit de l'installer plusieur fois! Et - ben il s'installe tres bien! -%%% -15:01 L'expansion de l'univers est un coredump en cours... -%%% -13:34 la radeon n'est pas supportee par Xfree ? je l'ai dans le cul - alors ? -14:01 13:51 C'est sur que si tu l'avais dans le cul, c'est normal que ce - soit une carte de merde -%%% -10:26 Je viens d'essayer windows xp; Je suis emballé et je pense virer - OpenBSD de mon firewall pour le mettre à la place. Bonne idée, non -? -10:30 1026 C'est quoi ton IP ? -10:36 C'est 207.46.230.229, pourquoi ? -10:43 10:36 Je viens de te faire un DoS, ça fait mal, hein ! Ah attends, - ça sonne à la porte... -%%% -11:12 Ou peut-on acheter le RedHat 7.1 en ligne ? -11:12 11:12 Moi je l'ai eu en rond, sur un CD. C'est bien plus -pratique.. -%%% -17:16 [Loana] Bonjour. J'ai réussi à avoir un acces à Internet. Je -voulais faire passer un message aux internautes qui nous regardent. Je -voulais surtout dire que j -17:18 17:16 Loana, t'as ton clavier qui se blo -17:20 [Loana] je voulais dire que jedouard n'aarrete paawww de mee - preendgghere et ciu m[irijkreertety#''gjh; -%%% -11:04 c'est top fort, le site linuxfr est vraiment bien mais des que tu - met le mot 'EPITA' ca devient la foire du trone... :) -11:05 1104 faut juste pas oublier de tirer la chasse ;) -%%% -13:37 Tiens, i'paraît que Billou a perdu 380 milliards de dollars -l'année dernière. Il lui resterait plus que 270 milliards... Pôv'chou -13:44 13:37 je sais, il est passé dans le métro ce matin. Il joue très -mal de l'accordéon, d'ailleurs. -13:46 13:44 j'imagine, ça fait quand meme 15 ans qui nous joue du pipo -et le pire, c'est que c'est toujours le meme air -%%% -15:18 Qu'est ce qui flotte en ce moment à Montpellier ! -15:19 15:18 Heu, je sais pas, un bateau ? -%%% Les deux principales inventions qui ont été faîtes faîtes à Berkley sont le LSD et UNIX. Il est impossible que cela soit une coïncidence... +- Anonyme +%%% +L'avenir m'intéresse beaucoup car c'est ici que je compte passer le reste de mes jours. +- Woody Allen +%%% |
|
From: mdw c. <myd...@li...> - 2001-12-11 10:37:25
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/datas/EN Modified Files: quote.txt Log Message: New quotations stuff =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/datas/EN/quote.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- quote.txt 2001/07/30 10:38:47 1.1 +++ quote.txt 2001/12/11 10:36:54 1.2 @@ -47,3 +47,23 @@ %%% When people are free to do as they please, they usually imitate each other. - Eric Hoffer (1902-1983) + %%% + I am careful not to confuse excellence with perfection. Excellence, I can reach for; perfection is God's business. + - Michael J. Fox, quoted by Lorne A. Adrain in 'The Most Important Thing I Know' + %%% +Believe those who are seeking the truth. Doubt those who find it. +- Andre Gide +%%% +Life is a foreign language; all men mispronounce it. +- Christopher Morley +%%% +The greatest pleasure in life is doing what people say you cannot do. +- Walter Bagehot +%%% +Either war is obsolete or men are. +- R. Buckminster Fuller (1895 - 1983), New Yorker, Jan. 8, 1966 +%%% +Well, if crime fighters fight crime and fire fighters fight fire, what do freedom fighters fight? They never mention that part to us, do they? +- George Carlin +%%% + |
|
From: mdw c. <myd...@li...> - 2001-12-11 12:17:20
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/include
Modified Files:
templates.inc.php
Log Message:
The fact that ACTIVE_MODULES was defined here, in templates.inc.php was causing mydynaweb to bomb out when the user did not use ccs or hello modules.
It was making "cannot instanciate non existant class"
Now it should be good (it works for me when no modules are initialized)
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/templates.inc.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- templates.inc.php 2001/12/09 23:23:36 1.31
+++ templates.inc.php 2001/12/11 12:17:19 1.32
@@ -92,8 +92,6 @@
function get_token_from_module($token)
{
- $ACTIVE_MODULES["ccs"]=new ccs_module();
- $ACTIVE_MODULES["hello"]=new hello_module();
list($module_name,$token) = split("_",$token);
$token_array=array($token);
|
|
From: mdw c. <myd...@li...> - 2001-12-11 12:17:52
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/include Modified Files: modules.init.php Log Message: I think it's better to set defaulkt values as "No modules". =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/modules.init.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- modules.init.php 2001/12/05 02:37:30 1.3 +++ modules.init.php 2001/12/11 12:17:52 1.4 @@ -10,11 +10,11 @@ */ include DYNA_ROOT."/modules/modules.class.php"; -include DYNA_ROOT."/modules/hello/hello.class.php"; -include DYNA_ROOT."/modules/ccs/ccs.class.php"; +//include DYNA_ROOT."/modules/hello/hello.class.php"; +//include DYNA_ROOT."/modules/ccs/ccs.class.php"; -$ACTIVE_MODULES["ccs"]=new ccs_module(); -$ACTIVE_MODULES["hello"]=new hello_module(); +//$ACTIVE_MODULES["ccs"]=new ccs_module(); +//$ACTIVE_MODULES["hello"]=new hello_module(); ?> |
|
From: mdw c. <myd...@li...> - 2001-12-11 14:05:54
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/templates/printer Log Message: Directory /cvsroot/mydynaweb/mydynaweb/htdocs/templates/printer added to the repository |
|
From: mdw c. <myd...@li...> - 2001-12-11 14:07:07
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/templates/smarty Modified Files: topbar.html Log Message: This is a theme intended to be the one used when user asks to print a page. It is essentially made with black and greys colors. TODO : - the option in print.php that open a popup and fill the content with this theme. =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/templates/smarty/topbar.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- topbar.html 2001/11/17 11:49:27 1.2 +++ topbar.html 2001/12/11 14:07:07 1.3 @@ -8,7 +8,7 @@ <TABLE width=100% bgcolor=#aaaabb cellspacing=0 cellpadding=2 border=0><TR> <td align="left"> - <font face="tahoma,arial,helvetica" size="+3" color="#000000"> ~SITE_TITLE~ </font> + <font face="tahoma,arial,helvetica" size="+3" color="#DDDDEE"> sukria.net </font> </td> <TD ALIGN="CENTER"> |
|
From: mdw c. <myd...@li...> - 2001-12-11 14:07:07
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/templates/printer Added Files: bar.html box.html calendar.html main.html news.html page.html topbar.html Log Message: This is a theme intended to be the one used when user asks to print a page. It is essentially made with black and greys colors. TODO : - the option in print.php that open a popup and fill the content with this theme. |
|
From: mdw c. <myd...@li...> - 2001-12-13 23:04:47
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/templates/deekay Log Message: Directory /cvsroot/mydynaweb/mydynaweb/htdocs/templates/deekay added to the repository |