Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
276 views

small code redundancy within while-loops (doesn't feel clean)

So, in Python (though I think it can be applied to many languages), I find myself with something like this quite often: the_input = raw_input("what to print?\n") while the_input != "quit": print ...
11
votes
6answers
10k views

Client/JS Framework for “Unsaved Data” Protection?

Hey all- we have a typical web application that is essentially a data entry application with lots of screens some of which have some degree of complexity. We need to provide that standard capability ...
5
votes
2answers
679 views

What is meant by the term “dirty object”?

I see the term "dirty" or "dirty objects" a lot in programming. What does this mean?
4
votes
2answers
3k views

Problem with setter override on ActiveRecord

This is not exactly a question, it's rather a report on how I solved an issue with write_attribute when the attribute is an object, on Rails' Active Record. I hope this can be useful to others facing ...
2
votes
1answer
61 views

Is there a way to prevent serialized attributes in rails from getting updated even if there are not changes?

This is probably one of the things that all noobs find out about Rails sooner or later. I just realized that rails is updating all fields with the serialize keyword, without checking if anything ...
2
votes
2answers
57 views

How can I process dirty HTML and extract URL using Xpath (or another process)?

So I have been working with Wordpress 3.x and trying to build a custom display of content already stored in the WP MySQL db. I need to parse the WP post content itself for the mp3 URL in each so I ...
2
votes
2answers
192 views

What is a vimrc function to determine if a buffer has been modified?

I have a tabline function that I stole/modified from somewhere, but I would like the filename to have an asterisk before it if it has been modified since the last time it was written to disk (ie if ...
2
votes
4answers
2k views

How do I get the dirty records from an ExtJS data store?

Other than iterating over the records in the store and checking the dirty flag, is there a cleaner way? Thanks. EDIT I am using ExtJS4, btw. Here is a snippet of the data returned. Notice there ...
2
votes
0answers
138 views

Rails ActiveRecord: Does accepts_nested_attributes_for mark a parent record as dirty even if parent attributes are unchanged?

I'm syncing data with an iPhone app, so it's important to know which records have been "actually" updated and which ones have not. I've got an Event model with a RelatedLink association: In ...
2
votes
2answers
1k views

Stop Hibernate from updating collections when they have not changed

I have two entity beans defined as follows (unrelated stuff removed): @Entity @Table(...) public class MasterItem implements java.io.Serializable { private Set<CriticalItems> criticalItemses ...
1
vote
0answers
63 views

git add -p --ignore-submodules?

Is there a way to ignore dirty submodules when using git add --patch? I've set ignore = dirty as explained here. This seems to only work with git status and git diff. I love git add -p. Having to ...
1
vote
2answers
413 views

slickgrid : how to know which rows are dirty

the slickgrid is pretty good! In disconnected mode, the user makes some changes. when the job is done the changes are to be saved on the server. I would like to know if there is a convenient way to ...
1
vote
3answers
350 views

Can I Force Jquery Dirtyform to See A Form As Dirty?

We are using the JQuery dirtyform plugin to display a warning to users if they change form data and try to navigate away from the page and it works well. One additional thing I would like to do is to ...
1
vote
1answer
431 views

ASP.NET Client-Side Dirty-Form Handling

I've been trying to find the best way to handle this, this being alerting the user of an ASP.NET web form to the impending loss of data due to either: -Changing forms via a link click, -Hitting ...
1
vote
3answers
277 views

An internal error occurred while processing dirty regions

I got this error message in Eclipse today. Any idea what went wrong?
1
vote
1answer
527 views

Dirty Size, VM Tracker, iPhone

My doubt is regarding iPhone "VM Tracker" memory management tool. I have been trying out this tool with my project and found that the "dirty size" column is showing 55 MB, which is quite huge. It ...
1
vote
2answers
348 views

Tab control in Silverlight 3.0 and Dirty data

We are using tab control in our project. While using this control i came across a few issues like - When the tab control loads, it invokes constructor of all the xaml pages that form the individual ...
1
vote
2answers
521 views

“Was dirty” plugin for ActiveRecord?

I'm working on some code that uses a lot of after_save callbacks, and I remember seeing a plugin that allows the model.changes array to persist after a call to save. It would be a great help if I ...
0
votes
1answer
21 views

changed? call on properties not working

I have a model class as shown below: class Product < ActiveRecord::Base belongs_to :user; attr_accessible :price before_save :check_if_price_changed after_save ...
0
votes
1answer
26 views

Rails 3: object.save is writing the old values to database

I have code which is updating a model's property then calling save!. A Rails.logger.info call shows that the model thinks it has the new values. But the SQL write performed by the save! call is ...
0
votes
2answers
76 views

Recommendation for a jquery plugin for dirty forms - Notify user that changes will be lost when exiting page

I'm looking for a way to notify our users not to leave a page if the form-data was changed without saving. A warning message should appear (with the option to leave anyways or stay at the page). We're ...
0
votes
1answer
97 views

Algorithms for combining dirty rectangles

I'm moderately new to game programming, and I wanted to bring out the age old GamePanel again in C#. I was wondering if there were any known performant algorithms that take two or more rectangles ...
0
votes
0answers
37 views

How can i check if NHibernate entity is multi-level dirty?

I have a class with some basic properties and collections. How can i check if an instance of this class is multi-level dirty i mean not just basic properies but also collections members?
0
votes
1answer
97 views

In Rails 3.1 how can I check if any instances of a model's has_many association have changed?

In Rails 3.1 I know you can check if a given instance of a model object can be changed, but how would I check if any instances of a model's has_many association changed. For example assume I have an ...
0
votes
3answers
229 views

How to use CALLER_IS_SYNCADAPTER properly

somehow I don't understand the working concept of the query parameter CALLER_IS_SYNCADAPTER. Its default value is false, if set, the DIRTY flag is not automatically set. So what does it actually mean? ...
0
votes
0answers
78 views

ActiveRecord dirty and console

Does ActiveRecord changed? works when used through the console? Basically I have an observer that sends an email if admin column changes. The thing is admin can only be changed through the console ...
0
votes
2answers
425 views

mongoid: update nested attributes

i am running into an issue with updates to nested attributes for referenced documents not being persisted > u = User.first => #<User... > u.changes => {} > u.profile.changes ...
0
votes
1answer
103 views

Marking a Cocoa document-based document as dirty

I am following the Core Data example given by Cocoa® Programming for Mac® OS X, Third Edition in Chapter 11. I am having problems with not being able to save the document until the application closes. ...
0
votes
0answers
380 views

How can I customize jquery dirtyform's dialog box

Using jquery dirty form plugin (https://github.com/acvwilson/dirty_form) to show a dialog if a user tries to leave a page with unsaved changes. The dialog comes up with no message in its body- it ...
0
votes
1answer
94 views

Mark document as dirty in non-document based application

I'm creating a simple Cocoa non-document based application. I want to show visually that the "document" app is working with has unsaved changes (the close button displaying a dot). Is this possible ...
0
votes
1answer
223 views

nHibernate - Track 'Dirty' Properties to record history

We currently employ our own "unit of work" functionality on business objects but are looking to migrate to nHibernate to manage all our database persistence. As nHibernate manages it's own unit of ...
0
votes
2answers
505 views

JQuery dirtyForm not working on text boxes in ajaxToolkit:TabPanel

I'm a newb to jQ so please forgive my ignorance. I'm using Asa Wilson's plugin jquery.dirtyform.js to prompt a user of unsaved changes before they nav away from a page (ASP.Net C# 3.5). It basically ...