How to learn who reads my blog?
PHP 4.1.0 patch for Quanta IDE, The Sequel
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > Java Programming > PHP 4.1.0 patch for Quanta IDE, The Sequel 20 December 2001 22:25:12

  Top users: 
  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:

PHP 4.1.0 patch for Quanta IDE, The Sequel

Mike Eheler 20 December 2001 04:06:27
 http://sourceforge.n­et/tracker/index.php­?func=detail&aid=495­239&group_id=4113&at­id=304113

Download the attached file, and run

patch -p1 -i quanta-2.0.1-php-4.­1.0.diff

That will patch your source tree.. then just configure, make, install.

I've actually tested this one, so go nuts people. :)­ Please let me know
if you find any functions that should be keywords or keywords that
shouldn't be keywords, or functions/keywords that just plain aren't in
the list.

Mike

Add comment
J Smith 20 December 2001 20:10:40 permanent link ]
 
I sumbitted a similar patch to the Quanta team about a week ago. It may
appear in an upcoming release, possibly Quanta 3, which will come with KDE
3.0.

A few other additions I made:

- highlighting is now case-insensitive for everything. I believe older
versions were case-sensitive for keywords, like function, class, etc.

- support for ASP-style opening and closing tags (<% and %> instead of
<?php, <?, etc.)

I'm also working on porting a newer editor from Kate/ktexteditor into
Quanta. It's been slow going, but things have picked up (it compiles and
runs now, albeit with a bunch of segfaults). This will make adding syntax
highlighting instructions much easier, as the latest versions of Kate allow
you to define highlighting rules in XML files, and the highlighting
instructions are set up at run-time rather than compile time.

Maybe over the XMas break I'll be able to finish it up.

J


Mike Eheler wrote:
http://sourceforge.­net/tracker/index.ph­p?func=detail&aid=49­5239&group_id=4113&a­tid=304113>
Download the attached file, and run>
patch -p1 -i quanta-2.0.1-php-4.­1.0.diff>
That will patch your source tree.. then just configure, make, install.>
I've actually tested this one, so go nuts people. :)­ Please let me know> if you find any functions that should be keywords or keywords that> shouldn't be keywords, or functions/keywords that just plain aren't in> the list.>
Mike

Add comment
Mike Eheler 20 December 2001 22:07:38 permanent link ]
 Cool, however PHP is not case sensitive, nor is ASP or HTML for that
matter, therefore case sensitive syntax highlighting will not be good
for these languages.

Mike

J Smith wrote:
I sumbitted a similar patch to the Quanta team about a week ago. It may > appear in an upcoming release, possibly Quanta 3, which will come with KDE > 3.0.>
A few other additions I made:>
- highlighting is now case-insensitive for everything. I believe older > versions were case-sensitive for keywords, like function, class, etc.>
- support for ASP-style opening and closing tags (<% and %> instead of > <?php, <?, etc.)>
I'm also working on porting a newer editor from Kate/ktexteditor into > Quanta. It's been slow going, but things have picked up (it compiles and > runs now, albeit with a bunch of segfaults). This will make adding syntax > highlighting instructions much easier, as the latest versions of Kate allow > you to define highlighting rules in XML files, and the highlighting > instructions are set up at run-time rather than compile time. >
Maybe over the XMas break I'll be able to finish it up.>
Mike Eheler wrote:>
Download the attached file, and run>>
patch -p1 -i quanta-2.0.1-php-4.­1.0.diff>>
That will patch your source tree.. then just configure, make, install.>>
I've actually tested this one, so go nuts people. :)­ Please let me know>>if you find any functions that should be keywords or keywords that>>shouldn't be keywords, or functions/keywords that just plain aren't in>>the list.>>
Mike>>

Add comment
Jack Dempsey 20 December 2001 22:14:07 permanent link ]
 really?
<?
$THIS_IS_A_VARIABLE­=1;
$this_is_a_variable­=2;

echo "$THIS_IS_A_VARIABL­E\n";
echo "$this_is_a_variabl­e\n";
?>

seems sensitive to me...

Mike Eheler wrote:
Cool, however PHP is not case sensitive, nor is ASP or HTML for that> matter, therefore case sensitive syntax highlighting will not be good> for these languages.>
Mike>
J Smith wrote:>
I sumbitted a similar patch to the Quanta team about a week ago. It may> > appear in an upcoming release, possibly Quanta 3, which will come with KDE> > 3.0.> >
A few other additions I made:> >
- highlighting is now case-insensitive for everything. I believe older> > versions were case-sensitive for keywords, like function, class, etc.> >
- support for ASP-style opening and closing tags (<% and %> instead of> > <?php, <?, etc.)> >
I'm also working on porting a newer editor from Kate/ktexteditor into> > Quanta. It's been slow going, but things have picked up (it compiles and> > runs now, albeit with a bunch of segfaults). This will make adding syntax> > highlighting instructions much easier, as the latest versions of Kate allow> > you to define highlighting rules in XML files, and the highlighting> > instructions are set up at run-time rather than compile time.> >
Maybe over the XMas break I'll be able to finish it up.> >
Mike Eheler wrote:> >
Download the attached file, and run> >>
patch -p1 -i quanta-2.0.1-php-4.­1.0.diff> >>
That will patch your source tree.. then just configure, make, install.> >>
I've actually tested this one, so go nuts people. :)­ Please let me know> >>if you find any functions that should be keywords or keywords that> >>shouldn't be keywords, or functions/keywords that just plain aren't in> >>the list.> >>
Mike> >>
--> PHP General Mailing List (http://www.php.net­/)> To unsubscribe, e-mail: php-general-unsubsc­ribe@lists.php.net> For additional commands, e-mail: php-general-help@li­sts.php.net> To contact the list administrators, e-mail: php-list-admin@list­s.php.net

Add comment
Mike Eheler 20 December 2001 22:25:12 permanent link ]
 <?
echo (null == Null);
eCho (NULL == NuLl);
eCHo (FALSE == false);

prINt("<pre>");
Print_R(GET_defined­_VaRs());
sPrinTF('%s','</pre­>');
?>

Variable names are the *only* exception.

So yes, $var != $Var;

And variable names are not syntax highlighted specifically (other than
the fact that variables are highlighted). So by case-sensitizing keyword
and function references, that is making a lot of scripts *not* syntax
highlight properly, because only people who use FALSE will be
highlighted, while people who use False or false or even FalsE will be
left in the dark.

Or perhaps you prefer to code using MySQL_Connect().. people driven to
PHP from ASP might code like this when they start.

Mike

Jack Dempsey wrote:
really?> <?> $THIS_IS_A_VARIABLE­=1;> $this_is_a_variable­=2;>
echo "$THIS_IS_A_VARIABL­E\n";> echo "$this_is_a_variabl­e\n";> ?>>
seems sensitive to me...>
Mike Eheler wrote:>
Cool, however PHP is not case sensitive, nor is ASP or HTML for that>>matter, therefore case sensitive syntax highlighting will not be good>>for these languages.>>
Mike>>
J Smith wrote:>>
I sumbitted a similar patch to the Quanta team about a week ago. It may>>>appear in an upcoming release, possibly Quanta 3, which will come with KDE>>>3.0.>>>
A few other additions I made:>>>
- highlighting is now case-insensitive for everything. I believe older>>>versions were case-sensitive for keywords, like function, class, etc.>>>
- support for ASP-style opening and closing tags (<% and %> instead of>>><?php, <?, etc.)>>>
I'm also working on porting a newer editor from Kate/ktexteditor into>>>Quanta. It's been slow going, but things have picked up (it compiles and>>>runs now, albeit with a bunch of segfaults). This will make adding syntax>>>highlighti­ng instructions much easier, as the latest versions of Kate allow>>>you to define highlighting rules in XML files, and the highlighting>>>inst­ructions are set up at run-time rather than compile time.>>>
Maybe over the XMas break I'll be able to finish it up.>>>
Mike Eheler wrote:>>>
Download the attached file, and run>>>>
patch -p1 -i quanta-2.0.1-php-4.­1.0.diff>>>>
That will patch your source tree.. then just configure, make, install.>>>>
I've actually tested this one, so go nuts people. :)­ Please let me know>>>>if you find any functions that should be keywords or keywords that>>>>shouldn't be keywords, or functions/keywords that just plain aren't in>>>>the list.>>>>
Mike>>>>
-->>PHP General Mailing List (http://www.php.net­/)>>To unsubscribe, e-mail: php-general-unsubsc­ribe@lists.php.net>>­For additional commands, e-mail: php-general-help@li­sts.php.net>>To contact the list administrators, e-mail: php-list-admin@list­s.php.net>>


--
Long life is in store for you.

Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > Java Programming > PHP 4.1.0 patch for Quanta IDE, The Sequel 20 December 2001 22:25:12

see also:
[Installation & Configuration]…
[Security & JAAS/JBoss] - Re…
[Persistence & CMP/JBoss] - Re…
pass tests:
see also:
VoIP Internet Service
Hello... i ploho znay angliski:-[
segodnia i lehy v tyrsiu!B-)

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .