Tagged Questions

The Content-Type entity-header field indicates the media type of the entity-body sent to the recipient or, in the case of the HEAD method, the media type that would have been sent had the request been a GET.

learn more… | top users | synonyms

799
votes
7answers
197k views

The *right* JSON content type?

Right I've been messing around with JSON for some time, just pushing it out as text and it hasn't hurt anybody (I know of), but I'd like to start doing things properly. I have seen so many purported ...
88
votes
2answers
34k views

Proper MIME type for PDF files

When working with PDFs, I've run across the MIME types 'application/pdf' and 'application/x-pdf' among others. Is there a difference between these two types, and if so what is it? Is one preferred ...
34
votes
7answers
13k views

How do you send a HEAD HTTP request in Python?

So what I'm trying to do here is get the headers of a given URL so I can determine the mime-type. I want to be able to see if http://somedomain/foo/ will return an html document or a jpg image for ...
24
votes
2answers
13k views

Setting mime type for excel document

MS Excel has the following observed MIME types: application/vnd.ms-excel (official) application/msexcel application/x-msexcel application/x-ms-excel application/x-excel application/x-dos_ms_excel ...
22
votes
16answers
11k views

“name” web pdf for better default save filename in Acrobat?

My app generates PDFs for user consumption. The "Content-Disposition" http header is set as mentioned here. This is set to "inline; filename=foo.pdf", which should be enough for Acrobat to give ...
22
votes
8answers
12k views

Determine file type in Ruby

How does one reliably determine a file's type? File extension analysis is not acceptable. There must be a rubyesque tool similar to the UNIX file(1) command? This is regarding MIME or content type, ...
17
votes
4answers
3k views

When serving JavaScript files, is it better to use the application/javascript or application/x-javascript

The whole question fits in the title. And to add some context: I'm not asking what is the best according to what the specs are saying, but rather what works the best given the mix of browsers deployed ...
16
votes
4answers
4k views

Determine file type of an image

I'm downloading some images from a service that doesn't always include a content-type and doesn't provide an extension for the file I'm downloading (ugh, don't ask). What's the best way to determine ...
14
votes
5answers
29k views

How do I find the mime-type of a file with php?

Ok, so I have an index.php file which has to process many different file types. how do I guess the filetype based on the REQUEST_URI. If I request http://site/image.jpg, and all requests redirect ...
12
votes
1answer
5k views

Setting the content-type of requests performed by jQuery jqGrid

I am using the latest version of jqGrid: 3.6.4 This seems like a simple problem (or at least it did before I spent a few hours on it): When the grid sends a request to the server (to a controller ...
11
votes
3answers
864 views

How do you set the content type for a WebMatrix/Razor Response?

I'd like to return some XML instead of HTML in my WebMatrix cshtml file? How do you change the content type header?
11
votes
6answers
6k views

File extensions and MIME Types in .NET

I want to get a MIME Content-Type from a given extension (preferably without accessing the physical file). I have seen some questions about this and the methods described to perform this can be ...
10
votes
1answer
262 views

A smart way to retrieve allowed file types from plist

Scenario: I like to define the allowed file types (content types) in the Info.plist file of my Cocoa application. Therefore, I added them like the following example shows. # Extract from Info.plist ...
9
votes
2answers
2k views

Are HTTP headers case-sensitive?

In a blog post I use the following PHP to set the content-type of a response: header('content-type: application/json; charset=utf-8'); I just got a comment on that post saying that content-type ...
8
votes
6answers
4k views

Jquery - How to make $.post() use contentType=application/json?

I've noticed that when using $.post() in jquery that the default contentType is application/x-www-form-urlencoded - when my asp.net mvc code needs to have contentType=application/json (See this ...
8
votes
6answers
510 views

Is there a java library equivalent to file command in unix

Is there any java library that is similar to unix's command file? ie: $ file somepicture.png somepicture.png PNG image, 805 x 292, 8-bit/color RGB, non-interlaced The file command is such a nice ...
8
votes
4answers
1k views

How to limit the resource formats in the Rails routes file

When routing resources in Rails the optional format attribute is automatically appended to the generated routes. This is so that the resource in question can be requested as either XML, HTML etc. ...
8
votes
5answers
828 views

ASP.NET MVC: How do I send “text/xml” to all browsers but IE?

I need to be able to send the content type "text/xml" to Firefox and Safari, to allow them to render inline SVG in one of my pages. This works, as long as the content type is "text/xml". However, ...
7
votes
2answers
504 views

Enable PHP to read .css and .js files while keeping their original Content-Type

I would like to configure apache php5 in a way that .css and .js files will be inspected by php their content type will remain as default (that is respectively "text/css" and ...
7
votes
6answers
1k views

Returning HTML in the JS portion of a respond_to block throws errors in IE

Here's a common pattern in my controller actions: respond_to do |format| format.html {} format.js { render :layout => false } end I.e., if the request is non-AJAX, I'll send the HTML ...
7
votes
3answers
6k views

Decoding HTML entities with Python

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out what I am doing wrong. Take for example: "U.S. Adviser’s Blunt Memo on Iraq: Time ‘to Go ...
7
votes
2answers
2k views

Is there an enum for the ContentType property on a HttpWebResponse (“text/plain”, “application/octet-stream” etc.)?

The closest thing I could find was System.Net.Mime.MediaTypeNames but that doesn't seem to have everything (like json) since it seems to be more focused around email attachments.
6
votes
2answers
37 views

Why should I use fieldLinks when adding fields to a contenttype?

When I search for documentation about creating contenttypes using code (C#) I always find examples using a SPFieldLink to link to an existing field of the site and adding this via ...
6
votes
3answers
300 views

What is a nice, reliable short way to get the charset of a webpage?

I'm a bit surprised that it's so complicated to get a charset of a webpage with Python. Am I missing a way? The HTTPMessage has loads of functions, but not this. >>> google = ...
6
votes
1answer
1k views

Using a UUID as a primary key in Django models (generic relations impact)

For a number of reasons^, I'd like to use a UUID as a primary key in some of my Django models. If I do so, will I still be able to use outside apps like "contrib.comments", "django-voting" or ...
6
votes
2answers
317 views

Rest Content Negotiation and Caching

I'm wondering how caching works with content negotiation based API. Since the to get a resource in XML or JSON, the URI will be the same, for example: http://example.com/bikes/mountain The service ...
6
votes
6answers
256 views

For HTTP responses with Content-Types suggesting character data, which charset should be assumed by the client if none is specified?

If no charset parameter is specified in the Content-Type header, RFC2616 section 3.7.1 seems to imply ISO8859-1 should be assumed for media types of subtype "text": When no explicit charset ...
6
votes
7answers
16k views

How to get the content-type of a file in PHP?

I'm using PHP to send an email with an attachment. The attachment could be any of several different file types (pdf, txt, doc, swf, etc). First, the script gets the file using "file_get_contents". ...
6
votes
3answers
1k views

Updating already-deployed SharePoint content types to handle additional item events

I have a site content type that was used for a handful of lists throughout my site collection. In that content type, I describe an event receiver to handle the ItemAdding event. This works fine. ...
6
votes
1answer
1k views

SharePoint Default View Ignores Custom Title DisplayName

I've created a custom content type that inherits from a contact (i.e. <ContentType ID="0x010600...") and I'm trying to rename the "Title" field using the following: <FieldRefs> ...
5
votes
2answers
376 views

Force Content-Type or expose request.data in Flask for known content-type

I am recreating a service in Python/Flask and am running into an issue with the way the existing clients authenticate. I have to match the existing clients scheme for compatibility reasons. The ...
5
votes
3answers
262 views

What’s the right way to embed PHP code in my CSS and JavaScript files?

Like everyone else I'm storing my site`s display information in style sheet files. And I want to create back-end cms so users will be able to, for example, change < h1 > color, size etc. So, ...
5
votes
3answers
6k views

Rails3 renders a js.erb template with a text/html content-type instead of text/javascript

I'm building a new app with 3.0.0.beta3. I simply try to render a js.erb template to an Ajax request for the following action (in publications_controller.rb): def get_pubmed_data entry = ...
5
votes
1answer
217 views

Using a Non-Default Manager with GenericForeignKey()

I have altered the default manager on some of the objects which a GenericForeignKey() can reference such that those objects may no longer appear within that default manager. I have other managers ...
5
votes
3answers
2k views

content type by extension

Is there any built in function that returns the content type based on the file extension?
5
votes
7answers
784 views

XHTML or HTML 4.01?

What is your preferred format for html content? Why do you choose one over the other?
5
votes
3answers
7k views

sharepoint 2007 - custom content type - filtered lookup column

I had defined a custom content type, and I am trying to define a filtered lookup column. I can select the list from where to pick up the column I need, but I can't find any example of the needed ...
4
votes
1answer
154 views

“Content-Type:text/plain” forces to download the file

If I call header('Content-Type:text/plain; charset=ISO-8859-15'); the browser will download the file instead of showing it. Using text/html works instead. (the downloaded file is processed anyway, ...
4
votes
2answers
109 views

How light weighted Dexterity-base contenttype can be

I'm trying to write a light weight content type that work similar to Facebook's post. The whole content schema is just a text field. There's no title, description. It must be Contentish and is ...
4
votes
1answer
181 views

Plone:Folderish content type generated with Dexterity. How do I populate it's file, image and rich text fields?

I have made some new content type using Dexterity. I now wish to create the content from a python script. All is well with the line below, and the item is generated in the target folder with the ...
4
votes
2answers
165 views

Having an issue with the default response Content-Type

I have a website that has the following Doctype: <!DOCTYPE HTML> <html>...</htm> I discovered an issue causing certain mobile browsers to break (blackberries and older androids). ...
4
votes
1answer
364 views

Get the response Content-Type header from XHR

I would like to see whether the header was text/html or text/xml. If it was text/html then there was an error and I would rather catch that before proceeding.
4
votes
2answers
230 views

Content types understood by an application

Given an application path (or NSBundle to an application, etc), is there a way to easily/efficiently determine what content types that application can open? My initial attempt was to read the ...
4
votes
1answer
808 views

SMTP multipart/alternative vs multipart/mixed

When sending SMTP messages you are supposed to set the Content-Type to multipart/alternative when sending HTML and TEXT or multipart/mixed when sending TEXT and attachements. So what do you do if you ...
4
votes
1answer
2k views

HTML5 Cache Manifest and Content types

i am reading Dive into HTML5: Offline web apps: Cache manifest ... but it must be served with the content type text/cache-manifest. If you are running an Apache-based web server, you can ...
4
votes
1answer
1k views

What do browsers want for the Content-Type header on json ajax responses?

I am returning some json which needs to be handled by javascript as the response to an XMLHTTPRequest. If I set the response's content type to "text/plain", all browsers but Chrome will accept it and ...
4
votes
2answers
674 views

chrome renders js different depending on the extension of the file to render [testcase included]

I was trying to implement an image panner I found here Chrome renders the same document differently depending on the extension of the file requested. I have created a test case, where it works when ...
4
votes
12answers
1k views

Content-type not working in PHP

I have some issues with a PHP file that is not working properly. The Content-type does not get recieved by any browser at all. Firebug interprets the file as text/html instead of css. Here's the file ...
4
votes
1answer
5k views

How to force browser to set charset in content-type http header

A simple HTML file: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ...
4
votes
2answers
908 views

IE and Content-disposition inline vs. extension-token

Preamble So IE does Mime-Type sniffing. That part's old news. Suggestions of how to combat it tend to be along the lines of 'supply a content-type IE trusts' (i.e. anything that isn't text/plain or ...

1 2 3 4 5 12