The media-type tag has no wiki summary.
0
votes
2answers
26 views
Best Practice to build websites for different screen size
What is the best practice to build websites than can code with different screen sizes, for e.g. when resizing browser, or even when viewing a layout designed for desktop browser sizes such as 800X600 ...
1
vote
0answers
40 views
CUPS Linux: Help printing these media types: MS Excel, MS Word and HTML
I need to print MS Excel, MS Word and HTML files in a Linux CUPS server. When i try to print thses media types following occurs and this is what i've found till now:
For MS Excel and MS Word files:
...
0
votes
2answers
213 views
How to determine if pins can be connected?
Currently I'm working on a DirectShow based application for configuring TV capture cards. It's supposed to work with most of the capture cards out there, so it has to be as generic as possible.
Since ...
1
vote
2answers
68 views
My website scales when printed, making black text look grey
I have a completely fluid website that is designed primarily for printing. It stretches beautifully to any window or paper size:
body { width: 100%; }
However, for printed pages, some of my black ...
0
votes
0answers
70 views
Folder media type repeatidly dropping allowed child nodetypes
I've got Umbraco 4.7.2 set up with a 3 tier system:
QA -> STAGE -> PROD
I have a Website editor who works in the STAGE environment then publishes to PROD at will. We have a sporadic issue right now ...
3
votes
1answer
246 views
ASP.NET WebAPI Supported Media Types per Method
Given a method in a controller:
public class CustomerController : ApiController
{
[HttpGet]
public CustomerDto GetById([FromUri] int id)
{
.
.
return customerDto
...
0
votes
1answer
269 views
Unsupported Media Type Error - Posting json from iPhone app
I am trying to produce json in the following form and post it to server:
{
"items": [
{
"id": "3",
"quantity": 0.5,
"unit": "2"
} ]
}
I am posting data using ASIFormDataRequest. I have ...
1
vote
0answers
522 views
Spring MVC 3.1.1 ContentNegotiatingViewResolver - How to use wildcard characters in contentTypes?
I am about to version my REST Webservice, which is based on the ContentNegotiatingViewResolver in order to allow me to return XML, JSON as well as HTML-Views.
The problem is, I can neither use a ...
0
votes
0answers
377 views
MediaType NullPointerException Android Java
I am making restfull post call from my android application. I use the jersey core, server and client jars with version 1.13. When I try to post like this:
ClientResponse response = ...
0
votes
1answer
65 views
xforms repeat element with a picture upload?
Could someone please show me how to code up, using XForms, a widget that allows one to choose a picture file for upload, repeatedly if necessary? That is, the user uploads one pic at a time, but has ...
0
votes
1answer
93 views
Web API and Composed media types
Is there any support for handling composed media types?
Example:
Content-Type: application/contact+xml
Content-Type: application/document+json
I know there is the possibility of using a ...
1
vote
2answers
730 views
Media Types in all backbone.js REST requests
I've got an API setup which uses Media Types in the Accept header for all requests. Getting started I just simply wrapped the fetch and save functions of models, but I was curious if there was a ...
3
votes
1answer
390 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
524 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
2answers
198 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
58 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 ...
2
votes
1answer
1k 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
2answers
397 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
655 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("=================");
...
1
vote
4answers
445 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>
...
...
7
votes
3answers
1k 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 ...
9
votes
4answers
33k 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"
...
