mital / mcrux

Automatically exported from code.google.com/p/mcrux
0 stars 0 forks source link

Create the MCruxSpec File specifications. #11

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Create the MCruxSpec file specifications.
The exact MCrux meta data to be provide by the user as an XML file.
This file will be used for Starting up and creating various views of the
Application.
for now this file will contain Window related stuffs and the list of
pluigns which are to be loaded in JavaScript context.

Original issue reported on code.google.com by mital.d....@gmail.com on 17 Jan 2009 at 5:55

GoogleCodeExporter commented 9 years ago

Original comment by mital.d....@gmail.com on 29 Jan 2009 at 1:17

GoogleCodeExporter commented 9 years ago

Original comment by mital.d....@gmail.com on 29 Jan 2009 at 1:17

GoogleCodeExporter commented 9 years ago
sample MCruxSpecfile.
-------------------------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<mcrux xmlns="http://www.mcrux.com/2009/mcruxspec-version-1">
    <mcruxwindow>
        <url>C:/game/sqlite.html</url>
    </mcruxwindow>
</mcrux>
-------------------------------------------------------------------
The code to parse the above file has been checked in.

Original comment by mital.d....@gmail.com on 1 Feb 2009 at 9:02

GoogleCodeExporter commented 9 years ago
Adding Plugins list in "mcruxspec" file
now the xml file will look like 

-------------------------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<mcrux xmlns="http://www.mcrux.com/2009/mcruxspec-version-1">
    <mcruxwindow>
        <url>C:/game/sqlite.html</url>
    </mcruxwindow>
    <plugins>
        <plugin name="FileSystem"/>
        <plugin name="SQLiteDatabase"/>
    </plugins>
</mcrux>
-------------------------------------------------------------------

Original comment by mital.d....@gmail.com on 1 Feb 2009 at 11:35

GoogleCodeExporter commented 9 years ago
Adding windowTitle, height and width properties of MCruxWindow.
the mcruxwindow will now look like
------------------------------------------------------------------------
<mcruxwindow title="FileSystem Accessor" height="400" width="200">
....
</mcruxwindow>
------------------------------------------------------------------------

Original comment by mital.d....@gmail.com on 1 Feb 2009 at 4:24

GoogleCodeExporter commented 9 years ago
adding multiple window support.
checkout the protocol implementation at 
http://code.google.com/p/mcrux/wiki/MCruxSpecFile

Original comment by mital.d....@gmail.com on 29 Mar 2009 at 6:31