[PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Hojtsy Gabor

Hi!

Problem #1
--

Text diff is not working at Chora, at least with IE 5.00,
as it thinks that it needs to display XML content, and
just prints out an XML error. Just the Human readable one
works... :((

Problem #2
--

Someone reported a Chora error at [EMAIL PROTECTED] It
seems he uses Konqueror, and Chora can't find the default
language file to display for him:

| Warning: Undefined index: defaults
| in /usr/local/www/chora.php.net/horde/lib/Lang.php on line 42
|
| Warning: Cannot add header information - headers already sent by
| (output started at /usr/local/www/chora.php.net/horde/lib/Lang.php:42)
| in /usr/local/www/chora.php.net/horde/lib/Lang.php on line 64
|
| [snip]

Problem #3
--

I tried to reach the old CVSWeb interface at
http://cvsweb.php.net/ but it tries to open some PHP
programs, and just don't work.

These things need to be addressed.

Goba


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread John Donagher

On Sun, 19 Aug 2001, Hojtsy Gabor wrote:

 
 Someone reported a Chora error at [EMAIL PROTECTED] It
 seems he uses Konqueror, and Chora can't find the default
 language file to display for him:
 
 | Warning: Undefined index: defaults
 | in /usr/local/www/chora.php.net/horde/lib/Lang.php on line 42
 |
 | Warning: Cannot add header information - headers already sent by
 | (output started at /usr/local/www/chora.php.net/horde/lib/Lang.php:42)
 | in /usr/local/www/chora.php.net/horde/lib/Lang.php on line 64
 |
 | [snip]
 

I reported that last night .. seems to work fine again now.

-- 

John Donagher
Application Engineer, Intacct Corp.

Public key available off http://www.keyserver.net
Key fingerprint = 4024 DF50 56EE 19A3 258A  D628 22DE AD56 EEBE 8DDD


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Anil Madhavapeddy

On Sun, Aug 19, 2001 at 07:23:18PM +0200, Hojtsy Gabor wrote:
 
 Text diff is not working at Chora, at least with IE 5.00,
 as it thinks that it needs to display XML content, and
 just prints out an XML error. Just the Human readable one
 works... :((

Please elaborate.  Is this not working for any files,
or only specific files (with an XML extension), and
only with IE 5.00?  And what do you mean XML Error ?

 Someone reported a Chora error at [EMAIL PROTECTED] It
 seems he uses Konqueror, and Chora can't find the default
 language file to display for him:

Chuck fixed this, was just a config problem.

The version of Chora now has several language translations
available (should autodetect form the browser's
Accept-Language headers).

Anil

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Hojtsy Gabor

  Text diff is not working at Chora, at least with IE 5.00,
  as it thinks that it needs to display XML content, and
  just prints out an XML error. Just the Human readable one
  works... :((

 Please elaborate.  Is this not working for any files,
 or only specific files (with an XML extension)

I have tried the phpdoc files, one XML for example:

http://cvs.php.net/diff.php/phpdoc/en/functions/com.xml?r1=0tr1=1.18f=ur2
=0tr2=1.20

One not XML (.ent) for example:

http://cvs.php.net/diff.php/phpdoc/en/language-defs.ent?r1=0tr1=1.1f=ur2=
0tr2=1.7

 and only with IE 5.00?

Sorry, I don't have any other browser now to test, you
can test with the links above.

 And what do you mean XML Error ?

IE has an internal XML processor (exactly it is the processor
named MSXML) It it finds an error, it just prints (viewing
the page displayed with the last link):

| The XML page cannot be displayed
|
| Cannot view XML input using style sheet. Please correct
| the error and then click the Refresh button, or try again later.
|
| Invalid at the top level of the document. Line 1, Position 1
| =
| ^
|

Maybe Chora puts out an XML content type header, or
something, that makes IE think this is XML (as it
is not). I can't see the source, as IE just denies
to show the source in such cases saying The XML
source file is unavailable for viwing). Please ask,
if more information is needed

[EMAIL PROTECTED]


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Rasmus Lerdorf

 Maybe Chora puts out an XML content type header, or
 something, that makes IE think this is XML (as it
 is not). I can't see the source, as IE just denies
 to show the source in such cases saying The XML
 source file is unavailable for viwing). Please ask,
 if more information is needed

IE is a completely useless web browser.  It does not honour mime types and
simply uses the file extension and/or any client-side file type
associations.  Chora is doing the right thing.  On that com.xml URL you
posted it is sending a text/plain Content-Type header.  The fact that IE
choosed to pass text/plain to an internal XML parser is just one more
reason you should never use IE for web browsing.  You never know what the
thing is going to do.  I would not suggest changing Chora in any way with
this respect.

-Rasmus



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Anil Madhavapeddy

On Sun, Aug 19, 2001 at 12:31:22PM -0700, Rasmus Lerdorf wrote:
  Maybe Chora puts out an XML content type header, or
  something, that makes IE think this is XML (as it
  is not). I can't see the source, as IE just denies
  to show the source in such cases saying The XML
  source file is unavailable for viwing). Please ask,
  if more information is needed
 
 IE is a completely useless web browser.  It does not honour mime types and
 simply uses the file extension and/or any client-side file type
 associations.  Chora is doing the right thing.  On that com.xml URL you
 posted it is sending a text/plain Content-Type header.  The fact that IE
 choosed to pass text/plain to an internal XML parser is just one more
 reason you should never use IE for web browsing.  You never know what the
 thing is going to do.  I would not suggest changing Chora in any way with
 this respect.
 

Agh, I see the problem now.

One workaround is to disable the 'use_path_info' option in
Chora, which will result in IE seeing a '.php' extension
instead of the '.xml' extension.   The old PATH_INFO urls
will still work, but new links will use GET propagation for
the cvs-path. 

Another one is to pad the PATH_INFO for diffs with a '.txt'
extension which will fool IE.  I don't think I'll bother
doing this when the above option is much cleaner.

Anil

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Zeev Suraski

At 22:31 19-08-01, Rasmus Lerdorf wrote:
  Maybe Chora puts out an XML content type header, or
  something, that makes IE think this is XML (as it
  is not). I can't see the source, as IE just denies
  to show the source in such cases saying The XML
  source file is unavailable for viwing). Please ask,
  if more information is needed

IE is a completely useless web browser.

That's why 75% of our users and like 90% of the Web uses it, eh? :)

   It does not honour mime types and
simply uses the file extension and/or any client-side file type
associations.  Chora is doing the right thing.  On that com.xml URL you
posted it is sending a text/plain Content-Type header.  The fact that IE
choosed to pass text/plain to an internal XML parser is just one more
reason you should never use IE for web browsing.  You never know what the
thing is going to do.  I would not suggest changing Chora in any way with
this respect.

'Hadin Yikov Et Hahar'.  I wish I knew how to translate that :)

Zeev


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Rasmus Lerdorf

 At 22:31 19-08-01, Rasmus Lerdorf wrote:
   Maybe Chora puts out an XML content type header, or
   something, that makes IE think this is XML (as it
   is not). I can't see the source, as IE just denies
   to show the source in such cases saying The XML
   source file is unavailable for viwing). Please ask,
   if more information is needed
 
 IE is a completely useless web browser.

 That's why 75% of our users and like 90% of the Web uses it, eh? :)

That doesn't mean that the lack of proper mime type handling doesn't make
it a useless browser.  People use all sorts of useless stuff every day.

-Rasmus


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Zeev Suraski

At 23:14 19-08-01, Rasmus Lerdorf wrote:
That doesn't mean that the lack of proper mime type handling doesn't make
it a useless browser.  People use all sorts of useless stuff every day.

As much as this is appetizing to start a nice browser war, I'll control 
myself.  I think an English teacher could argue with that last sentence of 
yours, though :)

Zeev


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Rasmus Lerdorf

 As much as this is appetizing to start a nice browser war, I'll control
 myself.  I think an English teacher could argue with that last sentence of
 yours, though :)

It was quite intentional.


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Stanislav Malyshev

ZS That's why 75% of our users and like 90% of the Web uses it, eh? :)

Well, we all know that millions of lemmings can't be wrong, but the fact
is that MSIE is pretty crappy browser. The much more sad fact is that the
rest of browsers (which makes 2 or 3 of them) are more crappy (some of
them order of magnitude more crappy).

ZSIt does not honour mime types and
ZS simply uses the file extension and/or any client-side file type
ZS associations.  Chora is doing the right thing.  On that com.xml URL you

It does even worse. It tries to guess file type from the content. I hope
somebody will invent some worm that uses this misfeature so that they
would finally fix it...

-- 
Stanislav Malyshev, Zend Products Engineer
[EMAIL PROTECTED]  http://www.zend.com/ +972-3-6139665 ext.115



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Anil Madhavapeddy

On Sun, Aug 19, 2001 at 11:29:18PM +0300, Stanislav Malyshev wrote:
 
 It does even worse. It tries to guess file type from the content. I hope
 somebody will invent some worm that uses this misfeature so that they
 would finally fix it...
 

Guessing the file-type from the first few magic bytes is
probably a good thing (especially in the case where other
methods have failed, and the MIME type has fallen back to
application/octet-stream or something equally unhelpful).

The bug here is that it ignores the explicit Content-Type
header instead of its own detection mechanisms, which is
clearly bad.

Anyone want to file a Microsoft bug report? :-)

Anil

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread teo

Hi Anil!
On Sun, 19 Aug 2001, Anil Madhavapeddy wrote:
 Guessing the file-type from the first few magic bytes is
 probably a good thing (especially in the case where other
 methods have failed, and the MIME type has fallen back to
 application/octet-stream or something equally unhelpful).
 
uhm,
well, but if I send foo.gif and it starts with some friendly
VBScript I won't bet you'll think the same.

Apache does same guessing on the server, which is safer (and
does not do it by default, iirc.)

 The bug here is that it ignores the explicit Content-Type
 header instead of its own detection mechanisms, which is
 clearly bad.
 
 Anyone want to file a Microsoft bug report? :-)

was already discussed on bugtraq not too long ago; I remember
a link pointing that it's actually a documented feature :) 

-- teodor

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora and CVSWeb problems

2001-08-19 Thread Anil Madhavapeddy

On Mon, Aug 20, 2001 at 04:01:39AM +0300, [EMAIL PROTECTED] wrote:

 well, but if I send foo.gif and it starts with some friendly
 VBScript I won't bet you'll think the same.

Yes I would ... I'm referring to content-MIME mapping, and it
doesnt matter if this happens on the client or server, as long as
there's a sensible precedence order (which is the source of this
IE/Chora problem - it's not obeying the server response headers).

VBScript is irrelevant unless IE does something monumentally
stupid like execute scripts while trying to sniff the MIME type.

Anyway, this is rapidly getting OT (even by php-dev's lax
standards :)

Anil

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora

2001-08-08 Thread Cynic

I have submitted a patch to the chora list. you'll be able to
get the latest revision in HEAD with e. g.
http://cvs.php.net/co.php/php4/NEWS

At 20:09 8/7/2001, Andrew Lindeman formally [EMAIL PROTECTED] wrote the following:
-- 
I don't know how to make it show the current
version, but this is the format is

http://cvs.php.net/co.php/php4/NEWSr=1.726

where 1.78 is the latest revision

Anybody know how to get the current version?

--Andy :)

On Mon, 06 Aug 2001, Richard Heyes wrote:
 Hi,
   The following link used to take me to the latest version of the news file,
 is there a similar option with Chora?
 
 http://cvs.php.net/viewcvs.cgi/~checkout~/php4/NEWS?content-type=text/plain




[EMAIL PROTECTED]
-
And the eyes of them both were opened and they saw that their files
were world readable and writable, so they chmoded 600 their files.
- Book of Installation chapt 3 sec 7 


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora

2001-08-08 Thread Chuck Hagenbuch

Quoting Cynic [EMAIL PROTECTED]:

 I have submitted a patch to the chora list. you'll be able to
 get the latest revision in HEAD with e. g.
 http://cvs.php.net/co.php/php4/NEWS

That link will now work.

-chuck

--
Charles Hagenbuch, [EMAIL PROTECTED]
Some fallen angels have their good reasons.

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Chora

2001-08-07 Thread Richard Heyes

Hi,
The following link used to take me to the latest version of the news file,
is there a similar option with Chora?

http://cvs.php.net/viewcvs.cgi/~checkout~/php4/NEWS?content-type=text/plain

--
Richard Heyes
I know not with what weapons World War III will be fought, but World War IV
will be fought with sticks and stones. - Albert Einstein


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora

2001-08-07 Thread Andrew Lindeman formally [EMAIL PROTECTED]

I don't know how to make it show the current
version, but this is the format is

http://cvs.php.net/co.php/php4/NEWSr=1.726

where 1.78 is the latest revision

Anybody know how to get the current version?

--Andy :)

On Mon, 06 Aug 2001, Richard Heyes wrote:
 Hi,
   The following link used to take me to the latest version of the news file,
 is there a similar option with Chora?
 
 http://cvs.php.net/viewcvs.cgi/~checkout~/php4/NEWS?content-type=text/plain
 
 --
 Richard Heyes
 I know not with what weapons World War III will be fought, but World War IV
 will be fought with sticks and stones. - Albert Einstein
 
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Fwd: Re: [PHP-DEV] Chora

2001-08-07 Thread Andrew Lindeman formally [EMAIL PROTECTED]

Of course I meant that it was

http://cvs.php.net/co.php/php4/NEWS?r=1.726

--  Forwarded Message  --
Subject: Re: [PHP-DEV] Chora
Date: Tue, 7 Aug 2001 13:09:34 -0500
From: Andrew Lindeman formally [EMAIL PROTECTED] [EMAIL PROTECTED]


I don't know how to make it show the current
version, but this is the format is

http://cvs.php.net/co.php/php4/NEWSr=1.726

where 1.78 is the latest revision

Anybody know how to get the current version?

--Andy :)

On Mon, 06 Aug 2001, Richard Heyes wrote:
 Hi,
   The following link used to take me to the latest version of the news file,
 is there a similar option with Chora?
 
 http://cvs.php.net/viewcvs.cgi/~checkout~/php4/NEWS?content-type=text/plain
 
 --
 Richard Heyes
 I know not with what weapons World War III will be fought, but World War IV
 will be fought with sticks and stones. - Albert Einstein
 
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
---

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Chora now the default cvs.php.net system

2001-08-05 Thread Rasmus Lerdorf

I switched Chora over to be the default web cvs system behind cvs.php.net
now.  The old viewcvs site is still available at viewcvs.php.net (dns may
not have updated yet)

-Rasmus


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-30 Thread Ramsi Sras


UNSUBSCRIBE ME PLEASE!!
Alexander Merz schrieb:
> > I'm completely open to better solutions, but
haven't actually be able to
> > find any. We _could_ start browser sniffing I guess.
> My experience is that you have to make fonts slightly bigger for
> Netscape 4.x on X11 and Opera.
It would not be simpler to avoid the use of font-size?
--
PHP Development Mailing List http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



Re: [PHP-DEV] Chora installed

2001-07-29 Thread Alexander Merz

  I'm completely open to better solutions, but haven't actually be able to
  find any.  We _could_ start browser sniffing I guess.
 My experience is that you have to make fonts slightly bigger for
 Netscape 4.x on X11 and Opera.
It would not be simpler to avoid the use of font-size?


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-29 Thread Stig S. Bakken

Alexander Merz wrote:
 
   I'm completely open to better solutions, but haven't actually be able to
   find any.  We _could_ start browser sniffing I guess.
  My experience is that you have to make fonts slightly bigger for
  Netscape 4.x on X11 and Opera.
 It would not be simpler to avoid the use of font-size?

Avoid font-size in CSS you mean?  It would be simpler to avoid CSS at
all if you ask me.  But the world is not that simple, you end up with
weird compromises when you want your site to look nice all browsers.

 - Stig

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-28 Thread Stig S. Bakken

Anil Madhavapeddy wrote:
 
 Alexander Merz wrote:
 
  Please, could you use relative specifications (font-size: small)
  instead of absolute (font-size: 11px) in the css? It's more
  user-friendly and i don't have to look for my eyeglasses each time.
 
 Unfortunately, this isn't consistent cross-platform.
 http://www.alistapart.com/stories/fear4/4.html
 
 (thx Jim Winstead for the above link)
 
 I'm completely open to better solutions, but haven't actually be able to
 find any.  We _could_ start browser sniffing I guess.

My experience is that you have to make fonts slightly bigger for
Netscape 4.x on X11 and Opera.

 - Stig

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-27 Thread Anil Madhavapeddy

Alexander Merz wrote:

 Please, could you use relative specifications (font-size: small)
 instead of absolute (font-size: 11px) in the css? It's more
 user-friendly and i don't have to look for my eyeglasses each time.

Unfortunately, this isn't consistent cross-platform.
http://www.alistapart.com/stories/fear4/4.html

(thx Jim Winstead for the above link)

I'm completely open to better solutions, but haven't actually be able to
find any.  We _could_ start browser sniffing I guess.

Anil


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-27 Thread Markus Fischer

On Fri, Jul 27, 2001 at 08:08:37AM +0100, Anil Madhavapeddy wrote : 
 Alexander Merz wrote:
 
  Please, could you use relative specifications (font-size: small)
  instead of absolute (font-size: 11px) in the css? It's more
  user-friendly and i don't have to look for my eyeglasses each time.
 
 Unfortunately, this isn't consistent cross-platform.
 http://www.alistapart.com/stories/fear4/4.html
 
 (thx Jim Winstead for the above link)
 
 I'm completely open to better solutions, but haven't actually be able to
 find any.  We _could_ start browser sniffing I guess.

The current font looks pretty good to me (altough I'm on
1600x...); but for those out which have problems maybe there can
be implemented a feature/configuration page which saves the
individual font configuration in a cookie ? Leaving the default
to the current one :) 

- Markus

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Dan Kalowsky

Rasmus Lerdorf wrote:
 
 Chuck installed his PHP-based cvs browsing app.  It is available at
 http://chora.php.net.  Go have a look.
 
 I think it looks really good and we should probably make it the default
 for http://cvs.php.net.  Anybody see any reason not to do that?

Make it the default! 

-- 
Dan Kalowsky  Tonight I think I'll walk alone, 
Worldgate Communications   I'll find my soul as I go home.
Software Engineer - TICS Group  - Temptation

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Sebastian Bergmann

Rasmus Lerdorf wrote:
 I think it looks really good and we should probably make it the 
 default for http://cvs.php.net.

  +1, chora just rocks :-)

-- 
  Sebastian Bergmann Measure Traffic  Usability
  http://sebastian-bergmann.de/http://phpOpenTracker.de/

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Martin Jansen

On Thu, 26 Jul 2001 09:02:10 -0700 (PDT), Rasmus Lerdorf wrote:

Chuck installed his PHP-based cvs browsing app.  It is available at
http://chora.php.net.  Go have a look.

I think it looks really good and we should probably make it the default
for http://cvs.php.net.

+1

- Martin



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Jason Greene

I have been using Chora internally for about 2 months, and have had no
issues. I highly recommend we make this the default.

-Jason

- Original Message - 
From: Rasmus Lerdorf [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 26, 2001 11:02 AM
Subject: [PHP-DEV] Chora installed


 Chuck installed his PHP-based cvs browsing app.  It is available at
 http://chora.php.net.  Go have a look.
 
 I think it looks really good and we should probably make it the default
 for http://cvs.php.net.  Anybody see any reason not to do that?
 
 -Rasmus
 
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Anil Madhavapeddy

Rasmus Lerdorf wrote:


 Chuck installed his PHP-based cvs browsing app.  It is
 available at http://chora.php.net.  Go have a look.

 I think it looks really good and we should probably make
 it the default for http://cvs.php.net.  Anybody see any reason
 not to do that?

Cool!!  A few things I noticed:

Fix the mime_drivers.php to point to tar correctly.
http://chora.php.net/co.php/phpweb/Mirrors-htdig.tgz?sa=1r=1.4
and GNU Enscript in there can pretty-print C files as well, if you want.

And if you put an entry in for cvsusers in the cvsroots.php config file,
it will automatically expand committer's full names and email addresses.

Heh, it's great to see it up on php.net :-)

Anil


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Chuck Hagenbuch

Quoting Anil Madhavapeddy [EMAIL PROTECTED]:

 Fix the mime_drivers.php to point to tar correctly.
 http://chora.php.net/co.php/phpweb/Mirrors-htdig.tgz?sa=1r=1.4

Got it.

 and GNU Enscript in there can pretty-print C files as well, if you want.

That's already set up. :)

 And if you put an entry in for cvsusers in the cvsroots.php config file,
 it will automatically expand committer's full names and email addresses.

Got that up, also.

-chuck

--
Charles Hagenbuch, [EMAIL PROTECTED]
Some fallen angels have their good reasons.

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Stig S. Bakken

Rasmus Lerdorf wrote:
 
 Chuck installed his PHP-based cvs browsing app.  It is available at
 http://chora.php.net.  Go have a look.
 
 I think it looks really good and we should probably make it the default
 for http://cvs.php.net.  Anybody see any reason not to do that?

Go ahead.  I recently set up a cvsweb CVS module for the cvs.php.net
website, you could put it there if we want to have version control on
that site.

 - Stig

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Rasmus Lerdorf

  Chuck installed his PHP-based cvs browsing app.  It is available at
  http://chora.php.net.  Go have a look.
 
  I think it looks really good and we should probably make it the default
  for http://cvs.php.net.  Anybody see any reason not to do that?

 Go ahead.  I recently set up a cvsweb CVS module for the cvs.php.net
 website, you could put it there if we want to have version control on
 that site.

That'll be up to Chuck to figure out how he wants to maintain the code.  I
bet Chora is already in CVS somewhere.

-Rasmus


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Rasmus Lerdorf

  Chuck installed his PHP-based cvs browsing app.  It is
  available at http://chora.php.net.  Go have a look.
 
  I think it looks really good and we should probably make
  it the default for http://cvs.php.net.  Anybody see any reason
  not to do that?

 Cool!!  A few things I noticed:

 Fix the mime_drivers.php to point to tar correctly.
 http://chora.php.net/co.php/phpweb/Mirrors-htdig.tgz?sa=1r=1.4
 and GNU Enscript in there can pretty-print C files as well, if you want.

 And if you put an entry in for cvsusers in the cvsroots.php config file,
 it will automatically expand committer's full names and email addresses.

 Heh, it's great to see it up on php.net :-)

By the way, do you think it would be possible to put the CVS commit
message at the top of the long diff coloured output?  I always find I have
to flip back and forth between reading the commit message and reading the
actual diff to understand what is going on.

-Rasmus


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Stig S. Bakken

Chuck Hagenbuch wrote:
 
 Quoting Stig S. Bakken [EMAIL PROTECTED]:
 
  Go ahead.  I recently set up a cvsweb CVS module for the cvs.php.net
  website, you could put it there if we want to have version control on
  that site.
 
 Right now everything in the chora.php.net directory is just a direct checkout
 from cvs.horde.org (conf files being the obvious exception); I'd rather keep it
 that way so it'll be easier to keep things up to date, if possible.

Sure.  I have just one script I need to run off cvs.php.net, but I can
fix that through the Apache config.

 - Stig

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Anil Madhavapeddy

Rasmus Lerdorf wrote:

 By the way, do you think it would be possible to put
 the CVS commit message at the top of the long diff
 coloured output?

Yeah, I've already got a similar change in my local tree that shows the
commit message on the checkout.  I'll add it in for the diff view as
well.

Anil


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DEV] Chora installed

2001-07-26 Thread Alexander Merz

 I think it looks really good and we should probably make it the default
 for http://cvs.php.net.  Anybody see any reason not to do that?
+1

Please, could you use relative specifications (font-size: small) instead of
absolute (font-size: 11px) in the css? It's more user-friendly and i don't
have to look for my eyeglasses each time.


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]