Re: Mambo on CakePHP brainstorm

2008-11-20 Thread teemow
A huge benefit for the community would be a content repository behavior. This would be somehow similar to phishys versionable, but special to content versioning. There is a specification for java content repositories: http://en.wikipedia.org/wiki/Content_repository_API_for_Java Java reference

Re: Security component and forms

2007-08-14 Thread teemow
What's the security difference between GET and POST. This has nothing to do with security. Semantically and for the sake of REST: If you use a form to retrieve something from your application, it may even more make sense to use a GET. On the other hand if you change something (add/update) with

Re: Security Best Practice

2007-07-16 Thread teemow
Try PHPIDS to monitor your Cake application: http://phpids.org/ Input is being checked and you have an alert system with impact/ treshold. Examples how to add this are here: https://trac.php-ids.org/browser/trunk/docs/examples/cakephp Cheers, Timo

Re: test suite for CakePHP 1.1.*.*

2007-06-04 Thread teemow
This might help you: http://groups.google.com/group/cake-php/search?hl=engroup=cake-phpq=testsuite In the testsuite for 1.1.* are no fixtures. But there are some solutions by Daniel and Felix: http://cakebaker.42dh.com/2007/06/01/new-versions-of-test-suite-and-coretest-script/

Re: how scalable is this framework

2007-05-21 Thread teemow
Speaking of best-of-breed components: I recently saw a propel presentation, which is the ORM component of symphony. There were a few nice things, but the xml generation was a no-go. But I realized something I had with Python before. Python says there is one way to do it, but before Django there

Re: For CakePHP Linux users: gedit snippets

2007-04-26 Thread teemow
It would be nice to maintain a jedit superabbrevs package for cake too. i've made some custom abbrevs but they are very rough. does someone have a good package already? cheers, timo On Apr 25, 3:11 pm, kabturek [EMAIL PROTECTED] wrote: thx for the snippets - when i used gedit i had few but was

Re: For CakePHP Linux users: gedit snippets

2007-04-24 Thread teemow
Cool, thanks for sharing. The only thing is that there is still a bug with highlighting of mixed php and html in gtksourceview. Otherwise gedit is a really nice editor. Greez, Timo On Apr 24, 5:59 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello all, Decided to make a small contribution

Re: TestSuite with cakePHP

2007-01-15 Thread teemow
There are some threads in this group about it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send

Re: Ant and SVN

2006-11-09 Thread teemow
i'm using the cli client in ant: target name=svn description= echo message=Export the new application... / exec executable=svn arg line=export -q ${SVN_URL} ${APP_DIR}/ /exec echo message=Done! / /target

Re: CakePHP and AJAX 'engines'

2006-08-24 Thread teemow
my love goes to jquery. documentation is currently under http://proj.jquery.com/, john will hopefully move this to jquery.com soon. with jquery you can completly separate your javascript and html. there is a description in this post:

Re: Testing controllers with SimpleTest revisited

2006-08-22 Thread teemow
hey sonic, there is a test helper which creates mock objects for all the models of a controller. http://cakephp.org/pastes/show/8803bd09150cb65cc7da63f92cdbc828 felix' post: http://www.thinkingphp.org/2006/08/17/agility-divide-and-conquer-what/ cheers, timo

Re: url and routing

2006-08-21 Thread teemow
it would be great to have some kind of outgoing dispatcher method. so that controller-redirect and all the helpers translate the urls. then we could have one place to define the translation of the urls and one to map the english urls to controller methods. if you follow the concept of degradable

Re: MySQL Dump and Restore with Cake

2006-08-16 Thread teemow
there is a script for database migrations: http://wiki.cakephp.org/tutorials:cake_migrations i started adding some command line options to run the migrations automatically in a deploy script and to migrate test and default database. so you can theoretically do the same thing in your tests. but i

Re: search functionality for whole website

2006-07-20 Thread teemow
hey spark, there is a lucene lib in the zend 'framework'. you just have to put it in your vendors folder. so if you like to implement an advanced search solution take a look at the advantages of an indexer over a database. http://lucene.apache.org/java/docs/features.html greez, timo

Re: Project management software

2006-07-14 Thread teemow
Mantis and Bugzilla are good bug trackers, but they are not very customer friendly. Their interfaces are totally bloated and painful. Personally I have good experience using Trac to collaborate with my clients and I think there is also enough information about the project status and activity

Re: TestSuite: where is loadModelTest?

2006-06-09 Thread teemow
i have the same problem. bake adds the loadmodeltest() function which seems no longer supported. the tutorial in the wiki just tests a cake method itself. if i try to setup/teardown a model of my app the classes are not found. same question sonic asked a while ago: