Hi Dann!
>is there a reason why the style sheet are not in
>one file?
Well there are three:
1. We can't find time to work on this yet ;)
2. css used for the left and the right frames are quite different,
so the best solution would be (IMHO) to have to external
style sheet ;
3. the left frame style sheet widely depends on js/DOM
browser implementation and must be loaded by js, so it's
not so easy to do.
>I saw in the forums that there's some problem with font size
>on certain OS/Browser
Most of these problems have been fixed now. There are
maybe some Linux remaining problem but it will be hard to
check what are the good values for each Linux browser....
And I'm not sure something better can be done in this area.
>by having CSS we could start to centralize the data,
>then we could look more into the font problem by having
>conditionnal CSS.
This is already done in a php way (see the "set_font_size()"
function inside "libraries/common.lib.php3").
BTW we have wanted to build external style sheets for a long
time. If you would like to work on it please do it :)
Just ensure such an improvement do not break NS4+
compatibility (NS4 has a really crappy CSS implementation).
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
Hi all,
First of all, I would like to say what a great job you made for the phpMyAdmin projet.
Now my question =), is there a reason why the style sheet are not in one file? I'm asking 'cause I would like to participate in making the changes. I saw in the forums that there's some problem with font size on certain OS/Browser, by having CSS we could start to centralize the data, then we could look more into the font problem by having conditionnal CSS.
PS: This all started because, I wanted to change the font color =)
Dann Cohen
Toxik Technologies, Inc.
www.toxik.com - (514) 528-6945 x 2
Hi again!
Thanks Marc & Robin for your testings :)
And thanks Robin for the tip about 4.1 or 4.2, I'll check it as soon as 4.1
is released (I'll already have the 4.1.0-rc3 but at this stage, the best is
to wait
the plain release IMHO).
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
Hi List!
I would like you to test the current CVS version because
two important fixes has been commited since 2.2.2-rc1:
- output buffering was never used for the left frame and this
was the reason for a strange behaviour under win XP (it
may also help to fix some crashes with win NT/2000 and
Apache or IIS but I'm not sure of it) ;
- there were a possible security hole with the uploading
feature.
Maybe we should plan to roll a rc1 at the end of this week,
this way we may also be able to test PMA under php 4.1.0
that will be released very soon (Zeev talked about today).
Just a not so funny note about sessions and this new php
release: see http://marc.theaimsgroup.com/?l=php-dev&m=100676695925860&w=2
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
Thanks Marc :)
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
Hi List!
It would be nice if one of the dev. can have a look at the
thred "Configuring phpMyAdmin to use a proxy" at the
phpWizard forum.
Thanks,
Loïc
PS: have you give a try the 2.2.2-rc1 revision?
______________________________________________________________________________
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 Everyone
First I want to excuse if this task has already been discussed. I do not want
to produce overhead ;-)
I am working with PHP and MySQL all day long, and have to work with several
customer databases. Therefore I have every database in the config file.
Adding a new database is really inconvinient, and I simply hate the way it is
done. Not because it is not useful, but simply because I have to leave the
Browser window. After adding a 6th database this morning, I decided to do
something against it. Here is what I have done:
The Database configurations are being stored in a database table. In the
config.inc.php the $cfgServer entries have been removed, instead some
$cfgDBServer entries have been written, to select the database in use.
Adv_Auth entries can either be entered globally by setting
$cfgDBServer["adv_auth"]
or database specific by setting the corresponding database entry.
libraries/common.lib.php has been expanded by adding a short (starting
at about line 300 ) If clause which checks for $cfgDBServers being TRUE,
unsetting $cfgServer if this is the case, and reading the entries from the
Database table. Therefore existing configurations have to be proted to the
database, I guess you could uncomment the unset($cfgServers) statement
without any problems, this was simply not what I wanted it to do.
Localization in the error messages is not being done by now, the errors occur
in english.
I append the additions to common.lib.php and config.inc.php as diff against
the current Release Candidate ( 2.2.2-rc1 ) version. I do not know if it
works against CVS, but should do so without any problems. Keep me posted, if
it works and what you think of it.
CU Roland
Hi Everyone
First I want to excuse if this task has already been discussed. I do not want
to produce overhead ;-)
I am working with PHP and MySQL all day long, and have to work with several
customer databases. Therefore I have every database in the config file.
Adding a new database is really inconvinient, and I simply hate the way it is
done. Not because it is not useful, but simply because I have to leave the
Browser window. After adding a 6th database this morning, I decided to do
something against it. Here is what I have done:
The Database configurations are being stored in a database table. In the
config.inc.php the $cfgServer entries have been removed, instead some
$cfgDBServer entries have been written, to select the database in use.
Adv_Auth entries can either be entered globally by setting
$cfgDBServer["adv_auth"]
or database specific by setting the corresponding database entry.
libraries/common.lib.php has been expanded by adding a short (starting
at about line 300 ) If clause which checks for $cfgDBServers being TRUE,
unsetting $cfgServer if this is the case, and reading the entries from the
Database table. Therefore existing configurations have to be proted to the
database, I guess you could uncomment the unset($cfgServers) statement
without any problems, this was simply not what I wanted it to do.
Localization in the error messages is not being done by now, the errors occur
in english.
I append the additions to common.lib.php and config.inc.php as diff against
the current Release Candidate ( 2.2.2-rc1 ) version. I do not know if it
works against CVS, but should do so without any problems. Keep me posted, if
it works and what you think of it.
CU Roland
Hi Lists!
phpMyAdmin 2.2.2-rc1 was released a few minuts ago. Wait till
SourceForge update the release page and you'll be able to download it.
Please have alook at it, test it, translate it,.... and reports bugs.
Thanks!
Loïc for the phpMyAdmin development team
Here is the brief list of changes:
-------------------------------------------------------------------------
Most important bugs fixed since 2.2.1:
- security has been improved;
- running sql scripts from the "table properties" page is fixed;
- databases' names containing "_" or "%" characters weren't displayed at the
left frame;
- fixed server crashes while changing binary data;
- merged a workaround to allow exporting dump files with IE and phpMyAdmin
on a secured server (SSH).
Enhancements since 2.2.1:
- enhanced index creation script has been added;
- inserting a sequence of records is possible now;
- added an indicator in browse mode (does not work with NS 4+)
- started the work to handle right to left writting and added Arabic
translation;
- some languages were updated.
----------------------------------------------------------------------------
--
______________________________________________________________________________
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