"Computer games don't affect kids, I mean if Pac Man affected us as kids, we'd all be running around in darkened rooms, munching pills and listening to repetitive music."
Marcus Brigstocke
rekarnar. the next attempt.
"Computer games don't affect kids, I mean if Pac Man affected us as kids, we'd all be running around in darkened rooms, munching pills and listening to repetitive music."
Marcus Brigstocke
This post is more of refrence for grg and I to keep track of whats been happening with our cms.
I have created a new tag to point to the last revision we have merged into the trunk. as follows:
svn copy http://svn.malarky.co.nz/sfMCMSPlugin/branches/1.2 http://svn.malarky.co.nz/sfMCMSPlugin/tags/1.2_last_merge_to_trunk
so then to merge the new stuff up stream in future we can just go like:
svn log -v --stop-on-copy http://svn.malarky.co.nz/sfMCMSPlugin/tags/1.2_last_merge_to_trunk
this will give us the first revision number to use. then we can do the merge. (from inside a trunk working copy):
svn merge -r 607:HEAD http://svn.malarky.co.nz/sfMCMSPlugin/branches/1.2
(where 607 is the revision you got from the previous command)
after the merge, remember to move the tag to the newest 1.2 branch commit. a simple delete and re-copy should suffice?
Blueprint sent some people to Nepal at the beginning of this(well last) year(2009). Some of them stayed with Compassion Nepal.
Compassion Nepal are now our friends. They also are very poor though they are doing _very_ awesome things.
Some of us have recently setup a brand new New Zealand charity to continue helping them out!
Officially it is here. We would love your support! (That generally means some moneys, but im sure you can be creative if you cant spare a casual 5 dollars..)
Here is the important info: 06 0513 0281813 00 (Acc name: Compassion Nepal)
Im going to try and keep posting updates etc. Its all very exciting.
When returning a rendered partial from an action like:
return $this->renderPartial('action/partial');
you can use all the $this->variables assigned in that action in the view, UNLESS you pass an array of them into the partial:
return $this->renderPartial('action/partial',array('var'=>'this stops us using any this->vars'));
which then becomes all you can use in there.