1
I Use This!
Inactive

Commits : Listings

Analyzed about 15 hours ago. based on code collected 2 days ago.
Apr 14, 2023 — Apr 14, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
* Lower the repaint timeout, it can actually be zero, its the timeout call that is important.
djmirage
as Martijn de Boer
More... almost 12 years ago
+ Adds a utility to simply do redraw calls on the dom. This is needed for the redrawing issues that happen sometimes in modern browsers. Safari 5 on Mac OS X is particulary good on this matter.
djmirage
as Martijn de Boer
More... about 12 years ago
+ Adds proper support for IE < 9 while loading templates.
djmirage
as Martijn de Boer
More... about 12 years ago
* Remove the silly leftover import.
djmirage
as Martijn de Boer
More... about 12 years ago
* Store and clean up active dynamicly created mediators.
djmirage
as Martijn de Boer
More... about 12 years ago
* Make the TemplateViewMediator work correctly if you haven't registered it's proxies in your start up command. It will register default empty ObjectStoreProxies for you. This makes the TemplateViewMediator work properly, but doesn't allow you to use SubTemplate's (as there are no registered mediators for that).
djmirage
as Martijn de Boer
More... about 12 years ago
* Per request of the HumboldtJS maintainer, don't alias to StringEx.trim but rather call the inner methods trimLeft and trimRight.
djmirage
as Martijn de Boer
More... about 12 years ago
+ Adds the utilities package + Adds the StringUtil class, which provides functions for trimming and a startsWith/endsWith method. For the default trim an alias is created to the HumboldtJS StringEx.trim function, but since it doesn't provide leftTrim and rightTrim these are implemented in the StringUtil itself.
djmirage
as Martijn de Boer
More... about 12 years ago
* Refactors HtmlTemplate* to Template*, which is more accurate since we can do templating on any XML parsable document.
djmirage
as Martijn de Boer
More... about 12 years ago
* Make the objectStore work properly in all situations by switching to using an object internally instead of casting it to an array.
djmirage
as Martijn de Boer
More... about 12 years ago
Update README.md
djmirage
as Martijn de Boer
More... about 12 years ago
+ Include licensing file (MIT) and readme to get started.
djmirage
as Martijn de Boer
More... about 12 years ago
* Change imports from the ASJS namespace to the HumboldtJS namespace. + Added support for subtemplates in the HtmlTemplateViewMediator. + Added HtmlTemplateNotes class to contain the proper values. ! Documentation on writing templates, wrapping namespaces will follow.
djmirage
as Martijn de Boer
More... about 12 years ago
+ Add a simple HTMLTemplateView and HTMLTemplateMediator, to display the contents of html templates. Html templates are expected to be in the htmlp format, which you can create with the xmlpconverter by specifying the -n option. ! java -jar bin/xmlpconverter.jar -n -o my.htmlp my.html ! We chose to use the htmlp format, since we are unable to load an html file reliable because of the security sandbox present in most browsers.
djmirage
as sexybiggetje
More... about 12 years ago
+ Initial implementation of ObjectStoreProxy for caching objects.
djmirage
as sexybiggetje
More... about 12 years ago