Hover to focus in Windows 7
This post details how to get hover to focus without raising the window working in Windows 7. I think the same tweeks will work in other versions of windows, but I've not tried them
Continue readingGetting started with Glassfish using Maven
In this post I detail simple instructions for installing Glassfish v3 onto Ubuntu (although it will work just as well with Redhat, debian, and anything else). I also show how to create and deploy a simple WAR using Maven.
Continue readingTimico OSS Site Launched, Containing Symfony Plugins
I've launched http://oss.timico.net/ - which is an open source site for Timico. I've added a couple of plugins for symfony already.
-
http://oss.timico.net/svn/oss/symfony/TimicoMarkdownExtraPlugin/
- Includes Markdown Extra and a helper -
http://oss.timico.net/svn/oss/symfony/TimicoSwfChartPlugin/
- A helper for SWF Charts -
http://oss.timico.net/svn/oss/symfony/TimicoWikiPlugin/
- A wiki plugin allowing for custom storage backends (doctrine/propel/xml etc) and swappable renderers. This plugin is very unstable currently, as it is under development. -
http://oss.timico.net/svn/oss/symfony/TimicoServiceContainerPlugin/
- a simple wrapper around sfServiceContainer
Hopefully we'll be mirroring a few projects in need of public mirrors soon, and perhaps adding more of our own code.
Extending sfFileCache with Hashed Directory support
Unfortunately, sfFileCache doesn't scale well on certain file systems as it puts all of it's cached files in one location. This simple class adds support for hashing the directory name based on a the name of the item being cached. It wasn't worth a plugin, so I'm pasting it here.
Continue readingSending multipart email from a Task in symfony 1.4
I recently needed to send the result of an action in symfony via email daily. E-mail has changed slightly in symfony 1.3/1.4 - here's how I did it. I really don't like my solution at all, the use of get_partial() from within a Task seems very wrong to me - but I'm in a rush so it will do for now, I'd love to hear feedback
Continue readingEmbedded forms using Javascript with sfForm
I wanted to create a form that allowed me to dynamically add sub-forms via JS, without round-trips to the server. I had a bit of a google, but failed to find much of use - so I wrote my own. This article contains my code for a proof of concept, and a brief description of what it does. It is proof of concept, and done as an example, so code isn't done perhaps as I might do in a real configuration, but I hope it provides help to others.
Continue readingThe BeBook Mini
I've recently got a BeBook Mini, and thought I'd take a little time to upload some pictures and write a few words.
Continue readingPHP workflows – ezComponents
Workflows are a useful tool to help manage business processes. In this post I take a look at the workflow engine of eZ components, which was developed by Sebastian Bergmann. In this post, I introduce the basics of the workflow engine, and will expand on it's usage in future posts.
Continue readingPlaying with symfony routing – without symfony
symfony 1.2 was quite an improvement over 1.0, one of the most important changes was improved decoupling between components. In this article we're going to put this to the test and have some fun with sfRouting.
Continue readingRate Limiting SOAP client in PHP
I've recently had the requirement to rate limit SOAP calls to a remote API, so having done the work I though I'd document it here.
Continue reading