Tagged Questions
The media-type tag has no wiki summary.
5
votes
3answers
606 views
Creating hypermedia links in a custom media-type
I am currently creating a set of custom media types for a RESTful api (e.g. application/vnd.mycompany.foo+xml) and I'm trying to identify the pros and cons of two different ways of exposing hypermedia ...
5
votes
4answers
11k views
CSS media type: How to load CSS for mobile?
With this code:
<link rel="stylesheet" type="text/css" href="media/css/mobile.css" media="handheld"/>
<link rel="stylesheet" type="text/css" href="media/css/screen.css" ...
2
votes
1answer
73 views
Versioning a Java based REST web service?
There seems to be an on-going philosophical debate about exactly how to version a REST web service. For me though, the number one issue is practical question regarding how easy/hard is it to ...
1
vote
1answer
148 views
Setting CSS Media Type Inline
I am producing a standalone HTML document under the constraint that the document has to be exactly one file. I would like to use CSS to make sure that links in the document are visible and ...
1
vote
4answers
241 views
How to create a hypermedia list with item sensitive links?
I have a representation that contains a list of items. This could easily contain several hundred items.
<List>
<ListItem>...</ListItem>
<ListItem>...</ListItem>
...
...
0
votes
1answer
45 views
How to set content type as plain/text in padrino?
I want to return a string in response with content type as plain/text. This is what I am doing currently.
get :index, :map => "/ivr", :provides => [:plain] do
"Hello World!"
end
It says ...
0
votes
0answers
59 views
Where are good resources for media type design for REST services?
I've just read "REST in Practice" (O'Reilly), and about 50 blog posts relating to REST web service design, and the message that comes through is that the design of Internet media types (and/or re-use ...
0
votes
2answers
24 views
What's the easiest and quickest way to get the MIME/Media/Content type of a given URL?
So I'm going to transfer a file from a remote server to my server but before I transfer it I want to know what sort of file it is. If it's an HTML file I'll deal with it in a certain way, if it's a ...
0
votes
0answers
40 views
Can you specify precedence of file extensions or media types in Apache?
Can you specify precedence of file extensions or media types in Apache?
I would like to implement the same technique as used by the W3C; an example of this technique is in displayed in their XSLT ...
0
votes
2answers
219 views
determining whether a MIME type is binary or text-based
Is there a library which allows determining whether a given content type is binary or text-based?
Obviously text/* is always textual, but for things like application/json, image/svg+xml or even ...
0
votes
1answer
334 views
Request Accept media type in RESTlet 2
How can I identify the resource media type in RESTlet2, I tried following in my class extended from ServerResource
@Get
public Object onGET(){
System.out.println("=================");
...