4
votes
3answers
163 views
Is there a way to recover from an accidental “svn revert”?
Hi all,
I managed to shoot myself in the foot this morning by doing the following:
Started working on a change to my project
Made a bunch of edits to a bunch of files
Realized t …
3
votes
1answer
51 views
How can I cancel an in-progress undo/redo operation?
I've been tinkering with Cocoa for a few months now, and am trying to add undo/redo support to a strictly-for-learning-purposes Cocoa app I'm writing that lets you adjust iTunes tr …
0
votes
4answers
103 views
handling history/change tracking in the DB and consequences on the BL
hi
in the current application im working on the client requested that we will save history of every action that happended in the system and provide the ability to backtrack to the …
1
vote
2answers
191 views
Undo inside WPF M-V-VM, how does it fit?
In my previous projects, I have already implemented undo system in c++, and I know how it work. I am also aware of the Command pattern.
I will be implementing a C#/WPF desktop ap …
0
votes
1answer
53 views
Why this code fails to empty undo stack
- (void)cancel {
// [managedObjectContext.undoManager disableUndoRegistration];
[managedObjectContext deleteObject:object]; // I don't want this deletion to be recorded on t …
3
votes
2answers
84 views
Is there a way to view the undo stack?
I'm learning about undo, and I'd like a way to peek into the undo objects (NSInvocations) in the undoManager so I can see what's going on. I couldn't see anything like this in the …
0
votes
2answers
26 views
Undo operation for TFS?
I got the 'resolve' dialog in TFS, and it looks like I clicked too fast on the wrong button (because they're too close together) and blew away a week's worth of work when TFS disca …
0
votes
1answer
35 views
Maintain Undo In Modified, Bound, NSAttributedString
I've got an attributed string bound to a NSTextView. I'm using a method that is called (using KVO) every time the string is edited to add background color attributes to string base …
4
votes
5answers
327 views
how do I do redo (i.e. “undo undo”) in vim
In vim, I did to much undo.
How do I undo this (i.e. redo)
0
votes
5answers
118 views
Python: undo write to file
What is the best way to undo the writing to a file? If I'm going through a loop and writing one line at a time, and I want to undo the previous write and replace it with something …
5
votes
3answers
248 views
How to undo “git commit --amend” done instead of “git commit”
I accidentally amended my previous commit. The commit should have been separate to keep history of the changes I made to a particular file.
Is there a way to undo that last commit …
1
vote
2answers
58 views
Implement data rollback in existing CRUD app
I have an existing CRUD app that I have been tasked with implementing "tomb stoning". I need a way to allow a user to roll a given page of data back to the previous state.
Say I …
1
vote
4answers
144 views
WPF TextBox Interceping RoutedUICommands
I am trying to get Undo/Redo keyboard shortcuts working in my WPF application (I have my own custom functionality implemented using the Command Pattern). It seems, however, that t …
1
vote
1answer
273 views
Does UIApplication send a “Shake-to-Edit” notification in iPhone OS 3.0?
In iPhone OS 3.0, UIApplication allows you to set a applicationSupportsShakeToEdit flag. The documentation says "The default value is YES. Set the property to NO if you don’t want …
0
votes
2answers
206 views
Undo history broken in Eclipse?
Is Eclipse's undo history broken? I have been using 3.1, 3.2, 3.3, and now 3.4 versions for the last few years and was always able to undo only about 20-25 changes back in history. …
