You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jmeter.apache.org by Евгений Казаков <yu...@gmail.com> on 2012/01/14 09:49:10 UTC

Re: CTRL+Z as undo

Hello, Anthony!
You have progress in implementation?

On 30 September 2011 18:55, Anthony Johnson <an...@gmail.com> wrote:

> I will go for an implementation.  Someone stop me if you are already
> 80% of the way there.
>
> On Fri, Sep 30, 2011 at 9:38 AM, sebb <se...@gmail.com> wrote:
> > Patches welcome.
> >
> > On 30 September 2011 13:34, apc <ap...@apc.kg> wrote:
> >> "a lot of code changes"... I understand it, but not having an undo in
> JMeter
> >> is really bad experience.
> >>
> >> -----
> >> --
> >> Andrey Pohilko
> >> JP@GC Maintainer
> >> --
> >> View this message in context:
> http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p4856915.html
> >> Sent from the JMeter - User mailing list archive at Nabble.com.
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> >> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
>
>

Re: CTRL+Z as undo

Posted by Milamber <mi...@apache.org>.

Le 20/01/2012 08:20, Felix Frank a ecrit :
> I see your head in hands and raise you a couple head-desks.
>
> Also, there's a distinct set of teethmarks near the edge of said desk,
> all after pressing "Delete" once too often or similar.
>   

Please note, in next JMeter version (2.6) a new dialog box to confirm
Deletion has been added in JMeter.
It is not a Undo, but can be helpful to avoid accidentally deletion.

Milamber


> So yes, undo would be one hell of an improvement, but I can see how it
> won't be easy.
>
> On 01/19/2012 10:58 PM, Oliver Lloyd wrote:
>   
>> I have had a few too many head in hands moments from the
>> lack this feature.
>>     
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> For additional commands, e-mail: user-help@jmeter.apache.org
>
>
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: CTRL+Z as undo

Posted by ZK <st...@gmail.com>.
What happened to living life on the edge? 


ZK

--
View this message in context: http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5160495.html
Sent from the JMeter - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: CTRL+Z as undo

Posted by Oliver Lloyd <ol...@hotmail.com>.
As a compromise, how about an autosave feature? It would remove a lot of the
risk that comes with not having the ability to undo and - I'm guessing -
would be substantially easier to implement.

Starter for 10:
1. Only runs in the GUI.
2. Disabled during test execution.
3. Does not save to the main file but creates a temp file (using a
timestamp?)
4. Keeps the last n versions (configurable?).
5. Interval configurable.
6. Can be disabled.
7. By default, uses an 'autosaves' dir in located in JM's tree but perhaps
can be pointed elsewhere?

Not sure whether the autosaved version should become the master or not,
maybe you could update the main file when the test is reloaded. In any case,
having this safety net means the worst case scenario is you lose x minutes
of work, not hours. 

-----
http://www.http503.com/
--
View this message in context: http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5160213.html
Sent from the JMeter - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


RE: CTRL+Z as undo

Posted by "Robin D. Wilson" <rw...@gmail.com>.
I think if you save the file before deleting anything, you will end up pissing more people off than you will help. I know that I don't want a file "saved" until I actually save it - this allows me to experiment with all sorts of things - then easily revert to the last saved version.

You could save to a temporary file, and that would be better - but it would also be slow and quite costly in terms of performance.

Most test cases aren't really that large (in terms of the XML data they store), you could just as easily create an in-memory version of the JMX data, and revert to it when the user hits 'undo' ... And if you're going to do that, you might as well allow multiple levels of undo - just by creating an array of 'checkpoint' objects before every delete operation. Ideally, you would just do this on a per-object basis (instead of the whole test case), and then only revert the object that changed. (But you probably already knew all of this...)

--
Robin D. Wilson
Sr. Director of Web Development
KingsIsle Entertainment, Inc.
VOICE: 512-777-1861
www.KingsIsle.com

-----Original Message-----
From: Shay Ginsbourg [mailto:sginsbourg@gmail.com] 
Sent: Friday, January 20, 2012 6:55 AM
To: JMeter Users List
Subject: Re: CTRL+Z as undo

Total CTRL+Z implementation can be a staged project.

Top priority is to allow just an UN-DELETE function for each DELETE operation.

Meaning, before deleting anything, save the JMX in the background first.



On Fri, Jan 20, 2012 at 1:40 PM, sebb <se...@gmail.com> wrote:

> On 20 January 2012 09:01, apc <ap...@apc.kg> wrote:
> > sebb, could you say something to us on this topic?
> >
> > The community ready to participate in implementing Undo feature, but 
> > for
> now
> > we fail to find a way for doing this. Maybe you can offer us some 
> > clues
> or
> > any other help?
>
> If it were easy, it would have been done long ago.
> Sorry, but I don't have any ideas as to how it could be implemented.
>
> Any implementation needs to be done in such a way that it does not 
> impact performance when running tests.
>
> >
> > -----
> > --
> > Andrey Pohilko
> > JP@GC Maintainer
> > --
> > View this message in context:
> http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5159840.ht
> ml
> > Sent from the JMeter - User mailing list archive at Nabble.com.
> >
> > --------------------------------------------------------------------
> > - To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> > For additional commands, e-mail: user-help@jmeter.apache.org
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> For additional commands, e-mail: user-help@jmeter.apache.org
>
>


-- 


    *Shay Ginsbourg*
Regulatory & Testing Affairs Consultant

  Formerly QA Manager of LoadRunner at Mercury Interactive

  M.Sc. cum laude in Bio-Medical Engineering
  M.Sc. in Mechanical Engineering





*Work:* 035185873
*Mobile:* 0546690915

*Email:* sginsbourg@gmail.com

*http://il.linkedin.com/in/shayginsbourg*

*GINSBOURG.COM* <http://www.ginsbourg.com/>
    ------------------------------



*P** **Please consider your environmental responsibility before printing this e-mail*.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: CTRL+Z as undo

Posted by Shay Ginsbourg <sg...@gmail.com>.
I'm sure it's a lot of work, but how about this simplification for a first
stage:

1. user clicks on DELETE.
2. JMETER auto-save filename.JMB
3. JMETER adds UNDO next to DELETE operation UI
4. JMETER actually performs the DELETE operation
5. if user clicks on UNDO then JMETER opens filename.JMB



On Fri, Jan 20, 2012 at 3:17 PM, sebb <se...@gmail.com> wrote:

> On 20 January 2012 12:54, Shay Ginsbourg <sg...@gmail.com> wrote:
> > Total CTRL+Z implementation can be a staged project.
> >
> > Top priority is to allow just an UN-DELETE function for each DELETE
> > operation.
> >
> > Meaning, before deleting anything, save the JMX in the background first.
>
> Sounds simple, but it's not.
>
> >
> >
> > On Fri, Jan 20, 2012 at 1:40 PM, sebb <se...@gmail.com> wrote:
> >
> >> On 20 January 2012 09:01, apc <ap...@apc.kg> wrote:
> >> > sebb, could you say something to us on this topic?
> >> >
> >> > The community ready to participate in implementing Undo feature, but
> for
> >> now
> >> > we fail to find a way for doing this. Maybe you can offer us some
> clues
> >> or
> >> > any other help?
> >>
> >> If it were easy, it would have been done long ago.
> >> Sorry, but I don't have any ideas as to how it could be implemented.
> >>
> >> Any implementation needs to be done in such a way that it does not
> >> impact performance when running tests.
> >>
> >> >
> >> > -----
> >> > --
> >> > Andrey Pohilko
> >> > JP@GC Maintainer
> >> > --
> >> > View this message in context:
> >>
> http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5159840.html
> >> > Sent from the JMeter - User mailing list archive at Nabble.com.
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> >> > For additional commands, e-mail: user-help@jmeter.apache.org
> >> >
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> >> For additional commands, e-mail: user-help@jmeter.apache.org
> >>
> >>
> >
> >
> > --
> >
> >
> >    *Shay Ginsbourg*
> > Regulatory & Testing Affairs Consultant
> >
> >  Formerly QA Manager of LoadRunner at Mercury Interactive
> >
> >  M.Sc. cum laude in Bio-Medical Engineering
> >  M.Sc. in Mechanical Engineering
> >
> >
> >
> >
> >
> > *Work:* 035185873
> > *Mobile:* 0546690915
> >
> > *Email:* sginsbourg@gmail.com
> >
> > *http://il.linkedin.com/in/shayginsbourg*
> >
> > *GINSBOURG.COM* <http://www.ginsbourg.com/>
> >    ------------------------------
> >
> >
> >
> > *P** **Please consider your environmental responsibility before printing
> > this e-mail*.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> For additional commands, e-mail: user-help@jmeter.apache.org
>
>


-- 


    *Shay Ginsbourg*
Regulatory & Testing Affairs Consultant

  Formerly QA Manager of LoadRunner at Mercury Interactive

  M.Sc. cum laude in Bio-Medical Engineering
  M.Sc. in Mechanical Engineering





*Work:* 035185873
*Mobile:* 0546690915

*Email:* sginsbourg@gmail.com

*http://il.linkedin.com/in/shayginsbourg*

*GINSBOURG.COM* <http://www.ginsbourg.com/>
    ------------------------------



*P** **Please consider your environmental responsibility before printing
this e-mail*.

Re: CTRL+Z as undo

Posted by sebb <se...@gmail.com>.
On 20 January 2012 12:54, Shay Ginsbourg <sg...@gmail.com> wrote:
> Total CTRL+Z implementation can be a staged project.
>
> Top priority is to allow just an UN-DELETE function for each DELETE
> operation.
>
> Meaning, before deleting anything, save the JMX in the background first.

Sounds simple, but it's not.

>
>
> On Fri, Jan 20, 2012 at 1:40 PM, sebb <se...@gmail.com> wrote:
>
>> On 20 January 2012 09:01, apc <ap...@apc.kg> wrote:
>> > sebb, could you say something to us on this topic?
>> >
>> > The community ready to participate in implementing Undo feature, but for
>> now
>> > we fail to find a way for doing this. Maybe you can offer us some clues
>> or
>> > any other help?
>>
>> If it were easy, it would have been done long ago.
>> Sorry, but I don't have any ideas as to how it could be implemented.
>>
>> Any implementation needs to be done in such a way that it does not
>> impact performance when running tests.
>>
>> >
>> > -----
>> > --
>> > Andrey Pohilko
>> > JP@GC Maintainer
>> > --
>> > View this message in context:
>> http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5159840.html
>> > Sent from the JMeter - User mailing list archive at Nabble.com.
>> >
>> > ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
>> > For additional commands, e-mail: user-help@jmeter.apache.org
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
>> For additional commands, e-mail: user-help@jmeter.apache.org
>>
>>
>
>
> --
>
>
>    *Shay Ginsbourg*
> Regulatory & Testing Affairs Consultant
>
>  Formerly QA Manager of LoadRunner at Mercury Interactive
>
>  M.Sc. cum laude in Bio-Medical Engineering
>  M.Sc. in Mechanical Engineering
>
>
>
>
>
> *Work:* 035185873
> *Mobile:* 0546690915
>
> *Email:* sginsbourg@gmail.com
>
> *http://il.linkedin.com/in/shayginsbourg*
>
> *GINSBOURG.COM* <http://www.ginsbourg.com/>
>    ------------------------------
>
>
>
> *P** **Please consider your environmental responsibility before printing
> this e-mail*.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: CTRL+Z as undo

Posted by Shay Ginsbourg <sg...@gmail.com>.
Total CTRL+Z implementation can be a staged project.

Top priority is to allow just an UN-DELETE function for each DELETE
operation.

Meaning, before deleting anything, save the JMX in the background first.



On Fri, Jan 20, 2012 at 1:40 PM, sebb <se...@gmail.com> wrote:

> On 20 January 2012 09:01, apc <ap...@apc.kg> wrote:
> > sebb, could you say something to us on this topic?
> >
> > The community ready to participate in implementing Undo feature, but for
> now
> > we fail to find a way for doing this. Maybe you can offer us some clues
> or
> > any other help?
>
> If it were easy, it would have been done long ago.
> Sorry, but I don't have any ideas as to how it could be implemented.
>
> Any implementation needs to be done in such a way that it does not
> impact performance when running tests.
>
> >
> > -----
> > --
> > Andrey Pohilko
> > JP@GC Maintainer
> > --
> > View this message in context:
> http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5159840.html
> > Sent from the JMeter - User mailing list archive at Nabble.com.
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> > For additional commands, e-mail: user-help@jmeter.apache.org
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> For additional commands, e-mail: user-help@jmeter.apache.org
>
>


-- 


    *Shay Ginsbourg*
Regulatory & Testing Affairs Consultant

  Formerly QA Manager of LoadRunner at Mercury Interactive

  M.Sc. cum laude in Bio-Medical Engineering
  M.Sc. in Mechanical Engineering





*Work:* 035185873
*Mobile:* 0546690915

*Email:* sginsbourg@gmail.com

*http://il.linkedin.com/in/shayginsbourg*

*GINSBOURG.COM* <http://www.ginsbourg.com/>
    ------------------------------



*P** **Please consider your environmental responsibility before printing
this e-mail*.

Re: CTRL+Z as undo

Posted by sebb <se...@gmail.com>.
On 20 January 2012 09:01, apc <ap...@apc.kg> wrote:
> sebb, could you say something to us on this topic?
>
> The community ready to participate in implementing Undo feature, but for now
> we fail to find a way for doing this. Maybe you can offer us some clues or
> any other help?

If it were easy, it would have been done long ago.
Sorry, but I don't have any ideas as to how it could be implemented.

Any implementation needs to be done in such a way that it does not
impact performance when running tests.

>
> -----
> --
> Andrey Pohilko
> JP@GC Maintainer
> --
> View this message in context: http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5159840.html
> Sent from the JMeter - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
> For additional commands, e-mail: user-help@jmeter.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: CTRL+Z as undo

Posted by apc <ap...@apc.kg>.
sebb, could you say something to us on this topic?

The community ready to participate in implementing Undo feature, but for now
we fail to find a way for doing this. Maybe you can offer us some clues or
any other help?


-----
--
Andrey Pohilko
JP@GC Maintainer
--
View this message in context: http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5159840.html
Sent from the JMeter - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: CTRL+Z as undo

Posted by Felix Frank <ff...@mpexnet.de>.
I see your head in hands and raise you a couple head-desks.

Also, there's a distinct set of teethmarks near the edge of said desk,
all after pressing "Delete" once too often or similar.

So yes, undo would be one hell of an improvement, but I can see how it
won't be easy.

On 01/19/2012 10:58 PM, Oliver Lloyd wrote:
> I have had a few too many head in hands moments from the
> lack this feature.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: CTRL+Z as undo

Posted by Oliver Lloyd <ol...@hotmail.com>.
+1

It's a tricky one but I can promise huge kudos to the person who can
implement this. I have had a few too many head in hands moments from the
lack this feature.

-----
http://www.http503.com/
--
View this message in context: http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p5159097.html
Sent from the JMeter - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@jmeter.apache.org
For additional commands, e-mail: user-help@jmeter.apache.org


Re: CTRL+Z as undo

Posted by Adrian Speteanu <as...@gmail.com>.
Hi,

Actually a LOT of people would be interested. I've worked with many
developers frustrated by this little misgiving - and they didn't had to use
it on an almost daily basis.

Regards,
Adrian

On Thu, Jan 19, 2012 at 6:27 PM, Anthony Johnson <an...@gmail.com> wrote:

> Hi Shay,
>    Just to clarify that low priority is in regards to my personal
> priorities and don't represent the actual JMeter team's priorities.
>
> I have contributed a couple features and volunteered seeing that this would
> be a big win for the user:-)
>
> Glad to see that a few people are interested(coding fuel).
>
> Thanks,
>
> Anthony
>
>
> On Thu, Jan 19, 2012 at 5:04 AM, Shay Ginsbourg <sginsbourg@gmail.com
> >wrote:
>
> > Should receive a high priority on grounds of software usability.
> >
> > Good luck developers and thank you for your good efforts!
> >
> > Shay
> >
> >
> >
> >
> > 2012/1/19 Anthony Johnson <an...@gmail.com>
> >
> > > Hi,
> > >   It is a low priority for me, but I haven't forgotten about this.  If
> > > someone else wants to volunteer... no arguments from me since this one
> is
> > > rather tough.
> > >
> > > Thanks,
> > >
> > > Anthony
> > >
> > > 2012/1/14 Евгений Казаков <yu...@gmail.com>
> > >
> > > > Hello, Anthony!
> > > > You have progress in implementation?
> > > >
> > > > On 30 September 2011 18:55, Anthony Johnson <an...@gmail.com>
> wrote:
> > > >
> > > > > I will go for an implementation.  Someone stop me if you are
> already
> > > > > 80% of the way there.
> > > > >
> > > > > On Fri, Sep 30, 2011 at 9:38 AM, sebb <se...@gmail.com> wrote:
> > > > > > Patches welcome.
> > > > > >
> > > > > > On 30 September 2011 13:34, apc <ap...@apc.kg> wrote:
> > > > > >> "a lot of code changes"... I understand it, but not having an
> undo
> > > in
> > > > > JMeter
> > > > > >> is really bad experience.
> > > > > >>
> > > > > >> -----
> > > > > >> --
> > > > > >> Andrey Pohilko
> > > > > >> JP@GC Maintainer
> > > > > >> --
> > > > > >> View this message in context:
> > > > >
> > >
> http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p4856915.html
> > > > > >> Sent from the JMeter - User mailing list archive at Nabble.com.
> > > > > >>
> > > > > >>
> > > ---------------------------------------------------------------------
> > > > > >> To unsubscribe, e-mail:
> > jmeter-user-unsubscribe@jakarta.apache.org
> > > > > >> For additional commands, e-mail:
> > > jmeter-user-help@jakarta.apache.org
> > > > > >>
> > > > > >>
> > > > > >
> > > > > >
> > ---------------------------------------------------------------------
> > > > > > To unsubscribe, e-mail:
> jmeter-user-unsubscribe@jakarta.apache.org
> > > > > > For additional commands, e-mail:
> > jmeter-user-help@jakarta.apache.org
> > > > > >
> > > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail:
> jmeter-user-help@jakarta.apache.org
> > > > >
> > > > >
> > > >
> > >
> >
> >
> >
> > --
> >
> >
> >    *Shay Ginsbourg*
> > Regulatory & Testing Affairs Consultant
> >
> >  Formerly QA Manager of LoadRunner at Mercury Interactive
> >
> >  M.Sc. cum laude in Bio-Medical Engineering
> >  M.Sc. in Mechanical Engineering
> >
> >
> >
> >
> >
> > *Work:* 035185873
> > *Mobile:* 0546690915
> >
> > *Email:* sginsbourg@gmail.com
> >
> > *http://il.linkedin.com/in/shayginsbourg*
> >
> > *GINSBOURG.COM* <http://www.ginsbourg.com/>
> >    ------------------------------
> >
> >
> >
> > *P** **Please consider your environmental responsibility before printing
> > this e-mail*.
> >
>

Re: CTRL+Z as undo

Posted by Anthony Johnson <an...@gmail.com>.
Hi Shay,
    Just to clarify that low priority is in regards to my personal
priorities and don't represent the actual JMeter team's priorities.

I have contributed a couple features and volunteered seeing that this would
be a big win for the user:-)

Glad to see that a few people are interested(coding fuel).

Thanks,

Anthony


On Thu, Jan 19, 2012 at 5:04 AM, Shay Ginsbourg <sg...@gmail.com>wrote:

> Should receive a high priority on grounds of software usability.
>
> Good luck developers and thank you for your good efforts!
>
> Shay
>
>
>
>
> 2012/1/19 Anthony Johnson <an...@gmail.com>
>
> > Hi,
> >   It is a low priority for me, but I haven't forgotten about this.  If
> > someone else wants to volunteer... no arguments from me since this one is
> > rather tough.
> >
> > Thanks,
> >
> > Anthony
> >
> > 2012/1/14 Евгений Казаков <yu...@gmail.com>
> >
> > > Hello, Anthony!
> > > You have progress in implementation?
> > >
> > > On 30 September 2011 18:55, Anthony Johnson <an...@gmail.com> wrote:
> > >
> > > > I will go for an implementation.  Someone stop me if you are already
> > > > 80% of the way there.
> > > >
> > > > On Fri, Sep 30, 2011 at 9:38 AM, sebb <se...@gmail.com> wrote:
> > > > > Patches welcome.
> > > > >
> > > > > On 30 September 2011 13:34, apc <ap...@apc.kg> wrote:
> > > > >> "a lot of code changes"... I understand it, but not having an undo
> > in
> > > > JMeter
> > > > >> is really bad experience.
> > > > >>
> > > > >> -----
> > > > >> --
> > > > >> Andrey Pohilko
> > > > >> JP@GC Maintainer
> > > > >> --
> > > > >> View this message in context:
> > > >
> > http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p4856915.html
> > > > >> Sent from the JMeter - User mailing list archive at Nabble.com.
> > > > >>
> > > > >>
> > ---------------------------------------------------------------------
> > > > >> To unsubscribe, e-mail:
> jmeter-user-unsubscribe@jakarta.apache.org
> > > > >> For additional commands, e-mail:
> > jmeter-user-help@jakarta.apache.org
> > > > >>
> > > > >>
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > > > > For additional commands, e-mail:
> jmeter-user-help@jakarta.apache.org
> > > > >
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> > > >
> > > >
> > >
> >
>
>
>
> --
>
>
>    *Shay Ginsbourg*
> Regulatory & Testing Affairs Consultant
>
>  Formerly QA Manager of LoadRunner at Mercury Interactive
>
>  M.Sc. cum laude in Bio-Medical Engineering
>  M.Sc. in Mechanical Engineering
>
>
>
>
>
> *Work:* 035185873
> *Mobile:* 0546690915
>
> *Email:* sginsbourg@gmail.com
>
> *http://il.linkedin.com/in/shayginsbourg*
>
> *GINSBOURG.COM* <http://www.ginsbourg.com/>
>    ------------------------------
>
>
>
> *P** **Please consider your environmental responsibility before printing
> this e-mail*.
>

Re: CTRL+Z as undo

Posted by Shay Ginsbourg <sg...@gmail.com>.
Should receive a high priority on grounds of software usability.

Good luck developers and thank you for your good efforts!

Shay




2012/1/19 Anthony Johnson <an...@gmail.com>

> Hi,
>   It is a low priority for me, but I haven't forgotten about this.  If
> someone else wants to volunteer... no arguments from me since this one is
> rather tough.
>
> Thanks,
>
> Anthony
>
> 2012/1/14 Евгений Казаков <yu...@gmail.com>
>
> > Hello, Anthony!
> > You have progress in implementation?
> >
> > On 30 September 2011 18:55, Anthony Johnson <an...@gmail.com> wrote:
> >
> > > I will go for an implementation.  Someone stop me if you are already
> > > 80% of the way there.
> > >
> > > On Fri, Sep 30, 2011 at 9:38 AM, sebb <se...@gmail.com> wrote:
> > > > Patches welcome.
> > > >
> > > > On 30 September 2011 13:34, apc <ap...@apc.kg> wrote:
> > > >> "a lot of code changes"... I understand it, but not having an undo
> in
> > > JMeter
> > > >> is really bad experience.
> > > >>
> > > >> -----
> > > >> --
> > > >> Andrey Pohilko
> > > >> JP@GC Maintainer
> > > >> --
> > > >> View this message in context:
> > >
> http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p4856915.html
> > > >> Sent from the JMeter - User mailing list archive at Nabble.com.
> > > >>
> > > >>
> ---------------------------------------------------------------------
> > > >> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > > >> For additional commands, e-mail:
> jmeter-user-help@jakarta.apache.org
> > > >>
> > > >>
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > > > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> > >
> > >
> >
>



-- 


    *Shay Ginsbourg*
Regulatory & Testing Affairs Consultant

  Formerly QA Manager of LoadRunner at Mercury Interactive

  M.Sc. cum laude in Bio-Medical Engineering
  M.Sc. in Mechanical Engineering





*Work:* 035185873
*Mobile:* 0546690915

*Email:* sginsbourg@gmail.com

*http://il.linkedin.com/in/shayginsbourg*

*GINSBOURG.COM* <http://www.ginsbourg.com/>
    ------------------------------



*P** **Please consider your environmental responsibility before printing
this e-mail*.

Re: CTRL+Z as undo

Posted by Anthony Johnson <an...@gmail.com>.
Hi,
   It is a low priority for me, but I haven't forgotten about this.  If
someone else wants to volunteer... no arguments from me since this one is
rather tough.

Thanks,

Anthony

2012/1/14 Евгений Казаков <yu...@gmail.com>

> Hello, Anthony!
> You have progress in implementation?
>
> On 30 September 2011 18:55, Anthony Johnson <an...@gmail.com> wrote:
>
> > I will go for an implementation.  Someone stop me if you are already
> > 80% of the way there.
> >
> > On Fri, Sep 30, 2011 at 9:38 AM, sebb <se...@gmail.com> wrote:
> > > Patches welcome.
> > >
> > > On 30 September 2011 13:34, apc <ap...@apc.kg> wrote:
> > >> "a lot of code changes"... I understand it, but not having an undo in
> > JMeter
> > >> is really bad experience.
> > >>
> > >> -----
> > >> --
> > >> Andrey Pohilko
> > >> JP@GC Maintainer
> > >> --
> > >> View this message in context:
> > http://jmeter.512774.n5.nabble.com/CTRL-Z-as-undo-tp4848249p4856915.html
> > >> Sent from the JMeter - User mailing list archive at Nabble.com.
> > >>
> > >> ---------------------------------------------------------------------
> > >> To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > >> For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> > >>
> > >>
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
> >
> >
>