WAML - Web Application Markup Language

WAML - Web Application Markup Language

Posts 1-2 of 2
  • Evgenios Skitsanos
    Evgenios Skitsanos    Group moderator
    The company name is only visible to registered members.
    Sample application syntax
    Based on UI objects implemented till now you can already start doing simple web applications, below is the sample of web application that has Application Layout, Accordion and couple of other nice things:

    <?xml version="1.0" encoding="utf-8"?>
    <wa:Application xmlns="http://www.w3.org/1999/xhtml" xmlns:wa="http://grafeio.eu/waml/" title="Skitsanos WAML UI Framework">
    <wa:Imports>
    <wa:Resource type="stylesheet" url="app.css"></wa:Resource>
    </wa:Imports>

    <wa:Module>
    <wa:Layout id="ltApplication">
    <wa:LayoutPanel initialSize="35" location="north" split="false">
    <span style="color:#98c0f4; font-size:1.8em;">WAML UI Framework</span>
    </wa:LayoutPanel>

    <wa:LayoutPanel autoScroll="true" collapsible="true" initialSize="200" location="west" split="true" title="Actions" titlebar="true">
    <wa:Accordion id="acc1">
    <wa:AccordionPanel contentUrl="docs/waml-objects.waml" id="panel1" title="Documentation"></wa:AccordionPanel>
    <wa:AccordionPanel contentUrl="docs/waml-samples.waml" id="panel2" title="Samples"></wa:AccordionPanel>
    <wa:AccordionPanel contentUrl="docs/ajax-frameworks.htm" id="panel3" title="Frameworks Used"></wa:AccordionPanel>
    </wa:Accordion>
    </wa:LayoutPanel>

    <wa:LayoutPanel autoScroll="true" location="center">
    <div style="padding: 10px;">
    <wa:Box id="boxRounded" Corners="all" CornerType="smooth" InnerColor="#888" OuterColor="#fff" style="width:600px; padding: 3px; color: #fff;" contentUrl="docs/waml.waml"/>
    </div>
    </wa:LayoutPanel>

    <wa:LayoutPanel initialSize="20" location="south" split="false">
    <div style="background-color:#c3daf9;">© 2007, Evgenios Skitsanos. | <a href="http://www.skitsanos.com" target="_blank">http://www.skitsanos.com</a></div>
    </wa:LayoutPanel>
    </wa:Layout>
    </wa:Module>
    </wa:Application>
  • Evgenios Skitsanos
    Evgenios Skitsanos    Group moderator
    The company name is only visible to registered members.
    Re: Sample application syntax
    at this moment you can see the sample code at http://www.mywdk.com/default.waml?mode=source or its workign pure HTML output at http://www.mywdk.com/default.waml