Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-07 | fixed #239: set_magic_quotes_runtime is deprecate since php 5.3.0 and will ↵ | rojaro | |
be removed in 6.0 | |||
2010-04-28 | (no commit message) | rojaro | |
2010-04-26 | (no commit message) | rojaro | |
2010-04-22 | started using the TPriorityList, updated some methods functions and slimmed ↵ | javalizard | |
things done a touch. This also updates the unit test. The unit test isn't perfect just yet but this class works 100% as a TList. As things get settled I'll get the docs going on this new class. | |||
2010-04-22 | TWebControlDecoration docs tweaked. | javalizard | |
2010-04-21 | Added Property to define if the templates in the decorator need to use the ↵ | javalizard | |
page state. Fixes Issue 262 | |||
2010-04-18 | Switched the Page to getPage() | javalizard | |
2010-04-18 | Adds a property to ensure an id is rendered. Also adds the creation of ↵ | javalizard | |
TWebControlDecorator. It also accounts for the render blocker in TWebControl. Adds an alternate render path when decorators are present. Adds the TWebControlDecorator class. Now skins can define their own surrounding tag html and templates instead of having to code every page. | |||
2010-04-18 | Updates the TPageService to be inline with TPage | javalizard | |
2010-04-18 | TPriorityList works like TList if no class specific methods are called. ↵ | javalizard | |
Adds the Unit test. TPriorityList needs more unit testing but I wanted to submit this so the method names can be peer reviewed. | |||
2010-04-18 | exposes the default tagname to the system by making the getDefaultTagName ↵ | javalizard | |
public. Also adds getIsMutated to tell if the tag has changed. getDefaultTagName allows for simple and complex behaviors for selecting a default TagName. lemon is to lime as yellow is to green => TWebControl is to THtmlElement as getTagName is to getDefaultTagName | |||
2010-04-18 | Updated the docs for THtmlElement. including the copy date | javalizard | |
2010-04-18 | smaller code for THtmlElement | javalizard | |
2010-04-18 | Updated the insertBefore/After docs | javalizard | |
2010-04-18 | adds the control parameter for logging and tracing. Adds a log when logs ↵ | javalizard | |
don't init properly. This outputs converts the xml into into text entities. The TDbLogRoute now also captures the control ids as well. | |||
2010-04-18 | Ensured parent::__construct calls within Web and Services | javalizard | |
2010-04-18 | Ensured parent::__construct calls within TRpcClient and TXmlDocument | javalizard | |
2010-04-18 | Ensured parent::__construct calls within Testing | javalizard | |
2010-04-18 | Ensured parent::__construct calls within Security | javalizard | |
2010-04-18 | Ensured parent::__construct calls within Data | javalizard | |
2010-04-18 | Ensured parent::__construct calls to Base, Caching, and Collections | javalizard | |
2010-04-18 | Missed this one | javalizard | |
2010-04-18 | ensured that the UI are calling their parent __construct methods | javalizard | |
2010-04-18 | ensured that the WebControls are calling their parent __construct methods | javalizard | |
2010-04-18 | Added the THeader1-6, and fixed up the THtmlElement a touch. | javalizard | |
2010-04-18 | THtmlElement ensures that it any new tag names are strings | javalizard | |
2010-04-18 | TComponent- adds a blank __construct function to unify the constructor call ↵ | javalizard | |
path for all objects. TApplication- Adds final attribute to the parameters in the config so folder config.xml cannot override if set to true. Adds a mergeParameter function to unify parameter setting. Fixed a bug where loadParametersPhp wasn't getting the properties correctly. TControl- calls the parent::__construct, Adds render blocking. (the PRADO class using this will be added in a week or two) TParameterModule- Adds final attribute to the parameter option so folder configs cannot override if set to true. Uses the application mergeParameter function. Adds final to the php parameter loader | |||
2010-04-17 | Got the return value nailed down for TList::InsertBefore and ↵ | javalizard | |
TList::insertAfter using the unit test. | |||
2010-04-17 | Added Unit tests for insertBefore/After. Change code to expected behavior. | javalizard | |
2010-04-17 | Brings the new method name in line with the rest of the methods | javalizard | |
2010-04-16 | Makes it possible for subclasses to define the default tag by overriding the ↵ | javalizard | |
function getDefaultTag | |||
2010-04-16 | Added a few more tests to the TListTest unit test. | javalizard | |
2010-04-14 | fixed the vsort, vrsort etc. functions which tried to instantiate ↵ | rojaro | |
ArraySorter instead of TArraySorter | |||
2010-04-14 | changed the gmdate to just date. TLogger now captures the memory footprint ↵ | javalizard | |
and controls. TLogRouter now can specify logs that require the header with the IHeaderRoute interface. so the TFirePhpLogRoute can work. TLogRoutes can be disabled and all of the routes can be gotten. Each TLogRoute also can have a control filter, user role filter (so, for instance, if you wanted a browser log route on a production site but only for developers), a meta id is also stored for linking to other data in the system, the user id if a user is logged in, active (so routes can be turned off but not deleted), and an error should something go bad with a log route it shouldn't take down the page. Updated the docs on the category filter having to be an array instead of a string. This includes some functions for serializing the Log Router classes as xml. Also the browser route does a quartile analysis on the times and memory footprint of each log item (independently), and highlights the log lines that are memory hogs or time hogs. We can use this as a basis for a set of analysis classes? This includes some interesting functions which does array of array key index to value sorting. For instance getting all rows from a database table. eg. $arr array(array('key'=>'value1', ...), array('key'=>...), array(...)). vsort($arr, 'key'). We may want to move some of this stuff around | |||
2010-04-14 | Adds getModulesByType, getIsAfterService, and onInitComplete for wrapping up ↵ | javalizard | |
the init processes should any modules need it before the beginning the request | |||
2010-04-13 | added @author | javalizard | |
2010-04-13 | Added TPage events to TPageService via an interface. When the page is run ↵ | javalizard | |
the TPageServices events are added to the TPage events. This exposes the TPage events to modules. Also added an event when a page is not found. | |||
2010-04-12 | fiddled with the comment a touch to make it easier to understand | javalizard | |
2010-04-12 | Fixed Issue#246 | Christophe.Boulain | |
2010-04-12 | added @versions to the TList and TPriorityList | javalizard | |
2010-04-12 | TPriorityList | javalizard | |
2010-04-12 | Reprivate _c in TList. was testing something | javalizard | |
2010-04-12 | added insertBefore and insertAfter | javalizard | |
2010-04-09 | added ensureNullIfEmpty converter | rojaro | |
2010-04-06 | (no commit message) | rojaro | |
2010-03-29 | fixed another bug in the rpc service | rojaro | |
2010-03-29 | fixed a little bug in the rpc service | rojaro | |
2010-03-27 | added TRpcClient and TRpcServer - fixing #180 | rojaro | |
2010-03-25 | (no commit message) | rojaro | |
2010-03-19 | Added missing THttpRuest->getContentType | rojaro | |