Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
2k views

Python Dictionary to URL Parameters

I am trying to convert a Python dictionary to a string for use as URL parameters. I am sure that there is a better, more Pythonic way of doing this. What is it? x = "" for key, val in {'a':'A', ...
3
votes
2answers
184 views

How to pass a url as a url parameter when there is a question mark in it?

I am using this line to pass the a url, main_id and user_tag_list to the handler: self.response.out.write(""" <a href="/tc?url=%s&main_id=%s&user_tag_list=%s" title="edit tag set">edit ...
3
votes
2answers
1k views

Username and password in https url

Consider the URL: https://foo:password@example.com Does the username/password portion in the above example qualify as a "URL parameter", as defined in this question?
3
votes
3answers
2k views

Send list/array as paramater with jQuery getJson

I have the following where I'm trying to send list/array to MVC controller method: var id = []; var inStock = []; $table.find('tbody>tr').each(function() { ...
3
votes
4answers
5k views

How to extract URL parameters from a URL with Ruby or Rails?

I have some URLs, like http://www.example.com/something?param1=value1&param2=value2&param3=value3, and I would like to extract the parameters from these URLs and get them in a Hash. Obviously, ...
2
votes
2answers
43 views

Detect Users Viewing Same Webpage, or URL

I have a ticketing system that will allow any users to view any ticket they wish to select. Each ticket will share the same page. (ex. ticket.php) The URL will contain unique parameters to identify ...
2
votes
4answers
70 views

Getting value of three consecutive elements in array

I have a large array, h, that contains several instances of a parameter called startingParam, which is always followed by two other parameters that are related but not always the same. I need to look ...
2
votes
2answers
638 views

How can I create a Wicket URL that hides its parameters?

I'm currently creating a set of links with code like this: BookmarkablePageLink<CheeseMain> havarti = new BookmarkablePageLink<CheeseMain>("havarti", CheeseMain.class); ...
2
votes
1answer
153 views

How should I transfer variables/ parameters securely between multiple domains in PHP?

I would like to securely transfer sensitive variables between multiple in PHP. Normally I would use url parameters or session cookies to transfer non-sensitive values. I'm not sure how secure I can ...
2
votes
2answers
1k views

How can I use URL parameters while debugging in Flash Builder 4?

How can I use URL parameters while debugging in Flash Builder 4?
2
votes
1answer
2k views

get GET parameters in JSF's managed bean

Can someone tell me how to catch parameters passed from URI in JSF's managed bean? I have a navigation menu all nodes of which link to some navigation case. And i have two similar items there: ...
2
votes
2answers
577 views

Use part of the URL as an argument to a controller in Spring MVC

For example, with the URL foo.com/bar/99 99 will be available directly to a method in the controller as an argument. The controller is mapped to /bar For anyone familiar with ASP.NET MVC or ...
1
vote
1answer
31 views

How to encrypt or tokenize a username and date token?

Need to pass a tokenized (encrypted) username and date from webapp A to webapp B via a url parameter. Something like http://webappB?username=userA&timestamp=13445341313 should be sent as ...
1
vote
2answers
27 views

Keeping GWT History Hashes thru Spring Security Login

I'm retrofitting my application with GWT History support, and I've stumbled on a case where I'm not quite sure what to do. The answer to this question doesn't necessarily have to be GWT-related. ...
1
vote
3answers
69 views

how to change URL parameters to stop an image reloading

I have an image which I only want to load one time only on the homepage, accessed via my intro page (it fades away, on load, a kind of visual echo from my intro page). I dont want the image to appear ...
1
vote
3answers
47 views

Better way of mapping _POST parameters to variables

I am sure that there is a better way of mapping all the _POST parameters to variables with the same name. Does anybody know how to do this better? $ownerName = $_POST["ownerName"]; $ownerEmail = ...
1
vote
2answers
205 views

OpenSSO (OpenAM) : Turn off URL enforcement

We're using OpenAM to manage sessions on our application. The problem is everytime we're trying to pass a parameters with the GET method, the ressource is blocked (error 403 - forbidden). If no ...
1
vote
1answer
145 views

window.location.hash issue in Firefox

Consider the following code: hashString = window.location.hash.substring(1); alert('Hash String = '+hashString); When run with the following hash: #car=Town%20%26%20Country the result in ...
1
vote
0answers
45 views

Method based on URL parameter

I have code which I would like to execute based on all the pages in the root directory of http://www.mywebsite.com/post/ What method would I use to target the post portion of the url, that way no ...
1
vote
1answer
293 views

JSF Managed Bean method call using URL parameters

I have a Session Scoped managed bean that backs my web-app. In this web-app I would like to have the ability for the user to execute a URL containing a user id and a date. This will then trigger a ...
1
vote
3answers
168 views

How to replace url parameter with javascript/jquery?

I've been looking for an efficient way to do this but haven't been able to find it, basically what I need is that given this url for example: ...
1
vote
3answers
88 views

Is this JavaScript code safe?

I have found the following JS on the web. It is a function to get url params values. function get_url_param(param) { param = param.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regexS = ...
1
vote
2answers
181 views

Replace URL parameter values in links using JavaScript/jQuery?

My CMS's lightbox-style photo gallery outputs code like below. I've provided code for two thumbnails. The parameter values for "m" and "s" will always be "150" and "true." I'd like to change that to ...
1
vote
1answer
188 views

RewriteRule - two parameters but last parameter is optional

I cannot rewrite to include two parameters but the last parameter is optional, so for example: http://www.mywebsite.com/friends/jamie - (the forward slash should be optional too). Which should be ...
1
vote
2answers
375 views

how can i pass url id parameter to javascript in mvc2

Anyone knows how to pass an id parameter to jquery. For instance I have a url: http://localhost:52271/News/Index/1 What I want is id parameter which is 1, in the above url. and I need to pass that id ...
1
vote
4answers
467 views

Securly Passing variable values from one page to another page

When passing variable from one page to another To avoid the user messing around with the URL parameter Values Is it best to ... 1) pass the variable via session 2) pass the variable in the URL ...
1
vote
3answers
186 views

How can I get URL parameters which have no value?

access using URL: http://127.0.0.1/test.jsp?action=test&abc or http://127.0.0.1/test.jsp?abc how can I get the String "abc" ? thanks for help :)
1
vote
2answers
353 views

Safari and Chrome adding form values to URL

Long story short: on Chrome and Safari only, values from a login form are sometimes pasted into the user's URL, even though the actual login is POSTed via AJAX. ...
1
vote
6answers
658 views

Regex to get value of a numeric URL parameter?

In a url like the one below, I'd like to get the value of ProdId. The URL format will always be consistent, as will the parameter name, but the length of the value may change. It will always be ...
1
vote
1answer
107 views

What is the best URL strategy to handle multiple search parameters and operators?

Searching with mutltiple Parameters In my app I would like to allow the user to do complex searches based on several parameters, using a simple syntax similar to the GMail functionality when a user ...
1
vote
5answers
131 views

Violating the Rules of Web Development

Check out this page from the New York Times: http://homedelivery.nytimes.com/HDS/learnMorePopUp.do ?mode=common.learnMorePopUp &productId=NDS &prodRate=7.40 I was surprised to see ...
1
vote
2answers
2k views

Create URL Parameters in GWT

I asked a related question here How do I programatically write parameters into the URL using GWT? I've learned from my previous question that parameters need to go before the anchor, but how do I do ...
0
votes
0answers
13 views

How to load prammeters into swf

First, sorry for my bad English... I whant to load parameters to my response.swf file using parameters like this: response.swf?id=1234&name=john This response.swf is an animation, on animation ...
0
votes
1answer
27 views

Wordpress 3.3.1 url parameters not working

This was working in wordpress 3.3 but when i upgraded didn't work. Whenever I type url http://www.sitename.org/?email=John , wordpress automatically removes paramter and makes it ...
0
votes
1answer
38 views

chrome extension desktop notification send get params

I would like to send some parameters to my desktop notification but i can't retrieve them. I open a notification with that code : var notification = webkitNotifications.createHTMLNotification( ...
0
votes
1answer
44 views

Asp.net MVC3 passing model within model in an action link

I'm having problem passing my model via an object link Here is my model public class ItemImage { [Required,Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; ...
0
votes
1answer
55 views

Question Mark in URL Parameter when using two routes mvc 2

I have two routes, when I use the Default route it shows the url with Question mark in the parameter. I'm getting Editar/id?3 -- instead Editar/id/3. The other route is working fine, could you give me ...
0
votes
0answers
74 views

Filtering Publishing article list by Metadata field using FilterMultiValue and Filtername Url parameters

I've got a sharepoint Publishing site that contains news items. Each news item has News Category metadata field that contains a category for the news items. Now i'd need to filter by the News Category ...
0
votes
1answer
30 views

Symfony: How to get a null parameter from the request

I'm trying to build an action in symfony that recieves a list of parameters from the request this way: $param = $request->getParameter('param_name'); The problem is that sometimes i need this ...
0
votes
2answers
66 views

Passing 2 URL Parameters?

I need to pass 2 URL parameters in a URL. The URL originates in an email and the user will click the link directing them to my site. The first parameter triggers a script on the page the second ...
0
votes
2answers
46 views

What's an outstanding Chrome or Firefox extension to easily view and set GET URL params, and POST data

I would like to have a browser extension to display URL params as a set of keys and values I can modify before executing a GET. Some sort of interface that looks roughly like this: [x] GET [ ] POST ...
0
votes
4answers
67 views

PHP get parameter from URL string (not current page)

I know you can easily get a parameter from the page you're currently on, but can you easily do the same from any URL string? I need to grab the "id" parameter out of a string like ...
0
votes
1answer
138 views

jquery mobile ajax jsonp request does not pass second get url parameter anymore

Sorry for not being precise enough in my first version of the post/ here is an updated post with sample code i am using jquery 1.6.4 and jquery mobile 1.0rc2/ i first have to admit that i am ...
0
votes
5answers
266 views

Using POST method to hide URL parameters

I understand that I am able to use the POST method for URL parameters to display data according to a specific variable, I know how to make use of the GET method - but I am told that the POST method ...
0
votes
1answer
61 views

how to acceess swf loading url params, before connecting to the server - red5, flex

I'm new to the flex, so i hope there will be some simple explanation. Anyway, im trying to get parameters from url, which load swf file. its all ok, it works. var room_id:Number = ...
0
votes
0answers
137 views

URL-parameter-based navigation using Spring Webflow

as far as you probably know 99.9% of e-shops need their products to be indexed by search engines. I don't know any way to have indexed site except using URL parameters. Now I'm writing the e-shop with ...
0
votes
3answers
57 views

How to keep track of which buttons have been pressed after page reloaded?

I'm new to Javascript, and JQuery. After searching the internet for solutions, I decided to post this question. The problem: When the user clicks on a link within the iframe, it updates the ...
0
votes
1answer
215 views

Allow phpbb3 registration if user has signed up on another site

So I'm working on a website where we want users to sign up for a private beta. When the user clicks submit on the sign up page, a php code puts their name, email, and a randomly generated 32-character ...
0
votes
0answers
134 views

HTML select able to alter multiple URL params for new HTTP GET request?

I have the rare situation where I want to use a dropdown box for navigation purposes (causing a URL-changing HTTP GET request) and it's really working nicely (basically). I use it to switch seasons ...
0
votes
1answer
85 views

How do you test the params hash in a Rails test?

The following generates an error: "undefined local variable or method `params'" assert_equal params[:recipient_id], users(:one).id How do you test the params hash? Also, how do you test ...

1 2