Re: cakephp editor

2010-09-21 Thread euromark
@j.blotus
exactly
i simply use a shell script to auto-create this one single file (e.g.
after creating new components/helpers) and everyting's set.


On 21 Sep., 22:17, andrewperk  wrote:
> I've been jEdit as well. It's really nice once its setup. It works a
> lot like textmate does. You can convert all textmate themes to jEdit
> themes using tm2jed. The scheme plugin allows you to change your theme
> or scheme, buffer tabs lets you have your files tabbed at the top,
> superabbreves gives nice snippets like in textmate. The only thing
> that was difficult at first was making it detect .ctp files for cake.
> This can be set in utilities>global options>editing, choose php from
> the drop down menu, uncheck the use default settings and change the
> filename glob to include .ctp like so : *.
> {php3,php4,php,phtml,inc,ctp}
>
> Thought that might be useful for someone.
>
> On Sep 19, 7:44 am, dhiraj ray  wrote:
>
> > i'm new in cake php. i want to know which editor is better for devlop
> > cakephp sites.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread andrewperk
I've been jEdit as well. It's really nice once its setup. It works a
lot like textmate does. You can convert all textmate themes to jEdit
themes using tm2jed. The scheme plugin allows you to change your theme
or scheme, buffer tabs lets you have your files tabbed at the top,
superabbreves gives nice snippets like in textmate. The only thing
that was difficult at first was making it detect .ctp files for cake.
This can be set in utilities>global options>editing, choose php from
the drop down menu, uncheck the use default settings and change the
filename glob to include .ctp like so : *.
{php3,php4,php,phtml,inc,ctp}

Thought that might be useful for someone.

On Sep 19, 7:44 am, dhiraj ray  wrote:
> i'm new in cake php. i want to know which editor is better for devlop
> cakephp sites.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread Poliane Brito
I use Eclipse PDT and I'm very happy... x)

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread j.blotus
@euromark
what sucks is you have to put the code completion in each file you
intend to use it, I saw your code completion file and it is cool
because it is all in one place.

here is the link to the site where I got the info:
http://www.tiplite.com/cakephp-support-in-netbeans/

The gist is you need (in models as an example)

class Comment extends AppModel {
/**
 * code completion block
 * Comment belongsTo Post
 * @var Post
**/
var $Post;

var $belongsTo = array('Post');

function interactWithPosts() {
 //following line will code complete
 $this->Comment->Post->find('all');
}

}
On Sep 21, 11:25 am, euromark  wrote:
> @j.blotus
> ok - i guess its similar to PHPDesigner then
> although i dont know how "intelligent" the auto complete is then
>
> you got a sample of your "mockup" file?
>
> On 21 Sep., 17:00, "j.blotus"  wrote:
>
>
>
> > @euromark I have code completion in CakePHP with netbeans, you just
> > have to provide it with helper docblocs in a few spots and include the
> > source.
>
> > On Sep 21, 9:47 am, euromark  wrote:
>
> > > i am missing some crucial functionality in netbeans that PHPDesigner
> > > has:
> > > - proper "replace" functionality related to specific subpaths or
> > > "find" for the same matter
> > > - cakephp auto-complete (only the basics covered)
> > > - php functions help/lookup (not working!)
> > > - ...
>
> > > netbeans on the other hand has some more configuration options
> > > and "nice to have" features
>
> > > if somebody would come up with features from both PHPDesigner and
> > > netbeans
> > > it would be the most superb IDE ever
>
> > > On 21 Sep., 04:44, Cruisine  wrote:
>
> > > > i couldn't found the right serial for codelobster for PHP..do u have
> > > > any guys?tq.
>
> > > > On Sep 19, 9:53 pm, John L  wrote:
>
> > > > > Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am 
> > > > > new to
> > > > > CakePHP also and am curious if this is a good IDE to use.
>
> > > > > On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray  
> > > > > wrote:
> > > > > > i'm new in cake php. i want to know which editor is better for 
> > > > > > devlop
> > > > > > cakephp sites.
>
> > > > > > Check out the new CakePHP Questions 
> > > > > > sitehttp://cakeqs.organdhelpothers
> > > > > > with their CakePHP related questions.
>
> > > > > > You received this message because you are subscribed to the Google 
> > > > > > Groups
> > > > > > "CakePHP" group.
> > > > > > To post to this group, send email to cake-php@googlegroups.com
> > > > > > To unsubscribe from this group, send email to
> > > > > > cake-php+unsubscr...@googlegroups.comFor
> > > > > >  more options, visit this group at
> > > > > >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread j.blotus
not sure why you are asking for a serial though.as someone who
makes a living programming, I don't think stealing your tools is good
karma.

On Sep 21, 12:17 pm, John L  wrote:
> codelobster is free it's only the addons you pay for
>
>
>
> On Tue, Sep 21, 2010 at 10:59 AM, j.blotus  wrote:
> > maybe you should stick with a free IDE instead of trying to steal
>
> > On Sep 20, 10:44 pm, Cruisine  wrote:
> > > i couldn't found the right serial for codelobster for PHP..do u have
> > > any guys?tq.
>
> > > On Sep 19, 9:53 pm, John L  wrote:
>
> > > > Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am
> > new to
> > > > CakePHP also and am curious if this is a good IDE to use.
>
> > > > On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray 
> > wrote:
> > > > > i'm new in cake php. i want to know which editor is better for devlop
> > > > > cakephp sites.
>
> > > > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp
> > others
> > > > > with their CakePHP related questions.
>
> > > > > You received this message because you are subscribed to the Google
> > Groups
> > > > > "CakePHP" group.
> > > > > To post to this group, send email to cake-php@googlegroups.com
> > > > > To unsubscribe from this group, send email to
> > > > > cake-php+unsubscr...@googlegroups.com > > > >  om>
> > For more options, visit this
> > group at
> > > > >http://groups.google.com/group/cake-php?hl=en
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
> > with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups
> > "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.com > om>For more options, visit this group at
> >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread John L
codelobster is free it's only the addons you pay for

On Tue, Sep 21, 2010 at 10:59 AM, j.blotus  wrote:

> maybe you should stick with a free IDE instead of trying to steal
>
> On Sep 20, 10:44 pm, Cruisine  wrote:
> > i couldn't found the right serial for codelobster for PHP..do u have
> > any guys?tq.
> >
> > On Sep 19, 9:53 pm, John L  wrote:
> >
> >
> >
> > > Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am
> new to
> > > CakePHP also and am curious if this is a good IDE to use.
> >
> > > On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray 
> wrote:
> > > > i'm new in cake php. i want to know which editor is better for devlop
> > > > cakephp sites.
> >
> > > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp
> others
> > > > with their CakePHP related questions.
> >
> > > > You received this message because you are subscribed to the Google
> Groups
> > > > "CakePHP" group.
> > > > To post to this group, send email to cake-php@googlegroups.com
> > > > To unsubscribe from this group, send email to
> > > > cake-php+unsubscr...@googlegroups.com
> For more options, visit this
> group at
> > > >http://groups.google.com/group/cake-php?hl=en
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread euromark
@j.blotus
ok - i guess its similar to PHPDesigner then
although i dont know how "intelligent" the auto complete is then

you got a sample of your "mockup" file?


On 21 Sep., 17:00, "j.blotus"  wrote:
> @euromark I have code completion in CakePHP with netbeans, you just
> have to provide it with helper docblocs in a few spots and include the
> source.
>
> On Sep 21, 9:47 am, euromark  wrote:
>
>
>
> > i am missing some crucial functionality in netbeans that PHPDesigner
> > has:
> > - proper "replace" functionality related to specific subpaths or
> > "find" for the same matter
> > - cakephp auto-complete (only the basics covered)
> > - php functions help/lookup (not working!)
> > - ...
>
> > netbeans on the other hand has some more configuration options
> > and "nice to have" features
>
> > if somebody would come up with features from both PHPDesigner and
> > netbeans
> > it would be the most superb IDE ever
>
> > On 21 Sep., 04:44, Cruisine  wrote:
>
> > > i couldn't found the right serial for codelobster for PHP..do u have
> > > any guys?tq.
>
> > > On Sep 19, 9:53 pm, John L  wrote:
>
> > > > Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am 
> > > > new to
> > > > CakePHP also and am curious if this is a good IDE to use.
>
> > > > On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray  
> > > > wrote:
> > > > > i'm new in cake php. i want to know which editor is better for devlop
> > > > > cakephp sites.
>
> > > > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelpothers
> > > > > with their CakePHP related questions.
>
> > > > > You received this message because you are subscribed to the Google 
> > > > > Groups
> > > > > "CakePHP" group.
> > > > > To post to this group, send email to cake-php@googlegroups.com
> > > > > To unsubscribe from this group, send email to
> > > > > cake-php+unsubscr...@googlegroups.comFor
> > > > >  more options, visit this group at
> > > > >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread j.blotus
@euromark I have code completion in CakePHP with netbeans, you just
have to provide it with helper docblocs in a few spots and include the
source.

On Sep 21, 9:47 am, euromark  wrote:
> i am missing some crucial functionality in netbeans that PHPDesigner
> has:
> - proper "replace" functionality related to specific subpaths or
> "find" for the same matter
> - cakephp auto-complete (only the basics covered)
> - php functions help/lookup (not working!)
> - ...
>
> netbeans on the other hand has some more configuration options
> and "nice to have" features
>
> if somebody would come up with features from both PHPDesigner and
> netbeans
> it would be the most superb IDE ever
>
> On 21 Sep., 04:44, Cruisine  wrote:
>
>
>
> > i couldn't found the right serial for codelobster for PHP..do u have
> > any guys?tq.
>
> > On Sep 19, 9:53 pm, John L  wrote:
>
> > > Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am new 
> > > to
> > > CakePHP also and am curious if this is a good IDE to use.
>
> > > On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray  
> > > wrote:
> > > > i'm new in cake php. i want to know which editor is better for devlop
> > > > cakephp sites.
>
> > > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelpothers
> > > > with their CakePHP related questions.
>
> > > > You received this message because you are subscribed to the Google 
> > > > Groups
> > > > "CakePHP" group.
> > > > To post to this group, send email to cake-php@googlegroups.com
> > > > To unsubscribe from this group, send email to
> > > > cake-php+unsubscr...@googlegroups.comFor
> > > >  more options, visit this group at
> > > >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread j.blotus
maybe you should stick with a free IDE instead of trying to steal

On Sep 20, 10:44 pm, Cruisine  wrote:
> i couldn't found the right serial for codelobster for PHP..do u have
> any guys?tq.
>
> On Sep 19, 9:53 pm, John L  wrote:
>
>
>
> > Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am new to
> > CakePHP also and am curious if this is a good IDE to use.
>
> > On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray  wrote:
> > > i'm new in cake php. i want to know which editor is better for devlop
> > > cakephp sites.
>
> > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp others
> > > with their CakePHP related questions.
>
> > > You received this message because you are subscribed to the Google Groups
> > > "CakePHP" group.
> > > To post to this group, send email to cake-php@googlegroups.com
> > > To unsubscribe from this group, send email to
> > > cake-php+unsubscr...@googlegroups.comFor
> > >  more options, visit this group at
> > >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-21 Thread euromark
i am missing some crucial functionality in netbeans that PHPDesigner
has:
- proper "replace" functionality related to specific subpaths or
"find" for the same matter
- cakephp auto-complete (only the basics covered)
- php functions help/lookup (not working!)
- ...

netbeans on the other hand has some more configuration options
and "nice to have" features

if somebody would come up with features from both PHPDesigner and
netbeans
it would be the most superb IDE ever



On 21 Sep., 04:44, Cruisine  wrote:
> i couldn't found the right serial for codelobster for PHP..do u have
> any guys?tq.
>
> On Sep 19, 9:53 pm, John L  wrote:
>
> > Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am new to
> > CakePHP also and am curious if this is a good IDE to use.
>
> > On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray  wrote:
> > > i'm new in cake php. i want to know which editor is better for devlop
> > > cakephp sites.
>
> > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp others
> > > with their CakePHP related questions.
>
> > > You received this message because you are subscribed to the Google Groups
> > > "CakePHP" group.
> > > To post to this group, send email to cake-php@googlegroups.com
> > > To unsubscribe from this group, send email to
> > > cake-php+unsubscr...@googlegroups.comFor
> > >  more options, visit this group at
> > >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-20 Thread Cruisine
i couldn't found the right serial for codelobster for PHP..do u have
any guys?tq.

On Sep 19, 9:53 pm, John L  wrote:
> Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am new to
> CakePHP also and am curious if this is a good IDE to use.
>
> On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray  wrote:
> > i'm new in cake php. i want to know which editor is better for devlop
> > cakephp sites.
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
> > with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups
> > "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.comFor
> >  more options, visit this group at
> >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-20 Thread j.blotus
Using netbeans for windows and for linux (sharing folder as virtual
machine). Code completion, and code auto formatting is awesome, it's
free, and frankly I found it to work better than many IDE's I have
tried.

On Sep 19, 10:44 am, dhiraj ray  wrote:
> i'm new in cake php. i want to know which editor is better for devlop
> cakephp sites.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-20 Thread John L
Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am new to
CakePHP also and am curious if this is a good IDE to use.

On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray  wrote:

> i'm new in cake php. i want to know which editor is better for devlop
> cakephp sites.
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-20 Thread Zaky Katalan-Ezra
Netbeans for Linux also.
Code completion is much better then eclipse

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-20 Thread Miles J
Use Netbeans (PHP not Java) for windows.

On Sep 20, 10:51 am, cricket  wrote:
> On Sun, Sep 19, 2010 at 1:41 PM, nurvzy  wrote:
> > I use and enjoy jedit. Multiplatform, tons of plugins, full IDE with
> > just a handfull of plugins or keep it streamlined.  It takes a little
> > settup, but ill never go back to anything else.
>
> I've been using jedit also, on linux & Mac, for several years now.
> There is a lot to set up, in terms of both prefs and plugins, but
> worth it. I recommend installing the BufferTabs plugin from the
> get-go. JDiff is also really handy. But there are many others.
>
> There's one specific thing that should be done for Cake work. Copy
>
> /usr/share/jedit/modes/php.xml
>
> to
>
> ~/.jedit/modes/ctp.xml
>
> Edit these 2 lines near the top:
>
> MODE NAME="php" FILE="ctp.xml"
> FILE_NAME_GLOB="*.{ctp}"
>
> This will give you PHP syntax highlighting in Cake's templates.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-20 Thread mufti ali
I use aptana. Aptana is free and is the best for me :D

Mufti,

http://blogfreakz.com
http://webdev5.com

On Tue, Sep 21, 2010 at 12:51 AM, cricket  wrote:

> On Sun, Sep 19, 2010 at 1:41 PM, nurvzy  wrote:
> > I use and enjoy jedit. Multiplatform, tons of plugins, full IDE with
> > just a handfull of plugins or keep it streamlined.  It takes a little
> > settup, but ill never go back to anything else.
>
> I've been using jedit also, on linux & Mac, for several years now.
> There is a lot to set up, in terms of both prefs and plugins, but
> worth it. I recommend installing the BufferTabs plugin from the
> get-go. JDiff is also really handy. But there are many others.
>
> There's one specific thing that should be done for Cake work. Copy
>
> /usr/share/jedit/modes/php.xml
>
> to
>
> ~/.jedit/modes/ctp.xml
>
> Edit these 2 lines near the top:
>
> MODE NAME="php" FILE="ctp.xml"
> FILE_NAME_GLOB="*.{ctp}"
>
> This will give you PHP syntax highlighting in Cake's templates.
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>



-- 
Mufti Ali
087831163105
http://webdev5.com
http://blogfreakz.com

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-20 Thread cricket
On Sun, Sep 19, 2010 at 1:41 PM, nurvzy  wrote:
> I use and enjoy jedit. Multiplatform, tons of plugins, full IDE with
> just a handfull of plugins or keep it streamlined.  It takes a little
> settup, but ill never go back to anything else.

I've been using jedit also, on linux & Mac, for several years now.
There is a lot to set up, in terms of both prefs and plugins, but
worth it. I recommend installing the BufferTabs plugin from the
get-go. JDiff is also really handy. But there are many others.

There's one specific thing that should be done for Cake work. Copy

/usr/share/jedit/modes/php.xml

to

~/.jedit/modes/ctp.xml

Edit these 2 lines near the top:

MODE NAME="php" FILE="ctp.xml"
FILE_NAME_GLOB="*.{ctp}"

This will give you PHP syntax highlighting in Cake's templates.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-19 Thread nurvzy
I use and enjoy jedit. Multiplatform, tons of plugins, full IDE with
just a handfull of plugins or keep it streamlined.  It takes a little
settup, but ill never go back to anything else.

Nick

On Sep 19, 8:44 am, dhiraj ray  wrote:
> i'm new in cake php. i want to know which editor is better for devlop
> cakephp sites.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-19 Thread Renato de Freitas Freire
i think he mean coda... coda is for mac only...
i use coda too.. and phpDesigner on windows...

both great editors.

--
Renato de Freitas Freire
ren...@morfer.org


On Sun, Sep 19, 2010 at 12:27 PM, Tilen Majerle wrote:

> wtf?...which program is for mac only???phpDesigner?? are you
> sure?? http://www.mpsoftware.dk/phpdesigner.php
> --
> Tilen Majerle
> http://majerle.eu
>
>
>
> 2010/9/19 dhiraj ray 
>
>
>>  it's mac only, which makes it totally useless for me.
>>
>> i use window xp sugess any other editor for cake php
>>
>> thank in advance
>>
>> Check out the new CakePHP Questions site http://cakeqs.org and help
>> others with their CakePHP related questions.
>>
>> You received this message because you are subscribed to the Google Groups
>> "CakePHP" group.
>> To post to this group, send email to cake-php@googlegroups.com
>> To unsubscribe from this group, send email to
>> cake-php+unsubscr...@googlegroups.comFor
>>  more options, visit this group at
>> http://groups.google.com/group/cake-php?hl=en
>>
>
>  Check out the new CakePHP Questions site http://cakeqs.org and help
> others with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-19 Thread Tilen Majerle
wtf?...which program is for mac only???phpDesigner?? are you sure??
http://www.mpsoftware.dk/phpdesigner.php
--
Tilen Majerle
http://majerle.eu



2010/9/19 dhiraj ray 

>
>  it's mac only, which makes it totally useless for me.
>
> i use window xp sugess any other editor for cake php
>
> thank in advance
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-19 Thread dhiraj ray

 it's mac only, which makes it totally useless for me.

i use window xp sugess any other editor for cake php

thank in advance

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-19 Thread dhiraj ray

thaks


Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-19 Thread Tilen Majerle
i'm working with phpDesigner 7.2.2and it's perfect IDE for this...+
support all...jQuery, CSS, xHTML, PHP frameworksETC
--
Tilen Majerle
http://majerle.eu



2010/9/19 Jeremy Burns | Class Outfit 

> Any PHP editor. I use Coda, others use NetBeans - I'm sure there's loads.
>
> Jeremy Burns
> Class Outfit
>
> jeremybu...@classoutfit.com
> http://www.classoutfit.com
>
> On 19 Sep 2010, at 15:44, dhiraj ray wrote:
>
> > i'm new in cake php. i want to know which editor is better for devlop
> > cakephp sites.
> >
> > Check out the new CakePHP Questions site http://cakeqs.org and help
> others with their CakePHP related questions.
> >
> > You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.comFor
> >  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: cakephp editor

2010-09-19 Thread Jeremy Burns | Class Outfit
Any PHP editor. I use Coda, others use NetBeans - I'm sure there's loads.

Jeremy Burns
Class Outfit

jeremybu...@classoutfit.com
http://www.classoutfit.com

On 19 Sep 2010, at 15:44, dhiraj ray wrote:

> i'm new in cake php. i want to know which editor is better for devlop
> cakephp sites.
> 
> Check out the new CakePHP Questions site http://cakeqs.org and help others 
> with their CakePHP related questions.
> 
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
> http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: CakePHP Editor/IDE

2009-08-14 Thread majna

NetBeans IDE support @porperty tags,
So, if you define Model @porperty comment like this:

@property Post
class Post extends AppModel {}

You get Model autocomplete (and associated models)
like: $this->Post->User->Profile->...

Works on controllers, components...
Better support for cake is on Netbeans todo list.

Latest Eclipse PDT should also support @property.

I think ZendStudio 7.0 is most stable IDE for larger projects and SVN
integration,
much better then eclipse PDT.


On Aug 5, 11:23 pm, maigel  wrote:
> Hi cakephp programmers,
> I was wondering which Editor/IDE you guys use, or think it's the best
> one to use with cakephp.
> When I first tried out symfony framework I used PHPedit or Eclipse
> which gave me autocompletion for it. But they don't for Cakephp (for
> example when you use models and such).
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-14 Thread lovettcreati...@gmail.com

I use Aptana, but I use Texter.  
http://lifehacker.com/238306/lifehacker-code-texter-windows
It let's you created your own autocomplete.  It works in every
program, but is very handy for long code.  Best of all you create the
shortcut.

On Aug 5, 5:23 pm, maigel  wrote:
> Hi cakephp programmers,
> I was wondering which Editor/IDEyou guys use, or think it's the best
> one to use with cakephp.
> When I first tried out symfony framework I used PHPedit or Eclipse
> which gave me autocompletion for it. But they don't for Cakephp (for
> example when you use models and such).
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-12 Thread Sergio Pola

I use eclipse-pdt. I add cake like a library and I the IDE provide
code completation and phpdoc preview of the selected function or
variable.
If you want to have code completation for a model in the controller
you must declare the variable explicity like $person = new Person();
and comment the line after finish (I never comment this line and I
still alive).

Sl2
Sergio

On Aug 9, 9:05 am, Paolo Portaluri  wrote:
> Il giorno 06/ago/09, alle ore 22:12, pomares ha scritto:
>
> > I use Coda. No code autocompletion specific to CakePHP as far as I
> > know on any IDE. If there is, I would love to find out about it.
>
> Look at 
> this:http://code621.com/content/6/a-collection-of-coda-clips-for-cakephp
>
> Ciao
> Paolo
>
> --
> Paolo Portaluri
> mail: poweru...@work.to.it
>   web:http://work.to.it/
>   AIM: poweruser82

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-09 Thread Paolo Portaluri


Il giorno 06/ago/09, alle ore 22:12, pomares ha scritto:

> I use Coda. No code autocompletion specific to CakePHP as far as I
> know on any IDE. If there is, I would love to find out about it.


Look at this:
http://code621.com/content/6/a-collection-of-coda-clips-for-cakephp

Ciao
Paolo

--
Paolo Portaluri
mail: poweru...@work.to.it
  web: http://work.to.it/
  AIM: poweruser82




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-07 Thread Jon Molesa

And some more
http://en.wikipedia.org/wiki/Ctags

*On Thu, Aug 06, 2009 at 04:44:18PM -0400 Jon Molesa  wrote:

> Date: Thu, 6 Aug 2009 16:44:18 -0400
> From: Jon Molesa 
> Subject: Re: CakePHP Editor/IDE
> To: cake-php@googlegroups.com
> 
> 
> I get code completion in Vim with ctags-exuberant.  In fact, any editor that
> understands ctags-exuberant tag file can have code completion.  I believe 
> TextMate
> can use tag files.
> 
> Just issue
> 
> ctags-exuberant -h ".php, .ctp" -R --PHP-kinds=+cf --tag-relative 
> --langmap=PHP:.php.ctp
> 
> inside a cake directory
> 
> It should output a file called tags.  Vim will spot this when you start
> it in that directory.  If not in vim's command mode just run :set
> tags=/full/path/to/you/tags
> 
> Now when writing code begin typing some cake function and while in edit
> mode hit Ctrl+X Ctrl+O and you'll get a drop down of all the cake
> function that match what you've typed.
> 
> I've just created a tags file that will work if you place it in the
> upacked root of a fresh, as of right now, cake release.  Download at
> http://blog.rjmolesa.com/cakephp_1.2.4.8284.tags and rename to tags.
> 
> Enjoy!
> 
> *On Thu, Aug 06, 2009 at 01:12:40PM -0700 pomares 
>  wrote:
> 
> > Date: Thu, 6 Aug 2009 13:12:40 -0700 (PDT)
> > From: pomares 
> > Subject: Re: CakePHP Editor/IDE
> > To: CakePHP 
> > 
> > 
> > I use Coda. No code autocompletion specific to CakePHP as far as I
> > know on any IDE. If there is, I would love to find out about it.
> > 
> -- 
> Jon Molesa
> rjmol...@consoltec.net
> if you're bored or curious
> http://rjmolesa.com
> 
> 
-- 
Jon Molesa
rjmol...@consoltec.net
if you're bored or curious
http://rjmolesa.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-07 Thread Jon Molesa

A list of editors and tools supporting ctags
http://ctags.sourceforge.net/tools.html

*On Thu, Aug 06, 2009 at 04:44:18PM -0400 Jon Molesa  wrote:

> Date: Thu, 6 Aug 2009 16:44:18 -0400
> From: Jon Molesa 
> Subject: Re: CakePHP Editor/IDE
> To: cake-php@googlegroups.com
> 
> 
> I get code completion in Vim with ctags-exuberant.  In fact, any editor that
> understands ctags-exuberant tag file can have code completion.  I believe 
> TextMate
> can use tag files.
> 
> Just issue
> 
> ctags-exuberant -h ".php, .ctp" -R --PHP-kinds=+cf --tag-relative 
> --langmap=PHP:.php.ctp
> 
> inside a cake directory
> 
> It should output a file called tags.  Vim will spot this when you start
> it in that directory.  If not in vim's command mode just run :set
> tags=/full/path/to/you/tags
> 
> Now when writing code begin typing some cake function and while in edit
> mode hit Ctrl+X Ctrl+O and you'll get a drop down of all the cake
> function that match what you've typed.
> 
> I've just created a tags file that will work if you place it in the
> upacked root of a fresh, as of right now, cake release.  Download at
> http://blog.rjmolesa.com/cakephp_1.2.4.8284.tags and rename to tags.
> 
> Enjoy!
> 
> *On Thu, Aug 06, 2009 at 01:12:40PM -0700 pomares 
>  wrote:
> 
> > Date: Thu, 6 Aug 2009 13:12:40 -0700 (PDT)
> > From: pomares 
> > Subject: Re: CakePHP Editor/IDE
> > To: CakePHP 
> > 
> > 
> > I use Coda. No code autocompletion specific to CakePHP as far as I
> > know on any IDE. If there is, I would love to find out about it.
> > 
> -- 
> Jon Molesa
> rjmol...@consoltec.net
> if you're bored or curious
> http://rjmolesa.com
> 
> 
-- 
Jon Molesa
rjmol...@consoltec.net
if you're bored or curious
http://rjmolesa.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-07 Thread yayan rukmayana
i'm use komodo
it's nice to me..and work well for cakephp

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-06 Thread Saliem

looks useful. thanks jon.

On Aug 6, 1:44 pm, Jon Molesa  wrote:
> I get code completion in Vim with ctags-exuberant.  In fact, any editor that
> understands ctags-exuberant tag file can have code completion.  I believe 
> TextMate
> can use tag files.
>
> Just issue
>
> ctags-exuberant -h ".php, .ctp" -R --PHP-kinds=+cf --tag-relative 
> --langmap=PHP:.php.ctp
>
> inside a cake directory
>
> It should output a file called tags.  Vim will spot this when you start
> it in that directory.  If not in vim's command mode just run :set
> tags=/full/path/to/you/tags
>
> Now when writing code begin typing some cake function and while in edit
> mode hit Ctrl+X Ctrl+O and you'll get a drop down of all the cake
> function that match what you've typed.
>
> I've just created a tags file that will work if you place it in the
> upacked root of a fresh, as of right now, cake release.  Download 
> athttp://blog.rjmolesa.com/cakephp_1.2.4.8284.tagsand rename to tags.
>
> Enjoy!
>
> *On Thu, Aug 06, 2009 at 01:12:40PM -0700 pomares 
>  wrote:
>
> > Date: Thu, 6 Aug 2009 13:12:40 -0700 (PDT)
> > From: pomares 
> > Subject: Re: CakePHP Editor/IDE
> > To: CakePHP 
>
> > I use Coda. No code autocompletion specific to CakePHP as far as I
> > know on any IDE. If there is, I would love to find out about it.
>
> --
> Jon Molesa
> rjmol...@consoltec.net
> if you're bored or curioushttp://rjmolesa.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-06 Thread euromark (munich)

phpdesigner2008 etc works quite well with cakephp
it has the best complition you can probably get with php and cake


On 6 Aug., 22:46, mike karthauser  wrote:
> There's cakephp bundles for textmate if you find yourself heading that  
> way
>
> Mike Karthauser
> Brightstorm limited
> Tel: 07939252144
>
> On 6 Aug 2009, at 21:12, pomares  wrote:
>
>
>
> > I use Coda. No code autocompletion specific to CakePHP as far as I
> > know on any IDE. If there is, I would love to find out about it.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-06 Thread mike karthauser

There's cakephp bundles for textmate if you find yourself heading that  
way

Mike Karthauser
Brightstorm limited
Tel: 07939252144

On 6 Aug 2009, at 21:12, pomares  wrote:

>
> I use Coda. No code autocompletion specific to CakePHP as far as I
> know on any IDE. If there is, I would love to find out about it.
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-06 Thread Jon Molesa

I get code completion in Vim with ctags-exuberant.  In fact, any editor that
understands ctags-exuberant tag file can have code completion.  I believe 
TextMate
can use tag files.

Just issue

ctags-exuberant -h ".php, .ctp" -R --PHP-kinds=+cf --tag-relative 
--langmap=PHP:.php.ctp

inside a cake directory

It should output a file called tags.  Vim will spot this when you start
it in that directory.  If not in vim's command mode just run :set
tags=/full/path/to/you/tags

Now when writing code begin typing some cake function and while in edit
mode hit Ctrl+X Ctrl+O and you'll get a drop down of all the cake
function that match what you've typed.

I've just created a tags file that will work if you place it in the
upacked root of a fresh, as of right now, cake release.  Download at
http://blog.rjmolesa.com/cakephp_1.2.4.8284.tags and rename to tags.

Enjoy!

*On Thu, Aug 06, 2009 at 01:12:40PM -0700 pomares 
 wrote:

> Date: Thu, 6 Aug 2009 13:12:40 -0700 (PDT)
> From: pomares 
> Subject: Re: CakePHP Editor/IDE
> To: CakePHP 
> 
> 
> I use Coda. No code autocompletion specific to CakePHP as far as I
> know on any IDE. If there is, I would love to find out about it.
> 
-- 
Jon Molesa
rjmol...@consoltec.net
if you're bored or curious
http://rjmolesa.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-06 Thread Jacques

Hi there,

have a look at 
http://mark-story.com/posts/view/code-completion-for-cakephp-in-eclipse

Not sure if that'll help - but I use eclipse - suits my needs.

Ciao
Jacques

On Aug 5, 11:23 pm, maigel  wrote:
> Hi cakephp programmers,
> I was wondering which Editor/IDE you guys use, or think it's the best
> one to use with cakephp.
> When I first tried out symfony framework I used PHPedit or Eclipse
> which gave me autocompletion for it. But they don't for Cakephp (for
> example when you use models and such).
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-06 Thread Thiago Elias
I use Aptana Studio. Unfortunatelly, there's no code autocompletion for
cakePHP methods, but at least is better than a lot of other editors.


Thiago Elias.





2009/8/6 pomares 

>
> I use Coda. No code autocompletion specific to CakePHP as far as I
> know on any IDE. If there is, I would love to find out about it.
>  >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP Editor/IDE

2009-08-06 Thread pomares

I use Coda. No code autocompletion specific to CakePHP as far as I
know on any IDE. If there is, I would love to find out about it.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---