Refactor Raxan classes and functions. Classes are now prefixed with Raxan
Update examples to work with new class names
New system wide events added: page_load, page_prerender, page_postrender
New append() and prepend() methods added to RaxanWebPage
Add static RaxanWebPage::addMethod(). Used to extend the page class
Add local and global state management features to RaxanElement. Use either preserveState() method or the xt-preserveState extended attribute
Add masterTemplate and masterContentBlock properties to RaxanWebPage
Add convenient Raxan::dataSantizer($array = null) method. Loads the RaxanDataSanitizer class on first use.
Add autostart option to the configuration file
Add endResponse() to RaxanWebPage
Add sendError() wrapper to RaxanWebPage
Add Session and Page Data Storage classes: RaxanDataStore, RaxanSessionStorage and RaxanWebPageStorage
Add new config options page.data.storage and session.data.storage. See gateway.config.sample.php
Add serializeOnPostBack option to RaxanWebPage
Add $degradable property to RaxanWebPage
Add uniqueId() method to RaxanElement
Add dynamic properties via __get() to RaxanDataSanitizer
Add suppport for Inline Events with extended attributes xt-bind, xt-delegate, xt-autoupdate
Add textval(), intval(), and floatval() to RaxanElement. These will be used to sanitize form input element values
Add textval(), intVal(), and floatval() to RaxanWebPageEvent. These will be used to sanitize form input event values
Add val() method to RaxanWebPageEvent
Add new RaxanUIElement class
Add sanitizePostBack() to RaxanWebPage
Add autoId() to RaxanElement
Add htmlMarkup() to RaxanElement
Add updateClient to RaxanElement
Add throwCallbackException() static method to Raxan class. Update code to use this method when throwing callback exceptions
Add autostart.php file to pdi folder
Add _prerender() and _load() event handlers to RaxanUIElement.
Add feature to return RaxanElements by id based on page property name (e.g. $page->elementId->html('Cool!') )
Fix event binding issue when page does not contains a head tag
Fix issue when adding more than one plugin to a page
Fix issue with Raxan::importCSV() which failed to handle invalid rows
Fix bug when converting css to xpath for class names
Fix issue when loading plugins. Make sure Raxan has been initialized
Fix issue with loadCSS() and external files.
Modify RaxanWebPage to insert action scripts when page does not contain a &jt;head> tag
Modify css() method to remove CSS property when value is set to ''
Modify Raxan::connect() to return an instance of the RaxanPDO Class
Modify Rich Tabstrip to support non-ajax hyperlinks
Modify Ajax timeout message to display "Error while connecting to Server" instead of "Error while making a callback"
Change: The _reset() event handler is now invoked on the first attempt to set or get data when $page->resetonFirstPageLoad = true
Change: The _switchboard() handler is now invoke before the _load() handler
Move RaxanDataSanitizer class to a separate file (raxan.datasanitizer.php).
Move RaxanPlugin to raxan.php and make it an abstract class
Improve accessibility for form submit buttons, hyperlinks and image maps.
Reset session cookie timeout on page bpost back or refresh. See the RaxanSessionStorage class.
Automatically serialize and post back form elements if the click event of a submit button was triggered without a serialize option
Deprecate session.handler config option
Set the default value for $resetDataOnFirstLoad to true on RaxanWebPage
Rename variable $isPostback to $isPostBack on RaxanWebPage. Depcreate $isPostback
Rename protected variables on RichWebPage
Deprecate $page->clientRequest(). Use sanitizePostBack()
Rewrite RaxanPlugin logic. Add support for support system events
Remove $page->unregisterPlugin() method
Set default page header to text/javascript when page is in embedded mode
1.0 Beta 2
New Switchboard feature
New RichPlugin class
New addMethod() for the RichElement class - used for adding extensions to the class
New _switchboard() handler added to RichWebPage
New "edited" and "tplEdit" options added to RichAPI::bindTemplate()
New imageResample() and imageSize() methods added to RichAPI class
New system events page_init, page_reply, session_init and system_init added
New bindSysEvents and triggerSysEvents added to RichAPI
New _reset() handler added to RichWebPage. This is invoked when resetOnFirstLoad is set to true
New preserveState added RichElement - Preserves the postback state of the matched form elements
New sendToClient(), prependToClient(), appedToClient() and replaceClient() added RichElement
New - Embed Raxan Ajax appications inside a web page
Add RaxanPreInit loading to startup.js
Add jquery-tools library (overlay,expose,tooltip,tab and scrollable)
Add Rich Web Page default settings to configuration option.
Add event options to triggerEvent()
Add API chaining support to RichClientExtension methods such as prompt,confirm, etc
Add support for client-side native json parser
Add $startupEvent to addScript(). For example: $page->addScript('alert("Ready!")', 'ready');
Add $defaultBindOptions to RichWebPage
Add registerScript($name,$url) to RichWebPage
Add click(fn,serialize) and submit(fn,serialize) as ajax event helpers wrappers with autoDisable set to true
Add italian locale - contributed by a.daniello
Add soft color classes to master stylesheet. e.g. softgreen, softblue, etc
Add PHP_VERSION_ID for versions < 5.2.7
Add support for PHP 5.3.0
Fix to serialize form elements with similar names as php arrays. See startup.js
Fix to retrieve event value from e.currentTarget when making a call to the server. See startup.js
Fix issue to prevent event from being triggered is element is disabled and autoDisable set to true.
Fix issue with page data resetOnFirstLoad
Fix bug in RichAPI::locale()
Fix issue when prepend() is used with multiple selectors.
Fix Typo in documentation
Fix matchSelector() when selector is an html string
Fix when used with button element
Fix to prepend jQuery library to the scripts collection if it's implicitly loaded by the framework
Fix issue when decoding json content with the RichAPI::JSON()
Fix html.load() function when called a second time after page load
Fix html.ready() function when called a second time after page ready
Fix issue #4: When calling C() in php versions < 5.2.0 nothing happens. This is because the __toString() method was not called when combining actions
Fix Dynamic element creation when page controller no initialized
Remove dynamic form elements after postback in html.post();
Modify RichWebPage to Bind events after action scripts. This will allow dynmically generated elements to work with bind. Example $page['<button value="Click" />']->bind('click','cb']->sendToClient('body');
Escape html spcecial characters RichWebPage->clientPostbackUrl
Enable session.timeout config option. Defaults to 30 minutes. Set to 0 to use PHP's default
Rename RichWebPage->updateFormOnPostback to preserveFormContent. Deprecate updateFormOnPostback
Modify RichAPI::config() to return config array if key is null
Rename google-extractor to web-page-extractor
Change scope from private to protected for RichClientExtension::$chain
Upgrade jquery ui effects and interaction libraries to 1.7.2
1.0 Beta 1
Update documentation
Update jQuery UI interactions library to version 1.7.1
Merge Blueprint 0.8 changes/fixes into Raxan CSS
Remove adodb test suite from adodb-time.inc.php
Add findById() and findByXPath() to RichWebPage
Add disable(), enable(), hide(), show() methods to RichElement
Add support for before and after script execution. See bind() options
Add RichAPI::paginate() with support for {FIRST},{LAST},{NEXT},{PREV} template fields
Add RichWebPage->addCSS()
Fix decimal typo in RichDataSanitzer->float()
Remove $is_dst parameter from adodb-time.inc
Replace default/theme header class with tbl-header
Add support for loading remote web pages via the http:// protocol
Auto detect file type (xml or html) when file is directly passed to RichWebPage constructor
Add special fields names {INDEX}, {VALUE} and {ROWCOUNT} to template binder. The value and index fields are only availble when binding to index based arrays
Add support for binding templates to index-based arrays and RichWebPage elements
Add Template Binder function - RichAPI::bindTemplate()
Fix issue when binding to keypress on input boxes. Set preventDefault to true for server-side click and submit events.
Add autoToggle and autoDisable to RichWebPage->bind() options
Modify Raxan.triggerRemote() js function to now accept options as last parameter
Add support for loading blank html/wml web pages. Usage $page->source('html:page') or $page->source('wml:page');
And support for WML pages
Add optional $type parameter to RichWebPage::_constructor(). $type values: xml, html
Add XML support to RichWebPage and RichDOMDocument
Replace RichDOMDocument getHTMLSource() and setHTMLSource() with a single source() method
Fix: Broken HTML tag when responding to Ajax File uploads
Add $page->showRenderTime
Modify lcoale date and currency settings for fr and es
Fix: Template {tags} not rendered when used inside a hyperlink
Fix: Documentation link - reported by Steen. See issue #3
Fix: Link button displayed incorrectly in IE7 - reported by Steen. See issue #2
Fix: Javascript error in webform example - reported by Steen. See issue #1
Fix: Json encoding issues when passing _event() to an array
Fix: Issue with resetDataOnFirstLoad, updateFormOnPostback and postback
Fix: Calling removeData() before session init
Fix: Calling P() without a selector
Add text/javascript to script tags generated by addScript()
Add optional parameters $name and $registerGloabal to _var() function. The $name parameter assigns a name of the js variable while $registerGloabal (boolean) will make the variable globally accesible from within the client. Usage: _var('Hello World','msg', true);
Add createElement to RichWebPage
Add new PDI examples
1.0 Alpha 3
Update jQuery to 1.3.2
Update jQuery-UI to 1.7
Add PDI Extension
Replace header class with tbl-header
Add new Sortable Columns example
Add master-layout.css and master-ui.css. The master.css file is a combination of both master-layout.css and master-ui.css
Change version number to 1.0 Aplha 3
0.2.1 Alpha 2
Fix issue with TabStrip Explorer custom animations when tabs are randomly clicked