Thilanka Kaushalya | 1 May 2011 06:47
Picon

Re: AJAXify phpMyAdmin Interface - GSOC 2011

Hi Marc,


I want to switch master to jQuery 1.5.2 as soon as the QA_3_4 branch is
created and development for phpMyAdmin 3.5 begins, which should be in a
few weeks.

Since you are planing to move in to jQuery 1.5.2 should I update my created branch to it now, or should I update it after you update the master. 

Regards,
Thilanka.   


--
L G Thilanka Kaushalya     
Computer Science & Engineering,    
University of Moratuwa,
Sri Lanka
                          
Connect with me at,
      Gmail        : lgtkaushalya <at> gmail.com
      Twitter       : <at> thilanka_k
      Facebook  : Thilanka Kaushalya
      Yahoo       : lgtkaushalya <at> yahoo.com
      Blog          : http://coders-view.blogspot.com/


------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
Phpmyadmin-devel mailing list
Phpmyadmin-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Marc Delisle | 1 May 2011 11:56
Gravatar

Re: AJAXify phpMyAdmin Interface - GSOC 2011

Le 2011-05-01 00:47, Thilanka Kaushalya a écrit :
> Hi Marc,
> 
> I want to switch master to jQuery 1.5.2 as soon as the QA_3_4 branch is
>> created and development for phpMyAdmin 3.5 begins, which should be in a
>> few weeks.
> 
> 
> Since you are planing to move in to jQuery 1.5.2 should I update my created
> branch to it now, or should I update it after you update the master.
> 
> Regards,
> Thilanka.

I think it's better to update it after.

--

-- 
Marc Delisle
http://infomarc.info

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
Herman van Rink | 1 May 2011 14:14
Picon

Re: Getting started with unit tests

On 29-04-11 19:21, Rouslan Placella wrote:
> Hi all,
>
> I'm trying to get started with unit tests in PMA as I will be expected
> to create some for the features on which I will be working during the
> summer of code. Well, I have little experience with unit testing and,
> well, I can't get even any of the existing tests to run. And the Wiki
> page is not much help IMO. For example, when I execute "phpunit
> AllTestsPHP" from my console, I get the following error:
>
> Fatal error:  Cannot redeclare PMA_ifSetOr() (previously declared
> in /var/www/phpmyadmin-my/libraries/core.lib.php:39)
> in /var/www/phpmyadmin-my/libraries/core.lib.php on line 46
>
> Any help with this or even a nodge in the right direction much
> appreciated. Thanks.

The current testcases are in bad shape, and are particularly dependant
on some environment settings.
It will be part of Zarubin Stas' project to get these in shape and
improve the documentation for running the tests yourself.
He's already started on his blog: http://zsv.org.ua/2011/pma-dev-env/

PS: Please don't start a new message by replying to a message from this
list. In the mail headers a reference is kept to the original thread
which screws up the threading in most clients. This also increases the
chance that your message get overlooked.

--

-- 
Met vriendelijke groet / Regards,

Herman van Rink 
Initfour websolutions

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
Herman van Rink | 1 May 2011 14:29
Picon

Re: Charts colors and git question

On 30-04-11 15:27, Tyron Madlener wrote:
I thought its a good idea to make the charts adjust to the current theme colors, so I wrote a patch for it: http://www.tyron.at/tmp/chart_colors.patch I also wrote a short blog entry about it, showing screenshots of the new changed charts: http://tyronx.blogspot.com/2011/04/some-better-colors-for-charts.html

Nice improvement to start your project with :)

I tried to pull it to my repos on repo.or.cz but it doesn't accept my user name and password. Set I set up a push account for me though, and typed in my public key. The (Windows)-git-commit-tool-gui shows me the same public key. After I checked out the code, I've added my repos with the command 'git remote add tyronm ssh://repo.or.cz/srv/git/phpmyadmin/tyronm.git' then trying to pull via 'git pull tyronm'. Anyone know what I'm doing wrong?

So you first cloned the phpmyadmin repository from git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
After that the git remote add ... should be correct.

You might try 'git fetch tyronm' to get data from your repo.
I'm not really familiar with repo.or.cz but if the repo there is completely empty you might have to push a branch to it.
'git push tyronm master'

-- Met vriendelijke groet / Regards, Herman van Rink Initfour websolutions
------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
Phpmyadmin-devel mailing list
Phpmyadmin-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Aris Feryanto | 1 May 2011 18:32
Picon
Favicon
Gravatar

Recently Used Tables

Hi all,

I am currently trying to implement a feature that allow users to jump to recently used tables. I have partially implemented this feature in my repo [0] under the branch "browsemode" and want to ask for opinions.

1. Users can interact with a table in several ways: browse, structure, SQL, etc. Are all of these actions should be counted as "accessing a table"?
2. If yes, I am thinking of adding code in several places: sql.php, tbl_structure.php, tbl_sql.php, etc. (every possible values for $GLOBALS['cfg']['LeftDefaultTabTable']) in order to remember the accessed table. Is there any better way than this? (si nce I'm still not very deep with phpMyAdmin code)
3. If no, what actions should be considered as "accessing a table"?

NB: With my branch, you can see up to 5 recently used tables, by clicking table's icon (left of table's name) in the navigation frame. (LeftDefaultTabTables must be configured to the default value, "tbl_structure.php")

[0] http://repo.or.cz/w/phpmyadmin/arisferyanto.git

--
Aris Feryanto
http://arispma.wordpress.com/
------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
Phpmyadmin-devel mailing list
Phpmyadmin-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Aris Feryanto | 1 May 2011 19:06
Picon
Favicon
Gravatar

Re: Charts colors and git question

Hello,

On 1 Mei 2011, at 19:29, Herman van Rink <rink <at> initfour.nl> wrote:

On 30-04-11 15:27, Tyron Madlener wrote:
I tried to pull it to my repos on repo.or.cz but it doesn't accept my user name and password. Set I set up a push account for me though, and typed in my public key. The (Windows)-git-commit-tool-gui shows me the same public key. After I checked out the code, I've added my repos with the command 'git remote add tyronm ssh://repo.or.cz/srv/git/phpmyadmin/tyronm.git' then trying to pull via 'git pull tyronm'. Anyone know what I'm doing wrong?
Can you give some screenshot of the output when you try to pull from your repo?

So you first cloned the phpmyadmin repository from git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
After that the git remote add ... should be correct.

You might try 'git fetch tyronm' to get data from your repo.
I'm not really familiar with repo.or.cz but if the repo there is completely empty you might have to push a branch to it.
'git push tyronm master'

-- Met vriendelijke groet / Regards, Herman van Rink Initfour websolutions
------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
Phpmyadmin-devel mailing list
Phpmyadmin-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Madhura Jayaratne | 1 May 2011 19:57
Picon
Gravatar

DB Operations - Resolution problem

Hi all,


Rouslan, in his comment on tracker item [1] pointed out that with the new layout in DB Operations page, the page looks weird in both Firefox and Opera. He is using the screen resolution of 1280 x 1024.   

I would like to know whether the new layout looks okay/weird in other resolutions as well.

I initially checked with 1366 x 768 and the page looks okay with that resolution.
------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
Phpmyadmin-devel mailing list
Phpmyadmin-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Piotr Przybylski | 1 May 2011 20:10
Picon

Re: DB Operations - Resolution problem

2011/5/1 Madhura Jayaratne <madhura.cj <at> gmail.com>:
> Hi all,
> Rouslan, in his comment on tracker item [1] pointed out that with the new
> layout in DB Operations page, the page looks weird in both Firefox and
> Opera. He is using the screen resolution of 1280 x 1024.
> I would like to know whether the new layout looks okay/weird in other
> resolutions as well.
> I initially checked with 1366 x 768 and the page looks okay with that
> resolution.

Make your window narrower and you will see this effect. For database
operations tab this limit seems to be 944 pixels in width (page body,
not browser window), and for table operations 837 pixels (give or take
a few px).

We can ignore this problem, or assume people use modern browsers and
add CSS media queries for targeting small screen widths.

--

-- 
Piotr Przybylski

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
Rouslan Placella | 1 May 2011 20:46
Gravatar

Re: DB Operations - Resolution problem

On Sun, 2011-05-01 at 20:10 +0200, Piotr Przybylski wrote:
> 2011/5/1 Madhura Jayaratne <madhura.cj <at> gmail.com>:
> > Hi all,
> > Rouslan, in his comment on tracker item [1] pointed out that with the new
> > layout in DB Operations page, the page looks weird in both Firefox and
> > Opera. He is using the screen resolution of 1280 x 1024.
> > I would like to know whether the new layout looks okay/weird in other
> > resolutions as well.
> > I initially checked with 1366 x 768 and the page looks okay with that
> > resolution.
> 
> Make your window narrower and you will see this effect. For database
> operations tab this limit seems to be 944 pixels in width (page body,
> not browser window), and for table operations 837 pixels (give or take
> a few px).
> 
> We can ignore this problem, or assume people use modern browsers and
> add CSS media queries for targeting small screen widths.
> 

No need to ignore it IMO, as this is very easily fixable.
Please find a patch with a proposed solution attached to this email.

Rouslan
------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
Phpmyadmin-devel mailing list
Phpmyadmin-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Aris Feryanto | 1 May 2011 20:25
Picon
Favicon
Gravatar

Re: DB Operations - Resolution problem

Hi,

I tried it on my 1280x800 screen and it gave me results like Rouslan's screenshot. Only after reducing the
font size, I can see the operation tab neatly.
(FF 3.6.16, ubuntu)

--
Aris Feryanto

On 2 Mei 2011, at 01:10, Piotr Przybylski <piotr.prz <at> gmail.com> wrote:

> 2011/5/1 Madhura Jayaratne <madhura.cj <at> gmail.com>:
>> Hi all,
>> Rouslan, in his comment on tracker item [1] pointed out that with the new
>> layout in DB Operations page, the page looks weird in both Firefox and
>> Opera. He is using the screen resolution of 1280 x 1024.
>> I would like to know whether the new layout looks okay/weird in other
>> resolutions as well.
>> I initially checked with 1366 x 768 and the page looks okay with that
>> resolution.
> 
> Make your window narrower and you will see this effect. For database
> operations tab this limit seems to be 944 pixels in width (page body,
> not browser window), and for table operations 837 pixels (give or take
> a few px).
> 
> We can ignore this problem, or assume people use modern browsers and
> add CSS media queries for targeting small screen widths.
> 
> -- 
> Piotr Przybylski
> 

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd

Gmane