RE: [ot] something similar to phps ?

2004-09-19 Thread Alex

cool.  was showing a few folks in the office here how to set up tomcat
(.net converts) and they were looking at the examples provided with the
tomcat 5.0.x release.  i thought, boy, this would be nice if out of the
box, all the examples had some nice colour syntax highlighting, just like
php does.

it's a nice to have .. i'm sure i can find something out on the net with
it.  might help a little with people who want to switch over to java ..
afterall, lots of people react nicely to colours as opposed to black on
white :)

On Fri, 17 Sep 2004, Shapira, Yoav wrote:

 Something like that is trivial to do already -- just serve the JSP with
 content-type text/plain from a streaming servlet like Tomcat's
 DefaultServlet.  That's not to say something like this isn't useful:
 it's a nice thing to have (although it would have to be turned off on
 production systems, because it's a security risk).


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [ot] something similar to phps ?

2004-09-19 Thread Jarl Skogsholm
Syntax highlighting is an editor feature not a language feature.  Ed4W at 
www.getsoft.com takes care of it nicely.  Some of the IDEs also have this 
feature.

On Sun, 19 Sep 2004 05:52:51 -0400 (EDT), Alex [EMAIL PROTECTED] wrote:
cool.  was showing a few folks in the office here how to set up tomcat
(.net converts) and they were looking at the examples provided with the
tomcat 5.0.x release.  i thought, boy, this would be nice if out of the
box, all the examples had some nice colour syntax highlighting, just like
php does.
it's a nice to have .. i'm sure i can find something out on the net with
it.  might help a little with people who want to switch over to java ..
afterall, lots of people react nicely to colours as opposed to black on
white :)
On Fri, 17 Sep 2004, Shapira, Yoav wrote:


--
They that can give up essential liberty to obtain a little temporary 
safety deserve neither liberty nor safety.
-- Benjamin Franklin (1755)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [ot] something similar to phps ?

2004-09-19 Thread QM
On Sun, Sep 19, 2004 at 05:52:51AM -0400, Alex wrote:
: cool.  was showing a few folks in the office here how to set up tomcat
: (.net converts) and they were looking at the examples provided with the
: tomcat 5.0.x release.  i thought, boy, this would be nice if out of the
: box, all the examples had some nice colour syntax highlighting, just like
: php does.

It couldn't hurt.  If *you* see a need for it, that means at least one
person's interested.  Put the product out on the 'net for others to see,
and you'll likely gain followers. ;)

-QM

-- 

software  -- http://www.brandxdev.net
tech news -- http://www.RoarNetworX.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [ot] something similar to phps ?

2004-09-19 Thread Alex

Thanks Jarl.  I appreciate that.  I'll assume I didn't clarify the point I
was trying to make and i'll leave it at that...

On Sun, 19 Sep 2004, Jarl Skogsholm wrote:

 Date: Sun, 19 Sep 2004 13:34:40 -0400
 From: Jarl Skogsholm [EMAIL PROTECTED]
 Reply-To: Tomcat Users List [EMAIL PROTECTED]
 To: Tomcat Users List [EMAIL PROTECTED]
 Subject: Re: [ot] something similar to phps ?

 Syntax highlighting is an editor feature not a language feature.  Ed4W at
 www.getsoft.com takes care of it nicely.  Some of the IDEs also have this
 feature.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[ot] something similar to phps ?

2004-09-17 Thread Alex

would it be of any use to anyone for the development of something similar
to phps in php?  where you can rename a file to .jsps for instance and it
would show you the code line for line and have pretty colours...




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [ot] something similar to phps ?

2004-09-17 Thread Shapira, Yoav

Hi,

would it be of any use to anyone for the development of something
similar
to phps in php?  where you can rename a file to .jsps for instance and
it
would show you the code line for line and have pretty colours...

Something like that is trivial to do already -- just serve the JSP with
content-type text/plain from a streaming servlet like Tomcat's
DefaultServlet.  That's not to say something like this isn't useful:
it's a nice thing to have (although it would have to be turned off on
production systems, because it's a security risk).

Yoav



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [ot] something similar to phps ?

2004-09-17 Thread John Villar
Also, you could do a Servlet that serves all the .jsps files that take 
the corresponding jsp file and outputs it on html format, coloured with 
graphics, etc

John Villar
Gerente de Proyectos
Computadores Flor Hard Soft 2058 C.A.
www.florhard.com

Shapira, Yoav escribió:
Hi,
 

would it be of any use to anyone for the development of something
   

similar
 

to phps in php?  where you can rename a file to .jsps for instance and
   

it
 

would show you the code line for line and have pretty colours...
   

Something like that is trivial to do already -- just serve the JSP with
content-type text/plain from a streaming servlet like Tomcat's
DefaultServlet.  That's not to say something like this isn't useful:
it's a nice thing to have (although it would have to be turned off on
production systems, because it's a security risk).
Yoav

This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [ot] something similar to phps ?

2004-09-17 Thread John Villar
Expanding a little more the idea, you could enabled the servlet output 
to receive modifications to the jsp page and ave it ot the corresponding 
jsp *grin* and that way you integrate nice output with editing 
capabilities

John Villar
Gerente de Proyectos
Computadores Flor Hard Soft 2058 C.A.
www.florhard.com

John Villar escribió:
Also, you could do a Servlet that serves all the .jsps files that take 
the corresponding jsp file and outputs it on html format, coloured 
with graphics, etc

John Villar
Gerente de Proyectos
Computadores Flor Hard Soft 2058 C.A.
www.florhard.com

Shapira, Yoav escribió:
Hi,
 

would it be of any use to anyone for the development of something
  
similar
 

to phps in php?  where you can rename a file to .jsps for instance and
  
it
 

would show you the code line for line and have pretty colours...
  

Something like that is trivial to do already -- just serve the JSP with
content-type text/plain from a streaming servlet like Tomcat's
DefaultServlet.  That's not to say something like this isn't useful:
it's a nice thing to have (although it would have to be turned off on
production systems, because it's a security risk).
Yoav

This e-mail, including any attachments, is a confidential business 
communication, and may contain information that is confidential, 
proprietary and/or privileged.  This e-mail is intended only for the 
individual(s) to whom it is addressed, and may not be saved, copied, 
printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your 
computer system and notify the sender.  Thank you.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: [ot] something similar to phps ?

2004-09-17 Thread Mike Curwen
Ok, I'll bite.

Isn't this what IDE's are for? Browser as IDE? no thanks.  ;)


 -Original Message-
 From: John Villar [mailto:[EMAIL PROTECTED] 
 Sent: Friday, September 17, 2004 9:39 AM
 To: Tomcat Users List
 Subject: Re: [ot] something similar to phps ?
 
 
 Expanding a little more the idea, you could enabled the 
 servlet output 
 to receive modifications to the jsp page and ave it ot the 
 corresponding 
 jsp *grin* and that way you integrate nice output with editing 
 capabilities
 
 John Villar
 Gerente de Proyectos
 Computadores Flor Hard Soft 2058 C.A.
 www.florhard.com
 
 
 
 John Villar escribió:
 
  Also, you could do a Servlet that serves all the .jsps 
 files that take
  the corresponding jsp file and outputs it on html format, coloured 
  with graphics, etc
 
  John Villar
  Gerente de Proyectos
  Computadores Flor Hard Soft 2058 C.A.
  www.florhard.com
 
 
 
  Shapira, Yoav escribió:
 
  Hi,
 
   
 
  would it be of any use to anyone for the development of something

 
  similar
   
 
  to phps in php?  where you can rename a file to .jsps for 
 instance 
  and

 
  it
   
 
  would show you the code line for line and have pretty colours...

 
 
  Something like that is trivial to do already -- just serve the JSP 
  with content-type text/plain from a streaming servlet like 
 Tomcat's 
  DefaultServlet.  That's not to say something like this 
 isn't useful: 
  it's a nice thing to have (although it would have to be 
 turned off on 
  production systems, because it's a security risk).
 
  Yoav
 
 
 
  This e-mail, including any attachments, is a confidential business
  communication, and may contain information that is confidential, 
  proprietary and/or privileged.  This e-mail is intended 
 only for the 
  individual(s) to whom it is addressed, and may not be 
 saved, copied, 
  printed, disclosed or used by anyone else.  If you are not the(an) 
  intended recipient, please immediately delete this e-mail 
 from your 
  computer system and notify the sender.  Thank you.
 
 
  
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: 
 [EMAIL PROTECTED]
 
 
 
   
 
 
 -
 --
 -
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [ot] something similar to phps ?

2004-09-17 Thread John Villar
It isn't a bad idea at all you could use one of those in-browser 
editors to aid in the editing, and the preview would be in another 
frame. dumping  dreamweaver never sounded so good... LOL...

now, speaking seriously, that could be a good alternative to 
noteppading, viing or emacsing and then going to the browser 
window... why leave the window if you can edit it right there. :D my 
marketing skills kicks a** LOL

John Villar
Gerente de Proyectos
Computadores Flor Hard Soft 2058 C.A.
www.florhard.com

Mike Curwen escribió:
Ok, I'll bite.
Isn't this what IDE's are for? Browser as IDE? no thanks.  ;)
 

-Original Message-
From: John Villar [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 17, 2004 9:39 AM
To: Tomcat Users List
Subject: Re: [ot] something similar to phps ?

Expanding a little more the idea, you could enabled the 
servlet output 
to receive modifications to the jsp page and ave it ot the 
corresponding 
jsp *grin* and that way you integrate nice output with editing 
capabilities

John Villar
Gerente de Proyectos
Computadores Flor Hard Soft 2058 C.A.
www.florhard.com

John Villar escribió:
   

Also, you could do a Servlet that serves all the .jsps 
 

files that take
   

the corresponding jsp file and outputs it on html format, coloured 
with graphics, etc

John Villar
Gerente de Proyectos
Computadores Flor Hard Soft 2058 C.A.
www.florhard.com

Shapira, Yoav escribió:
 

Hi,

   

would it be of any use to anyone for the development of something
 
 

similar
   

to phps in php?  where you can rename a file to .jsps for 
 

instance 
   

and
 
 

it
   

would show you the code line for line and have pretty colours...
 
 

Something like that is trivial to do already -- just serve the JSP 
with content-type text/plain from a streaming servlet like 
   

Tomcat's 
   

DefaultServlet.  That's not to say something like this 
   

isn't useful: 
   

it's a nice thing to have (although it would have to be 
   

turned off on 
   

production systems, because it's a security risk).
Yoav

This e-mail, including any attachments, is a confidential business
communication, and may contain information that is confidential, 
proprietary and/or privileged.  This e-mail is intended 
   

only for the 
   

individual(s) to whom it is addressed, and may not be 
   

saved, copied, 
   

printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail 
   

from your 
   

computer system and notify the sender.  Thank you.

   

-
   

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: 
   

[EMAIL PROTECTED]
   


   

-
 

--
   

-
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 

   


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]