url

URL BNF search part does not make sense

Hi, While implementing a Java regular expression for URL based on the URL BNF published by W3C, I've failed to understand the search part. As quoted: httpaddress h t t p : / / hostport [ / path ] [ ? search ] search xalphas [ + search ] xalphas xalpha [ xalp...

How can i get the client's browser displayed address with Asp.NET?

I 'm implementing my version of "ShareThis" in my webpage. How can i get the client's browser displayed address with Asp.NET? I am little confused with this one since the url to share... 1) is created with URL rewriting 2) contains Greek characters. P.S. The client url is like example.com/ελληνικα/βιβλια ...

Can I use an absolute url in an html img tag on a IIS7 ASP.NET application?

While migrating ASP.NET intranet applications from IIS6 to IIS7, I came across a problem with absolute urls in html tags: I can't get them to consider the application as the root of the url unless the application is published at the root of the web site. Here is a code snippet that demonstrates the problem. It is published in an appli...

Javascript: find URLs in a document

how do I find URLs (i.e. www.domain.com) within a document, and put those within anchors: < a href="www.domain.com" >www.domain.com< /a > html: Hey dude, check out this link www.google.com and www.yahoo.com! javascript: (function(){var text = document.body.innerHTML;/*do replace regex => text*/})(); output: Hey dude, check out th...

jQuery rewrite href

I have an onclick function that I want to add an anchor to the href value. I do not want to change the URL's, because I need the site to still function for people without javascript / for SEO purposes. so here is what I have tried using (amoung other things): jQuery('a[rel=ajax]').click(function () { jQuery(this).attr('href', '/#' ...

Add URL link in CSS Background Image?

I have a CSS entry that looks like this: .header { background-image: url("./images/embouchure.jpg"); background-repeat: no-repeat; height:160px; padding-left:280px; padding-top:50px; width:470px; color: #eaeaea; border-bottom:1px solid #eaeaea; } How can I add the link to the the background image in t...

how to achieve xxx.blogspot.com URL pattern ??

Consider the case of blogspot.com the domain is the one blogspot.com only but suppose i register in it with xxx then i will have xxx.blogspot.com like wise here it won't be the subdomain (i can smell) , but its some thing different ... how to achieve this ?? in j2ee web application.. ...

Retrieving Absolute URL from File on Mounted Volume in Cocoa

Is there any way of retrieving an absolute URL for a file on a mounted volume in Cocoa? For example, say afp://server/Documents is mounted at /Volumes/Documents. How can I get full URL to a file on the mounted volume in the form of afp://server/Documents/path/to/file? I've tried using statfs but the value of f_mntfromname doesn't con...

Problem in displaying a URL slug with dash

Hey guys I made a slug with dash for my stories URLs such as: http://stackoverflow.com/questions/482636/fetching-records-with-slug-instead-of-id This is my code to create slug : function Slugit($title) { $title = strip_tags($title); // Preserve escaped octets. $title = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '---$1--...

How to get or own your own IP address?

The website we running let people register their own URL and redirect to our website to their user account. Lets it is something similar to Blogspot.com where users can have their own URL. The problem is that in order to do this we need to have static IP address for the DNS redirection to work. We can easily get static IP addresses from...

General RewriteRule for many undefined parameters in URL

I'm trying to write a rule to make that one can generalize, since multiple pages to pass the values are different. Right now I could do: RewriteRule ^forum/([^/]{1,255})/([\+]{1})/((([a-z]+)([_]{1})([a-zA-Z0-9]+)([/]?))+)$ forum.php?name=$1&$5=$7 [L] To address such as: Nome+del+Forum/+/page_1/action_do Should return: forum.php?...

Can you add any request header when you request from a webpage?

Also, can you SEND any header back? (return headers) when you run a web server? Or, are headers limited? ...

Java - How to find the redirected url of a url?

I am accessing web pages through java as follows: URLConnection con = url.openConnection(); But in some cases, a url redirects to another url. So I want to know the url to which the previous url redirected. Below are the header fields that I got as a response: null-->[HTTP/1.1 200 OK] Cache-control-->[public,max-age=3600] last-modif...

PHP: question about passing parameters in URL's

Hi, i have this two lines: var_dump($parametros_post_signin); $this->redirect('prueba/aux?email='.$parametros_post_signin['signin']); the first one prints this: array 'signin' => array 'email_address' => string '' (length=0) 'password' => string '' (length=0) the second one takes to another action where i h...

How do I set default host for url helpers in rails?

I would like to do something like this config.default_host = 'www.subdomain.example.com' in some of my configuration files, so that object_url helpers (ActionView::Helpers::UrlHelper) produce link beginning with http://www.subdomain.example.com I have tried to search the docs but I did not find anytnig exept ActionMailer docs and htt...

NSImage from website URL

Hello, I need to create an NSImage from a url and then set it to an image view in my application. I tried some code I found online but it didn't work. If anyone knows how to do this any help would be great. Thanks ...

Load NSImage from url but only some url's work

I have some code that loads an image file off the web and puts it in an image view. The problem is it works with everything except Google Charts. This is frustrating because I was relying on this to graph data for my app. Heres the url I need to load: Click to see my test chart. Im not sure why NSImage seems to refuse to load this when i...

Java - Regex problem

I have a list of URLs of type http://www.example.com/pk/ca, http://www.example.com/pk, http://www.example.com/anthingcangoeshere/pk, and http://www.example.com/pkisnotnecessaryhere. Now, I want to find out only those URLs that ends with /pk or /pk/ and don't have anything in between .com and /pk ...

Java - Regex problem

Possible Duplicate: Java - Regex problem I have list of URLs of types: http://www.example.com/pk/etc http://www.example.com/pk/etc/ http://www.example.com/pk/etc/etc where etc can be anything. So I want to search only those URLs that contains www.example.com/pk/etc or www.example.com/pk/etc/. Note: It is for all those...

Download authentication?

Hi I am sorry if this question has been asked before but I am looking for some sort of download authentication. In other words if I am going to give the user a link to a file, I want to make sure only that person will get it, and get it only once! Is there a simple solution without setting up the database? Even better if it's possible to...