You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(2) |
Feb
(48) |
Mar
(17) |
Apr
(13) |
May
(102) |
Jun
(163) |
Jul
(203) |
Aug
(185) |
Sep
(16) |
Oct
(4) |
Nov
|
Dec
|
From: Burke <bu...@di...> - 2003-05-21 17:35:16
|
I've finished up this block -- If anyone's interested, contact eLGie To see it in action, visit http://www.dimensionquest.net and click on the Stats link. -----Original Message----- From: env...@li... [mailto:env...@li...] On Behalf Of Arden Wiebe Sent: Tuesday, May 20, 2003 12:50 PM To: env...@li... Subject: [Envolution-devel] Referrer Block Today some other hack. I can't seem to find block that does this so I try at least. Yesterday was display image in download on select like user avatar, no success. Day before was upload pic on sign up. If anyone can help to get this block working it would be appreciated. I hope it comes out okay in the mail :) <?php /********************************************************/ /* openChat [openChat v1.0] */ /* Written by: eLGie */ /* http://www.linuxguru.ca */ /* */ /********************************************************/ $blocks_modules['openReferrer'] = array( 'func_display' => 'open_referrer_block', 'text_type' => 'openReferrer', 'text_type_long' => 'openReferrer [openReferrer 1.0]', 'allow_multiple' => false, 'allow_create' => false, 'allow_delete' => false, 'form_content' => false, 'form_refresh' => false, 'show_preview' => true, ); // Security pnSecAddSchema('openReferrer::', 'Block title::'); function open_referrer_block($row) { list($dbconn) = pnDBGetConn(); $pntable = pnDBGetTables(); if (!pnSecAuthAction(0, 'openReferrer::', "$row[title]::", ACCESS_READ)) { return; } if (pnUserLoggedIn()) { echo "<center><b>"._WHOLINKS."</b></center><br /><br />" ."<table border=0 width=100%> <tr><td>"._FREQUENCY."</td><td>"._URL."</td><td>"._PERCENT."</td></tr>"; /** * fifers: grab the total count of referers for percentage calculations */ $column = &$pntable['referer_column']; $hresult = $dbconn->Execute("SELECT SUM($column[frequency]) FROM $pntable[referer]"); list($totalfreq) = $hresult->fields; $hresult = $dbconn->Execute("SELECT $column[url], $column[frequency] FROM $pntable[referer] ORDER BY $column[frequency] DESC"); //while(list($url, $freq) = $hresult->fields) { while (!$hresult->EOF) { list($url, $freq) = $hresult->fields; //$hresult->MoveNext(); //while (!$hresult->EOF) { //$hresult->MoveNext(); $content= "<tr>\n" ."<td>" . pnVarPrepForDisplay($freq) . "</td>\n" ."<td>".(($url == "bookmark")?(""):("<a target=_blank href=$url>")).pnVarPrepForDisplay($url).(($url == "bookmark")?(""):("</a>"))."</td>\n" ."<td>".round(($freq / $totalfreq * 100), 2)." %</td>\n" ."</tr>\n"; $hresult->MoveNext(); //while (!$hresult->EOF) { //$hresult->MoveNext(); echo "</table>"._TOTAL." " . pnVarPrepForDisplay($totalfreq) . " <br />"; $hresult->MoveNext(); CloseTable(); } echo "</table>"._TOTAL." " . pnVarPrepForDisplay($totalfreq) . " <br />"; if (empty($row['title'])) { $row['title'] = _CHAT; } $row[content] = $content; return themesideblock($row); } } ?> ------------------------------------------------------- This SF.net email is sponsored by: ObjectStore. If flattening out C++ or Java code to make your application fit in a relational database is painful, don't do it! Check out ObjectStore. Now part of Progress Software. http://www.objectstore.net/sourceforge _______________________________________________ Envolution-devel mailing list Env...@li... https://lists.sourceforge.net/lists/listinfo/envolution-devel |
From: Arden W. <ar...@li...> - 2003-05-20 17:07:54
|
Today some other hack. I can't seem to find block that does this so I try at least. Yesterday was display image in download on select like user avatar, no success. Day before was upload pic on sign up. If anyone can help to get this block working it would be appreciated. I hope it comes out okay in the mail :) <?php /********************************************************/ /* openChat [openChat v1.0] */ /* Written by: eLGie */ /* http://www.linuxguru.ca */ /* */ /********************************************************/ $blocks_modules['openReferrer'] = array( 'func_display' => 'open_referrer_block', 'text_type' => 'openReferrer', 'text_type_long' => 'openReferrer [openReferrer 1.0]', 'allow_multiple' => false, 'allow_create' => false, 'allow_delete' => false, 'form_content' => false, 'form_refresh' => false, 'show_preview' => true, ); // Security pnSecAddSchema('openReferrer::', 'Block title::'); function open_referrer_block($row) { list($dbconn) = pnDBGetConn(); $pntable = pnDBGetTables(); if (!pnSecAuthAction(0, 'openReferrer::', "$row[title]::", ACCESS_READ)) { return; } if (pnUserLoggedIn()) { echo "<center><b>"._WHOLINKS."</b></center><br /><br />" ."<table border=0 width=100%> <tr><td>"._FREQUENCY."</td><td>"._URL."</td><td>"._PERCENT."</td></tr>"; /** * fifers: grab the total count of referers for percentage calculations */ $column = &$pntable['referer_column']; $hresult = $dbconn->Execute("SELECT SUM($column[frequency]) FROM $pntable[referer]"); list($totalfreq) = $hresult->fields; $hresult = $dbconn->Execute("SELECT $column[url], $column[frequency] FROM $pntable[referer] ORDER BY $column[frequency] DESC"); //while(list($url, $freq) = $hresult->fields) { while (!$hresult->EOF) { list($url, $freq) = $hresult->fields; //$hresult->MoveNext(); //while (!$hresult->EOF) { //$hresult->MoveNext(); $content= "<tr>\n" ."<td>" . pnVarPrepForDisplay($freq) . "</td>\n" ."<td>".(($url == "bookmark")?(""):("<a target=_blank href=$url>")).pnVarPrepForDisplay($url).(($url == "bookmark")?(""):("</a>"))."</td>\n" ."<td>".round(($freq / $totalfreq * 100), 2)." %</td>\n" ."</tr>\n"; $hresult->MoveNext(); //while (!$hresult->EOF) { //$hresult->MoveNext(); echo "</table>"._TOTAL." " . pnVarPrepForDisplay($totalfreq) . " <br />"; $hresult->MoveNext(); CloseTable(); } echo "</table>"._TOTAL." " . pnVarPrepForDisplay($totalfreq) . " <br />"; if (empty($row['title'])) { $row['title'] = _CHAT; } $row[content] = $content; return themesideblock($row); } } ?> |
From: TiMax <ma...@em...> - 2003-05-18 00:32:56
|
<html><head><meta name=3D"Generator" content=3D"PocoMail 3 HTML/CSS= Generator"/> <style type=3D"text/css"><!-- p{display:block;font-family:"Arial";font-size:10pt;color:black;ma= rgin:0.00in;text-align:left;} LI{display:list-item;font-family:"Arial";font-size:0pt;color:blac= k;margin-top:0.00in;margin-bottom:0.00in;text-align:left;} td{display:block;font-family:"Arial";font-size:0pt;color:black;ma= rgin-left:0.00in;margin-right:0.00in;text-align:left;} p.WPT_N1{display:block;color:blue;} --></style> </head><BODY bgcolor=3D"F4FDFF" BGCOLOR=3D"#F4FDFF"><p>future= implementations<BR/><BR/></p> <p>On Sun, 18 May 2003 02:22:08 +0200, Christoph Schwaeppe= wrote:</p> <p class=3D"WPT_N1">>=A0 Please! What is the best explanation for= "***" in NoMoreBlocks? I'm</p> <p><SPAN style=3D"color:blue;">>=A0 confused.</SPAN><BR/></p> </body></html> |
From: <Chr...@t-...> - 2003-05-18 00:22:27
|
Please! What is the best explanation for "***" in NoMoreBlocks? I'm confused. -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |
From: Arden W. <ar...@li...> - 2003-05-17 21:51:41
|
Has anyone uploaded an image for the avatar when a user first signs up? I'm trying to make a hack like that work using parts of the personal avatar hack. I see you can select personal as an option for personal avatar from the cvs in /modules/NS-NewUser/user.php and that it is using avatar.php. Am I missing something here and is it possible to upload a picture on new user sign up already? |
From: TiMax <ma...@em...> - 2003-05-17 17:48:56
|
<html><head><meta name=3D"Generator" content=3D"PocoMail 3 HTML/CSS= Generator"/> <style type=3D"text/css"><!-- p{display:block;font-family:"Arial";font-size:10pt;color:blue;mar= gin:0.00in;text-align:left;} LI{display:list-item;font-family:"Arial";font-size:0pt;color:blac= k;margin-top:0.00in;margin-bottom:0.00in;text-align:left;} td{display:block;font-family:"Arial";font-size:0pt;color:black;ma= rgin-left:0.00in;margin-right:0.00in;text-align:left;} --></style> </head><BODY bgcolor=3D"F4FDFF" BGCOLOR=3D"#F4FDFF"><p><SPAN>you are= right ... </SPAN></p> <p><SPAN>i think you have found two bug's and we need to check it= LOL</SPAN></p> <p> </p> <p><SPAN>TiMax<BR/><BR/></SPAN></p> <p><SPAN>On Fri, 16 May 2003 15:06:47 +0200,= Mar...@cs... wrote:</SPAN></p> <p>>=A0 Hi to all,</p> <p>></p> <p>>=A0 in NS-Admin/pnfunctions.php ->=A0function= displayModuleList</p> <p>>=A0 I have found the lines:</p> <p>></p> <p>>=A0 ..</p> <p>>=A0 if(displayAllModules($gID)){</p> <p>>=A0 =A0 =A0$query =3D "SELECT ".$column['mid']." FROM ".$table."= INNER JOIN</p> <p>>=A0 ".$modTable." AS mod</p> <p>>=A0 =A0 =A0 =A0 ON ".$column['mid']." =3D mod.pn_id WHERE= ".$column['gid']."=3D'".$gID."'</p> <p>>=A0 =A0 =A0 =A0 ORDER BY mod.pn_displayname";</p> <p>>=A0 }else{</p> <p>>=A0 =A0 =A0$query =3D "SELECT ".$column['mid']." FROM ".$table."= INNER JOIN</p> <p>>=A0 ".$modTable." AS mod</p> <p>>=A0 =A0 =A0 =A0 ON ".$column['mid']." =3D mod.pn_id WHERE= ".$column['gid']."=3D'".$gID."'</p> <p>>=A0 =A0 =A0 =A0 ORDER BY mod.pn_displayname";</p> <p>>=A0 }</p> <p>>=A0 ..</p> <p>></p> <p>></p> <p>>=A0 What is the meaning?</p> <p>>=A0 The 2 query are identical...</p> <p>>=A0 The if costruct has no sense, or I'm= wrong?<SPAN><BR/></SPAN></p> </body></html> |
From: <Chr...@t-...> - 2003-05-16 21:26:08
|
There has been avery nice manual or article on eNvo.com about permissions. I would like to translate it, because at eNvo.de we have a lot of questions about that, and I know by my own, how nerving this is. -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |
From: <Chr...@t-...> - 2003-05-16 15:36:35
|
TiMax wrote: > > > Can someone test this security fix, i read last security news in > Postnuke, so i have modified some files to fix it. > > > > This is for eNvo 1.2 only copy files in right place > I installed it on a productive, small private site, and didn't recognize any errors or mallfunctions. -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |
From: <Mar...@cs...> - 2003-05-16 13:23:24
|
SGkgdG8gYWxsLA0KDQppbiBtb2R1bGVzL0Jsb2Nrcy9wbmFkbWluLnBocCB0aGVyZSBpcyB0aGUg ZnVuY3Rpb24gOg0KDQoNCmZ1bmN0aW9uIGJsb2Nrc19hZG1pbl9tYWluKCkNCnsNCiAgICAkb3V0 cHV0ID0gbmV3IHBuSFRNTCgpOw0KICAgIGlmICghcG5TZWNBdXRoQWN0aW9uKDAsICdCbG9ja3M6 OicsICc6OicsIEFDQ0VTU19BRE1JTikpIHsNCiAgICAgICAgJG91dHB1dC0+VGV4dChfQkxPQ0tT Tk9BVVRIKTsNCiAgICAgICAgcmV0dXJuICRvdXRwdXQtPkdldE91dHB1dCgpOw0KICAgIH0NCiAg ICBwblJlZGlyZWN0KHBuTW9kVVJMKCdibG9ja3MnLCdhZG1pbicsJ3ZpZXcnKSk7DQogICAgcmV0 dXJuIHRydWU7DQogICAgLy8gQmxvY2tzIG1lbnUNCiAgICAkb3V0cHV0LT5TZXRJbnB1dE1vZGUo X1BOSF9WRVJCQVRJTUlOUFVUKTsNCiAgICAkb3V0cHV0LT5UZXh0KGJsb2Nrc19hZG1pbm1lbnUo KSk7DQogICAgJG91dHB1dC0+U2V0SW5wdXRNb2RlKF9QTkhfUEFSU0VJTlBVVCk7DQogICAgcmV0 dXJuICRvdXRwdXQtPkdldE91dHB1dCgpOw0KfQ0KDQoNClRoZSBsaW5lICdyZXR1cm4gdHJ1ZTsn IGlzbid0IGluIGEgd3JvbmcgcG9zaXRpb24/DQoNClRoZSBmdW5jdGlvbiBub3JtYWxseSB3b3Jr cyBidXQgdGhlIDQgbGluZSBhZnRlciB0aGUgJ3JldHVybicgd2VyZSBuZXZlcg0KZXhlY3V0ZWQu DQoNCkkgY29tbWVudCB0aGF0IGxpbmUgaW4gdGhlIENWUyBiZWNhdXNlIHdpdGggYW4gT3JhY2xl IERCLCB0aGF0IEkgd2FzDQpwb3J0aW5nIHVuZGVyIEVudm9sdXRpb24sDQpJIGdldCB0aGUgZXJy b3IgImZhaWxlZCB0byBsb2FkIG1vZHVsZSBCbG9ja3MiDQoNCg== |
From: <Mar...@cs...> - 2003-05-16 13:04:22
|
SGkgdG8gYWxsLA0KDQppbiBOUy1BZG1pbi9wbmZ1bmN0aW9ucy5waHAgLT4gZnVuY3Rpb24gZGlz cGxheU1vZHVsZUxpc3QNCkkgaGF2ZSBmb3VuZCB0aGUgbGluZXM6DQoNCi4uLg0KaWYoZGlzcGxh eUFsbE1vZHVsZXMoJGdJRCkpew0KICAgJHF1ZXJ5ID0gIlNFTEVDVCAiLiRjb2x1bW5bJ21pZCdd LiIgRlJPTSAiLiR0YWJsZS4iIElOTkVSIEpPSU4NCiIuJG1vZFRhYmxlLiIgQVMgbW9kDQogICAg ICBPTiAiLiRjb2x1bW5bJ21pZCddLiIgPSBtb2QucG5faWQgV0hFUkUgIi4kY29sdW1uWydnaWQn XS4iPSciLiRnSUQuIicNCiAgICAgIE9SREVSIEJZIG1vZC5wbl9kaXNwbGF5bmFtZSI7DQp9ZWxz ZXsNCiAgICRxdWVyeSA9ICJTRUxFQ1QgIi4kY29sdW1uWydtaWQnXS4iIEZST00gIi4kdGFibGUu IiBJTk5FUiBKT0lODQoiLiRtb2RUYWJsZS4iIEFTIG1vZA0KICAgICAgT04gIi4kY29sdW1uWydt aWQnXS4iID0gbW9kLnBuX2lkIFdIRVJFICIuJGNvbHVtblsnZ2lkJ10uIj0nIi4kZ0lELiInDQog ICAgICBPUkRFUiBCWSBtb2QucG5fZGlzcGxheW5hbWUiOw0KfQ0KLi4uDQoNCg0KV2hhdCBpcyB0 aGUgbWVhbmluZz8NClRoZSAyIHF1ZXJ5IGFyZSBpZGVudGljYWwuLi4NClRoZSBpZiBjb3N0cnVj dCBoYXMgbm8gc2Vuc2UsIG9yIEknbSB3cm9uZz8NCg== |
From: TiMax <ma...@em...> - 2003-05-15 16:35:29
|
<html><head><meta name=3D"Generator" content=3D"PocoMail 3 HTML/CSS= Generator"/> <style type=3D"text/css"><!-- p{display:block;font-family:"Arial";font-size:10pt;color:blue;mar= gin:0.00in;text-align:left;} LI{display:list-item;font-family:"Arial";font-size:0pt;color:blac= k;margin-top:0.00in;margin-bottom:0.00in;text-align:left;} td{display:block;font-family:"Arial";font-size:0pt;color:black;ma= rgin-left:0.00in;margin-right:0.00in;text-align:left;} body{} --></style> </head><BODY bgcolor=3D"F4FDFF" BGCOLOR=3D"#F4FDFF"><p> </p> <p>Can someone test this security fix, i read last security news= in Postnuke, so i have modified some files to fix it.</p> <p> </p> <p>This is for eNvo 1.2 only copy files in right place</p> </body></html> |
From: TiMax <ma...@em...> - 2003-05-14 23:42:32
|
<html><head><meta name=3D"Generator" content=3D"PocoMail 3 HTML/CSS= Generator"/> <style type=3D"text/css"><!-- p{display:block;font-family:"Arial";font-size:10pt;color:blue;mar= gin:0.00in;text-align:left;} LI{display:list-item;font-family:"Arial";font-size:0pt;color:blac= k;margin-top:0.00in;margin-bottom:0.00in;text-align:left;} td{display:block;font-family:"Arial";font-size:0pt;color:black;ma= rgin-left:0.00in;margin-right:0.00in;text-align:left;} --></style> </head><BODY bgcolor=3D"F4FDFF" BGCOLOR=3D"#F4FDFF"><p> </p> <p><SPAN>why you don't use bug.envolution.com ?</SPAN></p> <p> </p> <p><SPAN><BR/><BR/></SPAN></p> <p><SPAN>On Wed, 14 May 2003 22:09:13 +0200, Christoph Schwaeppe= wrote:</SPAN></p> <p>>=A0 In lines 423 and 424 in /Subjects/index.php is no= variable for localized text for "print page" and "print= all"</p> <p>>=A0 stampa pagina</p> <p>>=A0 =A0=A0=A0echo "&nbsp;<span class=3D\"pn-sub\">stampa= pagina</span>=A0<a class=3D\"pn-normal\"= href=3D\"modules.php?op=3Dmodload&amp;name=3D$ModName&amp;file= =3Dindex&amp;req=3Dprintpage&amp;pageid=3D$pageid&amp;scope= =3Dpage\" target=3D\"_blank\"><img= src=3D\"modules/$ModName/images/print_page.gif\" border=3D\"0\"= Alt=3D\""._PAGEPRINTPAGE."\" width=3D\"15\"= height=3D\"11\"></a><br>"</p> <p>>=A0 =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0."&nbsp;<span= class=3D\"pn-sub\">stampa tutto</span>=A0<a= class=3D\"pn-normal\"= href=3D\"modules.php?op=3Dmodload&amp;name=3D$ModName&amp;file= =3Dindex&amp;req=3Dprintpage&amp;pageid=3D$pageid&amp;scope= =3Dall\" target=3D\"_blank\"><img= src=3D\"modules/$ModName/images/print_all.gif\" border=3D\"0\"= Alt=3D\""._PAGEPRINTALL."\" width=3D\"15\"= height=3D\"11\"></a>";</p> <p>></p> <p>>=A0 =A0-- =A0<a= href=3D"mailto:chr...@t-...">mailto:christoph.s= chw...@t-...</a> personal: <a= href=3D"http://www.christoph-schwaeppe.de">http://www.christoph-sc= hwaeppe.de</a> CMS: <a= href=3D"http://www.envolution.de">http://www.envolution.de</a>= ICQ: 174676647 jabber= gat...@am...<SPAN><BR/></SPAN></p> </body></html> |
From: <Chr...@t-...> - 2003-05-14 20:09:19
|
In lines 423 and 424 in /Subjects/index.php is no variable for localized text for "print page" and "print all" stampa pagina echo " <span class=\"pn-sub\">*stampa pagina*</span> <a class=\"pn-normal\" href=\"modules.php?op=modload&name=$ModName&file=index&req=printpage&pageid=$pageid&scope=page\" target=\"_blank\"><img src=\"modules/$ModName/images/print_page.gif\" border=\"0\" Alt=\""._PAGEPRINTPAGE."\" width=\"15\" height=\"11\"></a><br>" ." <span class=\"pn-sub\">*stampa tutto*</span> <a class=\"pn-normal\" href=\"modules.php?op=modload&name=$ModName&file=index&req=printpage&pageid=$pageid&scope=all\" target=\"_blank\"><img src=\"modules/$ModName/images/print_all.gif\" border=\"0\" Alt=\""._PAGEPRINTALL."\" width=\"15\" height=\"11\"></a>"; -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |
From: <Chr...@t-...> - 2003-05-14 19:56:10
|
define("_PRESSBACK","Press <a href=\"javascript:history.back()\">Back</a> for editing."); define("_BACKTOFM","<a href=\"javascript:history.back()\">Back</a>"); are not working in any language-file -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |
From: <Chr...@t-...> - 2003-05-14 19:46:07
|
I changed the lines 748 and 749 in Subjects/admin.php because the use of define('_ABBREVREVIEWACTIVE','Index'); define('_ABBRSUBPAGESINDEXACTIVE','Rez.'); was confounded. Instead of page number in admin page should be used page description. I don't know wher to locate it -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |
From: TiMax <ma...@em...> - 2003-05-14 02:06:12
|
<html><head><meta name=3D"Generator" content=3D"PocoMail 3 HTML/CSS= Generator"/> <style type=3D"text/css"><!-- p{display:block;font-family:"Arial";font-size:10pt;color:blue;mar= gin:0.00in;text-align:left;} LI{display:list-item;font-family:"Arial";font-size:0pt;color:blac= k;margin-top:0.00in;margin-bottom:0.00in;text-align:left;} td{display:block;font-family:"Arial";font-size:0pt;color:black;ma= rgin-left:0.00in;margin-right:0.00in;text-align:left;} body{} --></style> </head><BODY bgcolor=3D"F4FDFF" BGCOLOR=3D"#F4FDFF"><p> </p> <p>I updated account profile with extended features and upload= personal avatar in CVS, please French and German translator= check NS-User and NS-Your_Account module for translation, use= english language for reference.</p> <p> </p> <p>TiMax</p> </body></html> |
From: TiMax <ma...@em...> - 2003-05-13 06:18:18
|
<html><head><meta name=3D"Generator" content=3D"PocoMail 3 HTML/CSS= Generator"/> <style type=3D"text/css"><!-- p{display:block;font-family:"Arial";font-size:10pt;color:blue;mar= gin:0.00in;text-align:left;} LI{display:list-item;font-family:"Arial";font-size:0pt;color:blac= k;margin-top:0.00in;margin-bottom:0.00in;text-align:left;} td{display:block;font-family:"Arial";font-size:0pt;color:black;ma= rgin-left:0.00in;margin-right:0.00in;text-align:left;} --></style> </head><BODY bgcolor=3D"F4FDFF"= BGCOLOR=3D"#F4FDFF"><p><SPAN>shure......</SPAN></p> <p> </p> <p><SPAN>http://yabbbuttons.cjb.net/<BR/><BR/></SPAN></p> <p><SPAN>On Tue, 13 May 2003 07:25:30 +0200, Christoph Schwaeppe= wrote:</SPAN></p> <p>>=A0 I translated Arena Forum to german. Also the buttons wit= a very nice</p> <p>>=A0 web-interface somewhere in the net. Now I would like to= do some changes,</p> <p>>=A0 also to the buttons, but I don#t have that adress.= Anybody knows it?</p> <p>></p> <p>>=A0 Burke wrote:</p> <p>></p> <p>>=A0 >=A0Thanks for getting that setup and adding me to the= project at</p> <p>>=A0 >=A0Sourceforge TiMax.</p> <p>>=A0 ></p> <p>>=A0 >=A0Hello everyone,</p> <p>>=A0 ></p> <p>>=A0 >=A0Within the next couple days, I'll be getting my= laptop set back up to</p> <p>>=A0 >=A0work with CVS so I can start posting fixes to Arena= as they come up.</p> <p>>=A0 >=A0There are also a few parts that I plan on re-coding= as soon as I get</p> <p>>=A0 >=A0the chance. Please use the bug.envolution.com site= to submit your bugs</p> <p>>=A0 >=A0&=A0fixes if you're unable to commit the changes= to CVS. If this is the</p> <p>>=A0 >=A0case, I will review and confirm the posts and get= them committed at my</p> <p>>=A0 >=A0earliest convenience.</p> <p>>=A0 ></p> <p>>=A0 >=A0-----Original Message-----</p> <p>>=A0 >=A0*From:*= env...@li...</p> <p>>=A0 >=A0[<a= href=3D"mailto:env...@li...]">mail= to:env...@li...]</a> *On Behalf= Of *TiMax</p> <p>>=A0 >=A0*Sent:* Monday, May 12, 2003 8:36 AM</p> <p>>=A0 >=A0*To:* env...@li...</p> <p>>=A0 >=A0*Subject:* [Envolution-devel] Arena Forum in= CVS</p> <p>>=A0 ></p> <p>>=A0 >=A0Only to let you know that, now also Arena Forum= developement are in</p> <p>>=A0 >=A0our Sourceforge CVS.</p> <p>>=A0 ></p> <p>>=A0 >=A0Burke if you want to write little news about</p> <p>>=A0 ></p> <p>>=A0 >=A0bye</p> <p>>=A0 ></p> <p>>=A0 >=A0TiMax</p> <p>>=A0 ></p> <p>>=A0= >=A0-------------------------------------------------------= Enterprise</p> <p>>=A0 >=A0Linux Forum Conference &=A0Expo, June 4-6, 2003,= Santa Clara The only</p> <p>>=A0 >=A0event dedicated to issues related to Linux= enterprise solutions</p> <p>>=A0 >=A0www.enterpriselinuxforum.com</p> <p>>=A0 >=A0_______________________________________________= Envolution-devel</p> <p>>=A0 >=A0mailing list= Env...@li...</p> <p>>=A0 >=A0<a= href=3D"https://lists.sourceforge.net/lists/listinfo/envolution-de= vel">https://lists.sourceforge.net/lists/listinfo/envolution-deve= l</a></p> <p>></p> <p>><SPAN><BR/></SPAN></p> </body></html> |
From: <Chr...@t-...> - 2003-05-13 05:25:46
|
I translated Arena Forum to german. Also the buttons wit a very nice web-interface somewhere in the net. Now I would like to do some changes, also to the buttons, but I don#t have that adress. Anybody knows it? Burke wrote: > Thanks for getting that setup and adding me to the project at > Sourceforge TiMax. > > Hello everyone, > > Within the next couple days, I'll be getting my laptop set back up to > work with CVS so I can start posting fixes to Arena as they come up. > There are also a few parts that I plan on re-coding as soon as I get > the chance. Please use the bug.envolution.com site to submit your bugs > & fixes if you're unable to commit the changes to CVS. If this is the > case, I will review and confirm the posts and get them committed at my > earliest convenience. > > -----Original Message----- > *From:* env...@li... > [mailto:env...@li...] *On Behalf Of *TiMax > *Sent:* Monday, May 12, 2003 8:36 AM > *To:* env...@li... > *Subject:* [Envolution-devel] Arena Forum in CVS > > Only to let you know that, now also Arena Forum developement are in > our Sourceforge CVS. > > Burke if you want to write little news about > > bye > > TiMax > > ------------------------------------------------------- Enterprise > Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara The only > event dedicated to issues related to Linux enterprise solutions > www.enterpriselinuxforum.com > _______________________________________________ Envolution-devel > mailing list Env...@li... > https://lists.sourceforge.net/lists/listinfo/envolution-devel -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |
From: Burke <bu...@di...> - 2003-05-13 00:26:07
|
Thanks for getting that setup and adding me to the project at Sourceforge TiMax. Hello everyone, Within the next couple days, I'll be getting my laptop set back up to work with CVS so I can start posting fixes to Arena as they come up. There are also a few parts that I plan on re-coding as soon as I get the chance. Please use the bug.envolution.com site to submit your bugs & fixes if you're unable to commit the changes to CVS. If this is the case, I will review and confirm the posts and get them committed at my earliest convenience. -----Original Message----- From: env...@li... [mailto:env...@li...] On Behalf Of TiMax Sent: Monday, May 12, 2003 8:36 AM To: env...@li... Subject: [Envolution-devel] Arena Forum in CVS Only to let you know that, now also Arena Forum developement are in our Sourceforge CVS. Burke if you want to write little news about bye TiMax ------------------------------------------------------- Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara The only event dedicated to issues related to Linux enterprise solutions www.enterpriselinuxforum.com _______________________________________________ Envolution-devel mailing list Env...@li... https://lists.sourceforge.net/lists/listinfo/envolution-devel |
From: <Chr...@t-...> - 2003-05-12 16:43:14
|
I have following lines in my apache/error.log: [Mon May 12 18:31:09 2003] [error] [client 80.142.159.28] File does not exist: /home/cs/public_html/Schwaeppe-Reuter-Kuchem/pyksel.gif [Mon May 12 18:31:09 2003] [error] [client 80.142.159.28] File does not exist: /home/cs/public_html/Schwaeppe-Reuter-Kuchem/separate_h.gif This messages are originated by the files in /html/themes/$THEME/News-index.htm. For example: <img src="images/pyksel.gif" width="5" height="5"> in line 29 of Michelangelo theme. I posted this bug also on http://bug.envolution.com/bug_view_page.php?bug_id=0000009 -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |
From: TiMax <ma...@em...> - 2003-05-12 15:49:47
|
<html><head><meta name=3D"Generator" content=3D"PocoMail 3 HTML/CSS= Generator"/> <style type=3D"text/css"><!-- p{display:block;font-family:"Arial";font-size:10pt;color:black;ma= rgin:0.00in;text-align:left;} LI{display:list-item;font-family:"Arial";font-size:0pt;color:blac= k;margin-top:0.00in;margin-bottom:0.00in;text-align:left;} td{display:block;font-family:"Arial";font-size:0pt;color:black;ma= rgin-left:0.00in;margin-right:0.00in;text-align:left;} body{} --></style> </head><BODY bgcolor=3D"F4FDFF" BGCOLOR=3D"#F4FDFF"><p> </p> <p>Only to let you know that, now also Arena Forum developement= are in our Sourceforge CVS.</p> <p> </p> <p>Burke if you want to write little news about</p> <p> </p> <p>bye</p> <p>TiMax</p> </body></html> |
From: <Luc...@cs...> - 2003-05-12 10:08:27
|
SGFsbG8gdG8gZXZlcnlib2R5LCBJJ20gTHVjYSBhbmQgSSdtIHdvcmtpbmcgdG8gYWRhcHQgZW52 b2x1dGlvbiBzbyB0byBtYWtlDQppdCBmdW5jdGlvbmluZyBhbHNvIG9uIE9yYWNsZSwgdG9nZXRo ZXIgd2l0aCBhIGNvbGxlYWd1ZSBvZiBtaW5lLg0KV2UgYXJlIHJpZ2h0IG5vdyByZWxlYXNpbmcg ZmlsZXMgd2l0aCB0aGUgY29ycmVjdGlvbnMuDQpUaGluayB0aGF0IHdlJ2xsIG5lZWQgYSBjb3Vw bGUgb2YgZGF5cyB0byBoYXZlIHNvbWV0aGluZyB1c2FibGUgb24gT3JhY2xlDQphbmQgd2UnbGwg Y29uY2x1ZGUgdGhlIGZpcnN0IHBoYXNlIHdpdGggdGhlIHVwbG9hZCBvZiB0aGUgU1FMIHNjcmlw dHMgb24NCnRoZSByaWdodCBmb2xkZXIuDQpXZSdkIGxpa2UgdG8ga25vdyBpZiB0aGVyZSBhcmUg c29tZSBzdGFuZGFyZHMgdG8gd3JpdGUgdGhlIGNvZGUgb3IgdG8gbWVrZQ0KdGhlIGNvbW1lbnRz LCB3ZSBzYXcgdGhhdCB0aGVyZSBpcyBhIHZlcnkgbmljZSBkZWJ1ZyB3aW5kb3csIGJ1dCBpdCcg bm90IHNvDQptdWNoIHVzZWQuICBBcmUgdGhlcmUgYW55IHBvbGljZXMgYWJvdXQgaXQ/DQpXZSBh cmUgbWFudGFpbmluZyB0aGUgb2xkIGNvZGUgd2hlbiB3ZSBtYWtlIGNoYW5nZXMgc28gdG8gYWxs b3cgZXZlcnlib2R5DQp0byB1bmRlcnN0YW5kIGltbWVkaWF0ZWx5IHdoZXJlIGFuZCB3aHkgd2Ug bWFkZSBzdWNoIG1vZGlmaWVycy4NCldlIGFyZSBhbHNvIHByZXBhcmluZyBzb21lIGd1aWRlbGlu ZXMgdG8gd3JpdGUgcG9ydGFibGUgY29kZSBmb3IgbXlzcWwgYW5kDQpPcmFjbGUgKG9ubHkgaW4g aXRhbGlhbiBmb3IgdGhlIG1vbWVudCkgc28gdGhhdCBldmVyeSBuZXcgbW9kdWxlIHdlIHRvdWNo DQpvciBkZWJ1ZyBjb3VsZCBiZSB3cml0dGVuIGZvbGxvd2luZyB0aGVzZSBndWlkZWxpbmVzLg0K U3BlYWtpbmcgYWJvdXQgb3RoZXIgbW9kdWxlcyBsaWtlIGNvbnRlbnQgZXhwcmVzcyBvciBwb3N0 IGNhbGVuZGFyIGV0YyBhcmUNCnRoZXJlIGFueSBvZmZpY2lhbCBvciBmb3JtYWwgY29udGFjdHMg d2l0aCB0aGUgb3duZXJzIG9mIHRoZSBwcm9qZWN0cyB0bw0Kc3VibWl0IHRoZSBjb2RlIGZyb20g dGhlIGVudm8gY29tbXVuaXR5Pw0KV2FudCB0byBzYXkgdGhhdCB3ZSB0aGluayB0aGF0IHRoaXMg aXMgYSByZWFsbHkgZ29vZCBwcm9qZWN0IGFuZCBhcmUgcHJvdWQNCnRvIGJlIGFibGUgdG8gY29u dHJpYnV0ZS4NCkJ5DQpMdWNhDQo= |
From: TiMax <ma...@em...> - 2003-05-10 23:42:24
|
sometimes is nice to read these messages ----------------------------------------------------------- Hey TiMax, Just a quick message to tell you all a HUGE thanks!! I am just= now starting to learn php and am going to implement an online medical education site very soon (prehospital....I'm a= paramedic) using the envolution CMS. I know how horribly busy my schedule is, and can only imagine how busy you all are. I= appreciate all that you and the team have done!! Keep up the good work. I must say that out of all the CMS portals I= have seen out there, eNvolution is by far the most impressive!! You all have won me over (I started on phpNuke ->= PostNuke -> eNvolution). Unfortunately I cannot offer much in the way of development, but hopefully, as I learn php and= the structure of eNvo, I will be able to be a contributor to your efforts. Watching other forum posts on other CMS sites, I notice alot of= people tend to bitch, even at the developers. Although I'm sure that you are already aware......just keep in mind that= what eNvo is now, is more than what they have ever had. Don't feel rushed at anything. Keep yourself and your family= happy and healthy. I am going to try and PM all the developers of eNvo, but if I= don't hit everyone, please pass on the "thanks" Thanks again!! -dgammon |
From: TiMax <ma...@em...> - 2003-05-10 23:31:23
|
be patient Christoph .... you know nobody make money, nobody have= lot of time or maybe nobody have answer for now ... TiMax On Sat, 10 May 2003 20:30:13 +0200, Christoph Schwaeppe wrote: > On http://bug.envolution.com/ I put two new bug reports. > > http://bug.envolution.com/bug_view_page.php?bug_id=3D0000006 > http://bug.envolution.com/bug_view_page.php?bug_id=3D0000005 > > There are still some others without feedback, acknowledgement= etc. > > Greets > Christoph |
From: <Chr...@t-...> - 2003-05-10 18:30:20
|
On http://bug.envolution.com/ I put two new bug reports. http://bug.envolution.com/bug_view_page.php?bug_id=0000006 http://bug.envolution.com/bug_view_page.php?bug_id=0000005 There are still some others without feedback, acknowledgement etc. Greets Christoph -- mailto:chr...@t-... personal: http://www.christoph-schwaeppe.de CMS: http://www.envolution.de ICQ: 174676647 jabber gat...@am... |