Hi all!
First I would like to know if some of you have faced a
javascript error with the new version of the collapsible/
expandable list of db at the left frame. In the case of
negative replies I'll merge it in the stable branch
tomorrow.
I've just tested it with the new version of Mozilla and it
runs.
Marc wrote:
>I put a demo:
>http://sourceforge.net/tracker/download.php?group_id=23067&atid=377411&file
_id=6094&aid=416674
Hue, sounds really interesting :) But you may need a large
screen to see all the indexes. BTW I'm not sure this is a
true problem...
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
As I see from the demo page, it won't allow us
to specify the order of multi-field index.
Index on (field1, field2) is different from (field2,
field1).
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/
A few days ago ;) Marc wrote:
>this shell script adds a message to all message files.
> Maybe someone could put it in the /lang directory?
Done in both of the the CVS tree.
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
Hi all!
Marc wrote:
>if I put 2 in the >Show __ I get:
>Warning: Invalid argument supplied for foreach()
>in /home/groups/p/ph/phpmyadmin/htdocs/tmp/sql.php
>on line 5
Ouch, 'foreach()' is a php4+ only function....
Regards,
Loic
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
Please see the demo here
http://phpmyadmin.sourceforge.net/tmp/inplace.html
(is it ok to use our website space for this?, done it
anyway)
It is not finish yet, but it has gone quite far.
Please comment, before I commit it to the devel tree.
Korakot
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/
Hello,
this shell script adds a message to all message files. Maybe
someone could put it in the /lang directory?
================================================================
#!/bin/bash
#
# Example: add_message '$strNewMessage' 'new message contents'
#
for file in *.inc.php3
do
echo $file " "
grep -v '?>' ${file} > ${file}.new
echo "$1=\"" $2 '"; //to translate' >> ${file}.new
echo "?>" >> ${file}.new
rm $file
mv ${file}.new $file
done
echo " "
echo "This script also added the new message to english.inc.php3"
==================================================================
Hi Korakot!
>Now I don't know how to spell or
>pronounce names of our 2 project admins...
>Oliver/Looc ?
Olivier and Loic (all the characters have to be
pronounced for both of the names).
>Now there are too many channels to discuss the
>development discussion. Should a feature be discuss in
>Feature Tracker or Developer Mailinglist or Forum or
>personal(1-1) email?
>We could discuss it in mailing list first and post
>some summary in Feature Tracker.
That's the best solution. But maybe the personal emails
could be used when two developers are working on
the same feature and have details to talk about. That's
what I have done with you about CSS improvements.
>Looc discuss i18n with me using 1-1 mail (not respond
>yet) and now he has commit it to CVS.
???? I did not submit anything related to this feature to the
CVS yet ??? I'm waiting for your reply before to start
working on this... or let you do the work ;)
At this time, my two contributions are improved language
detection system and improved javascript for collapsible
lists.
>According to XP (extreme programming), we should
>have 2 developers looking at the code togeter before
>commit.
Right, we should. The problem is to know if we have
enough free time to do it...
> (<looc> sorry for not promptly respone mail)
Don't bother ;)
>- should we go for php4 or still 100% support php3?
As to me: 100% support php3
>- translation could be done with 3 approach, which one
> should we use (define(), array, or gettext) ?
I'm not sure gettext can be used with php3; constants requires more CPU time
to be defined than variable according to some benchings I've done and their
use inside functions is buggy with php3 and some versions of php4; then
arrays seems to me the best solution. But why not to keep the current
variables?
> browser support and javascript. (eg. my inplace-edit
> feature using DOM scripting) We must support IE,
> Moz,Konq. Should we try support NN4/Opera
> DHTML as well?
I think yes for NN4, as far as possible.
For Opera the problem is not the same: half of the releases
of this browser have crappy javascript/DOM
implementations.
Ex with Opera for MS releases: 3.? are not so bad, 4.?
are really really crappy, 5.0 -> 5.02 are near supporting
DOM but with importants lacks, >5.02 seems to be
DOM compliant.... but have huge limitations about simple
javascript instructions.
The only solution (which is a good pratice) is to always
test if objet/function exists before to use them.
>- The language detection code is still not pretty.
> The variable convention such as $notFound and
> function pmaLangDetect is not consistent with
> the rest of php. This is one reason I suggest we
> have a coding guideline (like sourceforge's)
Good idea. I've also found that identation use sometimes
tab characters and somtimes space characters.
Who will work on this? I suggest to use the
PEAR coding standards.
Regards,
Loic
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
>I added bookmark support to the current -devel tree.
Great :)) I'll test it tonight
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
>> I am concerned that we are beginning to use much vertical space on the
>> page.
>> What size screen resolution are most people running this at?
>> I use a 17" monitor at 1152x768, and a 21" monitor at 2048x1536.
>Humm, i think that it's 1024x768.
I think that the 800*600 resolution is always widely in use.
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
On Mon, 7 May 2001, Robin wrote:
>> Ouch, UTF-8 ? Many browsers won't like this charset. Actually I'm afraid
>> only the major ones (IE and Moz. -then maybe NN6-) knows this charset.
>The majority of browsers will ignore the XML tag :-)
>Thusly, the problem doesn't exist.
Good reply ;)
>> Moreover I've faced some problems with this instruction inside php files:
>> the php parser try... to parse <?xml.... How do you avoid this?
>Turn off the parsing of short PHP tags in the ini file. I had to do this
>long ago because I do the odd bit of XML with PHP already. I think there
>is a way you can do it in the .htaccess file as well (or something).
Arg, that's a problem because the new version had an important improvement
as to me : users no long need to play with the 'register_globals' and the
'magic_quotes' directives inside their php configuration or some '.htaccess'
files.
No other way to fix the problem with the '<?xml' tag? Maybe can we use an
'echo' or a 'print'?
>Actually, I have seen other text directions in NN4 before, notably
>arabic on my friends computer. (Well he runs arabic windows as well)
>I'll get him to try it on Moz to see if that works.
See for example 'www.arabvista.com': to ensure NN4 users are able to read
Arabic pages in a convenient format, they have to 'double-write' their html
pages
:(
Loic
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif