0
votes
1answer
12 views
encodeURIComponent for double quotes disappears on form action
Hi,
I'm trying to pass a url like:
my_url = 'http://somedomain.com/somepath/somepage?key="query"';
when someone clicks on a form.
I tried using encodeURI and encodeURIComponen …
2
votes
2answers
62 views
Working with relative file paths in .Net
I have a C# project where I include some resources which I need to refer using the Uri-class. For this specific problem I have some shaders placed in a "Shaders" folder in the root …
0
votes
4answers
37 views
ASP.NET: URI handling
I'm writing a method which, let's say, given 1 and hello should return http://something.com/?something=1&hello=en.
I could hack this together pretty easily, but what abstracti …
2
votes
3answers
30 views
Authoritative position of duplicate HTTP GET query keys
I am having trouble on finding authoritative information about the behavior with HTTP GET query string duplicate fields, like
http://example.com/page?field=foo&field=bar
an …
0
votes
3answers
74 views
PHP absolute path to file URI
In order to refer to a local DTD when using PHP SimpleXML, I need to convert the absolute path into a file type URI. For example, convert /home/sitename/www/xml/example.dtd to fil …
0
votes
1answer
54 views
Colons in URI possible?
I thought using colons in URIs was "illegal". Then I saw that vimeo.com is using URIs like http://www.vimeo.com/tag:sample.
What do you feel about the usage of colons in URIs?
H …
0
votes
1answer
38 views
Open complex file:// uri in new Firefox tab on OS X
I need a way to open a new URL in firefox from the shell on OS X. The normal way I do this is with the open command ... but the open command doesn't seem to pass query/fragment val …
0
votes
2answers
110 views
Simple URI rewrite with .htaccess
My current .htaccess file
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^falsebase\.net
RewriteRule (.*) http://falsebase.net/$1 [ …
0
votes
2answers
45 views
Massive API/Framework mashup issue (oAuth, Facebook, Twitter, Code Igniter)
Hi all,
I'm having (many, but for now,) one problem with a project I'm working on.
It is a PHP project run on Code Igniter
It is a Facebook app that wants to use oAuth Twitter a …
1
vote
4answers
111 views
Can we use & in url ?
Can we use "&" in a url ? or should "and" be used?
0
votes
1answer
35 views
Problem Publishing Silverlight Application LocalHost
I am trying to publish my SilverLight application to the web and I keep getting "An error occurred while trying to make a request to URI "http://localhost:2898....".
I've changed …
1
vote
1answer
45 views
URI Escape C++ wstring
I am looking for a good way to do a URI Escape in C++ that would be reasonable for a cross platform project.
I would like a function that would take a string like this:
L"jiayouć …
4
votes
4answers
200 views
How to send mail with a Subject using a Mailto URL?
Can you help me?
I need to make a Mailto link to my website which is suppose to contain either the product name or the product page URL in the subject section. How can I do it?
Ex …
2
votes
6answers
291 views
Why is ‘http://dd ‘ a valid URL?
I'm writing a .NET 3.5 app and using URI.IsWellFormedUriString(string uriString, UriKind uriKind) to verify user-inputted URIs; using UriKind.Absolute. I was just playing with the …
0
votes
2answers
31 views
Creating Uri from base and relative parts - problem with trailing slash
Hi!
I am having a problem with Uri constructor. Results differ on whether base path ends with slash or not.
var baseWithSlash = new Uri(@"c:\Temp\"); \\ "StackOverflow colorer wo …
