<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel">
    <title>gmane.comp.web.ezcomponents.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4673"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4672"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4671"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4670"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4669"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4668"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4667"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4666"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4665"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4664"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4663"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4662"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4661"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4660"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4659"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4658"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4657"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4656"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4655"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4654"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4673">
    <title>Parsing Plain Text with Plain Text Attachment</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4673</link>
    <description>&lt;pre&gt;Hello,

I have a situation where a plain text attachment part is being  
received along with a plain text part. I want the plain text to be  
parsed as text by the collector and the plain text attachment to be  
saved as a file. However, with parse option  
parseTextAttachmentsAsFiles set to FALSE, I cannot get the plain text  
attachment (it is seen as ezcMailText and not ezcMailFile) and the  
attachment text is not available in the $mailPart object. There are  
other cases where a text attachment is actually given as plain text  
and so I can get that and save it as a file, but in this case the  
plain text attachment is really an attachment.

Here is the mail part in question:

object(ezcMailText)#17 (4) {
   ["headers":"ezcMailPart":private]=&amp;gt;
   object(ezcMailHeadersHolder)#18 (2) {
     ["lookup":"ezcMailHeadersHolder":private]=&amp;gt;
     array(4) {
       ["content-type"]=&amp;gt;
       string(12) "Content-Type"
       ["content-description"]=&amp;gt;
       string(19) "Content-Description"
       ["content-dispositi&lt;/pre&gt;</description>
    <dc:creator>Darrik Spaude</dc:creator>
    <dc:date>2010-11-04T19:20:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4672">
    <title>Caldav</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4672</link>
    <description>&lt;pre&gt;Hi all,
 I am a developer of PHProjekt.
We want to add the ezc Webdav component to the version 6.

The development also include the Caldav support and since the
ezcWebdavServer do not provides it, we think improve the module for that.

The caldav needs only a few requests and properties more than the webdav,
for example:

1. The transport must support also the REPORT request method.

2. The properties missed are:
- calendar-data
- getctag
- supported-calendar-component-set

3. The 'resourcetype' property can be only "collection" or null, and the
caldav needs "calendar" or null.

4. A ezcWebdavRequest and ezcWebdavResponse for report is needed too for
get/set all the nodes to return, and to get the date range.

5. And since the data of the event/todo are in Ical format, the module
needs also a class that transform "object data to iCal format" and "ical
format to object data".
THIS CAN BE PART OF THE MODULE OR A NEW MODULE, so other modules can use
it too.

I think is better to "improve" the current webdav,&lt;/pre&gt;</description>
    <dc:creator>Gustavo Solt</dc:creator>
    <dc:date>2010-10-25T15:55:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4671">
    <title>Supend workflow until condition is true</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4671</link>
    <description>&lt;pre&gt;&lt;/pre&gt;</description>
    <dc:creator>Jorge Martins</dc:creator>
    <dc:date>2010-09-30T22:58:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4670">
    <title>Workflow - suspend - saveToVariableHandlers - doSuspend</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4670</link>
    <description>&lt;pre&gt;&lt;/pre&gt;</description>
    <dc:creator>Jorge Martins</dc:creator>
    <dc:date>2010-09-30T17:41:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4669">
    <title>Re: Thoughts about components for cronjobs</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4669</link>
    <description>&lt;pre&gt;
Why would PHP do a better job than Bash at this system administration job?

Regards

James

&lt;/pre&gt;</description>
    <dc:creator>James Pic</dc:creator>
    <dc:date>2010-09-30T14:52:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4668">
    <title>Thoughts about components for cronjobs</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4668</link>
    <description>&lt;pre&gt;Hello everyone,

   Today I discussed with some partner developers about one topic. We got the feeling that cronjob is not so easy to configure(especially there are many tasks), manage (monitor, control). Then I thought a little bit how to improve this, it should be great if there are some components in zeta components for this. Also I think this is good and general need for 'enterprise use'.

  I also found this one: http://pear.php.net/package/System_Daemon/docs but it's just a daemon, which is not enough. Ideally there should be a tool/possibility to configure task, control task, monitor task/memory use, etc.

 Any idea on this or there is already some existence but I didn't know?

 Thank you.

Best regards
Chen (Xiongjie Chen)
Software developer in eZ

&lt;/pre&gt;</description>
    <dc:creator>Xiongjie Chen</dc:creator>
    <dc:date>2010-09-16T20:32:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4667">
    <title>use IMAP to retrieve messages without attachments</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4667</link>
    <description>&lt;pre&gt;&lt;/pre&gt;</description>
    <dc:creator>Daniel Cher</dc:creator>
    <dc:date>2010-09-07T16:56:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4666">
    <title>Re: New website: zetac.org</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4666</link>
    <description>&lt;pre&gt;Hello everybody,

Zetac.org now provides this new shortcuts:

* zetac.org/ezcbase/src -&amp;gt; source of class ezcBase
* zetac.org/ezcBase/src -&amp;gt; source of class ezcBase

Hope that helps ;)

Regards

James

&lt;/pre&gt;</description>
    <dc:creator>James Pic</dc:creator>
    <dc:date>2010-09-07T08:02:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4665">
    <title>New website: zetac.org</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4665</link>
    <description>&lt;pre&gt;Hello everybody,

Zetac.org provides the following shortcuts:

    * zetac.org/base -&amp;gt; tutorial of component Base
    * zetac.org/Base -&amp;gt; tutorial of component Base
    * zetac.org/ezcbase -&amp;gt; api of class ezcBase
    * zetac.org/ezcBase -&amp;gt; api of class ezcBase

More info on zetac.org

Hope that helps ;)

James

&lt;/pre&gt;</description>
    <dc:creator>James Pic</dc:creator>
    <dc:date>2010-09-01T08:24:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4664">
    <title>José Moreira invited you to Dropbox</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4664</link>
    <description>&lt;pre&gt;&lt;/pre&gt;</description>
    <dc:creator>Dropbox</dc:creator>
    <dc:date>2010-08-26T21:27:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4663">
    <title>Setting DPI for images</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4663</link>
    <description>&lt;pre&gt;  Hi!

I need to convert an JPEG-image to a specific DPI (eg. 150dpi).
Does the ImageConversion component featured such a thing? I have not found this in the 
documentation, but maybe I am blind... :-)

Greetings
Thorsten

&lt;/pre&gt;</description>
    <dc:creator>Thorsten Franke</dc:creator>
    <dc:date>2010-08-10T09:12:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4662">
    <title>Downloadable documentation?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4662</link>
    <description>&lt;pre&gt;Is it possible to download the documentation for the latest release of ezc?

This page has documents available for download but only for older versions:
http://ez.no/ezcomponents/download

This page has downloads for new versions but no documentation:
http://ezcomponents.org/download/dl_components

Finally, this page has a link that looks like it should point to
documentation for release 2009.2.1, but the link is broken:
http://ezcomponents.org/download links to
http://ezcomponents.org/files/downloads/ezcomponents-2009.2.1-docs.tar.gz

Any ideas?

Thanks,
Mark E. Haase
&lt;/pre&gt;</description>
    <dc:creator>Mark E. Haase</dc:creator>
    <dc:date>2010-08-01T16:07:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4661">
    <title>Re: Frontpage template use</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4661</link>
    <description>&lt;pre&gt;Hi Kévin, 

On Jul 8, 2010, at 12:37 , Derick Rethans wrote:


You can as well use this mailing-list : 
http://lists.ez.no/mailman/listinfo/sdk-public

All info on communication channels around eZ Publish : http://share.ez.no/get-involved

Talk there!
&lt;/pre&gt;</description>
    <dc:creator>Nicolas Pastorino</dc:creator>
    <dc:date>2010-07-08T10:50:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4660">
    <title>Re: Frontpage template use</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4660</link>
    <description>&lt;pre&gt;

For that, you will have to write to the correct forum first. You can 
find those at: http://share.ez.no/forums

Derick

&lt;/pre&gt;</description>
    <dc:creator>Derick Rethans</dc:creator>
    <dc:date>2010-07-08T10:37:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4659">
    <title>Frontpage template use</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4659</link>
    <description>&lt;pre&gt;Hello everyone !

I'm new to eZ Publish, and I need some advice to better understand how
to use the template system.

Here is my problem : in the frontpage template, I have to fetch some
nodes of different types to display them on the home page of my site.
 - Should I use 4 or 5 "small" fetches, or rather one big fetch to get
all the nodes I need (and then split it in smaller arrays) ?
 - I could also create content objects that are bond to the ones I
need (for example a "news" block that displays the news it is bond
to).
 - Another solution could be to include other templates without
creating content objects, using "{include uri = ...}"

I have not enough experience to know the pros and the cons of each solution.
Which one would you advise me to use, for better performance and code
cleanliness ?

Thanks in advance,

Kévin
&lt;/pre&gt;</description>
    <dc:creator>Kévin Surrault</dc:creator>
    <dc:date>2010-07-06T13:54:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4658">
    <title>Installation via PEAR freezes since some days</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4658</link>
    <description>&lt;pre&gt;Hi there

the installation-process via pear ("sudo pear install -a 
ezc/eZComponents") freezes since some days (channel could be 
successfully added).

I tried it out every day in the last week and today.

Until May or June i was able to successfully install the Components via 
that way.

Maybe it depends on changes happend due migration from eZ to Zeta... ?

Any suggestion?

Kind Regards, Paul
&lt;/pre&gt;</description>
    <dc:creator>Paul</dc:creator>
    <dc:date>2010-07-04T15:51:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4657">
    <title>"Overwrite" existing variables with resume?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4657</link>
    <description>&lt;pre&gt;Hello,

after my extensive posting a few day before (still very thankful for answers
;-)) I got now a very simple question: Could it be that when a variable
(from an input node) is set to a specific value, that I can not overwrite
the value of this workflow-execution by resume it (a second time)?

The xml-code of my workflow-example is attached at the end of my mail.

If I start the workflow it suspends at the first input-node which "requires"
the variables status (string), action (string) and rollback (boolean). If I
resume the workflow-execution with 

$execution-&amp;gt;resume( array( 'status' =&amp;gt; 'new', 'action' =&amp;gt; 'edit', 'rollback'
=&amp;gt; false));

the workflows "loops" back to the input-node because of I unset the
rollback-variable in the SendMailServiceObject (to get no endless loop). 

If I try to resume the workflow again with 
 
$execution-&amp;gt;resume( array( 'status' =&amp;gt; 'new', 'action' =&amp;gt; 'view', 'rollback'
=&amp;gt; false));

it seems that the workflow-variables status and action still have the values
"new" and "edit"&lt;/pre&gt;</description>
    <dc:creator>Timo Hähne</dc:creator>
    <dc:date>2010-07-02T06:06:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4656">
    <title>General workflow-questions (esp. loop/stop/rollback inworkflow)</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4656</link>
    <description>&lt;pre&gt;Hello,

I spend a lot of time in the last days to work with the workflow-component
of ezComponents  and it looks really great.

Unfortunately I have some huge problems with the realisation of a
test-workflow  especially with something like loops or rollbacks in the
workflow. I try to describe my test-workflow:

When a new person is insert into the database the workflow has to be
started. A new person gets the status "new".

The new persons have to be viewed by a system-user. If the person is viewed
in the application, the status of the person has to be changed from "new" to
"viewed". After a person is viewed it has to be assigned to a system-user
who has to accept or cancel the person. If a person is assigned, the status
has to be changed from "viewed" to "assigned". If the person is accept the
new status is also "accept", if its cancelled the status is "cancelled".

Durring the process the system/the workflow should modify the status of the
person and/or send different mails and/or reminder  against&lt;/pre&gt;</description>
    <dc:creator>Timo Hähne</dc:creator>
    <dc:date>2010-06-30T11:31:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4655">
    <title>ezcInputFormDefinitionElement problem</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4655</link>
    <description>&lt;pre&gt;Hi there!

I'm looking for a hint on the following problem using the components, 
any help appreciated.
One of my templates provides a form with an input field called "password":

&amp;lt;form action="/authenticate" method="post"&amp;gt;
&amp;lt;fieldset&amp;gt;
&amp;lt;input name="password" id="password" class="textinput" type="password" /&amp;gt;
&amp;lt;button type="submit"&amp;gt;Login&amp;lt;/button&amp;gt;
&amp;lt;/fieldset&amp;gt;
&amp;lt;/form&amp;gt;

Any submit will call the action slot "authenticate" that will validate 
the form data according to my form definition:

private static function getFormDefinition() {

$definition = array(
'password' =&amp;gt; new ezcInputFormDefinitionElement(
ezcInputFormDefinitionElement::REQUIRED,
'callback',
array('appFormTools', 'checkEmpty')
)
);
return $definition;

}

Here's the callback function for the password:

class appFormTools {

public static function checkEmpty($string) {

$string = filter_var($string, FILTER_SANITIZE_STRING);
if (strlen($string) !== 0) {
return $string;
} else {
return false;
}

}

}

I decided to &lt;/pre&gt;</description>
    <dc:creator>Simon Wippich</dc:creator>
    <dc:date>2010-06-27T05:03:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4654">
    <title>Re: Error Parsing Mail</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4654</link>
    <description>&lt;pre&gt;Hi Alessio,

On 06/08/2010 05:23 PM, Alessio Spoto wrote:




first of all, you should upgrade your components installation to the
recent version 2009.2.1. Maybe this already fixes the issue.

Without seeing the script and knowing the particular server, it's hard
to debug this error. Do you get the error constantly or just now and then?

For further conversation, please use our new mailinglist:

zeta-dev-d1GL8uUpDdXTxqt0kkDzDmD2FQJk+8+b&amp;lt; at &amp;gt;public.gmane.org

Thanks,
Toby
&lt;/pre&gt;</description>
    <dc:creator>Tobias Schlitt</dc:creator>
    <dc:date>2010-06-08T16:00:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4653">
    <title>Error Parsing Mail</title>
    <link>http://permalink.gmane.org/gmane.comp.web.ezcomponents.devel/4653</link>
    <description>&lt;pre&gt;Hello,
I've a php script that run in a crontab enviroment (CLI), each ten minutes
i read the mail from an account using IMAP, (i only need the headers)
then put the results in a mysql dbase

thi'is the error :

PHP Fatal error:  Uncaught exception 'ezcMailTransportException' with message 'An error occured while sending or receiving mail. Could not read from the stream. It was probably terminated by the host.' in /root/parser/ezc/Mail/src/transports/transport_connection.php:217
Stack trace:
#0 /root/parser/ezc/Mail/src/transports/imap/imap_transport.php(2655): ezcMailTransportConnection-&amp;gt;getLine()
#1 /root/parser/ezc/Mail/src/transports/imap/imap_transport.php(739): ezcMailImapTransport-&amp;gt;getResponse('A0002')
#2 /root/parser/parser3a.php(9): ezcMailImapTransport-&amp;gt;selectMailbox('Inbox')
#3 {main}
   thrown in /root/parser/ezc/Mail/src/transports/transport_connection.php on line 217

The ezComponents are in version 2009.1

php -v returns :
PHP 5.2.10 (cli) (built: Nov 13 2009 11:24:03)
Copyright (c) 1997-2009 Th&lt;/pre&gt;</description>
    <dc:creator>Alessio Spoto</dc:creator>
    <dc:date>2010-06-08T15:23:55</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.ezcomponents.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.ezcomponents.devel</link>
  </textinput>
</rdf:RDF>
