Tagged Questions

This is a generic tag used in a wide range of questions including something as simple as syntactic 'changes' in code to massive 'changes' caused by an application.

learn more… | top users | synonyms

18
votes
6answers
2k views

Emacs - highlight buffer modifications

It often occurs that a file buffer is modified (duh!). Before exiting, emacs asks whether to save the changes. Now it would be interesting to know what actually changed. Is there a way to find out?
16
votes
7answers
476 views

Tracking C++ lib public API changes

I'm currently working on large C++ Qt based project which is a about to go under a major refactor of its public API and it would be nice to have a tool that can generate a report on which methods have ...
10
votes
7answers
184 views

Is there a method / system / program to keep track of different stages and changes in writing the code for a project?

forgive me, but I don't know the technical term to know what to search for. I am trying to find a way to keep track of changes in my code during the development of my program. something that would ...
8
votes
4answers
2k views

Mercurial says “abort: outstanding uncommitted changes”, I don't want to commit!

Scenario: Local repo, before I leave the office $ hg status M important/update1 M another/important/update2 M work/in/progress I want to commit and push important/update1 and important/update2, ...
7
votes
3answers
3k views

How To Update EF 4 Entity In ASP.NET MVC 3?

I have 2 projects - a class library containing an EDM Entity Framework model and a seperate ASP.NET MVC project. I'm having problems with how your suppose to edit and save changes to an entity using ...
6
votes
3answers
1k views

How to configure hudson to ignore changes under specified SVN folders?

I'm looking for a way to ignore changes under specified SVN folders in Hudson. It's the same thing as exclude folders in TeamCity and filters in CC.Net. I haven't found any configuration option under ...
5
votes
5answers
296 views

Free tool to watch database for changes?

Im looking for a tool that can watch database(mysql and oracle) for changes. When someone inserts or updates something in any(or chosen) table i want to get to know about it. It could be very useful ...
5
votes
3answers
185 views

Detecting API changes/evolution

I want to measure API evolution for a given Java project, in particular new/renamed classes, new methods, newly deprecated methods, etc. Is there a tool that detect such changes? Back in 2007, a ...
5
votes
5answers
592 views

Tracking changes to a (functional) design document

I am looking for a good way to keep a design document up to date with the latest decisions. We are a small team (two developers, game designer, graphic designer, project manager, sales guy). Most of ...
5
votes
7answers
228 views

Designing for change

I'm pretty sure most of us are familiar with the concept of a project's requirements changing after it starts, this becomes more and more of an issue the less the client knows about how things work ...
4
votes
1answer
68 views

Perforce - Hiding/Blocking revised file information in a changelist

On P4V windows app,I can select a particular user and a workspace and see the user's list of changes on that particular workspace. When I click a particular changelist from the list of changes, I can ...
4
votes
6answers
608 views

What Design Patterns do you implement in common Delphi programming?

As I'm a learner and user of design patterns and Delphi I would like you to ask a question which you may find subjective (Ooo just another "what's the best?"). What Design Patterns do you implement ...
3
votes
1answer
114 views

CouchDB: view to get _changes with specific values

I can get the latest changed document by using: localhost:5984/_changes and then use the documentID's returned and obtain the document using localhost:5984/documentID I was wondering if I can ...
3
votes
1answer
58 views

I want to be able to undo changes made in JTextArea. Any hints?

I want to be able to undo changes made in JTextArea. Any hints?
3
votes
2answers
3k views

ExtJs Store.save()?

How do I handle the save() method of the data store on the back end.(my C# code)? Do I need any extra config settings for the store to enable the save() method? If anyone could just point me in the ...
3
votes
2answers
176 views

In Mercurial, how do I pick specific files from a named branch to merge back with default?

I have a big named branch with a lot of changes. Some of these changes are non-destructive so I want to pick these specific files out first, and merge them with default as soon as possible. (Then ...
3
votes
10answers
2k views

Is there a tool to DB Diff on 'data' for an ORACLE database?

We have an ORACLE 10g database with 100+ tables. The software used against this database is an order entry system. We are looking for some software (preferably free) or script which when ran will ...
2
votes
1answer
50 views

php fread a file that is changing

Provided the following example code: <?php $handle = fopen("/tmp/test_file/sometestfile", "r"); $contents = ''; while (!feof($handle)) { $contents = fread($handle, 10); print $contents; ...
2
votes
3answers
77 views

Eclipse: Keeping track of all the files that I have changed before checking in?

When I have changed a lot of files I usually forget checking in some of them and this breaks the build. I have tried maintaining lists but it doesnt work. Is there any good plugin to Eclipse that ...
2
votes
2answers
39 views

How to view changes made to a file (person used vim to make unauthorised changes)

Is there a way that I can review the changes made to a file? Basically, someone has logged onto my server and made unauthorized changes to a file, this has taken down a whole site. I want to see ...
2
votes
1answer
461 views

how to Detect file or folder changes In Android?

Is possible to detect folder changes in android? I mean detect when files are deleted or changed and know wich application are doing this? In windows you have system events for this, it's not necesary ...
2
votes
3answers
976 views

CouchDB _changes notifications - jquery.couch.js couch.app.db.changes() usage

I have replication working in CouchDB and want to update my UI when changes are pushed to the target database. I've read about _changes database API and found the couch.app.db.changes() function in ...
2
votes
4answers
274 views

Highlight changes?

HTML: <html> <body> <textarea>Original Text</textarea> <button>Replace</button> </body> ...
2
votes
1answer
1k views

DataTable.GetChanges() keeps returning NULL!

I am trying to get all the rows that exist in allData but not in removeData public static DataTable RemoveDuplicateRows(DataTable allData, DataTable removeData) { removeData.Merge(allData); ...
2
votes
3answers
171 views

Keeping track of changes I make by copying project folders

I'm a beginner so if there is a terminology for what I'm doing I don't know how to search for it. So forgive me if this has been asked before. So here is what I do. Before I make any major code ...
2
votes
4answers
160 views

Implementing a history feature à la Wikipedia

I am writing a Web application that has a user interface for editing documents. What is the best way to implement a history feature like Wikipedia's where edits to a document can be viewed?
2
votes
3answers
884 views

How can i track changes in content on a html page after page has loaded

I'm wracking my brain on this one. After a html document loads in a browser,I want to be able to monitor the page incase any content on it changes for any reason. Is there a Javascript function ...
2
votes
8answers
2k views

Reading changes in a file in real-time using .NET

I have a .csv file that is frequently updated (about 20 to 30 times per minute). I want to insert the newly added lines to a database as soon as they are written to the file. The FileSystemWatcher ...
1
vote
2answers
77 views

MVVM subproperty change detection

My problem is as follows: I am working with MVVM pattern and I would like to know how to detect changes of subproperties. I have a textbox: <TextBox Name="Descripcion" Text="{Binding ...
1
vote
3answers
87 views

Xcode not building app with changes incorporated

After upgrading to Lion, Xcode 4.1 is no longer building my iOS apps with the latest changes incorporated (i.e code, bundle name, icon changes). Before the upgrade, when I was using Snow Leopard, no ...
1
vote
2answers
61 views

How can I view branches and file changes using git log?

I read a similar question about this that suggested using "git log --graph --all --decorate". The problem with this is that it doesn't display branch names for log entries that have had their branch ...
1
vote
2answers
156 views

Ruby on Rails: Track changes when updating a record

How do I check if the data is changed when I edit a record? So before update game.player=1 after update / edit game.player=2 for example how to track changes (check if changed) and do ...
1
vote
2answers
62 views

What are the best practices for detecting changed rows for a data feed?

I am researching best practices for managing a weekly data feed to a 3rd party OLAP service. The analysis database will be initialized with a full data dump. Subsequent weekly feeds will provide new ...
1
vote
2answers
75 views

How to detect collection changes in NHibernate

How can I detect changes (additions and removals) from many to many sets and lists in NHibernate? I'm using an interceptor to detect changes in the object model (for auditing and more), this works ...
1
vote
0answers
180 views

Monotouch uiwebview url problems

Im opening an url in monotouch in an UIWebView. When i open this URL in my browser it works fine, but in the simulator it doesnt appear to save the cookies. This cookie is needed for Linkedin ...
1
vote
1answer
53 views

Mercurial not saving pushed changeset

Bare with me here as this seems to be a non-existant issue on the web aside from myself experiencing it. I initially setup Mercurial on our Ubuntu 10.04 box. We have several projects going on and ...
1
vote
1answer
173 views

couchdb: filtered change notification on views

I need to replicate, in a new database, the result of a view. Is there a solution other than using an external process waiting for changes? Below a broken example of what i need: a continuos filtered ...
1
vote
1answer
80 views

Mercurial: merging an already (locally) deleted folder

I'm using Mercurial and ran into an issue I'm not sure how to resolve. The issue I'm facing at the moment is as follows: - we had a project (folder) that was initially called A and pushed that to a ...
1
vote
1answer
88 views

The 'Open with' option is automatically changed with my app when my app is installed

I am developing an Desktop application which organizes and plays movie files. So, I have added the mp4, mov, avi, m4v (mp4, mov, avi, m4v extensions) as document type under Properties of my ...
1
vote
2answers
366 views

how to save dynamicly changed ( byjquery ) html DOM?

I got some nice layout generator using jquery dynamic forms, and jquery ui features to change number of used elements, their css properties etc. Everythin looks great but there is one problem with ...
1
vote
1answer
55 views

Metrics for Change Size when using diff tools

Does anybody know any diff tool which counts some metrics for "Change Size". I'm searching for a diff tool that uses the diff output and reports something like: (1) The number of ...
1
vote
1answer
93 views

Making private changes to Three20

I've made some private changes to the public Three20 libraries. Three20 will now work with semi-trusted SSL certs. Custom views are now working for headers in grouped table views. Custom chrome is ...
1
vote
1answer
76 views

Is there a way to blame someone else or be able to change the blamee in subversion/TortoiseSVN?

I have a project I am working on that is being version controlled on a local machine. I have changes made by another person outside of the network/company that I need to incorporate into my project ...
1
vote
1answer
95 views

VS2008/2010 debugger changes application behavior

I have a very simple Delphi 2010 dll that I load from a Visiual Studio 2008 C ATL console application (MVF GUI app does not work either). When I debug the console app from the IDE directly - no break ...
1
vote
0answers
494 views

Updating EKEvent

I'm trying to make some changes to an EKEvent object in my calendar. I have an event for example from 1 a.m to 2 a.m. When I set the allDay property to YES, this event is changed correctly and appears ...
1
vote
3answers
171 views

How has Windows API changed in the last 10 years? [closed]

I am interested in how Windows API has changed in the last 10 years since Windows 98 and Windows 2000? What interesting API calls have been added that you know? Also do people still write anything in ...
1
vote
1answer
87 views

How and when do browsers implement real-time changes to a document's DOM?

My website dynamically embeds an external Javascript file into the head tag. The external Javascript defines a global variable myString = "data". At what point does myString become accessible to ...
1
vote
4answers
332 views

What's the best way to implement tracking changes on your entities?

The requirement is to track all changes made to an entity, track it to know who did it, when he did, etc. For example, I have a Person entity, and a user has change the name of the person, I'd like to ...
1
vote
2answers
1k views

How to determine if an Entity with relationship properties has changes

Dim myEmployee as Employee = myObjectContext.Employee.Where("it.EmployeeID = 1").First() The following line will cause e.EntityState to equal EntityState.Modified : myEmployee.Name = "John" ...
0
votes
1answer
97 views

How to destroy an activity which handles screen orientation change and keyboard availability change?

I was working with background threads and orientation changes. i have gone through the code given here. http://stackoverflow.com/q/1512263 and some other posts too. i'm using ...

1 2