<?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 about="http://blog.gmane.org/gmane.comp.php.seagull.general">
    <title>gmane.comp.php.seagull.general</title>
    <link>http://blog.gmane.org/gmane.comp.php.seagull.general</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.php.seagull.general/9255"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9254"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9253"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9252"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9251"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9250"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9249"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9248"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9247"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9246"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9245"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9244"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9243"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9242"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9241"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9240"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9239"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9238"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9237"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.seagull.general/9236"/>
      </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.php.seagull.general/9255">
    <title>Re: css media types</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9255</link>
    <description>

Hi Clay


Yes this is what Dmitri recommended a emails ago.  It's standard  
practice in YAML which seems to be the leading CSS fw these days, I  
certainly enjoy using it :-)

cheers

--
Demian Turner, founder
Seagull Systems, http://seagullsystems.com

Check out some sites built with the Seagull framework:
http://kindo.com/
http://www.babyfy.com/
http://www.artflock.com/
http://www.podcast.de/








--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>Demian Turner</dc:creator>
    <dc:date>2008-11-19T21:30:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9254">
    <title>css media types</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9254</link>
    <description>
There's been some past discussion of specifying css media types with
SGL_Output, but I have found a CSS workaround that has worked in every
browser I've tried so far.

Include the css file in your module's manager as usual, but in the css
file, encapsulate all the CSS in a media directive:

&lt; at &gt;media screen,projection {
 h1 {
   color: blue;
 }
}
&lt; at &gt;media print {
h1 {
   color: black;
}

}

This produces the desired result without having to include the
"media=print" directive in the &lt;link&gt; tag. I'm using this to the
extent of showing 2 totally different views when printing vs. viewing
in browser, for printable forms.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>Clay Hinson</dc:creator>
    <dc:date>2008-11-19T19:55:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9253">
    <title>Re: working with YAML and SGL</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9253</link>
    <description>

On 2008.14.11, at 17:35, Michael K. Alber wrote:


Yes. I've done approx 5-6 YAML based HTML/CSS projects. Really nice  
stuff. I'm a big fan of .clearfix, .floatbox and .subcolumns.  
Mentioned rules kept my sanity in order while testing in IE6. :)


I just use {makeCssOptimizerLink(##,#layout_main.css#):h} where  
"layout_main.css" is main CSS file for 2 cols layout.


There are many ways to implement this. Mine main goal is to pass all  
files through SGL_Optimizer. To achieve this we can use $output- 
 &gt;layout helper variable (like you do) to change main CSS layout in a  
header. Or simply add another style sheet over existing one in  
appropriate manager e.g.
---
$output-&gt;addCssFile('layout_simple.css');
---

Or you can "hack" www/themes/css/modulename.css
---
require dirname(__FILE__) . '/screen/layout_simple.css';
---

Above example doesn't need any additional PHP code to force another  
layout for specific module.

My layout_main.css is similar to yours layout_xxx.css.

---
/* YAML core */
&lt; at &gt;import url(&lt;?php echo $baseUrl; ?&gt;/css/yaml/core/base.css);
&lt;?php
// Doris specific YAML based layout
require dirname(__FILE__) . '/screen/layout.css';
// Doris specific YAML based styles
require dirname(__FILE__) . '/screen/typo.css';
// Seagull form styles
require dirname(__FILE__) . '/screen/forms.css';
// Doris blocks
require dirname(__FILE__) . '/screen/blocks.css';
// Doris specific elements
require dirname(__FILE__) . '/screen/elements.css';
?&gt;
---
I do require project specific style sheets via PHP construction to be  
able to use optimizer's variable like $baseUrl and others.

--
Dmitri

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>Dmitri Lakachauskis</dc:creator>
    <dc:date>2008-11-14T17:59:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9252">
    <title>Re: working with YAML and SGL</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9252</link>
    <description>Yevgeniy Viktorov and I are working on a few projects together, he has
done the themes using YAML, it is great stuff.

A number of the site we've working on have required that the home page
and at least the secondary pages have different layouts. An example is
http://www.vinesos.com/ Yevgeniy has it setup with the following in the
master header: {makeYamlLinks(#fallback|subpages.css||default|
default.css#):h} So if the current module is in the list, in this case
"default|default.css" then layout_default.css and basemod_default.css
are used, otherwise layout_subpages.css and basemod_subpages.css are
used. I tweaked some of his stuff to allow the layout.css and
bassemod.css to change based on module name, so if those files exist,
when in the case of the contacus module, if the files
layout_contactus.css exist use it, otherwise use layout_default.css.

My tweak: 
function makeYamlLinks($defaultLayout = 'default.css')
{
        // Check for a module specific value
        if (is_file(realpath(SGL_WEB_ROOT .
"/themes/$theme/css/layout_{$this-&gt;moduleName}.css"))) {
            $masterLayout = $this-&gt;moduleName . '.css';
        } else {
            $masterLayout = $defaultLayout;
        }
 .....

I like the flexibility to be able to change layouts based on either
module or some other setting, i.e. $output-&gt;layout = 'xyz', while having
a single master.html / header.html. 

See examples below:

For the Default Module (usually the home page) layout_default.css looks
like this (the slim_ = running the css file through
http://developer.yahoo.com/yui/compressor/ )
   /* import core styles | Basis-Stylesheets einbinden */
   &lt; at &gt;import url(../../../yaml/core/slim_base.css);

   /* import framework styles */
   &lt; at &gt;import url(screen/slim_forms.css);
   &lt; at &gt;import url(screen/slim_blocks.css);
   &lt; at &gt;import url(screen/slim_common.css);

   /* import screen layout | Screen-Layout einbinden */
   &lt; at &gt;import url(../../../yaml/navigation/nav_shinybuttons.css);
   &lt; at &gt;import url(screen/slim_basemod.css);
   &lt; at &gt;import url(screen/slim_basemod_default.css);
   &lt; at &gt;import url(screen/slim_content.css);

   /* import print layout | Druck-Layout einbinden */
   &lt; at &gt;import url(print/slim_print_100.css); 
    

And basemod_default.css includes
  /* #col1 becomes the middle column | #col1 wird zur mittleren Spalte
*/
  #col1 { width: 480px; float:left; margin-left: 240px; }
  #col1_content {padding-left: 10px; padding-right: 10px}

  /* #col2 becomes the left column | #col2 wird zur linken Spalte */
  #col2 { width: 240px; float:left;  margin-left: -720px; }
  #col2_content {padding-left: 20px; padding-right: 10px }

  /* #col3 becomes the right column | #col3 wird zur rechten Spalte */
  #col3 { margin-left: -5px; margin-right: 0; width: 240px;
float:right;}
  #col3_content {padding-left: 10px; padding-right: 20px}

to control the page layout. 

The ContactUs module might have a different layout, there would be a
layout_contact.css and basemod_contactus.css

On Fri, 2008-11-14 at 12:49 +0000, Demian Turner wrote:

- Michael Alber
InterAct Digital Media

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---

</description>
    <dc:creator>Michael K. Alber</dc:creator>
    <dc:date>2008-11-14T15:35:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9251">
    <title>working with YAML and SGL</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9251</link>
    <description>
Hey guys

I'm guess there's quite a few of you using YAML with Seagull.  I just  
got into it a lot more in my last contract, very impressed with what  
I've seen, even read most of the 100 page manual ;-)

Dmitri and I were recently talking about how best to integrate YAML  
and Seagull.  Here's the convo so far, feel free to jump in with your  
input.


On another slightly related note, I recently did a site with masses of  
forms, something that would have taken ages to do by hand, and did the  
whole thing with wufoo - amazing results - what a great way of  
working!  Check it out if you haven't used it yet.  But there's one  
major and painful hack required to get wufoo stuff to work with YAML.   
Basically all wufoo form elements have &lt;li&gt;s as parent elements, and  
the top level &lt;ul&gt; element requires a class="left" to correct the  
ayout.  Anyone had similar probs?

cheers

--
Demian Turner, founder
Seagull Systems, http://seagullsystems.com

Check out some sites built with the Seagull framework:
http://kindo.com/
http://www.babyfy.com/
http://www.artflock.com/
http://www.podcast.de/








--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>Demian Turner</dc:creator>
    <dc:date>2008-11-14T12:49:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9250">
    <title>Re: makeUrl: send action value from php file</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9250</link>
    <description>
Hi Prabhat,

You can try using {assign()}, I have used it for a similar situation.

instead of:
{makeUrl(#del_Action#,#hostconf#,#portal#,adminHosts,#delHost|
$value#)}

try:
{assign(MyDelAction,del_Action)}

{makeUrl(#MyDelAction#,#hostconf#,#portal#,adminHosts,#delHost|
$value#)}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>ed209</dc:creator>
    <dc:date>2008-11-13T10:15:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9249">
    <title>makeUrl: send action value from php file</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9249</link>
    <description>
Hello friends,

I have two functions for listing the data (both show different data),

both are calling same template,

each listing method call two diffrent delete actions


From list action i send name of delete action

PHP code-
function _cmd_list() : --
====================================
        $cmd = "qconf -ss";
        //$result = BaseMgr::get_sge_command($cmd);
        $ahost_arr = BaseMgr::run_shell_command($cmd);

        $i=1;
        foreach($ahost_arr as $key=&gt;$value)
        {
            $current_ahost[$i] = $value;
            $i++;
        }

        $output-&gt;adminHosts = $current_ahost;
        $output-&gt;del_Action = "shDelete";


=====================================


Html code -

=====================================

&lt;tr class="{switchRowClass()}" flexy:foreach="adminHosts,key,value" &gt;
        &lt;td&gt;{key}&lt;/td&gt;
        &lt;td&gt;{value}&lt;/td&gt;
        &lt;td&gt;
           &lt;a href={makeUrl
(#del_Action#,#hostconf#,#portal#,adminHosts,#delHost|$value#)}"&gt;
              Delete
           &lt;/a&gt;
        &lt;/td&gt;
      &lt;/tr&gt;

=====================================

Problem:--

Now problem is How we call value of variable {del_Action} in makeUrl

when i write {del_Action} out side of makeUrl it behave variable but
in side makeUrl behave like text.



Genrated Source Code:---

========================================
 &lt;tr class="backLight"&gt;
        &lt;td&gt;1&lt;/td&gt;&lt;td&gt;abc.org&lt;/td&gt;
        &lt;td&gt;
           &lt;a href="http://somesite/index.php/portal/hostconf/action/
del_Action/delHost/abc.org/" &gt;
               Delete
          &lt;/a&gt;
        &lt;/td&gt;
  &lt;/tr&gt;

========================================

I want instead of action name "del_Action", the name whic is send by
list action.


Thanks
Prabhat





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>prabhat</dc:creator>
    <dc:date>2008-11-12T13:31:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9248">
    <title>schemaspy</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9248</link>
    <description>hey AJ
That schemaspy project is amazing - let's have a diagram party, when I send
in the Inclued stuff we'll have diagrams galore :-)

cheers

Demian

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---

</description>
    <dc:creator>Demian Turner</dc:creator>
    <dc:date>2008-11-12T09:03:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9247">
    <title>Re: Seagull 1.0 - Initial Default Page Display - Sequence Diagram</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9247</link>
    <description>Hey,

Since we're on the subject of reverse engineering. There's an app  
called SchemaSpy[1] that will reverse engineer the database and create  
some nice diagrams[2] as well. With SchemaSpy and BOUML it would give  
us some diagrams that would be very useful for all SGL developers :)

Cheers,
AJ

[1] http://schemaspy.sourceforge.net/
[2] http://schemaspy.sourceforge.net/sample/relationships.html

On Nov 11, 2008, at 1:57 AM, Demian Turner wrote:


AJ Tarachanowicz II
Developer
Seagull PHP Framework - http://www.seagullproject.org





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---

</description>
    <dc:creator>AJ Tarachanowicz II</dc:creator>
    <dc:date>2008-11-12T08:00:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9246">
    <title>RE: formateDate does no output</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9246</link>
    <description>
Hello again,

can someone include the following:

$locale =&amp; SGL_Locale::singleton();
echo $locale-&gt;formatDate(time());

and tell me if it outputs something.

Cheers,
Cyril

ps: Sorry, but I still have not found what's wrong.


--- cyril alias lyric &lt;lyric680-web&lt; at &gt;yahoo.de&gt; schrieb:

http://trac.seagullproject.org/wiki/Howto/Internationalisation#Locale



      


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>cyril alias lyric</dc:creator>
    <dc:date>2008-11-12T00:40:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9245">
    <title>Re: Seagull 1.0 - Initial Default Page Display - Sequence Diagram</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9245</link>
    <description>
hey Michael



Super, that one is much better. It is very cool that this was reverse  
engineered, I did something similar by hand a while ago and it took  
ages!

I will try and post my Inclued stuff by the weekend, it's along  
similar lines.

cheers

--
Demian Turner, founder
Seagull Systems, http://seagullsystems.com

Check out some sites built with the Seagull framework:
http://kindo.com/
http://www.babyfy.com/
http://www.artflock.com/
http://www.podcast.de/








--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---

</description>
    <dc:creator>Demian Turner</dc:creator>
    <dc:date>2008-11-11T06:57:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9244">
    <title>Re: Seagull 1.0 - Initial Default Page Display - Sequence Diagram</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9244</link>
    <description>The image has been updated is that better?
http://www.interactpoint.net/seagull/seagull1.0_sequence.png 

On Tue, 2008-11-11 at 00:20 +0000, Demian Turner wrote:


- Michael Alber
InterAct Digital Media

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---

</description>
    <dc:creator>Michael K. Alber</dc:creator>
    <dc:date>2008-11-11T01:27:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9243">
    <title>Re: Seagull 1.0 - Initial Default Page Display - Sequence Diagram</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9243</link>
    <description>I will play with the font size see if it can be clearer. 

BOUML (4.8.1)  - Yes, it is another open-source UML tool, but has the
ability to both reverse engineer and generate PHP code. I did not see
the ability of any of the other tools to read on PHP, this was very
useful for reading in all the classes in SGL. 

On Tue, 2008-11-11 at 00:20 +0000, Demian Turner wrote:


- Michael Alber
InterAct Digital Media

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---

</description>
    <dc:creator>Michael K. Alber</dc:creator>
    <dc:date>2008-11-11T00:43:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9242">
    <title>formateDate does no output</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9242</link>
    <description>
Hello,

I tried the example of
http://trac.seagullproject.org/wiki/Howto/Internationalisation#Locale

$locale =&amp; SGL_Locale::singleton();

echo
$locale-&gt;formatCurrency(2000,I18Nv2_CURRENCY_LOCAL);
echo $locale-&gt;formatDate(time());

'formatCurrency' works, 
but 'formateDate' does no output.

localeCategory is set to 'LC_ALL' in conf-file.
I looked deeply into the code (also PEAR's ;-), but I
could not find the reason.

Please, help me if you can.

Thanks,
Cyril




      


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>cyril alias lyric</dc:creator>
    <dc:date>2008-11-11T00:39:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9241">
    <title>Re: Seagull 1.0 - Initial Default Page Display - Sequence Diagram</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9241</link>
    <description>
Hey Michael

This looks pretty interesting, but the font size is a fraction too  
small, any way to make it bigger?  I have a similar analysis with  
Inclued, an include path analysis with graphviz output, will post it  
next time I get a chance.

I saw your comments on the wiki about the BOUML tool - seems good,  
would you recommend it as a useful part of a developer's toolkit?

cheers

Demian


--
Demian Turner, founder
Seagull Systems, http://seagullsystems.com

Check out some sites built with the Seagull framework:
http://kindo.com/
http://www.babyfy.com/
http://www.artflock.com/
http://www.podcast.de/








--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---

</description>
    <dc:creator>Demian Turner</dc:creator>
    <dc:date>2008-11-11T00:20:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9240">
    <title>Seagull 1.0 - Initial Default Page Display - Sequence Diagram</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9240</link>
    <description>
I tired to create sequence diagram for the process of the initial
display of the default module, i.e. http://www.acme.com/index.php where
default module and manager are set to default / default

see http://www.interactpoint.net/seagull/seagull1.0_sequence.png

a. is the diagram correct?
b. is it useful to anyone else?

Created using BOUML (http://bouml.free.fr/)

- Michael K. Alber
ONE2Market LLC
- Michael Alber
InterAct Digital Media

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---

</description>
    <dc:creator>Michael K. Alber</dc:creator>
    <dc:date>2008-11-10T20:28:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9239">
    <title>Re: Problems with trunk</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9239</link>
    <description>

Hi Fabio

The following works for me, without any changes:

svn co http://svn.seagullproject.org/svn/seagull/trunk

Apologies for the slow reply to the other threads, have been very busy  
with a new contract, will try to respond one evening early this week.

cheers

Demian

--
Demian Turner, founder
Seagull Systems, http://seagullsystems.com

Check out some sites built with the Seagull framework:
http://kindo.com/
http://www.babyfy.com/
http://www.artflock.com/
http://www.podcast.de/








--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>Demian Turner</dc:creator>
    <dc:date>2008-11-10T07:05:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9238">
    <title>Re: Seagull Developer needed!</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9238</link>
    <description>
Hi Phil,

  i would like to do that and 800 EUR is acceptable.

George


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>Xinhao Zheng</dc:creator>
    <dc:date>2008-11-10T00:46:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9237">
    <title>Seagull Developer needed!</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9237</link>
    <description>
Hi &lt; at &gt;ll,

due to an accident within the family, I am seeking a Seagull developer, who
is able to finish a running project of mine. Project has to be completed
next week. If anybody can help me out, please drop me a line. (Time costs
around 2-3 days)

What has to  be done:
- Set up an event system (list view and detail view) and a block displaying
5 events.
. Image gallery with any number of galleries. Gallery with tile and any
number of images per gallery. Click on gallery lists images of gallery.
Click on image with detail view of image.
- Set up of publisher to display news items (block with 3 news) a block with
paged list of news (date+title) and a detail view of news.

Screenlayouts for all views exist and site is already running but without
mentioned points. Think work is easy and nothing complicated. Costs around
800,- Euro.

Project coordination is still done by me.

Thanks for any help!
Phil


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>Philipp Simon</dc:creator>
    <dc:date>2008-11-09T11:52:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9236">
    <title>Problems with trunk</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9236</link>
    <description>
Hey,

I cannot check out trunk (http://trac.seagullproject.org/browser/
trunk) anymore since the last major change.

Using the subversion commandline tool (vers. 1.5.2) I get a "svn: XML
data was not well-formed" but no files.

Is anyone else experiencing this as well? Has anyone advice how to fix
this on my side?

Thank you,
Fabio.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>Fabio Bacigalupo</dc:creator>
    <dc:date>2008-11-09T10:42:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.seagull.general/9235">
    <title>How to generate trans_id's?</title>
    <link>http://permalink.gmane.org/gmane.comp.php.seagull.general/9235</link>
    <description>
Hello again,

how are the trans_id's from the section table
generated?
Some of them have 'Null'-values. 
So how can I get a correct trans_id so that I can
associate a translation with it.

Thanks,
Cyril




      


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Seagull PHP Framework General Group" group.
To post to this group, send email to seagull_general&lt; at &gt;googlegroups.com
To unsubscribe from this group, send email to seagull_general+unsubscribe&lt; at &gt;googlegroups.com
For more options, visit this group at http://groups.google.com/group/seagull_general?hl=en
-~----------~----~----~----~------~----~------~--~---


</description>
    <dc:creator>cyril alias lyric</dc:creator>
    <dc:date>2008-11-08T17:31:38</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.comp.php.seagull.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.php.seagull.general</link>
  </textinput>
</rdf:RDF>
