Hi I need some help here, to implement a drag and drop I need to do some UI tweak, like there need to be a <div> to be shown in case of dragover event, and we need another to show the upload status!
Also I need help with design here: How I'm planning it is: 1. User drops a file at any page! (logged in) 2. the dropped files if (sql) are uploaded asynchronously and the status of upload is shown somewhere in bottom right corner. 3. At the backend the uploaded sql is parsed and output is sent back as JSON and once the object has been received, the pagecontent is replaced with the received output! (as happens for any other request in PMA)
I need help with which file I might need to edit, to add a div to the common UI! for js part I'll add codes to AJAX.js
Also I sent few attachments to the same thread, but I guess moderator needs to allow it first. It had screenshots of UI I was planning!
Minhaz, minhaz.cistoner.org || cistoner.org
Le 2014-05-24 12:37, Minhaz A V a écrit :
Hi I need some help here, to implement a drag and drop I need to do some UI tweak, like there need to be a <div> to be shown in case of dragover event, and we need another to show the upload status!
Also I need help with design here: How I'm planning it is:
- User drops a file at any page! (logged in)
- the dropped files if (sql) are uploaded asynchronously and the status
of upload is shown somewhere in bottom right corner. 3. At the backend the uploaded sql is parsed and output is sent back as JSON and once the object has been received, the pagecontent is replaced with the received output! (as happens for any other request in PMA)
I need help with which file I might need to edit, to add a div to the common UI! for js part I'll add codes to AJAX.js
Also I sent few attachments to the same thread, but I guess moderator needs to allow it first. It had screenshots of UI I was planning!
I'm not sure that it's a good idea to send 1 MB of screenshots to the list. Can you put them online somewhere and just send URLs to the list?
Links to screenshots: http://cistoner.org/blog/minhaz/wp-content/uploads/2014/05/Untitled-1024x529... http://cistoner.org/blog/minhaz/wp-content/uploads/2014/05/option2-1024x530.... http://cistoner.org/blog/minhaz/wp-content/uploads/2014/05/option3-1024x532....
If you have one in mind, do point it to me!
Minhaz, minhaz.cistoner.org || cistoner.org
On Sat, May 24, 2014 at 10:27 PM, Marc Delisle marc@infomarc.info wrote:
Le 2014-05-24 12:37, Minhaz A V a écrit :
Hi I need some help here, to implement a drag and drop I need to do some UI tweak, like there need to be a <div> to be shown in case of dragover event, and we need another to show the upload status!
Also I need help with design here: How I'm planning it is:
- User drops a file at any page! (logged in)
- the dropped files if (sql) are uploaded asynchronously and the status
of upload is shown somewhere in bottom right corner. 3. At the backend the uploaded sql is parsed and output is sent back as JSON and once the object has been received, the pagecontent is replaced with the received output! (as happens for any other request in PMA)
I need help with which file I might need to edit, to add a div to the common UI! for js part I'll add codes to AJAX.js
Also I sent few attachments to the same thread, but I guess moderator needs to allow it first. It had screenshots of UI I was planning!
I'm not sure that it's a good idea to send 1 MB of screenshots to the list. Can you put them online somewhere and just send URLs to the list?
-- Marc Delisle | phpMyAdmin
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Hi Minhaz,
On May 24, 2014 10:07:36 PM GMT+05:30, Minhaz A V minhazav@gmail.com wrote:
Hi I need some help here, to implement a drag and drop I need to do some UI tweak, like there need to be a <div> to be shown in case of dragover event, and we need another to show the upload status!
Also I need help with design here: How I'm planning it is:
- User drops a file at any page! (logged in)
- the dropped files if (sql) are uploaded asynchronously and the
status of upload is shown somewhere in bottom right corner. 3. At the backend the uploaded sql is parsed and output is sent back as JSON and once the object has been received, the pagecontent is replaced with the received output! (as happens for any other request in PMA)
Right, so if you haven't already figured it out, if you plan to keep the upload and status divs on each page, you would need to put them out of page_content and add a .not() for them in ajax.js as is already done for many other divs like header and footer divs.
I need help with which file I might need to edit, to add a div to the common UI! for js part I'll add codes to AJAX.js
As it is about import functionality and doesn't make changes to broader AJAX functionality, I think you should use common.js for handlers and functions.js for any functions.
On 5/24/14 12:37 PM, Minhaz A V wrote:
Hi I need some help here, to implement a drag and drop I need to do some UI tweak, like there need to be a <div> to be shown in case of dragover event, and we need another to show the upload status!
Also I need help with design here: How I'm planning it is:
- User drops a file at any page! (logged in)
My own thoughts are that we only need to expect this behavior on the Import page.
- the dropped files if (sql) are uploaded asynchronously and the status
of upload is shown somewhere in bottom right corner. 3. At the backend the uploaded sql is parsed and output is sent back as JSON and once the object has been received, the pagecontent is replaced with the received output! (as happens for any other request in PMA)
I need help with which file I might need to edit, to add a div to the common UI! for js part I'll add codes to AJAX.js
Also I sent few attachments to the same thread, but I guess moderator needs to allow it first. It had screenshots of UI I was planning!
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Hi Issac, Adding this functionality to just import page, would be just an addon to import feature. Now if we implement this to all pages, it would add a feature to an event which is currently empty. I mean there is no function currently bound to drag events, Also if this feature is implemented, I can't think of false positives as I can't imagine a user dragging a sql for any other purpose but import
Minhaz, minhaz.cistoner.org || cistoner.org
On Sun, May 25, 2014 at 3:13 AM, Isaac Bennetch bennetch@gmail.com wrote:
On 5/24/14 12:37 PM, Minhaz A V wrote:
Hi I need some help here, to implement a drag and drop I need to do some UI tweak, like there need to be a <div> to be shown in case of dragover event, and we need another to show the upload status!
Also I need help with design here: How I'm planning it is:
- User drops a file at any page! (logged in)
My own thoughts are that we only need to expect this behavior on the Import page.
- the dropped files if (sql) are uploaded asynchronously and the status
of upload is shown somewhere in bottom right corner. 3. At the backend the uploaded sql is parsed and output is sent back as JSON and once the object has been received, the pagecontent is replaced with the received output! (as happens for any other request in PMA)
I need help with which file I might need to edit, to add a div to the common UI! for js part I'll add codes to AJAX.js
Also I sent few attachments to the same thread, but I guess moderator needs to allow it first. It had screenshots of UI I was planning!
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform
available
Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Le 2014-05-24 18:30, Minhaz A V a écrit :
Hi Issac, Adding this functionality to just import page, would be just an addon to import feature. Now if we implement this to all pages, it would add a feature to an event which is currently empty. I mean there is no function currently bound to drag events, Also if this feature is implemented, I can't think of false positives as I can't imagine a user dragging a sql for any other purpose but import
Hi Minhaz, how do you plan to advertise this new feature, if it's available on any page? On the import page, it's easier to "educate" users about this.
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sun, May 25, 2014 at 3:13 AM, Isaac Bennetch <bennetch@gmail.com mailto:bennetch@gmail.com> wrote:
On 5/24/14 12:37 PM, Minhaz A V wrote: > Hi I need some help here, to implement a drag and drop I need to do some > UI tweak, like there need to be a <div> to be shown in case of dragover > event, and we need another to show the upload status! > > Also I need help with design here: How I'm planning it is: > 1. User drops a file at any page! (logged in) My own thoughts are that we only need to expect this behavior on the Import page. > 2. the dropped files if (sql) are uploaded asynchronously and the status > of upload is shown somewhere in bottom right corner. > 3. At the backend the uploaded sql is parsed and output is sent back as > JSON and once the object has been received, the pagecontent is replaced > with the received output! (as happens for any other request in PMA) > > I need help with which file I might need to edit, to add a div to the > common UI! for js part I'll add codes to AJAX.js > > > Also I sent few attachments to the same thread, but I guess moderator > needs to allow it first. It had screenshots of UI I was planning! > > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > ------------------------------------------------------------------------------ "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Marc you are right, it is good question, how this feature will be informed to users. On the import page we can show a drop location where user drops the sql file and its uploaded asynchronously.
I still feel, its an event that currently not bound to anything. In the import page we can inform the user *"You can import a file, anytime by dropping the file to pma" *and gradually users will get used to it. I did a portion of implementation last night and it looks like: http://www.youtube.com/watch?v=CRQtIV8pZUA I'd like to know more opinions on how this should be implemented!
Minhaz, minhaz.cistoner.org || cistoner.org
On Sun, May 25, 2014 at 4:03 AM, Marc Delisle marc@infomarc.info wrote:
Le 2014-05-24 18:30, Minhaz A V a écrit :
Hi Issac, Adding this functionality to just import page, would be just an addon to import feature. Now if we implement this to all pages, it would add a feature to an event which is currently empty. I mean there is no function currently bound to drag events, Also if this feature is implemented, I can't think of false positives as I can't imagine a user dragging a sql for any other purpose but import
Hi Minhaz, how do you plan to advertise this new feature, if it's available on any page? On the import page, it's easier to "educate" users about this.
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sun, May 25, 2014 at 3:13 AM, Isaac Bennetch <bennetch@gmail.com mailto:bennetch@gmail.com> wrote:
On 5/24/14 12:37 PM, Minhaz A V wrote: > Hi I need some help here, to implement a drag and drop I need to do some > UI tweak, like there need to be a <div> to be shown in case of dragover > event, and we need another to show the upload status! > > Also I need help with design here: How I'm planning it is: > 1. User drops a file at any page! (logged in) My own thoughts are that we only need to expect this behavior on the Import page. > 2. the dropped files if (sql) are uploaded asynchronously and the status > of upload is shown somewhere in bottom right corner. > 3. At the backend the uploaded sql is parsed and output is sent back as > JSON and once the object has been received, the pagecontent is replaced > with the received output! (as happens for any other request in PMA) > > I need help with which file I might need to edit, to add a div to
the
> common UI! for js part I'll add codes to AJAX.js > > > Also I sent few attachments to the same thread, but I guess
moderator
> needs to allow it first. It had screenshots of UI I was planning! > > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > >
> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For
FREE
> Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel >
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For
FREE
Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform
available
Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
-- Marc Delisle | phpMyAdmin
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Le 2014-05-24 21:19, Minhaz A V a écrit :
Marc you are right, it is good question, how this feature will be informed to users. On the import page we can show a drop location where user drops the sql file and its uploaded asynchronously.
I still feel, its an event that currently not bound to anything. In the import page we can inform the user *"You can import a file, anytime by dropping the file to pma" *and gradually users will get used to it. I did a portion of implementation last night and it looks like: http://www.youtube.com/watch?v=CRQtIV8pZUA I'd like to know more opinions on how this should be implemented!
On the Import page, we could replace "Browse your computer" with "Browse your computer or drop a file on any phpMyAdmin panel" or something like that.
I assume that this drop action only replaces the filename selection, and that the user can still choose import options before clicking on Go.
By the way, do you intend this to work for any supported import format?
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sun, May 25, 2014 at 4:03 AM, Marc Delisle <marc@infomarc.info mailto:marc@infomarc.info> wrote:
Le 2014-05-24 18:30, Minhaz A V a écrit : > Hi Issac, > Adding this functionality to just import page, would be just an addon to > import feature. > Now if we implement this to all pages, it would add a feature to an > event which is currently empty. I mean there is no function currently > bound to drag events, Also if this feature is implemented, I can't think > of false positives as I can't imagine a user dragging a sql for any > other purpose but import Hi Minhaz, how do you plan to advertise this new feature, if it's available on any page? On the import page, it's easier to "educate" users about this. > > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > > On Sun, May 25, 2014 at 3:13 AM, Isaac Bennetch <bennetch@gmail.com <mailto:bennetch@gmail.com> > <mailto:bennetch@gmail.com <mailto:bennetch@gmail.com>>> wrote: > > > > On 5/24/14 12:37 PM, Minhaz A V wrote: > > Hi I need some help here, to implement a drag and drop I need to > do some > > UI tweak, like there need to be a <div> to be shown in case of > dragover > > event, and we need another to show the upload status! > > > > Also I need help with design here: How I'm planning it is: > > 1. User drops a file at any page! (logged in) > > My own thoughts are that we only need to expect this behavior on the > Import page. > > > 2. the dropped files if (sql) are uploaded asynchronously and the > status > > of upload is shown somewhere in bottom right corner. > > 3. At the backend the uploaded sql is parsed and output is sent > back as > > JSON and once the object has been received, the pagecontent is > replaced > > with the received output! (as happens for any other request in PMA) > > > > I need help with which file I might need to edit, to add a div to the > > common UI! for js part I'll add codes to AJAX.js > > > > > > Also I sent few attachments to the same thread, but I guess moderator > > needs to allow it first. It had screenshots of UI I was planning! > > > > > > Minhaz, > > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> > <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> <http://cistoner.org> > > <http://cistoner.org> > > > > > > > ------------------------------------------------------------------------------ > > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > > Instantly run your Selenium tests across 300+ browser/OS combos. > > Get unparalleled scalability from the best Selenium testing > platform available > > Simple to use. Nothing to install. Get started now for free." > > http://p.sf.net/sfu/SauceLabs > > > > > > > > _______________________________________________ > > Phpmyadmin-devel mailing list > > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform > available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > > ------------------------------------------------------------------------------ > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > -- Marc Delisle | phpMyAdmin ------------------------------------------------------------------------------ "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Yeah, it should allow upload of selected formats only, like sql,zip etc
Minhaz, minhaz.cistoner.org || cistoner.org
On Sun, May 25, 2014 at 7:22 PM, Marc Delisle marc@infomarc.info wrote:
Le 2014-05-24 21:19, Minhaz A V a écrit :
Marc you are right, it is good question, how this feature will be informed to users. On the import page we can show a drop location where user drops the sql file and its uploaded asynchronously.
I still feel, its an event that currently not bound to anything. In the import page we can inform the user *"You can import a file, anytime by dropping the file to pma" *and gradually users will get used to it. I did a portion of implementation last night and it looks like: http://www.youtube.com/watch?v=CRQtIV8pZUA I'd like to know more opinions on how this should be implemented!
On the Import page, we could replace "Browse your computer" with "Browse your computer or drop a file on any phpMyAdmin panel" or something like that.
I assume that this drop action only replaces the filename selection, and that the user can still choose import options before clicking on Go.
By the way, do you intend this to work for any supported import format?
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sun, May 25, 2014 at 4:03 AM, Marc Delisle <marc@infomarc.info mailto:marc@infomarc.info> wrote:
Le 2014-05-24 18:30, Minhaz A V a écrit : > Hi Issac, > Adding this functionality to just import page, would be just an addon to > import feature. > Now if we implement this to all pages, it would add a feature to an > event which is currently empty. I mean there is no function
currently
> bound to drag events, Also if this feature is implemented, I can't think > of false positives as I can't imagine a user dragging a sql for any > other purpose but import Hi Minhaz, how do you plan to advertise this new feature, if it's available on
any
page? On the import page, it's easier to "educate" users about this. > > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > > On Sun, May 25, 2014 at 3:13 AM, Isaac Bennetch <bennetch@gmail.com <mailto:bennetch@gmail.com> > <mailto:bennetch@gmail.com <mailto:bennetch@gmail.com>>> wrote: > > > > On 5/24/14 12:37 PM, Minhaz A V wrote: > > Hi I need some help here, to implement a drag and drop I
need to
> do some > > UI tweak, like there need to be a <div> to be shown in case
of
> dragover > > event, and we need another to show the upload status! > > > > Also I need help with design here: How I'm planning it is: > > 1. User drops a file at any page! (logged in) > > My own thoughts are that we only need to expect this behavior on the > Import page. > > > 2. the dropped files if (sql) are uploaded asynchronously and the > status > > of upload is shown somewhere in bottom right corner. > > 3. At the backend the uploaded sql is parsed and output is
sent
> back as > > JSON and once the object has been received, the pagecontent
is
> replaced > > with the received output! (as happens for any other request in PMA) > > > > I need help with which file I might need to edit, to add a div to the > > common UI! for js part I'll add codes to AJAX.js > > > > > > Also I sent few attachments to the same thread, but I guess moderator > > needs to allow it first. It had screenshots of UI I was planning! > > > > > > Minhaz, > > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> > <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> <http://cistoner.org> > > <http://cistoner.org> > > > > > > >
> > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > > Instantly run your Selenium tests across 300+ browser/OS
combos.
> > Get unparalleled scalability from the best Selenium testing > platform available > > Simple to use. Nothing to install. Get started now for free." > > http://p.sf.net/sfu/SauceLabs > > > > > > > > _______________________________________________ > > Phpmyadmin-devel mailing list > > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > >
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
> > > >
> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS
combos.
> Get unparalleled scalability from the best Selenium testing platform > available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > >
> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For
FREE
> Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > -- Marc Delisle | phpMyAdmin
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For
FREE
Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform
available
Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
-- Marc Delisle | phpMyAdmin
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Is the type of UI mentioned in video good or I shall tweak it. Any suggestions for any other parts ?
sent from HTC ONE S
Hi, I have been working on this and I have added link [1] https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be to screen video for current implementation till now. Currently we can successfully import sql files to server, asynchronously. I needed little help with these things:
1] js method to retrieve token, noplugin, MAX_FILE_SIZE, charset etc for file upload 2] Now I'd have to add functionality in import.php that it produce JSON response in case of ajax upload, any tips? 3] Currently the <div> for file upload is at navigation class, where should it be kept if not there? 4] When a certain file is uploaded and processed, how should it be shown to users, like should we refresh the page content? or something else?
link to video 1. https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be
Also code changes are available at: 2 https://github.com/mebjas/phpmyadmin/commit/023273cbac6dd8f3b4b76fcb6e1034d5... 3 https://github.com/mebjas/phpmyadmin/commit/c8fe9372f8aeb96c1048fd25036c5bf5... 4 https://github.com/mebjas/phpmyadmin/commit/36dffe054a03e0e0af924a49ea60fff9...
Minhaz, minhaz.cistoner.org || cistoner.org
On Sat, May 31, 2014 at 5:14 PM, Marc Delisle marc@infomarc.info wrote:
Le 2014-05-30 15:55, Minhaz A V a écrit :
Is the type of UI mentioned in video good or I shall tweak it. Any suggestions for any other parts ?
Yes, it looked fine.
-- Marc Delisle | phpMyAdmin
Time is money. Stop wasting it! Get your web API in 5 minutes. www.restlet.com/download http://p.sf.net/sfu/restlet _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Hi,
On 6/15/14 3:50 PM, Minhaz A V wrote:
Hi, I have been working on this and I have added link [1] https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be to screen video for current implementation till now.
I think it looks quite nice so far.
Currently we can successfully import sql files to server, asynchronously. I needed little help with these things:
1] js method to retrieve token, noplugin, MAX_FILE_SIZE, charset etc for file upload 2] Now I'd have to add functionality in import.php that it produce JSON response in case of ajax upload, any tips? 3] Currently the <div> for file upload is at navigation class, where should it be kept if not there? 4] When a certain file is uploaded and processed, how should it be shown to users, like should we refresh the page content? or something else?
I'm not sure in this case we should change the page at all -- since several uploads can occur at once, potentially affecting several tables at the same time, it doesn't make sense to, for instance, change to the affected table's structure page. My own opinion is that it's best to stay on the current page and display the lower-right upload progress dialog without changing anything else. But that's just me.
link to video
Also code changes are available at: 2 https://github.com/mebjas/phpmyadmin/commit/023273cbac6dd8f3b4b76fcb6e1034d5... 3 https://github.com/mebjas/phpmyadmin/commit/c8fe9372f8aeb96c1048fd25036c5bf5... 4 https://github.com/mebjas/phpmyadmin/commit/36dffe054a03e0e0af924a49ea60fff9...
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sat, May 31, 2014 at 5:14 PM, Marc Delisle <marc@infomarc.info mailto:marc@infomarc.info> wrote:
Le 2014-05-30 15:55, Minhaz A V a écrit : > Is the type of UI mentioned in video good or I shall tweak it. Any > suggestions for any other parts ? Yes, it looked fine. -- Marc Delisle | phpMyAdmin ------------------------------------------------------------------------------ Time is money. Stop wasting it! Get your web API in 5 minutes. www.restlet.com/download <http://www.restlet.com/download> http://p.sf.net/sfu/restlet _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. Leverages Graph Analysis for Fast Processing & Easy Data Exploration http://p.sf.net/sfu/hpccsystems
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Hi, I have sent a patch for this @github, but I didn't see many responses. Any reason I should know?
Thanks
Minhaz, minhaz.cistoner.org || cistoner.org
On Mon, Jun 16, 2014 at 6:29 PM, Isaac Bennetch bennetch@gmail.com wrote:
Hi,
On 6/15/14 3:50 PM, Minhaz A V wrote:
Hi, I have been working on this and I have added link [1] https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be to screen video for current implementation till now.
I think it looks quite nice so far.
Currently we can successfully import sql files to server, asynchronously. I needed little help with these things:
1] js method to retrieve token, noplugin, MAX_FILE_SIZE, charset etc for file upload 2] Now I'd have to add functionality in import.php that it produce JSON response in case of ajax upload, any tips? 3] Currently the <div> for file upload is at navigation class, where should it be kept if not there? 4] When a certain file is uploaded and processed, how should it be shown to users, like should we refresh the page content? or something else?
I'm not sure in this case we should change the page at all -- since several uploads can occur at once, potentially affecting several tables at the same time, it doesn't make sense to, for instance, change to the affected table's structure page. My own opinion is that it's best to stay on the current page and display the lower-right upload progress dialog without changing anything else. But that's just me.
link to video
Also code changes are available at: 2
https://github.com/mebjas/phpmyadmin/commit/023273cbac6dd8f3b4b76fcb6e1034d5...
3
https://github.com/mebjas/phpmyadmin/commit/c8fe9372f8aeb96c1048fd25036c5bf5...
4
https://github.com/mebjas/phpmyadmin/commit/36dffe054a03e0e0af924a49ea60fff9...
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sat, May 31, 2014 at 5:14 PM, Marc Delisle <marc@infomarc.info mailto:marc@infomarc.info> wrote:
Le 2014-05-30 15:55, Minhaz A V a écrit : > Is the type of UI mentioned in video good or I shall tweak it. Any > suggestions for any other parts ? Yes, it looked fine. -- Marc Delisle | phpMyAdmin
Time is money. Stop wasting it! Get your web API in 5 minutes. www.restlet.com/download <http://www.restlet.com/download> http://p.sf.net/sfu/restlet _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. Leverages Graph Analysis for Fast Processing & Easy Data Exploration http://p.sf.net/sfu/hpccsystems
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. Leverages Graph Analysis for Fast Processing & Easy Data Exploration http://p.sf.net/sfu/hpccsystems _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Le 2014-06-28 16:13, Minhaz A V a écrit :
Hi, I have sent a patch for this @github, but I didn't see many responses. Any reason I should know?
Thanks
Hi, sorry, I have not found the time to review your patch, but I'll have more time tomorrow.
Eventually, squashing the commits would be nice, and did you try to fix the merge conflict?
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Mon, Jun 16, 2014 at 6:29 PM, Isaac Bennetch <bennetch@gmail.com mailto:bennetch@gmail.com> wrote:
Hi, On 6/15/14 3:50 PM, Minhaz A V wrote: > Hi, > I have been working on this and I have added link [1] > <https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be> to screen > video for current implementation till now. I think it looks quite nice so far. > Currently we can successfully import sql files to server, asynchronously. > I needed little help with these things: > > 1] js method to retrieve token, noplugin, MAX_FILE_SIZE, charset etc > for file upload > 2] Now I'd have to add functionality in import.php that it produce JSON > response in case of ajax upload, any tips? > 3] Currently the <div> for file upload is at navigation class, where > should it be kept if not there? > 4] When a certain file is uploaded and processed, how should it be shown > to users, like should we refresh the page content? or something else? I'm not sure in this case we should change the page at all -- since several uploads can occur at once, potentially affecting several tables at the same time, it doesn't make sense to, for instance, change to the affected table's structure page. My own opinion is that it's best to stay on the current page and display the lower-right upload progress dialog without changing anything else. But that's just me. > link to video > 1. https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be > > Also code changes are available at: > 2 https://github.com/mebjas/phpmyadmin/commit/023273cbac6dd8f3b4b76fcb6e1034d51bf1f6a5 > 3 https://github.com/mebjas/phpmyadmin/commit/c8fe9372f8aeb96c1048fd25036c5bf56f53d46f > 4 https://github.com/mebjas/phpmyadmin/commit/36dffe054a03e0e0af924a49ea60fff99c34c747 > > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > > On Sat, May 31, 2014 at 5:14 PM, Marc Delisle <marc@infomarc.info <mailto:marc@infomarc.info> > <mailto:marc@infomarc.info <mailto:marc@infomarc.info>>> wrote: > > Le 2014-05-30 15:55, Minhaz A V a écrit : > > Is the type of UI mentioned in video good or I shall tweak it. Any > > suggestions for any other parts ? > > Yes, it looked fine. > > > -- > Marc Delisle | phpMyAdmin > > ------------------------------------------------------------------------------ > Time is money. Stop wasting it! Get your web API in 5 minutes. > www.restlet.com/download <http://www.restlet.com/download> <http://www.restlet.com/download> > http://p.sf.net/sfu/restlet > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > > ------------------------------------------------------------------------------ > HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > ------------------------------------------------------------------------------ HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. Leverages Graph Analysis for Fast Processing & Easy Data Exploration http://p.sf.net/sfu/hpccsystems _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
There is a task left, once the import is over, user can click on status message (success or failed) and a light box should open showing result of the import operation. Is this ok?
And once this is over, I'll squash all comits
Thanks
Minhaz, minhaz.cistoner.org || cistoner.org
On Sun, Jun 29, 2014 at 4:23 AM, Marc Delisle marc@infomarc.info wrote:
Le 2014-06-28 16:13, Minhaz A V a écrit :
Hi, I have sent a patch for this @github, but I didn't see many responses. Any reason I should know?
Thanks
Hi, sorry, I have not found the time to review your patch, but I'll have more time tomorrow.
Eventually, squashing the commits would be nice, and did you try to fix the merge conflict?
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Mon, Jun 16, 2014 at 6:29 PM, Isaac Bennetch <bennetch@gmail.com mailto:bennetch@gmail.com> wrote:
Hi, On 6/15/14 3:50 PM, Minhaz A V wrote: > Hi, > I have been working on this and I have added link [1] > <https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be> to screen > video for current implementation till now. I think it looks quite nice so far. > Currently we can successfully import sql files to server, asynchronously. > I needed little help with these things: > > 1] js method to retrieve token, noplugin, MAX_FILE_SIZE, charset
etc
> for file upload > 2] Now I'd have to add functionality in import.php that it produce JSON > response in case of ajax upload, any tips? > 3] Currently the <div> for file upload is at navigation class,
where
> should it be kept if not there? > 4] When a certain file is uploaded and processed, how should it be shown > to users, like should we refresh the page content? or something
else?
I'm not sure in this case we should change the page at all -- since several uploads can occur at once, potentially affecting several
tables
at the same time, it doesn't make sense to, for instance, change to
the
affected table's structure page. My own opinion is that it's best to stay on the current page and display the lower-right upload progress dialog without changing anything else. But that's just me. > link to video > 1. https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be > > Also code changes are available at: > 2
https://github.com/mebjas/phpmyadmin/commit/023273cbac6dd8f3b4b76fcb6e1034d5...
> 3
https://github.com/mebjas/phpmyadmin/commit/c8fe9372f8aeb96c1048fd25036c5bf5...
> 4
https://github.com/mebjas/phpmyadmin/commit/36dffe054a03e0e0af924a49ea60fff9...
> > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > > On Sat, May 31, 2014 at 5:14 PM, Marc Delisle <marc@infomarc.info <mailto:marc@infomarc.info> > <mailto:marc@infomarc.info <mailto:marc@infomarc.info>>> wrote: > > Le 2014-05-30 15:55, Minhaz A V a écrit : > > Is the type of UI mentioned in video good or I shall tweak it. Any > > suggestions for any other parts ? > > Yes, it looked fine. > > > -- > Marc Delisle | phpMyAdmin > >
> Time is money. Stop wasting it! Get your web API in 5 minutes. > www.restlet.com/download <http://www.restlet.com/download> <http://www.restlet.com/download> > http://p.sf.net/sfu/restlet > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > >
> HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data
Exploration
> http://p.sf.net/sfu/hpccsystems > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel >
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. Leverages Graph Analysis for Fast Processing & Easy Data Exploration http://p.sf.net/sfu/hpccsystems _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community
Edition
Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
-- Marc Delisle | phpMyAdmin
Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Le 2014-06-29 05:05, Minhaz A V a écrit :
There is a task left, once the import is over, user can click on status message (success or failed) and a light box should open showing result of the import operation. Is this ok?
And once this is over, I'll squash all comits
Thanks
Hi Minhaz,
any particular browser requirements? On Debian wheezy, I tried with Iceweasel (Firefox): nothing is happening when I drag and drop the sql file.
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sun, Jun 29, 2014 at 4:23 AM, Marc Delisle <marc@infomarc.info mailto:marc@infomarc.info> wrote:
Le 2014-06-28 16:13, Minhaz A V a écrit : > Hi, > I have sent a patch for this @github, but I didn't see many responses. > Any reason I should know? > > Thanks Hi, sorry, I have not found the time to review your patch, but I'll have more time tomorrow. Eventually, squashing the commits would be nice, and did you try to fix the merge conflict? > > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > > On Mon, Jun 16, 2014 at 6:29 PM, Isaac Bennetch <bennetch@gmail.com <mailto:bennetch@gmail.com> > <mailto:bennetch@gmail.com <mailto:bennetch@gmail.com>>> wrote: > > Hi, > > On 6/15/14 3:50 PM, Minhaz A V wrote: > > Hi, > > I have been working on this and I have added link [1] > > <https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be> to > screen > > video for current implementation till now. > > I think it looks quite nice so far. > > > Currently we can successfully import sql files to server, > asynchronously. > > I needed little help with these things: > > > > 1] js method to retrieve token, noplugin, MAX_FILE_SIZE, charset etc > > for file upload > > 2] Now I'd have to add functionality in import.php that it produce > JSON > > response in case of ajax upload, any tips? > > 3] Currently the <div> for file upload is at navigation class, where > > should it be kept if not there? > > 4] When a certain file is uploaded and processed, how should it be > shown > > to users, like should we refresh the page content? or something else? > > I'm not sure in this case we should change the page at all -- since > several uploads can occur at once, potentially affecting several tables > at the same time, it doesn't make sense to, for instance, change to the > affected table's structure page. My own opinion is that it's best to > stay on the current page and display the lower-right upload progress > dialog without changing anything else. But that's just me. > > > link to video > > 1. https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be > > > > Also code changes are available at: > > 2 > https://github.com/mebjas/phpmyadmin/commit/023273cbac6dd8f3b4b76fcb6e1034d51bf1f6a5 > > 3 > https://github.com/mebjas/phpmyadmin/commit/c8fe9372f8aeb96c1048fd25036c5bf56f53d46f > > 4 > https://github.com/mebjas/phpmyadmin/commit/36dffe054a03e0e0af924a49ea60fff99c34c747 > > > > > > Minhaz, > > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> > <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> <http://cistoner.org> > > <http://cistoner.org> > > > > > > On Sat, May 31, 2014 at 5:14 PM, Marc Delisle <marc@infomarc.info <mailto:marc@infomarc.info> > <mailto:marc@infomarc.info <mailto:marc@infomarc.info>> > > <mailto:marc@infomarc.info <mailto:marc@infomarc.info> <mailto:marc@infomarc.info <mailto:marc@infomarc.info>>>> wrote: > > > > Le 2014-05-30 15:55, Minhaz A V a écrit : > > > Is the type of UI mentioned in video good or I shall tweak > it. Any > > > suggestions for any other parts ? > > > > Yes, it looked fine. > > > > > > -- > > Marc Delisle | phpMyAdmin > > > > > ------------------------------------------------------------------------------ > > Time is money. Stop wasting it! Get your web API in 5 minutes. > > www.restlet.com/download <http://www.restlet.com/download> <http://www.restlet.com/download> > <http://www.restlet.com/download> > > http://p.sf.net/sfu/restlet > > _______________________________________________ > > Phpmyadmin-devel mailing list > > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>>> > > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > > > > > > > > ------------------------------------------------------------------------------ > > HPCC Systems Open Source Big Data Platform from LexisNexis Risk > Solutions > > Find What Matters Most in Your Big Data with HPCC Systems > > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > > http://p.sf.net/sfu/hpccsystems > > > > > > > > _______________________________________________ > > Phpmyadmin-devel mailing list > > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > ------------------------------------------------------------------------------ > HPCC Systems Open Source Big Data Platform from LexisNexis Risk > Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > > ------------------------------------------------------------------------------ > Open source business process management suite built on Java and Eclipse > Turn processes into business applications with Bonita BPM Community Edition > Quickly connect people, data, and systems into organized workflows > Winner of BOSSIE, CODIE, OW2 and Gartner awards > http://p.sf.net/sfu/Bonitasoft > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > -- Marc Delisle | phpMyAdmin ------------------------------------------------------------------------------ Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
No this is not expected, its triggered on simple dragover event, ill check if its not supported in that browser
sent from HTC ONE S On Jun 29, 2014 7:34 PM, "Marc Delisle" marc@infomarc.info wrote:
Le 2014-06-29 05:05, Minhaz A V a écrit :
There is a task left, once the import is over, user can click on status message (success or failed) and a light box should open showing result of the import operation. Is this ok?
And once this is over, I'll squash all comits
Thanks
Hi Minhaz,
any particular browser requirements? On Debian wheezy, I tried with Iceweasel (Firefox): nothing is happening when I drag and drop the sql file.
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sun, Jun 29, 2014 at 4:23 AM, Marc Delisle <marc@infomarc.info mailto:marc@infomarc.info> wrote:
Le 2014-06-28 16:13, Minhaz A V a écrit : > Hi, > I have sent a patch for this @github, but I didn't see many
responses.
> Any reason I should know? > > Thanks Hi, sorry, I have not found the time to review your patch, but I'll have more time tomorrow. Eventually, squashing the commits would be nice, and did you try to
fix
the merge conflict? > > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > > On Mon, Jun 16, 2014 at 6:29 PM, Isaac Bennetch <bennetch@gmail.com <mailto:bennetch@gmail.com> > <mailto:bennetch@gmail.com <mailto:bennetch@gmail.com>>> wrote: > > Hi, > > On 6/15/14 3:50 PM, Minhaz A V wrote: > > Hi, > > I have been working on this and I have added link [1] > > <https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be> to > screen > > video for current implementation till now. > > I think it looks quite nice so far. > > > Currently we can successfully import sql files to server, > asynchronously. > > I needed little help with these things: > > > > 1] js method to retrieve token, noplugin, MAX_FILE_SIZE, charset etc > > for file upload > > 2] Now I'd have to add functionality in import.php that it produce > JSON > > response in case of ajax upload, any tips? > > 3] Currently the <div> for file upload is at navigation class, where > > should it be kept if not there? > > 4] When a certain file is uploaded and processed, how should it be > shown > > to users, like should we refresh the page content? or something else? > > I'm not sure in this case we should change the page at all -- since > several uploads can occur at once, potentially affecting several tables > at the same time, it doesn't make sense to, for instance, change to the > affected table's structure page. My own opinion is that it's best to > stay on the current page and display the lower-right upload progress > dialog without changing anything else. But that's just me. > > > link to video > > 1.
https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be
> > > > Also code changes are available at: > > 2 >
https://github.com/mebjas/phpmyadmin/commit/023273cbac6dd8f3b4b76fcb6e1034d5...
> > 3 >
https://github.com/mebjas/phpmyadmin/commit/c8fe9372f8aeb96c1048fd25036c5bf5...
> > 4 >
https://github.com/mebjas/phpmyadmin/commit/36dffe054a03e0e0af924a49ea60fff9...
> > > > > > Minhaz, > > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> > <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> <http://cistoner.org> > > <http://cistoner.org> > > > > > > On Sat, May 31, 2014 at 5:14 PM, Marc Delisle <marc@infomarc.info <mailto:marc@infomarc.info> > <mailto:marc@infomarc.info <mailto:marc@infomarc.info>> > > <mailto:marc@infomarc.info <mailto:marc@infomarc.info> <mailto:marc@infomarc.info <mailto:marc@infomarc.info>>>> wrote: > > > > Le 2014-05-30 15:55, Minhaz A V a écrit : > > > Is the type of UI mentioned in video good or I shall
tweak
> it. Any > > > suggestions for any other parts ? > > > > Yes, it looked fine. > > > > > > -- > > Marc Delisle | phpMyAdmin > > > > >
> > Time is money. Stop wasting it! Get your web API in 5 minutes. > > www.restlet.com/download <http://www.restlet.com/download> <http://www.restlet.com/download> > <http://www.restlet.com/download> > > http://p.sf.net/sfu/restlet > > _______________________________________________ > > Phpmyadmin-devel mailing list > > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>>> > > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > > > > > > > >
> > HPCC Systems Open Source Big Data Platform from LexisNexis
Risk
> Solutions > > Find What Matters Most in Your Big Data with HPCC Systems > > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > > http://p.sf.net/sfu/hpccsystems > > > > > > > > _______________________________________________ > > Phpmyadmin-devel mailing list > > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > >
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
> > > >
> HPCC Systems Open Source Big Data Platform from LexisNexis Risk > Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > >
> Open source business process management suite built on Java and Eclipse > Turn processes into business applications with Bonita BPM Community Edition > Quickly connect people, data, and systems into organized workflows > Winner of BOSSIE, CODIE, OW2 and Gartner awards > http://p.sf.net/sfu/Bonitasoft > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > -- Marc Delisle | phpMyAdmin
Open source business process management suite built on Java and
Eclipse
Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community
Edition
Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
-- Marc Delisle | phpMyAdmin
Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
I have tested this on chrome, mozilla 30.0 in windows & its working fine! I'll check on firefox and opera in ubuntu 13.04 Anyone else tested on other browsers?
Minhaz, minhaz.cistoner.org || cistoner.org
On Sun, Jun 29, 2014 at 7:49 PM, Minhaz A V minhazav@gmail.com wrote:
No this is not expected, its triggered on simple dragover event, ill check if its not supported in that browser
sent from HTC ONE S On Jun 29, 2014 7:34 PM, "Marc Delisle" marc@infomarc.info wrote:
Le 2014-06-29 05:05, Minhaz A V a écrit :
There is a task left, once the import is over, user can click on status message (success or failed) and a light box should open showing result of the import operation. Is this ok?
And once this is over, I'll squash all comits
Thanks
Hi Minhaz,
any particular browser requirements? On Debian wheezy, I tried with Iceweasel (Firefox): nothing is happening when I drag and drop the sql file.
Minhaz, minhaz.cistoner.org http://minhaz.cistoner.org || cistoner.org http://cistoner.org
On Sun, Jun 29, 2014 at 4:23 AM, Marc Delisle <marc@infomarc.info mailto:marc@infomarc.info> wrote:
Le 2014-06-28 16:13, Minhaz A V a écrit : > Hi, > I have sent a patch for this @github, but I didn't see many
responses.
> Any reason I should know? > > Thanks Hi, sorry, I have not found the time to review your patch, but I'll have more time tomorrow. Eventually, squashing the commits would be nice, and did you try to
fix
the merge conflict? > > > Minhaz, > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> > <http://cistoner.org> > > > On Mon, Jun 16, 2014 at 6:29 PM, Isaac Bennetch <bennetch@gmail.com <mailto:bennetch@gmail.com> > <mailto:bennetch@gmail.com <mailto:bennetch@gmail.com>>> wrote: > > Hi, > > On 6/15/14 3:50 PM, Minhaz A V wrote: > > Hi, > > I have been working on this and I have added link [1] > > <https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be> to > screen > > video for current implementation till now. > > I think it looks quite nice so far. > > > Currently we can successfully import sql files to server, > asynchronously. > > I needed little help with these things: > > > > 1] js method to retrieve token, noplugin, MAX_FILE_SIZE, charset etc > > for file upload > > 2] Now I'd have to add functionality in import.php that it produce > JSON > > response in case of ajax upload, any tips? > > 3] Currently the <div> for file upload is at navigation class, where > > should it be kept if not there? > > 4] When a certain file is uploaded and processed, how should it be > shown > > to users, like should we refresh the page content? or something else? > > I'm not sure in this case we should change the page at all -- since > several uploads can occur at once, potentially affecting several tables > at the same time, it doesn't make sense to, for instance, change to the > affected table's structure page. My own opinion is that it's best to > stay on the current page and display the lower-right upload progress > dialog without changing anything else. But that's just me. > > > link to video > > 1.
https://www.youtube.com/watch?v=QQyr-AijI_8&feature=youtu.be
> > > > Also code changes are available at: > > 2 >
https://github.com/mebjas/phpmyadmin/commit/023273cbac6dd8f3b4b76fcb6e1034d5...
> > 3 >
https://github.com/mebjas/phpmyadmin/commit/c8fe9372f8aeb96c1048fd25036c5bf5...
> > 4 >
https://github.com/mebjas/phpmyadmin/commit/36dffe054a03e0e0af924a49ea60fff9...
> > > > > > Minhaz, > > minhaz.cistoner.org <http://minhaz.cistoner.org> <http://minhaz.cistoner.org> > <http://minhaz.cistoner.org> || cistoner.org <http://cistoner.org> <http://cistoner.org> > > <http://cistoner.org> > > > > > > On Sat, May 31, 2014 at 5:14 PM, Marc Delisle <marc@infomarc.info <mailto:marc@infomarc.info> > <mailto:marc@infomarc.info <mailto:marc@infomarc.info>> > > <mailto:marc@infomarc.info <mailto:marc@infomarc.info> <mailto:marc@infomarc.info <mailto:marc@infomarc.info>>>> wrote: > > > > Le 2014-05-30 15:55, Minhaz A V a écrit : > > > Is the type of UI mentioned in video good or I shall
tweak
> it. Any > > > suggestions for any other parts ? > > > > Yes, it looked fine. > > > > > > -- > > Marc Delisle | phpMyAdmin > > > > >
> > Time is money. Stop wasting it! Get your web API in 5 minutes. > > www.restlet.com/download <http://www.restlet.com/download> <http://www.restlet.com/download> > <http://www.restlet.com/download> > > http://p.sf.net/sfu/restlet > > _______________________________________________ > > Phpmyadmin-devel mailing list > > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>>> > > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > > > > > > > >
> > HPCC Systems Open Source Big Data Platform from LexisNexis
Risk
> Solutions > > Find What Matters Most in Your Big Data with HPCC Systems > > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > > http://p.sf.net/sfu/hpccsystems > > > > > > > > _______________________________________________ > > Phpmyadmin-devel mailing list > > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > >
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
> > > >
> HPCC Systems Open Source Big Data Platform from LexisNexis
Risk
> Solutions > Find What Matters Most in Your Big Data with HPCC Systems > Open Source. Fast. Scalable. Simple. Ideal for Dirty Data. > Leverages Graph Analysis for Fast Processing & Easy Data Exploration > http://p.sf.net/sfu/hpccsystems > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > <mailto:Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net>> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > > > > >
> Open source business process management suite built on Java and Eclipse > Turn processes into business applications with Bonita BPM Community Edition > Quickly connect people, data, and systems into organized workflows > Winner of BOSSIE, CODIE, OW2 and Gartner awards > http://p.sf.net/sfu/Bonitasoft > > > > _______________________________________________ > Phpmyadmin-devel mailing list > Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> > https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel > -- Marc Delisle | phpMyAdmin
Open source business process management suite built on Java and
Eclipse
Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net <mailto:Phpmyadmin-devel@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community
Edition
Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
-- Marc Delisle | phpMyAdmin
Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
2014-05-25 3:19 GMT+02:00 Minhaz A V minhazav@gmail.com:
Marc you are right, it is good question, how this feature will be informed to users. On the import page we can show a drop location where user drops the sql file and its uploaded asynchronously.
I still feel, its an event that currently not bound to anything. In the import page we can inform the user *"You can import a file, anytime by dropping the file to pma" *and gradually users will get used to it. I did a portion of implementation last night and it looks like: http://www.youtube.com/watch?v=CRQtIV8pZUA I'd like to know more opinions on how this should be implemented!
Minhaz, minhaz.cistoner.org || cistoner.org
On Sun, May 25, 2014 at 4:03 AM, Marc Delisle marc@infomarc.info wrote:
Hi Minhaz, how do you plan to advertise this new feature, if it's available on any page? On the import page, it's easier to "educate" users about this.
Hi,
I agree that users need to be educated, but I think that is a good idea to provide the possibility to import from everywhere.
Hugues.
So should I move further with this or implement this to import page only?
On 5/29/14 2:42 PM, Minhaz A V wrote:
So should I move further with this or implement this to import page only?
I think the majority decision was to allow it from anywhere, but think Marc should confirm.
Time is money. Stop wasting it! Get your web API in 5 minutes. www.restlet.com/download http://p.sf.net/sfu/restlet
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Isaac Bennetch a écrit :
On 5/29/14 2:42 PM, Minhaz A V wrote:
So should I move further with this or implement this to import page only?
I think the majority decision was to allow it from anywhere, but think Marc should confirm.
Ok for me to allow from anywhere, with the message we talked about that explains, from the Import panel, that it can be done on any page.