Download project files

How do I verify a download?


0.1.0 release from the 0.1.x series released

Release information
Release notes:

Version 0.1.0 (2013-06-23)
------------------------------------------------------------------------------

* This is a new upstream release of Web::class

BUGS FIXED

- none -

NEW FEATURES

* Allows setting the 'secure' flag for the session cookie
* Better sandbox for Lua scripts
* New Lua functions: url(), json_decode(), hmac(), base64_encode()
* Added member 'remoteip' to systemData variable
* Added a new template function: setuserdata()
* Added LESS compiler

UPGRADING

* Lua sandbox is now more aggressive - check that you LUA scrips still work.
* A new database field needs to be added to the master database: 'securecookies'

Changelog:

2013-06-23 Benedikt Bär <email address hidden>

 * New feature: LESS compiler

 You can now use less stylesheets.

 .less files are automatically compiled into
 .css files if they have changed.

 Signed-off-by: Benedikt Bär <email address hidden>

2013-01-13 Benedikt Bär <email address hidden>

 * New feature: New template function

 You can now use the setuserdata() function in
 your templates.

 This can be used to set a session variable from
 your templates.

 Signed-off-by: Benedikt Bär <email address hidden>

2012-12-14 Benedikt Bär <email address hidden>

 * New feature: Include "remoteip" in systemData

 The systemData variable has gained a new member,
 "remoteip".

 This can be used to get the IP address of the
 user browsing the site.

 Signed-off-by: Benedikt Bär <email address hidden>

2012-12-14 Benedikt Bär <email address hidden>

 * Bugfix for Lua

 The systemData variable was not passed correctly
 to lua scripts in the compiled PHP templates.

 This commit fixes this so scripts that rely on
 the systemData variable work.

 Signed-off-by: Benedikt Bär <email address hidden>

2012-12-01 Benedikt Bär <email address hidden>

        * New feature: New Lua functions

 A new hmac() function in the Lua scripts is
 available. It can be used to HMAC-sign data.

 A new base64_encode() function in the Lua
 scripts is available. It can be used to base64
 encode data.

        Signed-off-by: Benedikt Bär <email address hidden>

2012-11-30 Benedikt Bär <email address hidden>

        * New feature: New Lua functions

 A new url() function in the Lua scripts is
 available. It can be used to do HTTP/HTTPS
 GET and POST requests.

 A new json_decode() function in the Lua scripts
 is available. It can be used to decode JSON
 strings.

        Signed-off-by: Benedikt Bär <email address hidden>

2012-11-30 Benedikt Bär <email address hidden>

        * Improved feature: Better Lua security

 Some of the potentially harmfull functions in
 Lua were not disabled, which could lead to
 security issues.

 This commit adds some more disabled functions
 in the Lua interpreter. Normal scripts should
 not be affected.

        Signed-off-by: Benedikt Bär <email address hidden>

2012-11-18 Benedikt Bär <email address hidden>

 * New feature: 'secure' flag for cookies

 Up until now, the session cookie Web::class sent
 where accessible for all connections. However,
 sometimes you might want to run a site on HTTPS
 only, so we need a way to set the cookie to be
 sent over HTTPS only.

 This commit implements a new database value in the
 master database, "domains" table, which you can use
 to enable the 'secure' cookie flag.

 Signed-off-by: Benedikt Bär <email address hidden>

File Description Downloads
download icon webclass-0.1.0.tar.gz (md5, sig) 0.1.0 Release 37
last downloaded 41 weeks ago
Total downloads: 37

0.0.4 release from the 0.0.x series released

Release information
Release notes:

Version 0.0.4 (2012-12-14)
------------------------------------------------------------------------------

* Bugfix release

BUGS FIXED

* The systemData variable was not passed correctly

NEW FEATURES

- none -

Changelog:

2012-12-14 Benedikt Bär <email address hidden>

 * Bugfix for Lua

 The systemData variable was not passed correctly
 to lua scripts in the compiled PHP templates.

 This commit fixes this so scripts that rely on
 the systemData variable work.

 Signed-off-by: Benedikt Bär <email address hidden>

File Description Downloads
download icon webclass-0.0.4.tar.gz (md5, sig) 0.0.4 Release 32
last downloaded 41 weeks ago
Total downloads: 32

0.0.3 release from the 0.0.x series released

Release information
Release notes:

Version 0.0.3 (2012-11-11)
------------------------------------------------------------------------------

* Bugfix release

BUGS FIXED

* LuaUtils class not properly shifting the results on multi-dimensional arrays
* Sitemap app still using the old version of the database access functions

NEW FEATURES

- none -

Changelog:

2012-11-11 Benedikt Bär <email address hidden>

 * Bugfix for Lua return arrays

 The LuaUtils class was not properly shifting the
 array results on multi-dimensional arrays.

 This commit fixes this, so you can return multi-
 level arrays in your PHP functions.

 Signed-off-by: Benedikt Bär <email address hidden>

2012-11-10 Benedikt Bär <email address hidden>

 * Bugfix for sitemap app

 The sitemap app was still using the old
 version of the database access functions, and
 thus it was not possible to generate a sitemap.

 This commit fixes the sitemap app to use
 the new functions.

 Signed-off-by: Benedikt Bär <email address hidden>

File Description Downloads
download icon webclass-0.0.3.tar.gz (md5, sig) 0.0.3 Release 18
last downloaded 41 weeks ago
Total downloads: 18

0.0.2 release from the 0.0.x series released

Release information
Release notes:

Version 0.0.2 (2012-11-09)
------------------------------------------------------------------------------

* Bugfix release

BUGS FIXED

* Sendmail function used old database functions
* LP #1075526: Makefile does not work on newer make versions

NEW FEATURES

- none -

Changelog:

2012-11-09 Benedikt Bär <email address hidden>

 * Bugfix for sendmail Lua function

 The sendmail function was still using the old
 version of the database access functions, and
 thus it was not possible to send e-mails.

 This commit fixes the sendmail function to use
 the new functions.

 Signed-off-by: Benedikt Bär <email address hidden>

2012-11-06 Benedikt Bär <email address hidden>

 * Bugfix for makefile

 The makefile we used did not work on newer versions
 of make shipped with new distributions, so it was
 not possible to generate the documentation.

 This commit changes the makefile to be a simple bash
 script.

 LP: #1075526

 Signed-off-by: Benedikt Bär <email address hidden>

File Description Downloads
download icon webclass-0.0.2.tar.gz (md5, sig) 0.0.2 Release 14
last downloaded 40 weeks ago
Total downloads: 14

0.0.1 release from the 0.0.x series released

Release information
Release notes:

Version 0.0.1
------------------------------------------------------------------------------

* Initial release

NEW FEATURES

* Templating support (Twig)
* Lua support for scripting pages
* Database support (MySQL)
* Send mails via Swiftmailer
* Translation infrastructure
* PHP application support

Changelog:

2012-11-06 Benedikt Bär <email address hidden>

 * First release

File Description Downloads
download icon webclass-0.0.1.tar.gz (md5, sig) 0.0.1 Release 18
last downloaded 41 weeks ago
Total downloads: 18