garvinhicking | 5 Dec 2003 12:27
Picon

serendipity serendipity_plugin_api.php,1.7,1.8

Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv27749

Modified Files:
	serendipity_plugin_api.php 
Log Message:
If a 3rd-party external plugins directory doesn't contain a file, do not
exit with a fatal error. Fixes the bug, that plugins couldn't be configured.

Index: serendipity_plugin_api.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_plugin_api.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- serendipity_plugin_api.php	18 Sep 2003 12:58:52 -0000	1.7
+++ serendipity_plugin_api.php	5 Dec 2003 11:27:54 -0000	1.8
 <at>  <at>  -102,13 +102,16  <at>  <at> 
         }

         /* third-party classes next */
-        $d = opendir((isset($serendipity['serendipityPath']) ? $serendipity['serendipityPath'] : '') . 'plugins');
+        $ppath = (isset($serendipity['serendipityPath']) ? $serendipity['serendipityPath'] : '') . 'plugins';
+        $d = opendir($ppath);
         while (($f = readdir($d)) !== false) {
             if ($f{0} == '.' || $f == 'CVS') {
                 continue;
             }
-
-            $classes[] = $f;
(Continue reading)

tomsommer | 5 Dec 2003 18:20
Picon

serendipity serendipity_config.inc.php,1.40,1.41

Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv21816

Modified Files:
	serendipity_config.inc.php 
Log Message:
Disable magic_quotes_runtime, they are bad for business

Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- serendipity_config.inc.php	11 Nov 2003 14:18:17 -0000	1.40
+++ serendipity_config.inc.php	5 Dec 2003 17:20:24 -0000	1.41
 <at>  <at>  -8,6 +8,7  <at>  <at> 

 include_once('compat.php');
 ini_set('session.use_trans_sid', 0);
+ <at> set_magic_quotes_runtime(false);

 $serendipity['version']    = '0.4-CVS';
 $serendipity['production'] = 1;

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
(Continue reading)

j hermanns | 5 Dec 2003 18:30
Picon

Re: serendipity serendipity_config.inc.php,1.40,1.41

On Friday 05 December 2003 18:20, tomsommer <at> users.sourceforge.net wrote:
> Disable magic_quotes_runtime, they are bad for business

Tom, 

did you make sure all foreign strings are properly quoted and un-exploitable? 
We don't want to be embarassed...

Jannis.
--

-- 
____________________________________________________________________
 j hermanns ~ maximilianstrasse 65 ~ 86150 augsburg ~ www.jannis.to
____________________________________________________________________
Never argue with idiots.
They drag you down to their level and beat you with experience. 

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
Tom Sommer | 5 Dec 2003 18:42
Picon

Re: serendipity serendipity_config.inc.php,1.40,1.41

j hermanns wrote:

>>Disable magic_quotes_runtime, they are bad for business
> 
> did you make sure all foreign strings are properly quoted and un-exploitable? 
> We don't want to be embarassed...

Not in any way... but, if someone reports it - we can always remove it 
again... Opensource rocks

--

-- 
Tom Sommer, Denmark
www.dreamcoder.dk - www.tsn.dk - http://blog.dreamcoder.dk

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
Sterling Hughes | 5 Dec 2003 18:51

Re: Re: serendipity serendipity_config.inc.php,1.40,1.41

> j hermanns wrote:
> 
> >>Disable magic_quotes_runtime, they are bad for business
> >
> >did you make sure all foreign strings are properly quoted and 
> >un-exploitable? We don't want to be embarassed...
> 
> Not in any way... but, if someone reports it - we can always remove it 
> again... Opensource rocks
>

No, if anybody reports it, then we are exploited, and that in no way
rocks... 

-Sterling

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
Tom Sommer | 5 Dec 2003 18:53
Picon

Re: serendipity serendipity_config.inc.php,1.40,1.41

Sterling Hughes wrote:

>>>>Disable magic_quotes_runtime, they are bad for business
>>>
>>>did you make sure all foreign strings are properly quoted and 
>>>un-exploitable? We don't want to be embarassed...
>>
>>Not in any way... but, if someone reports it - we can always remove it 
>>again... Opensource rocks
>>
> 
> No, if anybody reports it, then we are exploited, and that in no way
> rocks... 

Hmm, well I assume that our compat.php file handles these concerns...

--

-- 
Tom Sommer, Denmark
www.dreamcoder.dk - www.tsn.dk - http://blog.dreamcoder.dk

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
George Schlossnagle | 5 Dec 2003 18:56
Favicon

Re: Re: serendipity serendipity_config.inc.php,1.40,1.41


On Dec 5, 2003, at 12:53 PM, Tom Sommer wrote:

> Sterling Hughes wrote:
>
>>>>> Disable magic_quotes_runtime, they are bad for business
>>>>
>>>> did you make sure all foreign strings are properly quoted and 
>>>> un-exploitable? We don't want to be embarassed...
>>>
>>> Not in any way... but, if someone reports it - we can always remove 
>>> it again... Opensource rocks
>>>
>> No, if anybody reports it, then we are exploited, and that in no way
>> rocks...
>
> Hmm, well I assume that our compat.php file handles these concerns...

How so?

George

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
Tom Sommer | 5 Dec 2003 20:02
Picon

Re: serendipity serendipity_config.inc.php,1.40,1.41

George Schlossnagle wrote:

>>>>>> Disable magic_quotes_runtime, they are bad for business
>>>>>
>>>>> did you make sure all foreign strings are properly quoted and 
>>>>> un-exploitable? We don't want to be embarassed...
>>>>
>>>> Not in any way... but, if someone reports it - we can always remove 
>>>> it again... Opensource rocks
>>>>
>>> No, if anybody reports it, then we are exploited, and that in no way
>>> rocks...
>>
>> Hmm, well I assume that our compat.php file handles these concerns...
> 
> How so?

It adds slashes to add globals, anyway... test

--

-- 
Tom Sommer, Denmark
www.dreamcoder.dk - www.tsn.dk - http://blog.dreamcoder.dk

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
tomsommer | 5 Dec 2003 20:13
Picon

serendipity serendipity_config.inc.php,1.41,1.42

Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv9466

Modified Files:
	serendipity_config.inc.php 
Log Message:
Backing out last commit

Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- serendipity_config.inc.php	5 Dec 2003 17:20:24 -0000	1.41
+++ serendipity_config.inc.php	5 Dec 2003 19:13:06 -0000	1.42
 <at>  <at>  -8,7 +8,6  <at>  <at> 

 include_once('compat.php');
 ini_set('session.use_trans_sid', 0);
- <at> set_magic_quotes_runtime(false);

 $serendipity['version']    = '0.4-CVS';
 $serendipity['production'] = 1;

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
(Continue reading)

garvinhicking | 23 Dec 2003 09:48
Picon

serendipity serendipity_config.inc.php,1.42,1.43 NEWS,1.37,1.38 serendipity_sidebar_items.php,1.32,1.33 serendipity_lang_en.inc.php,1.45,1.46 serendipity_lang_de.inc.php,1.35,1.36

Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv23845

Modified Files:
	serendipity_config.inc.php NEWS serendipity_sidebar_items.php 
	serendipity_lang_en.inc.php serendipity_lang_de.inc.php 
Log Message:
Now allows hTML-Nugget to be configured to not rewrite text. As the
automatic replacement of '*' and '/' words creates some issues by
paste/copying real HTML-text inside a nugget, and to individually disable
exit-tracking inside nuggets.

Bumped version number to 0.5-CVS

Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- serendipity_config.inc.php	5 Dec 2003 19:13:06 -0000	1.42
+++ serendipity_config.inc.php	23 Dec 2003 08:48:21 -0000	1.43
 <at>  <at>  -9,7 +9,7  <at>  <at> 
 include_once('compat.php');
 ini_set('session.use_trans_sid', 0);

-$serendipity['version']    = '0.4-CVS';
+$serendipity['version']    = '0.5-CVS';
 $serendipity['production'] = 1;
 $serendipity['rewrite']    = true;
(Continue reading)


Gmane