Freitag, 27. Oktober 2017

Scoriet now open-source

Scoriet is now open-source

GitHub repository:

https://github.com/Harveyhase68/scoriet

Scoriet is written in WinDev, http://www.windev.at a french programming language, a 4GL RAD Tool.

http://www.scoriet.com is now in English & German!

Sonntag, 15. Mai 2016

Scoriet new verision 0.0.0.5 and good news!!!

Hello,

yesterday I updated Scoriet to version 0.0.0.5

several bugs fixed, some minor language updates.

Good news:

I updated to WinDev 21!!!

There is a new control, named "Wire control", which is very good for my dictionary!!


Yeah!! This control I can add at runtime, connect every control I like and if the user moves the control, the wire follows!

So stayed tuned, for my alpha dictonary!

Sonntag, 27. September 2015

Scoriet

A new attempt to develop a source code generator.

Just import a database, all tables, fields, keys, foreign keys (links to other tables).

A project holds a database, each import a version number will count up. So it is possible (later?) to add a .sql script to update the database from version to version.

A template is a text file, hold's everything to generate a source code file:

{for {nmaxitems}}
  <div class="control-group">
    <label class="control-label">{item.caption}</label>
      <div class="controls">
        <label class="checkbox">
        <?php echo $data['{item.name}'];?>
      </div>
    </label>
  </div>
{endfor}

This is a sample template code piece. nmaxitems is a placeholder (variable) for a files items. All items are in nmaxitems, without keys nmaxnokeyitems.

Each template can be programmed in my template language sclanguage or in WinDev Language.

What source codes can be generated?? Nearly all, all languages that are plain text files! So PHP, Laravel, Yii, C++, C#, VB.NET, VB, Java, HTML, HTML5, CSS, CSS3, Javascript aso.

Each template can be part of a whole generation. So if you plan to generate, for example a complete project, a template can hold several files. These are the page types:

1) copy file
2) copy directory
3) one file
4) one file on each language
5) for each file
6) for each files on each language

So pretty complex? Not really, once someone made a template for you, you simple import your database, generate the project and the application is ready.

Have a try on http://www.scoriet.com just goto downloads and load your copy.

A documentation is started on http://www.scoriet.com/dokumentation/ at this moment, our Scoriet website is in German language, but the application is English and German! So documentation and website will be multi language soon!

SCORIET is free!! The only limitation is, you can use only mysql and you can only change the default templates, but install new templates. Keep in mind, on every update, all changes to the base templates are lost, so copy your changes to a backup directory, restore it, after update!!!!

yours
Alexander Predl