active questions tagged save - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T02:51:57Zhttp://stackoverflow.com/feeds/tag/savehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1884588/iphone-core-data-saving-multiple-items-at-once-random-behavior0iPhone Core Data saving multiple items at once random behavior?OscarMk2009-12-10T22:38:25Z2009-12-11T03:44:32Z
<p>Hello,</p>
<p>I have an application that reads an rss feed, parses the xml and adds it to my database using Core Data (this is so the user can see the feed even if no internet connection is available) this all works fine. The way I am doing the parsing is: on the didStartElement i create a new Entity such as:</p>
<pre><code>NewsDB *newsDB = [NSEntityDescription insertNewObjectForEntityForName:@"NewsDB" inManagedObjectContext:managedObjectContext];
self.currentObject = newsDB;
</code></pre>
<p>and in the didendDocument i just save everything with something such as:</p>
<pre><code>- (void)parserDidEndDocument:(NSXMLParser *)parser {
NSError *error = nil;
if (![managedObjectContext save:&error])
{
NSLog(@"Error saving %@", error);
}
</code></pre>
<p>This al works perfectly fine, in fact my program works just the way I want it now. But my question is when the managed object context gets saved the items seem to be added randomly, this is the first created object in the context may not be the first row in the database. I fixed this by adding a column that tells me the position in the xml, and then simply sorting by this column in my fetchedResultsController.</p>
<p>I know I could just save the context every time an item ends, but that doesn't sound like a good approach, so I just save them all at the end.</p>
<p>My question is why do they get added randomly?, is this the normal behavior?. Thank you.</p>
<p>-Oscar</p>
http://stackoverflow.com/questions/649154/android-bitmap-save-to-location0Android : Bitmap save to locationChrispix2009-03-16T03:26:06Z2009-12-09T13:53:48Z
<p>I am working on a function to download an image from a web server, redisplay it on the screen, and if the user wishes to keep the image, save it on the SD card in a certain folder. Is there an easy way to take a bitmap and just save it to the SD card in a folder of my choice?</p>
<p>My issue is that I can download the image, display it on screen as a Bitmap. The only way I have been able to find to save an image to a particular folder is to use FileOutputStream, but that requires a byte array. I am not sure how to convert (if this is even the right way) from Bitmap to byte array, so I can use a Fileoutput stream to write the data.</p>
<p>The other option I have is it use MediaStore :</p>
<pre><code>MediaStore.Images.Media.insertImage(getContentResolver(), bm,
barcodeNumber + ".jpg Card Image", barcodeNumber
+ ".jpg Card Image");
</code></pre>
<p>Which works fine to save to SD card, but does not allow you to customize the folder.</p>
<p>Any assistance would be very much appreciated. Thank you in advance.</p>
http://stackoverflow.com/questions/1871664/linq-to-sql-equivalent-for-xml-file-persistence0LINQ to SQL equivalent for XML file persistence.Larry Watanabe2009-12-09T04:58:30Z2009-12-09T05:11:17Z
<p>Microsoft has made saving objects very easy with their LINQ to SQL mapping. </p>
<p>However, I would sometimes like something a little more lightweight, i.e. the ability to save objects to a file when an application closes, and read them back in again. XML seems like a natural data format rather than inventing a new data format. (Of course, one could argue that XML is the new ascii, and we still have the problem of defining the data schema etc. ..).</p>
<p>Is there a predefined method of doing this, or am I going to have to manually figure out an XML data format and write routines to read/write them, i.e. by constructing a DOM equivalent and then saving as XML?</p>
http://stackoverflow.com/questions/958308/django-model-custom-save-with-manytomanyfield-problem1Django model custom save with ManyToManyField problemOrengelo2009-06-05T21:52:06Z2009-12-08T05:39:43Z
<p>I know this question has been posted multiple times but I still couldn't find a definite answer to this problem. So, here I go:</p>
<pre><code>class Invoice(models.Model):
program = models.ForeignKey(Program)
customer = models.ForeignKey(Customer, related_name='invoices')
participants = models.ManyToManyField(Participant, related_name='participants_set')
subtotal = models.DecimalField(max_digits=10, decimal_places=2, default='0.00', blank=True, null=False)
pst = models.DecimalField("PST", max_digits=10, decimal_places=2, default='0.00', blank=True, null=False)
gst = models.DecimalField("GST", max_digits=10, decimal_places=2, default='0.00', blank=True, null=False)
total = models.DecimalField(max_digits=10, decimal_places=2, default='0.00', blank=True, null=False)
def save(self, **kwargs):
super(Invoice, self).save(**kwargs)
items = self.participants.count()
subtotal = Decimal(self.program.fee) * items
pst = self.program.is_pst and Decimal(PST)*subtotal or Decimal('0.00')
gst = self.program.is_gst and Decimal(GST)*subtotal or Decimal('0.00')
total = (subtotal + pst) + gst
self.subtotal = subtotal
self.pst = pst
self.gst = gst
self.total = total
super(Invoice, self).save(**kwargs)
</code></pre>
<p>Everything works fine except self.participants.count() doesn't work. Any idea what could be the problem. Any help much appreciated.</p>
http://stackoverflow.com/questions/1852812/saving-all-modified-buffers-in-emacs-but-not-one-by-one0saving all modified buffers in emacs, but not one by oneRamyenHead2009-12-05T17:28:33Z2009-12-06T14:13:47Z
<p>When I press <code>C-x s</code> or <code>C-x C-c</code>, emacs displays the names of modified buffers one by one and asks what to do with each (save, diff, pass, ...). Pressing y one by one is slow. Pressing ! doesn't let you see what buffers are being saved.</p>
<p>How can I have the names of all modified buffers displayed first so that I can mark off some of them and save all the other quickly?</p>
http://stackoverflow.com/questions/1838241/django-m2m-and-saving-objects0Django m2m and saving objectsAndrew Gee2009-12-03T07:23:10Z2009-12-05T22:51:08Z
<p>I have a couple of simple objects that have a many-to-many relationship. Django has joined them using obj1_obj2 table and it looks like this in mysql; </p>
<pre><code>id | person_id | nationality_id
-----------------------------------
1 | 1 | 1
2 | 1 | 2
</code></pre>
<p>Now when I save obj1 (which shows obj2 in as Multi-select in its form) the ids in the obj1_obj2 table increase even thow I have not changed them. For example I change a basic character field for obj1 on its form and save it and the the data in the joining table appears to be deleted and re-saved giving the entries new ids. </p>
<p>In fact I don't have to change anything all I have to do is save the form and the same thing happens. </p>
<p>All I am doing in the view is form.save(), nothing special. Is that the normal way that it works?</p>
<p>EDIT: Added Models, Views, Forms </p>
<pre><code>class Person(models.Model):
name = models.CharField()
birthdate = models.CharField()
nationality = models.ManyToMany(Nationality)
class Employee(Person):
employeeNum = models.CharField()
class FamilyMember(Person):
employee = models.ForeignKey(Employee)
relationship = models.CharField()
class Nationality(models.Model):
abbrev = models.CharField()
country = models.CharField()
class FamilyMemberDetailsForm(forms.ModelForm):
class Meta:
model = FamilyMemeber
exclude = ['employee']
def editFamilyMember(request, familyMember_id):
familyMember = get_object_404(FamilMember, familyMember_id)
if request.method == 'POST':
form = FamilyMemberDetailsForm(request.POST, instance=familyMember)
if form.is_valid():
form.save()
else:
form = FamilyMemberDetailsForm(instance=familyMember)
return render_to_response(editForm.html, {'form':form},
context_instance(RequestContext(request))
</code></pre>
<p>This is a cut down version of the models, but the same thing happens for saving an employee or familyMember. The FamilyMember I have shown because it is as simple as this I create the modelForm and then make changes and then save it. For the employee I do some more manipulation in the <strong>init</strong> of Form for the Nationality, mainly for presentation, and at first I thought it was this manipulation that was causing it, but as I said the same thing happens with the FamilyMember where I do nothing except save.</p>
<p>The Nationality is presented on the form as a multiselect box with a list and the user can select 1 or more from the list. If I just present the populated form and then save it without changing anything the id for the many-to-many table entry changes. </p>
<p>I have changed the example table titles also. </p>
<p>Thanks,<br>
Andrew</p>
http://stackoverflow.com/questions/1853259/save-matlab-invisible-plot-under-terminal-as-an-image-with-same-size3Save Matlab invisible plot under terminal as an image with same size Tim2009-12-05T19:53:20Z2009-12-05T21:26:15Z
<p>Hi,
I am ssh connecting to a linux server and do some Matlab programming. I would like to save invisible plot as</p>
<pre><code>figH = figure('visible','off') ;
% Plot something
% save the plot as an image with same size as the plot
close(figH) ;
</code></pre>
<p>saveas() and print() will change the size of the saved image different than the size of plot. Also for print(), all three renderer modes (-opengl, -ZBuffer and -painters) can not be used in terminal emulation mode on the linux server. getframe() doesn't work either.
I wonder how I can solve these problems?
Thanks and regards!</p>
http://stackoverflow.com/questions/962252/finished-iphone-app-add-a-new-feature-record-system-sound-and-then-be-able-to-p0finished iPhone app: add a new feature. record system sound and then be able to playbackPavan2009-06-07T16:36:44Z2009-12-05T15:00:03Z
<p>i have just created a drum app. The user taps on the individual buttons which triggers a short sound to play using the systemsound from AudioToolbox.
I now would like to add a UIButton which says "record", and upon click, will record all Systemsounds being played, and then when the use presses the stop button; the program should then be able to playback the sound.</p>
<p>How do i go about doing this?! The whole process of the program being able to record the short sounds that the user triggers by tapping on the individual hit areas?!</p>
<p>Please let me know</p>
<p>Thanks</p>
<p>Pavan</p>
http://stackoverflow.com/questions/812258/allowing-anonymous-user-to-save-contents-of-a-form-in-sharepoint-doc-library1allowing anonymous user to save contents of a form in sharepoint doc libraryVoices2009-05-01T17:03:16Z2009-12-04T18:25:32Z
<p>I have moss 2007 configured for anonymous access. I also have a public accessible form created in infopath, which can be opened in a webpage and filled and submitted. However, an anonymous user is unable to submit the form after filling it. Submit action is supposed to save the form in a doucment library.</p>
<p>I checked the anonymous permission for this document library(settings>permissions>Anonymous access) and see that only "View Items" is enabled while other options to "Add Items" or "Edit Items" has been disabled and greyed out.</p>
<p>Is there a way how an anonymous user can fill out a form and its contents can be submitted in a document library in sharepoint?</p>
http://stackoverflow.com/questions/1841332/save-iphone-ringtone-1Save iPhone ringtone [closed]Rick Leinecker2009-12-03T17:01:06Z2009-12-03T17:12:06Z
<p>I have an application the records sounds and also shares sounds on a web site. Can I save a recorded sound as a ringtone? Also, can I download one of the shared files on the web site as a ringtone?</p>
http://stackoverflow.com/questions/1836084/anyway-to-get-netbeans-to-save-before-a-compile-and-run0Anyway to get Netbeans to save before a compile and run?ראובן2009-12-02T21:53:55Z2009-12-02T21:56:57Z
<p>I'm using Netbeans for Groovy/Grails development. I'm very new to Groovy/Grails and netbeans.</p>
<p>Netbeans doesn't save all changed files before a compile and run. I looked through every Preference setting, the help, etc, and can't find an option to save on build.</p>
<p>Does such an option exist in Netbeans? I waste a lot of time forgetting to save everything before compiling and testing.</p>
http://stackoverflow.com/questions/1822752/uiimageview-rotated-and-scaled-how-do-i-save-the-results0UIImageView: Rotated and Scaled. How do I save the results ??Alan Aherne2009-11-30T22:10:29Z2009-12-02T15:53:21Z
<p>Hi All,
I am trying to save a rotated and scaled UIImageView as an UIImage in the position and with the zoom scale that the user edited too. But I can only manage to save the original image as it was before editing. How can I save the image as it is shown in the UIImageView with the same scaling and rotation? I have read that I need to use UIGraphicsGetCurrentContext() but I get the same original image saved ( but flipped ) and not the rotated one!! Suggestions and hints would be really helpfull.
Thank You in advance.
Al</p>
<pre><code>(UIImage *)getImage
{
CGSize size = CGSizeMake(250, 250);
UIGraphicsBeginImageContext(size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGMutablePathRef path = CGPathCreateMutable();
// Add circle to path
CGPathAddEllipseInRect(path, NULL, CGRectMake(0, 0, 250, 250));
CGContextAddPath(context, path);
// ****************** touchImageView is my UIImageView ****************//
CGContextDrawImage(context, CGRectMake(0, 0, 250, 250), [touchImageView image].CGImage);
UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
// Clip to the circle and draw the logo
CGContextClip(context);
UIGraphicsEndImageContext();
return scaledImage;
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1833275/how-can-i-save-a-form-with-modelmultiplechoicefield1how can I save a form with ModelMultipleChoiceField ?miernik2009-12-02T14:35:47Z2009-12-02T15:37:34Z
<p>I have a model Calendar and in a form I want to be able to create multiple instances of it.</p>
<p>Here are my models:</p>
<pre><code>class Event(models.Model):
user = models.ForeignKey(User)
class Group(models.Model):
name = models.CharField(_('Name'), max_length=80)
events = models.ManyToManyField(Event, through='Calendar')
class Calendar(models.Model):
event = models.ForeignKey(Event)
group = models.ForeignKey(Group)
class CalendarInline(admin.TabularInline):
model = Calendar
extra = 1
class GroupAdmin(admin.ModelAdmin):
inlines = (CalendarInline,)
</code></pre>
<p>Here is how I try to code my form:</p>
<pre><code>class AddEventToGroupForm(ModelForm):
group = ModelMultipleChoiceField(queryset=Group.objects.all(), widget=SelectMultiple())
def save(self):
for g in self:
g.save()
class Meta:
model = Calendar
fields = ('group',)
</code></pre>
<p>And here is a part of my view:</p>
<pre><code>e = Event.objects.get(id=event_id)
calentry = Calendar(event=e)
if request.POST:
f = AddEventToGroupForm(data=request.POST, instance=calentry)
if f.is_valid():
f.save()
</code></pre>
<p>If I try to submit that form, I get:</p>
<pre><code>AttributeError at /groups/add_event/7/
'BoundField' object has no attribute 'save'
</code></pre>
<p>What is the proper way to create multiple instances of Calendar in this
situation?</p>
http://stackoverflow.com/questions/1809563/django-dynamic-forms-save0Django Dynamic Forms SaveJohn2009-11-27T16:11:09Z2009-11-28T21:47:39Z
<p>I am using James Bennetts code (<a href="http://www.b-list.org/weblog/2008/nov/09/dynamic-forms/" rel="nofollow">link text</a>) to create a dynamic form. Everything is working ok but I have now come to the point where I need to save the data and have become a bit stuck. I know I can assess the data returned by the form and simply save this to the database as a string but what I'd really like to do is save what type of data it is e.g. date, integer, varchar along with the value so that when it comes to viewing the data I can do some processing on it depending on what type it is e.g. get dates greater than last week. </p>
<p>So my question is how do I access what database type the form element is based on what type of form element it is e.g. a django.forms.IntegerField has a database field type of int, django.forms.DateField would be a date field and django.forms.ChoiceField would be a varchar field? </p>
http://stackoverflow.com/questions/1813090/remember-password-option-c1"Remember password" option [C#]Caian2009-11-28T17:09:57Z2009-11-28T17:31:09Z
<p>Hi, i need to implement a "Remember password" option in my program, it works with client-server protocols that REQUIRE the entire password to be passed in the loggin process, not only Hashes, so i need to store the entire password locally. I searched all over the place but i found no conclusive answer or no answer at all. But since Email clients, Internet Browsers, IM clients do it, it shouldn't be impossible...</p>
<p>so, what's the best method?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1613679/how-to-make-an-incremental-update-to-a-pdf0How to make an incremental update to a PDFAndrea2009-10-23T14:02:31Z2009-11-27T13:00:45Z
<p>I need to make an incremental update (add some existing pdf pages) to an signed pdf, making the included signature still be valid (that cover the first page).</p>
<p>I've seen some post's telling that is possible with PDFStamper (iTextSharp), but I'm unable to find a example out to make it append, some one can help?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/622761/saving-strings-to-disk-under-delphi-20091Saving strings to disk under Delphi 2009Altar2009-03-07T23:53:09Z2009-11-27T06:56:29Z
<p>Hi.
I have a structure like below that needs to be saved and loaded from disk.</p>
<pre><code> RSecStructure= packed record
Name : string[255]; {NEED UNICODE SUPPORT HERE}
ScreenName : string[255];
OrigFileName : string[255];
Prim : string[255];
ParentVersion : integer;
sTag1 : string[255];
sTag2 : string[255];
sTag3 : string[255];
sTag4 : string[255];
DateAdd : TDateTime;
DateModify : TDateTime;
end;
</code></pre>
<p>Until now I have used something like this to save the structure:</p>
<pre><code>function
var F: FILE;
Hdr: RSecStructure;
begin
...
BlockWrite (F, Hdr, SizeOf(Hdr));
...
end
</code></pre>
<p>The above code worked under Delphi 7. Under D2009 I got a lot of warning messages when I make assignments between short and Unicode strings.
Until now I managed to write Delphi code without having ANY compiler warnings or hints and I want to stay like that.
So I need an elegant was to save strings (Unicode will be great but not critical) to disk without getting warnings. </p>
http://stackoverflow.com/questions/1796744/how-to-save-data-in-nsuserdefaults-even-if-app-will-be-deleted0How to save data in NSUserDefaults even if app will be deleted?Timpeach2009-11-25T12:54:58Z2009-11-25T13:35:37Z
<p>I save some strings and numbers to NSUSerDefault,
but when I uninstall and reinstall the app the data is ereased.</p>
<p>Is there a possibility to store data some where else? Maybe in keychain?</p>
http://stackoverflow.com/questions/1796221/hibernate-saveorupdate-fails-when-i-execute-it-on-empty-table0Hibernate saveOrUpdate fails when I execute it on empty table.Vladimir2009-11-25T11:07:30Z2009-11-25T11:20:16Z
<p>I'm try to insert or update db record with following code:</p>
<pre><code>Category category = new Category();
category.setName('catName');
category.setId(1L);
categoryDao.saveOrUpdate(category);
</code></pre>
<p>When there is a category with id=1 already in database everything works. But if there is no
record with id=1 I got following exception: </p>
<pre><code>org.hibernate.StaleStateException:
Batch update returned unexpected row count from update [0]; actual row count: 0;
expected: 1:
</code></pre>
<p>Here is my Category class setters, getters and constructors ommited for clarity:</p>
<pre><code> @Entity
public class Category {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String name;
@ManyToOne
private Category parent;
@OneToMany(fetch = FetchType.LAZY, mappedBy = "parent")
private List<Category> categories = new ArrayList<Category>();
}
</code></pre>
<p>In the console I see this hibernate query:</p>
<pre><code>update
Category
set
name=?,
parent_id=?
where
id=?
</code></pre>
<p>So looks like hibernates tryis to update record instead of inserting new. What am I doing wrong here?</p>
http://stackoverflow.com/questions/1774980/save-load-properties-to-file-or-databse-provider0Save/Load Properties to file or databse providerDennis Larsen2009-11-21T08:57:45Z2009-11-25T11:05:09Z
<p>I need to save and load properties of a Class dynamicly,
but what is the best practis for this ?</p>
<p>I have for now, two classes that I need to save.</p>
<pre><code>public abstract class BaseComponent {
protected int ComponentID { get; set; }
protected string ComponentName { get; set; }
protected Dictionary GetAllProperties{) { /* Reflection */ }
}
public class Article : BaseComponent {
protected string Title { get; set; }
protected string Content { get; set; }
}
</code></pre>
<p>Here I'm thinking to table:</p>
<p>Table: Component, ComponentID, Parrent -> and more
Table: ComponentProperties: ComponentID, Key, Value -> and more</p>
<p>I need to use as must of the dotNet framework, but still keep it simpel.
Im think og use a Provider, I need the function og make different data provider:thatcan save to xml file, sql database or oracle database, you name it.</p>
<p>Do I use a provider, or somethnig else ? </p>
http://stackoverflow.com/questions/1156608/feedback-on-code-to-serialize-deserialize-and-save-image0Feedback on code to Serialize, Deserialize and Save ImageTim2009-07-20T23:56:48Z2009-11-23T15:55:04Z
<p>Here is my code to Serialize, Deserialize and Save an image to the file system. I have looked at many examples of serialization/deserialization and I just want to get some feedback as I am sure my code could be improved. Any feedback would be greatly appreciated. I know this is a common problem so hopefully this question will be a good resource for others in the future.</p>
<p><strong>This is the revised code using recommendations:</strong></p>
<pre><code> private void Form1_Load(object sender, EventArgs e)
{
RunTest();
}
private void RunTest()
{
byte[] jpgba = ConvertFileToByteArray("D:\\Images\\Image01.jpg");
using (Image jpgimg = ConvertByteArrayToImage(jpgba))
{
SaveImageToFileSystem(jpgimg, "D:\\Images\\Image01_Copy.jpg");
}
byte[] pngba = ConvertFileToByteArray("D:\\Images\\Image02.png");
using (Image pngimg = ConvertByteArrayToImage(pngba))
{
SaveImageToFileSystem(pngimg, "D:\\Images\\Image02_Copy.png");
}
byte[] gifba = ConvertFileToByteArray("D:\\Images\\Image03.gif");
using (Image gifimg = ConvertByteArrayToImage(gifba))
{
SaveImageToFileSystem(gifimg, "D:\\Images\\Image03_Copy.gif");
}
MessageBox.Show("Test Complete");
this.Close();
}
private static byte[] ConvertFileToByteArray(String FilePath)
{
return File.ReadAllBytes(FilePath);
}
private static Image ConvertByteArrayToImage(byte[] ImageByteArray)
{
using (MemoryStream ms = new MemoryStream(ImageByteArray))
{
return Image.FromStream(ms);
}
}
private static void SaveImageToFileSystem(Image ImageObject, string FilePath)
{
// ImageObject.Save(FilePath, ImageObject.RawFormat);
// This method only works with .png files.
// This method works with .jpg, .png and .gif
// Need to copy image before saving.
using (Image img = new Bitmap(ImageObject.Width, ImageObject.Height))
{
using (Graphics tg = Graphics.FromImage(img))
{
tg.DrawImage(ImageObject, 0, 0);
}
img.Save(FilePath, img.RawFormat);
}
return;
}
</code></pre>
http://stackoverflow.com/questions/1767371/habtm-data-not-saving-cakephp0HABTM data not saving (cakephp).Frank Luke2009-11-19T23:36:39Z2009-11-21T03:24:37Z
<p>Hello,</p>
<p>I have two models related HABTM (documents and people).</p>
<pre><code>class Person extends AppModel {
var $name = 'Person';
var $hasAndBelongsToMany = array(
'Document' => array(
'className' => 'Document',
'joinTable' => 'documents_people',
'foreignKey' => 'person_id',
'associationForeignKey' => 'document_id',
'unique' => false
)
);
class Document extends AppModel {
var $name = 'Document';
var $hasAndBelongsToMany = array(
'Person'=>array(
'className' => 'Person',
'joinTable' => 'documents_people',
'foreignKey' => 'document_id',
'associationForeignKey' => 'person_id',
'unique' => false
)
);
</code></pre>
<p>I have the add view of documents populated with one checkbox for each person that will be related to the document.</p>
<pre><code> echo $form->input('People', array('type'=>'select', 'multiple'=>'checkbox', 'options'=>$people, 'label' => 'People: '));
</code></pre>
<p>This is the line from the controller that is supposed to be doing the saving.</p>
<pre><code>$this->Document->create();
if ($this->Document->saveAll($this->data)) {
</code></pre>
<p>I noticed that the data was not getting saved into the documents_people table. So, I dumped $this->data.</p>
<p>The document portion looks like this:</p>
<pre><code>[Document] => Array
(
[file_name] => asdasd
[tags] => habtm
[People] => Array
(
[0] => 6
[1] => 12
[2] => 15
)
[image] => img/docs/2009-11-19-233059Jack.jpg
)
</code></pre>
<p>Those are the ids of the people I want associated with this document. However, nothing is transferred to documents_people. What have I done wrong?</p>
<p>Thank you,
Frank Luke</p>
http://stackoverflow.com/questions/1764709/flash-why-doesnt-my-sharedobject-get-saved-on-disk-when-closing-ie0Flash - Why doesn't my SharedObject get saved on disk when closing IE?Psycrow2009-11-19T16:42:14Z2009-11-20T11:41:29Z
<p>I have a Flash application that uses SharedObject to save and read some data locally. As it is said everywhere Flash saves the data from the shared object to disk when the application is closed. And indeed it does when I test it with the stand-alone Flash Player or all of these browsers: Firefox, Opera, Safari, Chrome, Flock... But it doesn't work when I use IE (I've tried IE6 and IE7).</p>
<p>Does anyone know anything about this issue? Why might it be happening... and how to get it to work?</p>
http://stackoverflow.com/questions/1760256/modelform-save-fails0ModelForm save failsAndrew Gee2009-11-19T01:02:49Z2009-11-19T03:30:57Z
<p>Hi,</p>
<p>I am trying to save a modelform that represents a bank account but I keep getting a ValueError even though the form appears to validate. The models I have to use are:</p>
<pre><code>class Person(models.Model):
name = models.CharField()
</code></pre>
<p><br></p>
<pre><code>class Bank(models.Model):
bsb = models.CharField()
bank_name = models.CharField()
def __unicode__(self):
return '%s - %s', (self.bank_name, self.bsb)
def _get_list_item(self):
return self.id, self
list_item = property(-get_list_item)
</code></pre>
<p><br></p>
<pre><code>class BankAccount(models.Model):
bank = models.ForignKey(Bank)
account_name = models.CharField()
account_number = models.CharField()
</code></pre>
<p><br> </p>
<pre><code>class PersonBankAcc(models.Model):
person = models.ForeignKey(Person)
</code></pre>
<p>The ModelForm for the personBankAcc;</p>
<pre><code>def PersonBankAccForm(forms.ModelForm):
bank = forms.ChoiceField(widget=SelectWithPop)
class Meta:
model = PersonBankAcct
exclude = ['person']
def __init__(self, *args, **kwargs):
super(PersonBankAccForm, self).__init__(*args, **kwargs)
bank_choices = [bank.list_item for banks in Bank.objects.all()]
bank_choices.isert(0,('','------'))
self.fields['bank'].choices = bank_choices
</code></pre>
<p>The view is:</p>
<pre><code>def editPersonBankAcc(request, personBankAcc_id=0):
personBankAcc = get_object_or_404(PersonBankAcc, pk=personBankAcc_id)
if request.method == 'POST':
form = PersonBankAccForm(request.POST, instance=personBankAcc )
if form.is_valid():
print 'form is valid'
form.save()
return HttpResponseRedirect('editPerson/' + personBankAcc.person.id +'/')
else:
form = PersonBankAccForm(instance=personBankAcc )
return render_to_response('editPersonBankAcc', {'form': form})
</code></pre>
<p>When I try to save the form I get the a VlaueError exception even though it gets passed the form.is_valid() check, the error I get is:<br>
<code>Cannot assign "u'26'": PersonBankAcc.bank must be a "bank" instance</code> </p>
<p>I know the issue is arising because of the widget I am using in the PersonBankAccForm:<br>
<code>bank = forms.ChoiceField(widget=SelectWithPop)</code><br>
because if I remove it it works. But all that does is gives me the ability to add a new bank to the database via a popup and then inserts it into the select list, similar to the admin popup forms. I have checked the database and the new bank is added. But it fails even if I don't change anything, if I call the form and submit it, I get the same error. </p>
<p>I don't understand why it does not fail at the is_valid check. </p>
<p>Any help would be greatly appreciated. </p>
<p>Thanks<br>
Andrew</p>
http://stackoverflow.com/questions/1756593/stop-2nd-question-after-save-to-xml-format0stop 2nd question after save to XML format?Anastasia2009-11-18T14:59:57Z2009-11-18T20:06:25Z
<p>How can i get my Excel xls file that is password protected to stop asking me if i want to convert it to an XML file format? </p>
http://stackoverflow.com/questions/1751476/how-can-i-tell-if-im-in-beforesave-from-an-edit-or-a-create-cakephp0How can I tell if I'm in beforeSave from an edit or a create? CakePHPFrank Luke2009-11-17T20:17:05Z2009-11-17T22:10:08Z
<p>Hello,</p>
<p>I have a model where I need to do some processing before saving (or in certain cases with an edit) but not usually when simply editing. In fact, if I do the processing on most edits, the resulting field will be wrong. Right now, I am working in the beforeSave callback of the model. How can I tell if I came from the edit or add?</p>
<p>Frank Luke</p>
http://stackoverflow.com/questions/1747369/flash-write-bytearray-to-file-on-the-disk0flash write ByteArray to file on the diskgenesys2009-11-17T08:30:33Z2009-11-17T08:36:47Z
<p>Hi!</p>
<p>I need to write a ByteArray to a file on local disk with Flash AS3. The flashapplication is run locally (it's a projector exe).</p>
<p>I found the FileReference class with the save() function which works perfect. The only problem is, that this function opens a filebrowser and let's the user select where to store the file. However - i have the path already as string and need to save to this location without useraction (since i'm exporting a lot of files into this directory in one go and don't want the user to choose each one manually).</p>
<p>Is there a way to store a bytearray from a projector to local disk without opening a filebrowser?</p>
<p>I'm also using mdm Zinc, which actually provides a function to save a ByteArray to disk, but this function is for some unknown reasons not working. I already filed a bugreport, but I need to get this to work very urgently, so i'm looking for alternatives!</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1734713/save-variable-as-txt-but-not-in-the-server2save variable as txt but not in the serverunknown (google)2009-11-14T16:23:14Z2009-11-14T17:27:17Z
<p>how can i save some variables in a txt file for the user?
dont want to generate and store in my server, just want to generate and then the user save on his pc, nothing changes on the server</p>
<p>btw, is this operation heavy on resources?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1731564/rails-botches-the-sql-on-a-complex-save0Rails botches the SQL on a complex saveDan Berger2009-11-13T20:04:36Z2009-11-14T14:42:32Z
<p>Hi, I am doing something seemingly pretty easy, but Rails is messing up the SQL. I could just execute my own SQL, but the framework should be able to handle this.</p>
<p>Here is the save I am trying to perform:</p>
<pre><code>w = WhipSenVote.find(:first, :conditions => ["whip_bill_id = ? AND whip_sen_id = ?", bill_id, k])
w.votes_no = w.votes_no - 1
w.save
</code></pre>
<p>My generated SQL looks like this:</p>
<pre><code>SELECT *
FROM "whip_sen_votes"
WHERE (whip_bill_id = E'1' AND whip_sen_id = 7)
LIMIT 1
</code></pre>
<p>And then:</p>
<pre><code>UPDATE "whip_sen_votes"
SET "votes_yes" = 14, "updated_at" = '2009-11-13 19:55:54.807000'
WHERE "id" = 15
</code></pre>
<p>The first select statement is correct, but as you can see, the Update SQL statement is pretty wrong, though the votes_yes value is correct.</p>
<p>Any ideas? Thanks!</p>
http://stackoverflow.com/questions/1732318/how-do-i-save-a-web-page-programatically2How do I save a web page, programatically?Joseph Turian2009-11-13T22:32:30Z2009-11-13T22:37:53Z
<p>I would like to save a web page programmatically.</p>
<p>I don't mean merely save the HTML. I would also like automatically to store all associated files (images, CSS files, maybe embedded SWF, etc), and hopefully rewrite the links for local browsing.</p>
<p>The intended usage is a personal bookmarks application, in which link content is cached in case the original copy is taken down. </p>