<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-167</id>
	<title>Nabble - Pear - Dev</title>
	<updated>2009-12-10T07:33:23Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Pear---Dev-f167.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pear---Dev-f167.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26729372</id>
	<title>bugtrackers, was Re: [PHP-DEV] Towards 5.3.2</title>
	<published>2009-12-10T07:33:23Z</published>
	<updated>2009-12-10T07:33:23Z</updated>
	<author>
		<name>Brett Bieber</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;This is just a spin-off from an internals discussion. I moved this
&lt;br&gt;pear-dev, to avoid noise on internals.
&lt;br&gt;&lt;br&gt;On Tue, Dec 8, 2009 at 3:30 PM, Tjerk Anne Meesters &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26729372&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;datibbaw@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Just out of curiosity, is there any open source bug tracker out there
&lt;br&gt;&amp;gt; that would lend itself well to these needs? Currently the bug tracker
&lt;br&gt;&amp;gt; is highly customized so when thinking about adding those new features,
&lt;br&gt;&amp;gt; it may also be a good time to look around ;-)
&lt;br&gt;&lt;br&gt;Greg Beaver and I have been experimenting with a potential bugtracker
&lt;br&gt;for use with PEAR2 and any other PEAR channel.
&lt;br&gt;&lt;br&gt;The project in pear2/BugManager has support for roadmaps, multiple
&lt;br&gt;assignees, remote context validation, hard or soft linking between
&lt;br&gt;bugs in different projects (PEAR bug depends on PHP bug) and some
&lt;br&gt;other 'nice to haves.' This is a different approach than 'one
&lt;br&gt;bugtracker to rule them all' — the goal of this is a per-project
&lt;br&gt;bugtracker with the capability of linking bugs between different
&lt;br&gt;instances.
&lt;br&gt;&lt;br&gt;Right now the UI still needs to be completed, adding some web
&lt;br&gt;services, and authentication. Assistance would be appreciated.
&lt;br&gt;&lt;br&gt;I'm sure there are others out there, this is just the one we're
&lt;br&gt;experimenting with.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Brett Bieber
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/bugtrackers%2C-was-Re%3A--PHP-DEV--Towards-5.3.2-tp26729372p26729372.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26729265</id>
	<title>Deploying scheduled jobs with PEAR</title>
	<published>2009-12-10T07:30:53Z</published>
	<updated>2009-12-10T07:30:53Z</updated>
	<author>
		<name>Tim Jackson-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Consider the situation where you have one or more applications installed using 
&lt;br&gt;PEAR, and each of them need to set up some scheduled jobs (&amp;quot;cron jobs&amp;quot;).
&lt;br&gt;&lt;br&gt;Does anyone have a good existing solution for this using PEAR?
&lt;br&gt;&lt;br&gt;The logical way I can come up with doing it so far is this:
&lt;br&gt;&lt;br&gt;- create a new file role called &amp;quot;scheduledjob&amp;quot; or something, which
&lt;br&gt;&amp;nbsp; &amp;nbsp;installs into a special directory
&lt;br&gt;&lt;br&gt;- define (by convention) that files installed using that role are in a
&lt;br&gt;&amp;nbsp; &amp;nbsp;specific format (say, for example, the typical crontab format like
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;quot;*/5 * * * * php /path/to/script.php&amp;quot;). Naturally, these would almost
&lt;br&gt;&amp;nbsp; &amp;nbsp;certainly need to be pre-processed with tasks:replace etc. to fill in the
&lt;br&gt;&amp;nbsp; &amp;nbsp;file paths, php bin location etc.
&lt;br&gt;&lt;br&gt;- use a custom task to, on installation of a file with role &amp;quot;scheduledjob&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp;parse it and set up cron (or the equivalent on other platforms, e.g.
&lt;br&gt;&amp;nbsp; &amp;nbsp;Windows Scheduled Tasks).
&lt;br&gt;&lt;br&gt;Is there any existing package to do the work within that latter point to set 
&lt;br&gt;up the job? I was looking for something like System_Cron or 
&lt;br&gt;System_ScheduledTask but didn't find anything. (If not, then it could 
&lt;br&gt;potentially be a new PEAR lib, for example System_ScheduledTask, with drivers 
&lt;br&gt;like System_ScheduledTask_Cron [possibly with several variants for the various 
&lt;br&gt;crons out there], System_ScheduledTask_Windows etc. I already have some sample 
&lt;br&gt;code for this for Linux crons.)
&lt;br&gt;&lt;br&gt;But does anyone have any other well-established solution to this? Even pearweb 
&lt;br&gt;just has the scripts in a directory called &amp;quot;cron&amp;quot;, marked with role &amp;quot;www&amp;quot;. As 
&lt;br&gt;far as I can tell, these have to be installed manually; there doesn't seem to 
&lt;br&gt;be anything in the post-installation tasks to do it.
&lt;br&gt;&lt;br&gt;N.B. I'm quite keen on using &amp;quot;standard&amp;quot; system schedulers rather than 
&lt;br&gt;solutions like &amp;quot;every X hits to my website, trigger some task&amp;quot; on the basis 
&lt;br&gt;that they are proven and don't rely on some external mechanism.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Tim
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deploying-scheduled-jobs-with-PEAR-tp26729265p26729265.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26684096</id>
	<title>[PEPr] Changes in proposal for Web Services::Services_Digg2</title>
	<published>2009-12-07T13:01:47Z</published>
	<updated>2009-12-07T13:01:47Z</updated>
	<author>
		<name>Bill Shupp</name>
	</author>
	<content type="html">&lt;br&gt;Bill Shupp (&lt;a href=&quot;http://pear.php.net/user/shupp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/user/shupp&lt;/a&gt;) has edited the proposal for Web Services::Services_Digg2.
&lt;br&gt;&lt;br&gt;Change comment:
&lt;br&gt;&lt;br&gt;* Moved from Validate to filter_var (thanks bbieber!)
&lt;br&gt;&lt;br&gt;* Cleaned up some dependency info
&lt;br&gt;&lt;br&gt;Please review the proposal:
&lt;br&gt;&lt;a href=&quot;http://pear.php.net/pepr/pepr-proposal-show.php?id=622&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/pepr/pepr-proposal-show.php?id=622&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PEPr--Proposal-for-Web-Services%3A%3AServices_Digg2-tp26681853p26684096.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26681853</id>
	<title>[PEPr] Proposal for Web Services::Services_Digg2</title>
	<published>2009-12-07T10:34:17Z</published>
	<updated>2009-12-07T10:34:17Z</updated>
	<author>
		<name>Bill Shupp</name>
	</author>
	<content type="html">&lt;br&gt;Bill Shupp (&lt;a href=&quot;http://pear.php.net/user/shupp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/user/shupp&lt;/a&gt;) proposes Web Services::Services_Digg2.
&lt;br&gt;&lt;br&gt;You can find more detailed information here:
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://pear.php.net/pepr/pepr-proposal-show.php?id=622&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/pepr/pepr-proposal-show.php?id=622&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PEPr--Proposal-for-Web-Services%3A%3AServices_Digg2-tp26681853p26681853.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26656719</id>
	<title>Re: Pyrus bug during installation of Spreadsheet_Excel_Writer  0.9.2</title>
	<published>2009-12-05T07:46:59Z</published>
	<updated>2009-12-05T07:46:59Z</updated>
	<author>
		<name>Brett Bieber</name>
	</author>
	<content type="html">On Sat, Nov 28, 2009 at 2:08 AM, Christian Weiske &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26656719&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cweiske@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm getting an error when trying to install the dev test version of
&lt;br&gt;&amp;gt; SpreadSheet_Excel_Writer 0.9.2 - it seems to simply hang after that,
&lt;br&gt;&amp;gt; with 100% CPU utilization and eating memory.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; cweiske:~/tmp&amp;gt;
&lt;br&gt;&amp;gt; php-5.3.1 ../Dev/cvs/pear/pear2/Pyrus/trunk/PEAR2_Pyrus-2.0.0a1.phar
&lt;br&gt;&amp;gt; install ../Spreadsheet_Excel_Writer-0.9.2.tgz Pyrus version 2.0.0a1
&lt;br&gt;&amp;gt; SHA-1: 43AA5C4003AAE68426323C00225A9EDAB0E774FB Using PEAR installation
&lt;br&gt;&amp;gt; found at /home/cweiske/Dev/cvs/pear/instpear2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Warning: call_user_func_array() expects parameter 1 to be a valid
&lt;br&gt;&amp;gt; callback, class 'pear2\Pyrus\PackageFile\v2' does not have a method
&lt;br&gt;&amp;gt; 'resetConcreteVersion' in
&lt;br&gt;&amp;gt; phar:///home/cweiske/Dev/cvs/pear/pear2/Pyrus/trunk/PEAR2_Pyrus-2.0.0a1.phar/PEAR2_Pyrus-2.0.0a1/php/pear2/Pyrus/Package/Base.php
&lt;br&gt;&amp;gt; on line 208
&lt;/div&gt;&lt;br&gt;Looks like there are two issues here. We should only call
&lt;br&gt;resetConcreteVersion(); if the package is remote.
&lt;br&gt;&lt;br&gt;I believe the infinite loop is caused by no compatible versions
&lt;br&gt;matching the preferred_state being available for a dependency. An
&lt;br&gt;exception should be thrown somewhere which states this... before the
&lt;br&gt;infinite loop of course.
&lt;br&gt;&lt;br&gt;As a workaround you can use:
&lt;br&gt;php pyrus.phar set preferred_state alpha
&lt;br&gt;php pyrus.phar install ../Spreadsheet_Excel_Writer-0.9.2.tgz
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Brett Bieber
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pyrus-bug-during-installation-of-Spreadsheet_Excel_Writer-0.9.2-tp26551293p26656719.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26656243</id>
	<title>Re: Pyrus bug: info is too short</title>
	<published>2009-12-05T06:44:57Z</published>
	<updated>2009-12-05T06:44:57Z</updated>
	<author>
		<name>Brett Bieber</name>
	</author>
	<content type="html">On Sat, Nov 28, 2009 at 2:04 AM, Christian Weiske &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26656243&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cweiske@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Since we have no bug tracker yet for pyrus:
&lt;br&gt;&amp;gt; The description is too short when using &amp;quot;info&amp;quot;, it tells me to use info.
&lt;br&gt;&lt;br&gt;Fixed in SVN. Thanks for the note Christian.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Brett Bieber
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pyrus-bug%3A-info-is-too-short-tp26551295p26656243.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26634649</id>
	<title>Re: [PEAR-QA] Re: Mail_MIME</title>
	<published>2009-12-03T14:44:52Z</published>
	<updated>2009-12-03T14:44:52Z</updated>
	<author>
		<name>Daniel O'Connor</name>
	</author>
	<content type="html">Hey Alec,
&lt;br&gt;You're ticking all of the boxes to get a +1 from me.
&lt;br&gt;&lt;br&gt;Re #12411 and it being a bulk patch, it might be worth splitting up
&lt;br&gt;back into specific fixes - ie; it's hard for me as a QA person to
&lt;br&gt;assertain exactly what kind of regression hell might be unleashed by
&lt;br&gt;solving 5 bugs at once, and it's unclear if there's specific
&lt;br&gt;individual test coverage (though my review was cursory).
&lt;br&gt;&lt;br&gt;Unfortunately with Mail_MIME, since it's not unmaintained, all PEAR QA
&lt;br&gt;can really do is hassle out the authors on your behalf.
&lt;br&gt;&lt;br&gt;*NUDGE*
&lt;br&gt;walter/cipri
&lt;br&gt;*/NUDGE*
&lt;br&gt;&lt;br&gt;What will probably happen next - walter / cipri give you a +1 as well,
&lt;br&gt;add you as a developer, and ask you to apply for an SVN account -
&lt;br&gt;&lt;a href=&quot;http://www.php.net/svn.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/svn.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;Someone in PEAR group will then grant you karma for the specific package.
&lt;br&gt;&lt;br&gt;This might all take a while (the wheels can turn a little slowly), so
&lt;br&gt;hang in there!
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Fri, Dec 4, 2009 at 12:09 AM, A.L.E.C &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26634649&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alec@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; A.L.E.C wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I don't use main Mail package.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sorry, of course I do use it in LMS, but now it's not priority for me. Maybe
&lt;br&gt;&amp;gt; later.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--PEAR-QA--Re%3A-Mail_MIME-tp26634649p26634649.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26630678</id>
	<title>[PEPr] Proposal for Web Services::Services_Memotoo</title>
	<published>2009-12-03T10:23:22Z</published>
	<updated>2009-12-03T10:23:22Z</updated>
	<author>
		<name>Pequet Thomas</name>
	</author>
	<content type="html">&lt;br&gt;Pequet Thomas (&lt;a href=&quot;http://pear.php.net/user/memotoo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/user/memotoo&lt;/a&gt;) proposes Web Services::Services_Memotoo.
&lt;br&gt;&lt;br&gt;You can find more detailed information here:
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://pear.php.net/pepr/pepr-proposal-show.php?id=620&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/pepr/pepr-proposal-show.php?id=620&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PEPr--Proposal-for-Web-Services%3A%3AServices_Memotoo-tp26630678p26630678.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26624952</id>
	<title>Status of Spreadsheet_Excel_Writer: Very bad</title>
	<published>2009-12-03T04:03:53Z</published>
	<updated>2009-12-03T04:03:53Z</updated>
	<author>
		<name>Deckard-2</name>
	</author>
	<content type="html">Hello!
&lt;br&gt;&lt;br&gt;I just wanted to give a feedback on Spreadsheet_Excel_Writer.
&lt;br&gt;&lt;br&gt;We have now released a new version of Spreadsheet_Excel_Writer which 
&lt;br&gt;makes it at least usable for most simple tasks with BIFF8.
&lt;br&gt;&lt;br&gt;However when trying to fix a couple more bugs I realized the following 
&lt;br&gt;facts:
&lt;br&gt;&lt;br&gt;Spreadsheet_Excel_Writer is hopelessly outdated. At the time it was 
&lt;br&gt;created very little was known about the Excel format and so the whole 
&lt;br&gt;structure of the package does reflect that. Fixing the most simple 
&lt;br&gt;things, like formulas etc. or this one: 
&lt;br&gt;&lt;a href=&quot;http://pear.php.net/bugs/bug.php?id=2146&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/bugs/bug.php?id=2146&lt;/a&gt;&amp;nbsp;would need a complete rewrite 
&lt;br&gt;of the internal procedures since the current package does not really 
&lt;br&gt;know how an Excel file is structured. Something I would not be able to 
&lt;br&gt;do (because it would cost _alot_ of time) and considering the fact that 
&lt;br&gt;there is a pretty decent PHP Excel package out there (PHPExcel), it is 
&lt;br&gt;very unlikely that anyone will do it.
&lt;br&gt;&lt;br&gt;When I took over the package I was hoping that only applying patches by 
&lt;br&gt;the users and a couple intensive debugs would fix the problems - only 
&lt;br&gt;after alot of insight into the package I found out the things above.
&lt;br&gt;&lt;br&gt;Under these circumstances I would recommend to put this package out of 
&lt;br&gt;its misery and mark it as deprecated.
&lt;br&gt;&lt;br&gt;If you have any questions or comments please let me know.
&lt;br&gt;&lt;br&gt;Best regards
&lt;br&gt;&lt;br&gt;Carsten Schmitz
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Status-of-Spreadsheet_Excel_Writer%3A-Very-bad-tp26624952p26624952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26615120</id>
	<title>[PEPr] Comment on Math::Math_Assoc</title>
	<published>2009-12-02T11:49:20Z</published>
	<updated>2009-12-02T11:49:20Z</updated>
	<author>
		<name>Matthew Fonda</name>
	</author>
	<content type="html">&lt;br&gt;Some comments:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- For finding roots and evaluating equations, Math_Numerical_RootFinding
&lt;br&gt;already provides much of this functionality.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- For number conversion, Number_Roman already provides this.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- Math_Fraction already provides lcd / gcm
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- Math_Polynomial already provides some of the other features.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- flip_sign, is_positive, is_negative, is_null all seem pretty useless;
&lt;br&gt;what's wrong with if ($num &amp;lt; 0)?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- {...} syntax for square root seems a bit odd.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://pear.php.net/pepr/pepr-proposal-show.php?id=619&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/pepr/pepr-proposal-show.php?id=619&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PEPr--Proposal-for-Math%3A%3AMath_Assoc-tp26612530p26615120.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26614791</id>
	<title>Re: [PEPr] Comment on Math::Math_Assoc</title>
	<published>2009-12-02T11:24:45Z</published>
	<updated>2009-12-02T11:24:45Z</updated>
	<author>
		<name>tfk</name>
	</author>
	<content type="html">On Wed, Dec 2, 2009 at 8:17 PM, Philippe Jausions &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26614791&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pear@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; (...)
&lt;br&gt;&amp;gt;  - Use func_get_args() to eliminate duplicate functions gcm(), gcm_mult()
&lt;br&gt;&amp;gt; and so forth
&lt;br&gt;&lt;br&gt;Or __call().
&lt;br&gt;&lt;br&gt;(Make sure to use the phpdoc for magic methods to document all.)
&lt;br&gt;&lt;br&gt;Till
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PEPr--Proposal-for-Math%3A%3AMath_Assoc-tp26612530p26614791.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26613746</id>
	<title>[PEPr] Comment on Math::Math_Assoc</title>
	<published>2009-12-02T10:17:44Z</published>
	<updated>2009-12-02T10:17:44Z</updated>
	<author>
		<name>Philippe Jausions-2</name>
	</author>
	<content type="html">&lt;br&gt;Couple of comments.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;- Avoid using the PHP license. MIT, LGPL, New BSD etc are preferred ones
&lt;br&gt;&lt;br&gt;&amp;nbsp;- The existing Number_Roman package already handles the Roman to Arabic
&lt;br&gt;conversion
&lt;br&gt;&lt;br&gt;&amp;nbsp;- Package should be PHP 5+
&lt;br&gt;&lt;br&gt;&amp;nbsp;- Put the code of your package directly viewable online
&lt;br&gt;&lt;br&gt;&amp;nbsp;- Use func_get_args() to eliminate duplicate functions gcm(), gcm_mult()
&lt;br&gt;and so forth
&lt;br&gt;&lt;br&gt;&amp;nbsp;- function names should be camelCase isPositive() vs is_positive()
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;I don't know what your date and conversion functions do, but they
&lt;br&gt;shouldn't be in the same package as an equation-related one.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://pear.php.net/pepr/pepr-proposal-show.php?id=619&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/pepr/pepr-proposal-show.php?id=619&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PEPr--Proposal-for-Math%3A%3AMath_Assoc-tp26612530p26613746.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26612530</id>
	<title>[PEPr] Proposal for Math::Math_Assoc</title>
	<published>2009-12-02T09:07:31Z</published>
	<updated>2009-12-02T09:07:31Z</updated>
	<author>
		<name>Bogomil Gospodinov</name>
	</author>
	<content type="html">&lt;br&gt;Bogomil Gospodinov (&lt;a href=&quot;http://pear.php.net/user/azerot&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/user/azerot&lt;/a&gt;) proposes Math::Math_Assoc.
&lt;br&gt;&lt;br&gt;You can find more detailed information here:
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://pear.php.net/pepr/pepr-proposal-show.php?id=619&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/pepr/pepr-proposal-show.php?id=619&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PEPr--Proposal-for-Math%3A%3AMath_Assoc-tp26612530p26612530.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26592588</id>
	<title>[PEPr] Comment on HTML::MetaTags</title>
	<published>2009-12-01T06:23:16Z</published>
	<updated>2009-12-01T06:23:16Z</updated>
	<author>
		<name>Michael Gauthier</name>
	</author>
	<content type="html">&lt;br&gt;This is a handy package. I've got some feedback:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;1.) consisify between camelCase and under_scores. The camelCase style is
&lt;br&gt;preferred.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;2.) Document the available options in the class constructor in the method
&lt;br&gt;docblock.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;3.) documentation should use the 3rd person declarative rather than the
&lt;br&gt;2nd person imperative in documentation. &amp;quot;Sets the foo&amp;quot; rather than &amp;quot;Set
&lt;br&gt;foo&amp;quot;. See &lt;a href=&quot;http://pear.php.net/manual/en/standards.sample.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/manual/en/standards.sample.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;4.) consistify between single quoted strings and double quoted.
&lt;br&gt;Single-quoted is preferred.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;5.) The regular expression has the punctuation characters hard-coded when
&lt;br&gt;it appears you can specify them in the constructor.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;6.) Lines should be at most 85 characters long.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;7.) consider only using mb_strlen(), mb_strtolower(), etc if the functions
&lt;br&gt;are avialable That way installations that don't have mb_string can still
&lt;br&gt;use the package.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;8.) stripText() could be simplified by using a regular expression.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;9.) Package doesn't generate any HTML. I recommend renaming to
&lt;br&gt;Text_Metadata or Text_MetaTags
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;10.) The use of the PHP license is discouraged. Consider BSD, Apache2 or
&lt;br&gt;MIT instead.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;11.) try running the code through phpcs (PHP_CodeSniffer)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;12.) Min PHP version in package.xml is too low. At least PHP 5 is
&lt;br&gt;required.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;13.) This package is a great cantidate for unit testing. Consider adding
&lt;br&gt;some tests to the proposal.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://pear.php.net/pepr/pepr-proposal-show.php?id=618&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/pepr/pepr-proposal-show.php?id=618&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PEPr--Proposal-for-HTML%3A%3AMetaTags-tp26372761p26592588.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26561744</id>
	<title>Re: QR_Img (barcodes) - proposal</title>
	<published>2009-11-29T04:52:15Z</published>
	<updated>2009-11-29T04:52:15Z</updated>
	<author>
		<name>Rich Sage-3</name>
	</author>
	<content type="html">Hi Ken, David,
&lt;br&gt;&lt;br&gt;Great - thanks for both of your replies re the package, and apologies for
&lt;br&gt;the delay in replying :-)
&lt;br&gt;&lt;br&gt;David - I'll get to work on restructuring both the package layout and the
&lt;br&gt;code itself. &amp;nbsp;Could you possibly let me know what you'd recommend in terms
&lt;br&gt;of the PHP4-PHP5 changes? &amp;nbsp;I'll switch to the array of options in the
&lt;br&gt;constructor or similar as well.
&lt;br&gt;&lt;br&gt;Thanks again :-)
&lt;br&gt;&lt;br&gt;Rich
&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 8:53 AM, Ken Guest &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26561744&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ken@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, Nov 25, 2009 at 8:10 PM, Rich Sage &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26561744&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rich.sage@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi all,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I'd like to propose a package for inclusion in PEAR - the package is
&lt;br&gt;&amp;gt; &amp;gt; currently titled &amp;quot;QR_Img&amp;quot; and is for generation of QR (2-dimensional)
&lt;br&gt;&amp;gt; &amp;gt; barcode images. &amp;nbsp;The original code was by Y.Swetake, and he's happy for
&lt;br&gt;&amp;gt; it
&lt;br&gt;&amp;gt; &amp;gt; to be packaged up and made available to more developers; I've just
&lt;br&gt;&amp;gt; &amp;gt; restructured it into a class and with adherence to the coding standards
&lt;br&gt;&amp;gt; etc.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I understand it's best to mention the proposal on pear-dev before
&lt;br&gt;&amp;gt; submitting
&lt;br&gt;&amp;gt; &amp;gt; an &amp;quot;official&amp;quot; proposal (I wasn't able to do that anyway, the PEAR site
&lt;br&gt;&amp;gt; &amp;gt; informed me I had insufficient privileges on my account for this!) -
&lt;br&gt;&amp;gt; would
&lt;br&gt;&amp;gt; &amp;gt; this package be of interest? I'd envisage it sitting within the Images
&lt;br&gt;&amp;gt; &amp;gt; category, although if another one is more suitable please let me know!
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Rich,
&lt;br&gt;&amp;gt; one of my compatriots on the PEAR Group has given you pepr access -
&lt;br&gt;&amp;gt; this means you are
&lt;br&gt;&amp;gt; now enabled for making a package proposal.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; k.
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://blogs.linux.ie/kenguest/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.linux.ie/kenguest/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Rich Sage
&lt;br&gt;Oxford, UK
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26561744&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rich.sage@...&lt;/a&gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QR_Img-%28barcodes%29---proposal-tp26519530p26561744.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26561228</id>
	<title>Re: PHPTAL package name</title>
	<published>2009-11-29T03:39:47Z</published>
	<updated>2009-11-29T03:39:47Z</updated>
	<author>
		<name>Greg Beaver-2</name>
	</author>
	<content type="html">Kornel Lesiński wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 28.11.2009, at 11:17, till wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Afaik, no. But feel free to go on IRC to ask.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; IMHO, the change is not so huge:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; require_once 'HTML/Template/PHPTAL.php';
&lt;br&gt;&amp;gt;&amp;gt; $phptal = new HTML_Template_PHPTAL('my_template_file.xhtml');
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It also affects base classes for pre/post filters, translation service, custom attributes, and probably prefix of functions for custom expression modifiers. In latest version I've exposed PHPTAL's DOM with dozen of PHPTAL_Dom_* classes.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm not keen on having 3 times longer prefix.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can PEAR2 packages be published yet?
&lt;/div&gt;&lt;br&gt;Yes. &amp;nbsp;You should expect them to be alpha stability at least until pyrus 
&lt;br&gt;is officially released (still need some bodies to work on the bug tracker)
&lt;br&gt;&lt;br&gt;Greg
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PHPTAL-package-name-tp26293496p26561228.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26554418</id>
	<title>Re: PHPTAL package name</title>
	<published>2009-11-28T08:07:18Z</published>
	<updated>2009-11-28T08:07:18Z</updated>
	<author>
		<name>tfk</name>
	</author>
	<content type="html">2009/11/28 Kornel Lesiński &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26554418&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kornel@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 28.11.2009, at 11:17, till wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Afaik, no. But feel free to go on IRC to ask.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; IMHO, the change is not so huge:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; require_once 'HTML/Template/PHPTAL.php';
&lt;br&gt;&amp;gt;&amp;gt; $phptal = new HTML_Template_PHPTAL('my_template_file.xhtml');
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It also affects base classes for pre/post filters, translation service, custom attributes, and probably prefix of functions for custom expression modifiers. In latest version I've exposed PHPTAL's DOM with dozen of PHPTAL_Dom_* classes.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm not keen on having 3 times longer prefix.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can PEAR2 packages be published yet?
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;Yeah, I think especially Brett would be happy to help you. ;)
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PHPTAL-package-name-tp26293496p26554418.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26554060</id>
	<title>Re: [PEAR-QA] about a new Archive_Tar release</title>
	<published>2009-11-28T07:23:39Z</published>
	<updated>2009-11-28T07:23:39Z</updated>
	<author>
		<name>Chuck Burgess-2</name>
	</author>
	<content type="html">On Wed, Nov 25, 2009 at 1:34 PM, Michiel Rook &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26554060&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;michiel.rook@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've been able to close a few bugs since taking over maintenance of
&lt;br&gt;&amp;gt; Archive_Tar, preparing a new release is something that has slipped through
&lt;br&gt;&amp;gt; the cracks unfortunately (sorry about that!)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now that I have some time to spend on that, I'm thinking about marking the
&lt;br&gt;&amp;gt; next release 'beta'. Even though I'm pretty confident about my fixes,
&lt;br&gt;&amp;gt; Archive_Tar is an essential package.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any thoughts?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Michiel
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;Hey Michiel,
&lt;br&gt;&lt;br&gt;Releasing an alpha or beta is certainly an option that's up to you, as the
&lt;br&gt;maintainer. &amp;nbsp;If you've made any changes that aren't *strictly* bug fixes,
&lt;br&gt;then an X.Y release number bump, and an alpha or beta stability, are
&lt;br&gt;certainly the way to go. &amp;nbsp;Whenever I do an X.Y bump for a stable package, I
&lt;br&gt;typically do release at least one alpha and one RC beta before a final
&lt;br&gt;stable.
&lt;br&gt;&lt;br&gt;It's not *customary* to mark an X.Y.Z bump as beta if it's part of an
&lt;br&gt;already stable X.Y, but I don't think there are any *guidelines* against
&lt;br&gt;it. &amp;nbsp;I think you'll be fine to do so.
&lt;br&gt;-- 
&lt;br&gt;CRB
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--PEAR-QA--about-a-new-Archive_Tar-release-tp26554060p26554060.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26553724</id>
	<title>about a new Archive_Tar release</title>
	<published>2009-11-28T06:43:56Z</published>
	<updated>2009-11-28T06:43:56Z</updated>
	<author>
		<name>Michiel Rook-3</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I've been able to close a few bugs since taking over maintenance of
&lt;br&gt;Archive_Tar, preparing a new release is something that has slipped
&lt;br&gt;through the cracks unfortunately (sorry about that!)
&lt;br&gt;&lt;br&gt;Now that I have some time to spend on that, I'm thinking about marking
&lt;br&gt;the next release 'beta'. Even though I'm pretty confident about my
&lt;br&gt;fixes, Archive_Tar is an essential package.
&lt;br&gt;&lt;br&gt;Any thoughts?
&lt;br&gt;&lt;br&gt;regards,
&lt;br&gt;&lt;br&gt;Michiel
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/about-a-new-Archive_Tar-release-tp26553724p26553724.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26553634</id>
	<title>Re: PHPTAL package name</title>
	<published>2009-11-28T06:31:58Z</published>
	<updated>2009-11-28T06:31:58Z</updated>
	<author>
		<name>Kornel Lesinski-5</name>
	</author>
	<content type="html">On 28.11.2009, at 11:17, till wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Afaik, no. But feel free to go on IRC to ask.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; IMHO, the change is not so huge:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; require_once 'HTML/Template/PHPTAL.php';
&lt;br&gt;&amp;gt; $phptal = new HTML_Template_PHPTAL('my_template_file.xhtml');
&lt;br&gt;&lt;br&gt;&lt;br&gt;It also affects base classes for pre/post filters, translation service, custom attributes, and probably prefix of functions for custom expression modifiers. In latest version I've exposed PHPTAL's DOM with dozen of PHPTAL_Dom_* classes.
&lt;br&gt;&lt;br&gt;I'm not keen on having 3 times longer prefix.
&lt;br&gt;&lt;br&gt;Can PEAR2 packages be published yet?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;regards, Kornel
&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PHPTAL-package-name-tp26293496p26553634.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26552938</id>
	<title>Re: Re: New release of Spreadsheet_Excel_Writer?</title>
	<published>2009-11-28T04:59:27Z</published>
	<updated>2009-11-28T04:59:27Z</updated>
	<author>
		<name>Deckard-2</name>
	</author>
	<content type="html">Hi Christian,
&lt;br&gt;&lt;br&gt;Thank you for your comments.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; Fixed a huge number of wrong MIME types.
&lt;br&gt;&amp;gt; which applied only to the SVN settings; it is irrelevant to the users.
&lt;br&gt;&lt;br&gt;Ok, will take that one out.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; --Fixed bug #2405: Text concat operator &amp; truncate ..
&lt;br&gt;&amp;gt;&amp;gt; +-Fixed bug #2405: Text concat operator and truncate ..
&lt;br&gt;&amp;gt; Using &amp; is possible - since it's xml, escape the &amp; as &amp;quot;&amp;amp;&amp;quot;.
&lt;br&gt;&lt;br&gt;Thank you ;)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; dev Added missing file to package.xml
&lt;br&gt;&amp;gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;file name=&amp;quot;OLEwriter.php&amp;quot; role=&amp;quot;php&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; Strangely, this file has been around for nearly 7 years but was not in
&lt;br&gt;&amp;gt; the last version of SEW. There is also an own OLE package in PEAR as I
&lt;br&gt;&amp;gt; see, but without that file. Is it in use at all?
&lt;br&gt;&lt;br&gt;I guess not. Will take it out after I can confirm it.
&lt;br&gt;&lt;br&gt;&amp;gt; There is at least one log entry that is not in the changelog:
&lt;br&gt;&amp;gt;&amp;gt; Fix Bug #14587: tmpfile() used despite setTempDir() [sberg]
&lt;br&gt;&lt;br&gt;Yes, I left it out because it relates to a new feature, so it is a fix 
&lt;br&gt;for something that did not exist in the last version anyway and 
&lt;br&gt;therefore imho obsolete (doesn't mean I appreciate the effort ;)
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Please fill in the release notes of 0.9.1's changelog entry. They are
&lt;br&gt;&amp;gt; missing now.
&lt;br&gt;&lt;br&gt;Will do.
&lt;br&gt;&lt;br&gt;&amp;gt; The package.xml is valid, even after Pyrus standards, which is great.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Btw, it was a very good idea to ask for comments before the release.
&lt;br&gt;&amp;gt; Other people do not do that and release the same version 6 times.
&lt;br&gt;&lt;br&gt;Thank you again!
&lt;br&gt;&lt;br&gt;Best regards
&lt;br&gt;Carsten
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-release-of-Spreadsheet_Excel_Writer--tp25129241p26552938.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26552305</id>
	<title>Re: PHPTAL package name</title>
	<published>2009-11-28T03:17:29Z</published>
	<updated>2009-11-28T03:17:29Z</updated>
	<author>
		<name>tfk</name>
	</author>
	<content type="html">On Fri, Nov 27, 2009 at 11:01 AM, Kornel Lesinski
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26552305&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kornel@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 26 Nov 2009, at 18:23, till wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; you are correct, changing the packagre name requires changing the
&lt;br&gt;&amp;gt;&amp;gt; class names and possibly the file structure in your VCS
&lt;br&gt;&amp;gt;&amp;gt; (HTML/Template/PHPTAL.php, etc.).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I don't know about the upgrade procedure for your existing users, but
&lt;br&gt;&amp;gt;&amp;gt; my guess is that if they use a pear-install already, the &amp;quot;new&amp;quot; package
&lt;br&gt;&amp;gt;&amp;gt; name would hint at a totally new package for the user. E.g. if they
&lt;br&gt;&amp;gt;&amp;gt; did pear install PHPTAL before, they now need to do pear install
&lt;br&gt;&amp;gt;&amp;gt; HTML_Template_PHPTAL.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That's not good. That means not only reinstall, but also changes in users'
&lt;br&gt;&amp;gt; code.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Let me know if this answers your question.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'd like to know if &amp;quot;PHPTAL&amp;quot; is acceptable as package name?
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;Afaik, no. But feel free to go on IRC to ask.
&lt;br&gt;&lt;br&gt;IMHO, the change is not so huge:
&lt;br&gt;&lt;br&gt;require_once 'HTML/Template/PHPTAL.php';
&lt;br&gt;$phptal = new HTML_Template_PHPTAL('my_template_file.xhtml');
&lt;br&gt;&lt;br&gt;Till
&lt;br&gt;&lt;br&gt;Till
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PHPTAL-package-name-tp26293496p26552305.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26551297</id>
	<title>Re: Re: New release of Spreadsheet_Excel_Writer?</title>
	<published>2009-11-28T00:09:08Z</published>
	<updated>2009-11-28T00:09:08Z</updated>
	<author>
		<name>Christian Weiske</name>
	</author>
	<content type="html">Hello Carsten,
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; I have fixed a last bug, update the package.xml and now packaged a
&lt;br&gt;&amp;gt; new version of &amp;nbsp;which is downloadable at 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.limesurvey.org/Spreadsheet_Excel_Writer-0.9.2.tgz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.limesurvey.org/Spreadsheet_Excel_Writer-0.9.2.tgz&lt;/a&gt;&amp;nbsp; to be 
&lt;br&gt;&amp;gt; checked out.
&lt;br&gt;Great to hear from you, and even greater that Spreadsheet_Excel_Writer
&lt;br&gt;will get a new release!
&lt;br&gt;You do have a release note
&lt;br&gt;&amp;gt; Fixed a huge number of wrong MIME types.
&lt;br&gt;which applied only to the SVN settings; it is irrelevant to the users.
&lt;br&gt;&lt;br&gt;&amp;gt; --Fixed bug #2405: Text concat operator &amp; truncate ..
&lt;br&gt;&amp;gt; +-Fixed bug #2405: Text concat operator and truncate ..
&lt;br&gt;Using &amp; is possible - since it's xml, escape the &amp; as &amp;quot;&amp;amp;&amp;quot;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; dev Added missing file to package.xml
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;file name=&amp;quot;OLEwriter.php&amp;quot; role=&amp;quot;php&amp;quot; /&amp;gt;
&lt;br&gt;Strangely, this file has been around for nearly 7 years but was not in
&lt;br&gt;the last version of SEW. There is also an own OLE package in PEAR as I
&lt;br&gt;see, but without that file. Is it in use at all?
&lt;br&gt;&lt;br&gt;&lt;br&gt;There is at least one log entry that is not in the changelog:
&lt;br&gt;&amp;gt; Fix Bug #14587: tmpfile() used despite setTempDir() [sberg]
&lt;br&gt;&lt;br&gt;&lt;br&gt;Please fill in the release notes of 0.9.1's changelog entry. They are
&lt;br&gt;missing now.
&lt;br&gt;&lt;br&gt;The package.xml is valid, even after Pyrus standards, which is great.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Btw, it was a very good idea to ask for comments before the release.
&lt;br&gt;Other people do not do that and release the same version 6 times.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Regards/Mit freundlichen Grüßen
&lt;br&gt;Christian Weiske
&lt;br&gt;&lt;br&gt;-= Geeking around in the name of science since 1982 =-
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26551297/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-release-of-Spreadsheet_Excel_Writer--tp25129241p26551297.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26551293</id>
	<title>Pyrus bug during installation of Spreadsheet_Excel_Writer 0.9.2</title>
	<published>2009-11-28T00:08:39Z</published>
	<updated>2009-11-28T00:08:39Z</updated>
	<author>
		<name>Christian Weiske</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'm getting an error when trying to install the dev test version of
&lt;br&gt;SpreadSheet_Excel_Writer 0.9.2 - it seems to simply hang after that,
&lt;br&gt;with 100% CPU utilization and eating memory.
&lt;br&gt;&lt;br&gt;cweiske:~/tmp&amp;gt;
&lt;br&gt;php-5.3.1 ../Dev/cvs/pear/pear2/Pyrus/trunk/PEAR2_Pyrus-2.0.0a1.phar
&lt;br&gt;install ../Spreadsheet_Excel_Writer-0.9.2.tgz Pyrus version 2.0.0a1
&lt;br&gt;SHA-1: 43AA5C4003AAE68426323C00225A9EDAB0E774FB Using PEAR installation
&lt;br&gt;found at /home/cweiske/Dev/cvs/pear/instpear2
&lt;br&gt;&lt;br&gt;Warning: call_user_func_array() expects parameter 1 to be a valid
&lt;br&gt;callback, class 'pear2\Pyrus\PackageFile\v2' does not have a method
&lt;br&gt;'resetConcreteVersion' in
&lt;br&gt;phar:///home/cweiske/Dev/cvs/pear/pear2/Pyrus/trunk/PEAR2_Pyrus-2.0.0a1.phar/PEAR2_Pyrus-2.0.0a1/php/pear2/Pyrus/Package/Base.php
&lt;br&gt;on line 208
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Regards/Mit freundlichen Grüßen
&lt;br&gt;Christian Weiske
&lt;br&gt;&lt;br&gt;-= Geeking around in the name of science since 1982 =-
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26551293/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pyrus-bug-during-installation-of-Spreadsheet_Excel_Writer-0.9.2-tp26551293p26551293.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26551295</id>
	<title>Pyrus bug: info is too short</title>
	<published>2009-11-28T00:04:46Z</published>
	<updated>2009-11-28T00:04:46Z</updated>
	<author>
		<name>Christian Weiske</name>
	</author>
	<content type="html">Hi, 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Since we have no bug tracker yet for pyrus:
&lt;br&gt;The description is too short when using &amp;quot;info&amp;quot;, it tells me to use info.
&lt;br&gt;&lt;br&gt;cweiske:~/tmp&amp;gt;
&lt;br&gt;php-5.3.1 ../Dev/cvs/pear/pear2/Pyrus/trunk/PEAR2_Pyrus-2.0.0a1.phar
&lt;br&gt;info ../Spreadsheet_Excel_Writer-0.9.2.tgz Pyrus version 2.0.0a1 SHA-1:
&lt;br&gt;43AA5C4003AAE68426323C00225A9EDAB0E774FB Using PEAR installation found
&lt;br&gt;at /home/cweiske/Dev/cvs/pear/instpear2 Spreadsheet_Excel_Writer
&lt;br&gt;(pear.php.net Channel)
&lt;br&gt;--------------------------------------------------------------------------------
&lt;br&gt;Package type: PHP package Version: &amp;nbsp; &amp;nbsp; &amp;nbsp;0.9.2 (API 0.9.1),
&lt;br&gt;Stability: &amp;nbsp; &amp;nbsp;beta (API beta) Release Date: 2009-11-28 01:28:34 Package
&lt;br&gt;Summary: Package for generating Excel spreadsheets Package Description
&lt;br&gt;Excerpt: Spreadsheet_Excel_Writer was born as a porting of the
&lt;br&gt;Spreadsheet::WriteExcel Perl module to PHP.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;It allows writing of Excel spreadsheets without the need for COM
&lt;br&gt;object... (info ../Spreadsheet_Excel_Writer-0.9.2.tgz description for
&lt;br&gt;full description) Release Notes Excerpt:
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;+Added feature: setTmpDir property for people that have
&lt;br&gt;openbase_dir. (dufuz) -Fixed bug #14932: The name of the Workbook
&lt;br&gt;stream MUST be &amp;quot;Workbook&amp;quot;, not &amp;quot;Book&amp;quot; (progi1984...
&lt;br&gt;(info ../Spreadsheet_Excel_Writer-0.9.2.tgz notes for full release
&lt;br&gt;notes)
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Regards/Mit freundlichen Grüßen
&lt;br&gt;Christian Weiske
&lt;br&gt;&lt;br&gt;-= Geeking around in the name of science since 1982 =-
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26551295/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pyrus-bug%3A-info-is-too-short-tp26551295p26551295.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26549505</id>
	<title>Re: Re: New release of Spreadsheet_Excel_Writer?</title>
	<published>2009-11-27T16:36:13Z</published>
	<updated>2009-11-27T16:36:13Z</updated>
	<author>
		<name>Carsten Schmitz-4</name>
	</author>
	<content type="html">Hi everyone,
&lt;br&gt;&lt;br&gt;I have fixed a last bug, update the package.xml and now packaged a new 
&lt;br&gt;version of &amp;nbsp;which is downloadable at 
&lt;br&gt;&lt;a href=&quot;http://www.limesurvey.org/Spreadsheet_Excel_Writer-0.9.2.tgz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.limesurvey.org/Spreadsheet_Excel_Writer-0.9.2.tgz&lt;/a&gt;&amp;nbsp; to be 
&lt;br&gt;checked out.
&lt;br&gt;&lt;br&gt;I tested various configurations (that's how I found the last minute 
&lt;br&gt;open_base_dir problem) with the installed package. I also checked the 
&lt;br&gt;documentation and found it still to be correct and working in this 
&lt;br&gt;latest version of the package.
&lt;br&gt;To not delay a release any further I have passed the option to include 
&lt;br&gt;sample code in the package this time. I agree that for future release 
&lt;br&gt;this would be great and we will be doing this for sure.
&lt;br&gt;&lt;br&gt;Please check out the package. Thank you!
&lt;br&gt;&lt;br&gt;Best regards
&lt;br&gt;&lt;br&gt;Carsten Schmitz
&lt;br&gt;&lt;br&gt;Christian Weiske schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello Franck,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I think it would be great if you could push out a new release of
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Spreadsheet_Excel_Writer - you fixed some
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; bugs, and some others have been fixed in the last years, too [1].
&lt;br&gt;&amp;gt;&amp;gt; Why not ? But just a beta ? What is the procedure for releasing .
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Up to now, SEW is beta software - and keeping that would be fine and
&lt;br&gt;&amp;gt; I'd do the same.
&lt;br&gt;&amp;gt; The procedure for releasing:
&lt;br&gt;&amp;gt; - Update package.xml with the latest release notes. I already started
&lt;br&gt;&amp;gt; &amp;nbsp; that when I submitted your patches. Use the Closed-since-last-release
&lt;br&gt;&amp;gt; &amp;nbsp; link in the bugtracker to complete the task. Updating version number
&lt;br&gt;&amp;gt; &amp;nbsp; is already done
&lt;br&gt;&amp;gt; - Copy release notes to changelog in package.xml, add yourself as lead.
&lt;br&gt;&amp;gt; - package the package: $ pear package
&lt;br&gt;&amp;gt; - Try to install it via pear (pear install packagename.tgz)
&lt;br&gt;&amp;gt; - Run some scripts using the package from your home dir or any other
&lt;br&gt;&amp;gt; &amp;nbsp; dir except the svn src dir so in every case you get the installed
&lt;br&gt;&amp;gt; &amp;nbsp; version of the SEW files.
&lt;br&gt;&amp;gt; - See that everything is fine
&lt;br&gt;&amp;gt; - Upload the package to some temporary location where I and other devs
&lt;br&gt;&amp;gt; &amp;nbsp; can check it and try it out
&lt;br&gt;&amp;gt; - Once we give green light, go to pear.php.net -&amp;gt; developers -&amp;gt; upload
&lt;br&gt;&amp;gt; &amp;nbsp; release and release the package
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I suggest you add some examples to the package. Look at
&lt;br&gt;&amp;gt; Text_Figlet to see how to add them to your package (directory-wise in
&lt;br&gt;&amp;gt; svn: docs/examples and in package.xml).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Those examples should be available and runnable when you installed the
&lt;br&gt;&amp;gt; package. (pear list-files Spreadsheet_Excel_Writer)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; An another point :
&lt;br&gt;&amp;gt;&amp;gt; I am in holidays the next week for four weeks (and nearly not access
&lt;br&gt;&amp;gt;&amp;gt; to web) or the next week after the next week for three weeks (I don't
&lt;br&gt;&amp;gt;&amp;gt; remember). What is the procedure in this case ?
&lt;br&gt;&amp;gt; Send an e-mail to QA that you're away for some weeks and all is fine.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; [1]
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://pear.php.net/bugs/search.php?cmd=display&amp;package_name&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/bugs/search.php?cmd=display&amp;package_name&lt;/a&gt;[]=Spreadsheet_Excel_Writer&amp;status=CRSLR
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-release-of-Spreadsheet_Excel_Writer--tp25129241p26549505.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26540175</id>
	<title>Re: PHPTAL package name</title>
	<published>2009-11-27T02:01:18Z</published>
	<updated>2009-11-27T02:01:18Z</updated>
	<author>
		<name>Kornel Lesinski-5</name>
	</author>
	<content type="html">On 26 Nov 2009, at 18:23, till wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; you are correct, changing the packagre name requires changing the
&lt;br&gt;&amp;gt; class names and possibly the file structure in your VCS
&lt;br&gt;&amp;gt; (HTML/Template/PHPTAL.php, etc.).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I don't know about the upgrade procedure for your existing users, but
&lt;br&gt;&amp;gt; my guess is that if they use a pear-install already, the &amp;quot;new&amp;quot; package
&lt;br&gt;&amp;gt; name would hint at a totally new package for the user. E.g. if they
&lt;br&gt;&amp;gt; did pear install PHPTAL before, they now need to do pear install
&lt;br&gt;&amp;gt; HTML_Template_PHPTAL.
&lt;br&gt;&lt;br&gt;That's not good. That means not only reinstall, but also changes in &amp;nbsp;
&lt;br&gt;users' code.
&lt;br&gt;&lt;br&gt;&amp;gt; Let me know if this answers your question.
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'd like to know if &amp;quot;PHPTAL&amp;quot; is acceptable as package name?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;regards, Kornel
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PHPTAL-package-name-tp26293496p26540175.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26533274</id>
	<title>Re: PHPTAL package name</title>
	<published>2009-11-26T10:23:56Z</published>
	<updated>2009-11-26T10:23:56Z</updated>
	<author>
		<name>tfk</name>
	</author>
	<content type="html">Hey Kornel,
&lt;br&gt;&lt;br&gt;you are correct, changing the packagre name requires changing the
&lt;br&gt;class names and possibly the file structure in your VCS
&lt;br&gt;(HTML/Template/PHPTAL.php, etc.).
&lt;br&gt;&lt;br&gt;I don't know about the upgrade procedure for your existing users, but
&lt;br&gt;my guess is that if they use a pear-install already, the &amp;quot;new&amp;quot; package
&lt;br&gt;name would hint at a totally new package for the user. E.g. if they
&lt;br&gt;did pear install PHPTAL before, they now need to do pear install
&lt;br&gt;HTML_Template_PHPTAL.
&lt;br&gt;&lt;br&gt;Let me know if this answers your question.
&lt;br&gt;&lt;br&gt;Till
&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 5:41 PM, Kornel Lesinski
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533274&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kornel@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello, any advice on this?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 10 Nov 2009, at 23:41, Kornel Lesiński wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've been informed on #pear that PHPTAL package should be renamed to
&lt;br&gt;&amp;gt;&amp;gt; HTML_Template_PHPTAL. That category definitely suits the project, but as far
&lt;br&gt;&amp;gt;&amp;gt; as I'm aware, this also requires change of package name and class names.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Just change of package name doesn't sound very bad, it'll only require
&lt;br&gt;&amp;gt;&amp;gt; existing pear users to uninstall old package first (right?), but change of
&lt;br&gt;&amp;gt;&amp;gt; class name prefix seems very disruptive to me. It would require changes not
&lt;br&gt;&amp;gt;&amp;gt; only all over PHPTAL codebase, but also in all existing PHPTAL-based
&lt;br&gt;&amp;gt;&amp;gt; projects/framework adapters and some 3rd party extensions.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I could provide wrappers or dummy classes that inherit new ones under old
&lt;br&gt;&amp;gt;&amp;gt; names, but that would be messy and nearly double number of files that have
&lt;br&gt;&amp;gt;&amp;gt; to be loaded (startup performance is PHPTAL's weak point already, and I
&lt;br&gt;&amp;gt;&amp;gt; don't want PHPTAL to be perceived as bloated and high overhead).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Also, without real namespaces class names that are already overly long
&lt;br&gt;&amp;gt;&amp;gt; (e.g. PHPTAL_Php_Attribute_TAL_Condition) would get even longer. Some of
&lt;br&gt;&amp;gt;&amp;gt; those classes are visible to users.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I wouldn't mind renaming classes when migrating to PEAR2. With real
&lt;br&gt;&amp;gt;&amp;gt; namespaces these problems are minuscule.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So my questions are:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Is it possible to have &amp;quot;PHPTAL&amp;quot; package in HTML/Template category? or
&lt;br&gt;&amp;gt;&amp;gt; HTML_Template_PHPTAL package that uses only PHPTAL as class name prefix?
&lt;br&gt;&amp;gt;&amp;gt; Can renaming be deferred until PEAR2?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; regards, Kornel
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;&amp;gt; To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PHPTAL-package-name-tp26293496p26533274.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26532011</id>
	<title>PHPTAL package name</title>
	<published>2009-11-26T08:41:36Z</published>
	<updated>2009-11-26T08:41:36Z</updated>
	<author>
		<name>Kornel Lesinski-5</name>
	</author>
	<content type="html">Hello, any advice on this?
&lt;br&gt;&lt;br&gt;On 10 Nov 2009, at 23:41, Kornel Lesiński wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've been informed on #pear that PHPTAL package should be renamed to &amp;nbsp;
&lt;br&gt;&amp;gt; HTML_Template_PHPTAL. That category definitely suits the project, &amp;nbsp;
&lt;br&gt;&amp;gt; but as far as I'm aware, this also requires change of package name &amp;nbsp;
&lt;br&gt;&amp;gt; and class names.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Just change of package name doesn't sound very bad, it'll only &amp;nbsp;
&lt;br&gt;&amp;gt; require existing pear users to uninstall old package first (right?), &amp;nbsp;
&lt;br&gt;&amp;gt; but change of class name prefix seems very disruptive to me. It &amp;nbsp;
&lt;br&gt;&amp;gt; would require changes not only all over PHPTAL codebase, but also in &amp;nbsp;
&lt;br&gt;&amp;gt; all existing PHPTAL-based projects/framework adapters and some 3rd &amp;nbsp;
&lt;br&gt;&amp;gt; party extensions.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I could provide wrappers or dummy classes that inherit new ones &amp;nbsp;
&lt;br&gt;&amp;gt; under old names, but that would be messy and nearly double number of &amp;nbsp;
&lt;br&gt;&amp;gt; files that have to be loaded (startup performance is PHPTAL's weak &amp;nbsp;
&lt;br&gt;&amp;gt; point already, and I don't want PHPTAL to be perceived as bloated &amp;nbsp;
&lt;br&gt;&amp;gt; and high overhead).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Also, without real namespaces class names that are already overly &amp;nbsp;
&lt;br&gt;&amp;gt; long (e.g. PHPTAL_Php_Attribute_TAL_Condition) would get even &amp;nbsp;
&lt;br&gt;&amp;gt; longer. Some of those classes are visible to users.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I wouldn't mind renaming classes when migrating to PEAR2. With real &amp;nbsp;
&lt;br&gt;&amp;gt; namespaces these problems are minuscule.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So my questions are:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is it possible to have &amp;quot;PHPTAL&amp;quot; package in HTML/Template category? &amp;nbsp;
&lt;br&gt;&amp;gt; or HTML_Template_PHPTAL package that uses only PHPTAL as class name &amp;nbsp;
&lt;br&gt;&amp;gt; prefix?
&lt;br&gt;&amp;gt; Can renaming be deferred until PEAR2?
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;regards, Kornel
&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PHPTAL-package-name-tp26293496p26532011.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26526245</id>
	<title>Re: QR_Img (barcodes) - proposal</title>
	<published>2009-11-26T00:53:16Z</published>
	<updated>2009-11-26T00:53:16Z</updated>
	<author>
		<name>Ken Guest</name>
	</author>
	<content type="html">On Wed, Nov 25, 2009 at 8:10 PM, Rich Sage &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526245&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rich.sage@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'd like to propose a package for inclusion in PEAR - the package is
&lt;br&gt;&amp;gt; currently titled &amp;quot;QR_Img&amp;quot; and is for generation of QR (2-dimensional)
&lt;br&gt;&amp;gt; barcode images.  The original code was by Y.Swetake, and he's happy for it
&lt;br&gt;&amp;gt; to be packaged up and made available to more developers; I've just
&lt;br&gt;&amp;gt; restructured it into a class and with adherence to the coding standards etc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I understand it's best to mention the proposal on pear-dev before submitting
&lt;br&gt;&amp;gt; an &amp;quot;official&amp;quot; proposal (I wasn't able to do that anyway, the PEAR site
&lt;br&gt;&amp;gt; informed me I had insufficient privileges on my account for this!) - would
&lt;br&gt;&amp;gt; this package be of interest? I'd envisage it sitting within the Images
&lt;br&gt;&amp;gt; category, although if another one is more suitable please let me know!
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;Hi Rich,
&lt;br&gt;one of my compatriots on the PEAR Group has given you pepr access -
&lt;br&gt;this means you are
&lt;br&gt;now enabled for making a package proposal.
&lt;br&gt;&lt;br&gt;k.
&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://blogs.linux.ie/kenguest/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.linux.ie/kenguest/&lt;/a&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QR_Img-%28barcodes%29---proposal-tp26519530p26526245.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26526171</id>
	<title>Re: QR_Img (barcodes) - proposal</title>
	<published>2009-11-26T00:46:32Z</published>
	<updated>2009-11-26T00:46:32Z</updated>
	<author>
		<name>David Jean Louis</name>
	</author>
	<content type="html">Hi Rich
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'd like to propose a package for inclusion in PEAR - the package is
&lt;br&gt;&amp;gt; currently titled &amp;quot;QR_Img&amp;quot; and is for generation of QR (2-dimensional)
&lt;br&gt;&amp;gt; barcode images. &amp;nbsp;The original code was by Y.Swetake, and he's happy for it
&lt;br&gt;&amp;gt; to be packaged up and made available to more developers; I've just
&lt;br&gt;&amp;gt; restructured it into a class and with adherence to the coding standards etc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I understand it's best to mention the proposal on pear-dev before submitting
&lt;br&gt;&amp;gt; an &amp;quot;official&amp;quot; proposal (I wasn't able to do that anyway, the PEAR site
&lt;br&gt;&amp;gt; informed me I had insufficient privileges on my account for this!) - would
&lt;br&gt;&amp;gt; this package be of interest? I'd envisage it sitting within the Images
&lt;br&gt;&amp;gt; category, although if another one is more suitable please let me know!
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;
&lt;/div&gt;Yeah it would be great to have this package in PEAR, we'll give you 
&lt;br&gt;karma to make the proposal ASAP.
&lt;br&gt;&amp;gt; I've made my code available at &lt;a href=&quot;http://code.google.com/p/pearqrcode/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/pearqrcode/&lt;/a&gt;&amp;nbsp;if
&lt;br&gt;&amp;gt; that's of use for information etc. &amp;nbsp;Any pointers welcome! :-)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;I've briefly looked at the code, some notes:
&lt;br&gt;&lt;br&gt;1. the package should be called Image_QRCode I think, or maybe it could 
&lt;br&gt;be a driver of Image_Barcode (this package is not maintained and php4 
&lt;br&gt;though, so it's not a good idea...)
&lt;br&gt;2. your package layout should look like this:
&lt;br&gt;&lt;br&gt;Image_QRCode
&lt;br&gt;|-- Image
&lt;br&gt;| &amp;nbsp; |-- QRCode
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; `-- Exception.php
&lt;br&gt;| &amp;nbsp; `-- QRCode.php
&lt;br&gt;|-- doc
&lt;br&gt;|-- package.xml
&lt;br&gt;`-- tests
&lt;br&gt;&lt;br&gt;3. we only accept php5 code, the code is still php4-ish
&lt;br&gt;&lt;br&gt;4. the makecode() method is *huge*. Definitively, it should be splitted 
&lt;br&gt;in several methods to make the code more maintainable.
&lt;br&gt;&lt;br&gt;5. I think the public API could be better (I don't like the set*() 
&lt;br&gt;methods, I'd prefer to pass an array of options in the constructor or 
&lt;br&gt;the makecode() method)
&lt;br&gt;&lt;br&gt;6. there's no tests, no doc, no examples, no package.xml
&lt;br&gt;&lt;br&gt;That's all for now ;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;David Jean Louis &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526171&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;izimobil@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QR_Img-%28barcodes%29---proposal-tp26519530p26526171.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26519530</id>
	<title>QR_Img (barcodes) - proposal</title>
	<published>2009-11-25T12:10:52Z</published>
	<updated>2009-11-25T12:10:52Z</updated>
	<author>
		<name>Rich Sage-3</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I'd like to propose a package for inclusion in PEAR - the package is
&lt;br&gt;currently titled &amp;quot;QR_Img&amp;quot; and is for generation of QR (2-dimensional)
&lt;br&gt;barcode images. &amp;nbsp;The original code was by Y.Swetake, and he's happy for it
&lt;br&gt;to be packaged up and made available to more developers; I've just
&lt;br&gt;restructured it into a class and with adherence to the coding standards etc.
&lt;br&gt;&lt;br&gt;I understand it's best to mention the proposal on pear-dev before submitting
&lt;br&gt;an &amp;quot;official&amp;quot; proposal (I wasn't able to do that anyway, the PEAR site
&lt;br&gt;informed me I had insufficient privileges on my account for this!) - would
&lt;br&gt;this package be of interest? I'd envisage it sitting within the Images
&lt;br&gt;category, although if another one is more suitable please let me know!
&lt;br&gt;&lt;br&gt;I've made my code available at &lt;a href=&quot;http://code.google.com/p/pearqrcode/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/pearqrcode/&lt;/a&gt;&amp;nbsp;if
&lt;br&gt;that's of use for information etc. &amp;nbsp;Any pointers welcome! :-)
&lt;br&gt;&lt;br&gt;Thanks in advance,
&lt;br&gt;&lt;br&gt;Rich.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Rich Sage
&lt;br&gt;Oxford, UK
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26519530&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rich.sage@...&lt;/a&gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QR_Img-%28barcodes%29---proposal-tp26519530p26519530.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26471197</id>
	<title>Re: Class multiCurl</title>
	<published>2009-11-22T16:41:50Z</published>
	<updated>2009-11-22T16:41:50Z</updated>
	<author>
		<name>zelnaga</name>
	</author>
	<content type="html">Here's what I don't understand: if PHP5 already has a &amp;quot;MULTI CURL&amp;quot;
&lt;br&gt;API, why is a wrapper needed? &amp;nbsp;If &amp;quot;MULTI CURL&amp;quot;'s built-in interface
&lt;br&gt;needs to have a wrapper what about this MultiCurl class library? &amp;nbsp;Is
&lt;br&gt;PEAR going to start including wrappers for wrappers in it as well?
&lt;br&gt;Where do you draw the line?
&lt;br&gt;&lt;br&gt;If this wrapper offered some sort of compatibility layer (ie. a
&lt;br&gt;fallback pure-PHP option for those who don't have the MULTI CURL
&lt;br&gt;extension installed) or if it offered some sort of non-trivial new
&lt;br&gt;functionality, that'd be one thing, but near as I can tell, this
&lt;br&gt;doesn't do any of that.
&lt;br&gt;&lt;br&gt;On Sun, Nov 22, 2009 at 2:55 PM, Dexter Wayne &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26471197&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;randotom@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I developed MultiCurl class library is a PHP5 solution for work with MULTI
&lt;br&gt;&amp;gt; CURL extension and would like to include in the PEAR.
&lt;br&gt;&amp;gt; See attachment.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;&amp;gt; To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Class-multiCurl-tp26469435p26471197.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26469477</id>
	<title>Re: QuickForm2 - ho</title>
	<published>2009-11-22T13:05:50Z</published>
	<updated>2009-11-22T13:05:50Z</updated>
	<author>
		<name>Alexey Borzov</name>
	</author>
	<content type="html">Hi Alain,
&lt;br&gt;&lt;br&gt;On Fri, 20 Nov 2009 12:55:29 +0000, Alain Williams &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26469477&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;addw@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&amp;gt; I have found that this does not do what I want:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; $tue-&amp;gt;setAttribute('checked');
&lt;br&gt;&lt;br&gt;When you add an element to the form or add a datasource to the form with
&lt;br&gt;element added, element will update its value from this datasource
&lt;br&gt;overwriting whatever you set it to previosly. 
&lt;br&gt;&lt;br&gt;&amp;gt; I would like to add them all at once:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; $form-&amp;gt;addElement('radio', 'Weekdays', array('value' =&amp;gt; $d),
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; array('label' =&amp;gt; &amp;quot;Day $day&amp;quot;, 'content' =&amp;gt; &amp;quot;content: $d&amp;quot;,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'options' =&amp;gt; $Wdays));
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; .... later on specify default:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $form-&amp;gt;addDataSource(new
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HTML_QuickForm2_DataSource_Array('Weekdays' =&amp;gt; 'Tue'));
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Can I already do something like that ?
&lt;br&gt;&lt;br&gt;You'll have to use a loop to add radios, but addDataSource() call should
&lt;br&gt;work as expected.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/QuickForm2---ho-tp26442851p26469477.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26469435</id>
	<title>Class multiCurl</title>
	<published>2009-11-22T12:55:22Z</published>
	<updated>2009-11-22T12:55:22Z</updated>
	<author>
		<name>Dexter Wayne</name>
	</author>
	<content type="html">I developed MultiCurl class library is a PHP5 solution for work with
MULTI CURL extension and would like to include in the PEAR.&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;See attachment.&lt;br&gt;
&lt;/div&gt;&lt;br&gt;
&lt;br /&gt; &lt;br /&gt;-- 
&lt;br&gt;PEAR Development Mailing List (&lt;a href=&quot;http://pear.php.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pear.php.net/&lt;/a&gt;)
&lt;br&gt;To unsubscribe, visit: &lt;a href=&quot;http://www.php.net/unsub.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.php.net/unsub.php&lt;/a&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;multiCurl.tgz&lt;/strong&gt; (5K) &lt;a href=&quot;http://old.nabble.com/attachment/26469435/0/multiCurl.tgz&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Class-multiCurl-tp26469435p26469435.html" />
</entry>

</feed>
