Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
960 views

Django test FileField using test fixtures

I'm trying to build tests for some models that have a FileField. The model looks like this: class SolutionFile(models.Model): ''' A file from a solution. ''' solution = ...
5
votes
2answers
398 views

What is the clean way to unittest FileField in django?

I have a model with a FileField. I want to unittest it. django test framework has great ways to manage database and emails. Is there something similar for FileFields? How can I make sure that the ...
5
votes
1answer
881 views

Django: Save an uploaded file to a FileField

I feel a little stupid for having to ask this… But I can't seem find it documented anywhere. If I've got a Model with FileField, how can I stuff an uploaded FILE into that FileField? For example, ...
4
votes
2answers
165 views

How can I rename files with a python script?

On my plone site I have hundreds of files (pdf, doc, ...) in filefield of archetypes objects. Something went wrong during importation and all the filenames are missing. The problem is that when ...
4
votes
1answer
327 views

django admin uploaded file processing

Here's what I want to do, and I did not find something similar in my search so far. In my admin page, I have a Filefield in my model. The rest of the fields are all read only. I want to be able to ...
4
votes
1answer
1k views

Django - update a model won't delete the old FileField

I am implementing an application with django, which has a model with a FileField: class Slideshow(models.Model): name = models.CharField(max_length=30,unique=True) thumbnail = ...
4
votes
5answers
978 views

Drupal Filefield won't upload javascript files?

I've got a site where individual pages might require some javascript or CSS files hooked into their heads. I'm trying to keep everything client side when it comes to managing this process, rather than ...
3
votes
1answer
268 views

copy file from one model to another

I have 2 simple models: class UploadImage(models.Model): Image = models.ImageField(upload_to="temp/") class RealImage(models.Model): Image = models.ImageField(upload_to="real/") And one form ...
3
votes
2answers
563 views

How to assign a local file to the FileField in Django?

I was trying to assign a file from my disk to the FileField, but I have this error: AttributeError: 'str' object has no attribute 'open' My python code: pdfImage = FileSaver() ...
3
votes
2answers
2k views

Django ImageField / FileField custom upload_to function, and security

I have part of a model defined like this: logo_image = models.ImageField(upload_to=lambda i, fn: "logo_%s"%(fn), height_field="logo_image_height", width_field="logo_image_width") and had a question ...
2
votes
1answer
84 views

reindexObject fails during FileField to BlobField migration in Plone 4.0.7

I'm trying to migrate from plone 3.3.5 to plone 4.0.7 and I'm stuck on a step that converts all the FileFields to BlobFields. Plone upgrade script successfully converts all native FileFields but I ...
2
votes
2answers
149 views

How to Email a Django FileField as an Attachment?

I need to send a models.FileField as an email attachment using Django. I've seen snippets that show how to do this with the raw request.FILES data (which still contains the Content-Type), but have not ...
2
votes
1answer
370 views

How add new instance of django model with FileField by ModelForm?

I'm Django beginner. I think my problem is trivial but i can't solve it. I have model named Document with one FileField: class Document(models.Model): file = ...
2
votes
1answer
337 views

How can I replace/override an uploaded file?

I want to be able to upload a file and on each upload to override/replace the existing file with the newest version. from django.core.files.storage import FileSystemStorage fs = ...
2
votes
1answer
1k views

Validating data in Django ModelForm

And i have a simple modelform for Package from models import Package from django import forms class PackageForm(forms.ModelForm): class Meta: model= Package fields= ['name', 'version', ...
2
votes
3answers
744 views

Saving nodes with a filefield

I'm in the progress of creating a bulk upload function for a Drupal site. Using flash I'm able to upload the files to a specific url that then handles the files. What I want to do, is not just to ...
1
vote
0answers
26 views

Wrong path return by a FileField in Django

I've got a FileField with the following upload_to option: def get_file_path(instance, filename): return os.path.join('rapports/rapports_journaliers', filename) class ListPCA(models.Model): ...
1
vote
0answers
28 views

How to change django FileFiled 'storage' AFTER uploading?

I am developing two web sites using the Django framework. The thing is - one site is sharing part of the content from the other one. They both use different amazon WS buckets to store images, etc. So ...
1
vote
1answer
70 views

Plone 4 - Get url of a file in a plone.app.blob.field.FileField

I have a custom content type with 3 FileFields (plone.app.blob.field.FileField) and I want to get their url's, so i can put them on my custom view and people will be able to download these files. ...
1
vote
1answer
126 views

button_to for file_field?

I feel pretty dumb for asking this, but is it possible to just use a button_to for a file upload as part of a form? I want to create a custom "upload file" button. I would just use the good ol' ...
1
vote
1answer
105 views

Django FileField default file

I have a model which contains FileField as below class Employer(models.Model): logo = models.FileField(storage=FileSystemStorage(location=settings.MEDIA_ROOT), upload_to='logos') The ...
1
vote
1answer
357 views

Copy a file in Ruby on Rails

I would like to copy a file from my computer to another specified path. The file has to be chosen by the user with a file_field and the destination is already hard-coded. How can I do that ? Thank ...
1
vote
1answer
325 views

Drupal 7 Filefield Paths upload settings page

I'm new to Drupal and am trying to configure the upload path settings of Filefield paths so that images and files are uploaded into a folder based on their node type. I have things setup the way I ...
1
vote
0answers
242 views

AJAX Upload and Sort like Drupal

I'm developing for Drupal, and I need a script from the Internet that is similar to the FileField module (http://drupal.org/project/filefield/). This FileField module can be attached to a node, and ...
1
vote
1answer
366 views

'bool' object has no attribute 'has_header' when uploading via a FileField in my admin

My models.py from django.db import models from django.contrib.auth.models import User class Song(models.Model): uploader = models.ForeignKey(User) date_uploaded = ...
1
vote
2answers
509 views

Rails / nested attributes / file_field doesn't show up within params when empty

I'm having two models, the first one (model_1) accepts nested attributes for the second one (model_2). The second model has only one field (file), which is referenced in the form as file field. The ...
1
vote
3answers
650 views

Django Custom image upload field with dynamic path

I'm trying to create my own field type for uploading images, it won't be used in the django admin panel. I imagine the syntax would probably look something like: photo = ...
1
vote
1answer
83 views

Best Practice to link Multiple Files to model if number of Files can vary

I have an Accounting Module with a model like this: class Accounting_period(models.Model): start_date = models.DateField() end_date = models.DateField() base_pdf = models.FileField() I ...
1
vote
1answer
359 views

Drupal 7 - Import file from a tempory directory on the site into file field on the node

Drupal 7 file field question: Is it possible to ftp files to a temporary location, then move them into a file field on a drupal node?
1
vote
1answer
154 views

MySQL replication and Django FileField

I have MySQL replication setup, and it replicates nicely the database data. However, I also use FileField and ImageField, and have file loaded onto the FS. I probably will just use rsync to manually ...
1
vote
1answer
177 views

Drupal Filefield Source install question

Filefield Source is a module which works with CCK and Filefield which allows users to select files from already uploaded files, instead of having them upload a file multiple times. I installed the ...
1
vote
1answer
721 views

Problem with filefield module after migrating drupal site to a new server: cant upload files

We have a content type with two imagefield / filefield fields, and after migrating our site to a new server, we have the following problem: When we submit a new item for this content type, with two ...
1
vote
1answer
431 views

cck remote file (image) field - I want to keep the cached copy of the image when the node is deleted

I use the Remote File module for a cck field displaying a remote image. It works with a known issue: images are reloaded on every edit http://drupal.org/node/395256 And as i do tests with lots of ...
1
vote
2answers
212 views

Avoid copying when adding a large file to FileField

I'm dealing with some quite large files which are uncomfortable to upload via http, so my users upload files using FTP which my code then needs to move into FileField.upload_to (where they normally ...
0
votes
4answers
29 views

How do I send as an attachment a file save in a FileField in Django?

how can I send a mail with a file saved in a FileField? I don't know how to access the file in the code below. mail = EmailMessage(subject, message, 'from@from,com', ['to@to.com']) mail.attach(?, ?, ...
0
votes
0answers
24 views

Deleting a file from a node in drupal

I want to delete a file from a node with all its thumbnails and traces in the DB. I need to do it when the node changes its status (active to inactive) and I want to do it at the same time I am ...
0
votes
1answer
28 views

Finding path of chosen file in Django FileField

I am using a forms.FileField to have the user choose file to open. I need to know which path the user chose in addition to the filename. I can't seem to find that anyplace. I will be loading other ...
0
votes
0answers
61 views

Modify FileField's upload_to path based on model inheritance

I have a generic 'annotation' model that looks similar to this: class ObjectAnnotation(models.Model): content_type = models.ForeignKey(ContentType) object_id = models.PositiveIntegerField() ...
0
votes
1answer
30 views

Migrate a legacy DB to Django, with image files

I have a SQL dump of a legacy DB, and a folder with images, and those are referenced by some rows of certain tables, and I need to migrate that data to the new Django models. The specific problem is ...
0
votes
1answer
66 views

How to show download link for attached file in FileField in Django Admin?

I have FileField in my django model: file = models.FileField(upload_to=FOLDER_FILES_PATH) In Django admin section for changing this model I have full path to this file (by default): Currently: ...
0
votes
1answer
36 views

In rails, File name gets deleted in file field when reloading the page

In any rails form, when we are uploading a file, file name getting deleted when we left any mandatory field. Also once we saved a file, again when try to edit the file file name is not display in ...
0
votes
1answer
129 views

Drupal - Get image from url and import it into node

Im writing a module for drupal, Im trying to create a node from my module, everything is fine , I only have 1 problem with creating an image , The image exist on different server, so I want to grab ...
0
votes
1answer
72 views

Button as a file field in rails

I need a button that can be fully customised via css to prompt the user to select a file for upload when clicked. Does anyone know how to do this? Thanks
0
votes
1answer
56 views

Writing a ruby file_field in html

<%= f.file_field :photo %> How do I write this in html? I know that it's an input type="file" but how can I put in the :photo? I need to customise the field by writing it in html in rails.
0
votes
1answer
132 views

customising the look of f.file.field in rails

<div id="photo_attachment_container"> <%= f.file_field :photo %> </div> Currently this just looks like a button, how can I add some css and customise the look (e.g ...
0
votes
1answer
97 views

Removing default file names in Django-Storages S3

I'm using django-storages with amazon S3, and uploading image files with: models.ImageField(upload_to="img=%Y-%m-%d", max_length=256, blank=True, null=True) When the files are uploaded to S3 ...
0
votes
1answer
114 views

Using specific drupal-related functions in a non-drupal.php file INSIDE the drupal dir

Good morning all. I'm having some issues while trying to make the function "field_file_load" work in a php script I've done to process an AJAX call. I've read about bootstrapping drupal core elements ...
0
votes
1answer
98 views

How to use validation to make a clickable, pseudo-readonly FileField in the admin?

I'm trying to have a FileField that is clickable in the admin but is also readonly. There's currently an open ticket for this issue, but I need a workaround now. I'm trying to write a validator for my ...
0
votes
1answer
362 views

How to validate “file_fields” in rails 3

i am a newbie for rails, please guide me. i want to validate "file_field" for image upload. just jpg/png/gif can be upload and specific size like max size (500x500) this is my _form.html.erb <%= ...
0
votes
1answer
137 views

How to save a ByteArray from Flex into a FileField in Django

I have some audio data in a byte array in a Flex app that I would like to save to my model in Django. I assume I would use a FileField, but I can't seem to get it to work. (My project is set up like ...

1 2