Menu

Plex / News: Recent posts

Plex Project closed down

Well -
the JugendForscht Jury really pissed me on; and after all - there is no really response, here on sourceforge.
cya.

Posted by scio 2009-04-06

Plex 2.6

I want to release Plex 2.6 during the next days -
2.5.9 has a performance of 5000 Requests / ~ 2 Seconds.
Plex 2.6 has a completely rewritten Compiling and Lexing System, and you'll be able to write own rules for the compiler / lexer.
Problems of 1.0-2.5.9 were also, that the filetypes and the index priorities have been handled hardcoded - i fixed that, and cleaned up the webserver code.

Posted by scio 2009-03-25

Plex2.5 Released

Compact framework, Preforking Webserver
- Problem: too slow. ~30 Sec / 5000 Requests

Posted by scio 2009-03-14

First Stable Release

Today i released a stable version of Plex2.
There's a cool installer, which includes framework, config file, and the other stuff.
Software:
I added a Logging System, and a Compiler package.
It even supports something like the "include" function from PHP now. -> compile()

Posted by scio 2009-02-14

Plex2 First Build

I tried to completely rewrite plex, and i made it.
The only fuckup, is the Index Handling.
It even supports PHP now. :)

Posted by scio 2009-02-05

Plex 1 Build 6

Finally...
It works: Plex is useable now, and it can be indentified as a developer engine.
everything < Build 6 was bullshit.

Posted by scio 2009-01-16

Parsing

Not a perfect solution yet, but...
s/^([^\[]*)$/print '$1';/;
s/^\[:(.*?):\]$/$1/;
s/^(.*?)\[:(.*?):\](.*)$/print'$1';\n$2\nprint'$3';\n/;
s/^(.*?)\[:(.*?):\]$/print'$1';\n$2\n/;
s/^\[:(.*?):\](.*)$/$1\nprint'$2';\n/;

as far as plex works fine, without any problems, i'm going to write plex2 -
i want to add the following features:
- code blocks and html mixed in the same line
- filetype definition in config file
- booting script for framework and webserver
- add the gpl

Posted by scio 2008-12-18

Version 1.0 stable is finished :)

Because of school, i had to stop developing plex, but today, i finished the first stable version of my webserver.

The config file is in the YAML format now,
CodeBlocks are working,
and normal CGI Files can be executed too!

Posted by scio 2008-11-30

HTML2PERL

Hi.
My project today was to build a package, that helps me to transform series of strings, of course from html documents, into a serie of valid perl print statements.

The problem was the regular expression:
=~ /<(.*?)>/
my solution is:
=~ /^<(.*?)>$/

Posted by scio 2008-10-01

Bugfix: Webserver v0.1

Please update your version of the webserver.
There's a bug, which forces the webserver daemon to end after some time.

Posted by scio 2008-09-25

Dreamweaver Plugin / First Upload!

Today i finished the Dreamweaver Plugin for Plex developers, and tomorrow, i'll upload the webserver the first time.

Posted by scio 2008-09-24

Inline Perl / Code Blocks

The Codeblocks are now available.
But i'm not very happy with this soloution.
For example, every [:(.*?):] codeblock, is just replaced with an eval($1). Global variables are a real problem now.

Posted by scio 2008-09-23

Webserver Development

A few days ago, i started to develop the webserver. The basic functions of a webserver are ready now. A modified HTTP::Daemon is our HTTP Library.

Posted by scio 2008-09-20