HTML SQL language Alinous-Core eclipse plugin
http://www.alinous.org
go to Japanese site
What's Alinous Downloads Documents Contributors Partners Contact
What's Alinous
Downloads
Documents
System environment
Getting started
Alinous-Core's functions
About first sample
Reference Manual
Contributors
Partners
Contact
Top Page
ECサイト構築パッケージOpen-EC ECサイト構築パッケージOpen-EC
INFORMATION
Now Alinous-Core is Release1.0.x.
You can download it as Eclipse-Plugin.

FREE DOWNLOAD

  • Developer's blog
  • Alinous-CMS(Japanese only)
  • Webデザイン制作 Mer Design








  • Alinous-Core's functions

    The Alinous-Core can control web programing features.
    I recomend you to take a look at Getting started Alinous-Core and run the example project at the first time.



    How the Alinous-Core works.

    The page of Alinous-Core consists of "*.html" and "*.alns" files. The "*.alns" files are optional. We can see some pairs of "*.html" and "*.alns" files those have same name. For example, "show.html" and "show.alns".



    On accessing "http://localhost/select/show.html", the Alinous-Core executes the "show.alns" file. The the files with ".alns" extention are the AlinousScript files. The AlinousScript executed before showing HTML file. By executing it, the Alinous-Core make variables to put into HTML file. And we can put the variables into HTML design by using Alinous-Core's macro.

    Please take a look at What is Alinous-Core



    Using SQL in AlinousScript

    We can use SQL in the AlinousScript. The detail is here



    Handle some HTMLs those contain forms as component

    The Alinous-Core has the virtual frame function. By putting "alns:tagid" and "alns:inner" attributes.
    The virtual frame is represented by the TD tag. Each part has own status and they works independently.

    For example.
    parent.html
    <HTML>
    <BODY>
    
    <TABLE>
        <TR>
            <TD alns:tagid="child1" alns:inner="child.html">
            </TD>
        </TR>
        <TR>
            <TD alns:tagid="child2" alns:inner="child.html">
            </TD>
        </TR>
    </TABLE>
    </BODY>
    </HTML>
    

    The "child.html" and "child2.html" are shown in the two TD tags in the "parent.html".

    child.html
    <HTML>
    <BODY>
        <FORM name="form1" action="child2.html">
            Input something : <input type="text" name="sample"><BR>
            <input type="submit" value="Next"/>
        </FORM>
    </BODY>
    </HTML>
    

    child2.html
    <HTML>
    <BODY>
    Please push the "Back" button.
    <BUTTON alns:back="true">Back</BUTTON>
    </BODY>
    </HTML>
    

    Example with picture is there at About first sample.


    Validation for HTML's from input variables

    The Alinous-Core supports validation for from input variables. We can easily make custom validation logic.
    The detail is here



    Http session

    The Alinous-Core has function to handle session values very easily.
    The detail is here



    Forwarding and URL redirection

    The Alinous-Core supports forwarding and URL redirection. We can forward or redirect by returning a string variable in AlinousScript.
    The detail is here



    Authentication

    The Alinous-Core supports Basic Authentication and Form Authentication.
    The detail is here



    SMTP

    The Alinous-Core supports sending e-mail via SMTP.
    The detail is here



    File upload

    The Alinous-Core supports uploading files via HTTP.
    The detail is here



    RSS

    The Alinous-Core supports RSS.
    The detail is here



    Java Connector

    The Alinous-Core is written in Java language and works on the Servlet container. So, Alinous-Core can load jar file in "ALINOUS_HOME/lib" folder. The hot deploy of the Jar file is available.
    The detail is here

    COPYRIGHT (C) 2007 CROSSFIRE JAPAN INC. All Right Reserved. This page is LINK FREE.