[horde] How do I go about starting a new Horde project?
michael young
mhyoung at valdosta.edu
Mon Jul 14 13:01:37 PDT 2003
this is what's in the docs.
if ((condition1) || (condition2)) {
action1;
} elseif ((condition3) && (condition4)) {
action2;
} else {
defaultaction;
}
I always use the GNU style.
if ((condition1) || (condition2))
{
action1;
}
elseif ((condition3) && (condition4))
{
action2;
}
else
{
defaultaction;
}
Like so.
Which does appear to be exceptable for use in Horde.
Eric Rostetter wrote:
>Quoting michael young <mhyoung at valdosta.edu>:
>
>
>
>>do the coding standards apply to all projects or just Horde?
>>
>>
>
>They apply to Horde and all Horde projects.
>
>
>
>>if yes, are
>>they set in stone?
>>
>>
>
>Soft stone. Breakable, but not easily ;)
>
>--
>Eric Rostetter
>The Department of Physics
>The University of Texas at Austin
>
>Why get even? Get odd!
>
>
>
>
More information about the horde
mailing list