Hello,
>>> Hello,
>>=20
>> Mind me for asking (I just arrived), what is xml2php? I=B4m just wonde=
ring if it
>> would not have much to with the goals of MetaL: http://www.meta-langua=
ge.net/
>>=20
>> Regards,
>> Manuel Lemos
>>=20
>
>The idea behind xml2php is much more simple than metal, it's a utility
>designed to take xml "array syntax" and create php arrays from the xml.
>
>Briefly:
>
> <root>
> <array>
> <element1>value</element1>
> <element2>value</element2>
> </array>
> </root>
>
> $root =3D array(
> 'element1' =3D> 'value',
> 'element2' =3D> 'value'
> );
>
>Useful for configuration files, etc that shouldn't be xml at runtime, bu=
t
>nice to edit xml instead of a php array.
Funny, that is exactly the purpose of one of the modules of MetaL: applic=
ation global options. :-)
Actually, I told you before that there is a great deal of overlap in Bina=
ryCloud and Integral, which is Web based integrated system of modular app=
lications.
>Actually, manuel, I think this list is an appropriate place to discuss
>MetaL, as I certainly intend to work with it an support it within
>binarycloud.
I would prefer that it would be discussed in the MetaL development mailin=
g list, but since it is not open publically until I open the source of Me=
taL to the general public, I guess it is ok to discuss anything related h=
ere because currently MetaL is most oriented to generate PHP than any oth=
er language.
So, what do you want to discuss about MetaL?
Regards,
Manuel Lemos
|