special

cruisecontrol config.xml special characters svnbootstrapper

I have a line like : <svnbootstrapper LocalWorkingCopy="${projects.dir}/${project.name}" Password="4udr=qudafe$h$&e4Rub" Username="televic-education" /> in my config.xml. Because of special characters in the Password cruisecontrol service won't start. Is there a way to solve this? Maybe with setting a property? Or escaping charact...

How to hide __methods__ in python?

Hi, I just wondered, how to hide special __.*__ methods in python*? Especially I am using an interactive python interpreter with tab-completion, and I would like to display only the methods my modules expose ... thanks, / myyn / *(at least from the user, who uses a python shell) it looks like this now: h[2] >>> Q. Q.ALL( ...

How do I search Google for code and other programming related keywords? It seems to strip special characters

One of the problems I have with Google is that it seems to strip special characters like dots, commas and some other special characters, which are usually what I'm looking for when I'm trying to find anything programming-related ex: django @ sign returns irrelevant data. Perhaps you know a way (or an alternative/technique) to make this ...

RewriteRule on special querystring

My URLS the page names example: ?Contact- or ?Product- some have a longer querystring example: ?Contact-&go=Admin domain.com/?Contact-&go=Admin I would like a RewriteRule to use domain.com/Contact/Admin thanks ...

jQuery AJAX call undefined error with special characters

Hi, I tried to make an AJAX call using jQuery, the data has special characters, e.g {'data':'<p>test</p>'}. It seems failed to pass this data in the first place. It will work if i just pass {'data':'test'}. encodeURIComponent and JSON.stringify failed here due to the special character < > /. Could anyone please help with it? Thanks. $...

Handling special characters ñ in asp.net MVC

Hello, I have a Web application using asp.net MVC (c#). When generate a View from a controller, characters like ñ appears without any problems. But when run debugger mode the page doesn't display this characters and show me this: Compañía > Crear Appreciate any help Regards ...

JS: Inserting value from array into special output

So I have this special output: dAmn_Raw('send chat:Sandbox\n\nmsg main\n\nthismessage'); I have a variable: myvariable that equals a random value from an array I made. I'd like this random value to show up in chat through this output, but I can't include it in the output line of code. How would I got about writing something that repl...

Handling special cases in database relational design

We create a output document (based on a template) to send to a customer for each product they buy. Templates differ per product (many products to one template), but currently all customers share the same templates 1) PRODUCTS ---------------- PRODUCT_ID (PK), TEMPLATE_ID (FK) 2) TEMPLATES ------------ TEMPLATE_ID 3) CUSTOMERS --------...

WCF REST Special characters

HI How do u pass a '/' as a paramter in a wcf service rest way. e.g if the user name has the domain includes "domain/userName" thanks ...

CAtlNavigateData can not deal with special symbol such as +

CAtlNavigateData navData; CStringA m_strForm = "name=+++&priv=1&password="; navData.SetSocketTimeout(m_nMilliSecond); navData.SetMethod(ATL_HTTP_METHOD_POST); navData.SetPostData((BYTE*)(LPSTR)(LPCSTR)m_strForm, m_strForm.GetLength(), QHTTP_FORM_URLENCODE); I catch the posted package, and find post data name = "", it should be name=...

Replace all Special Characters in a string IN C#

Hi, I would like to find all special characters in a string and replace with a Hyphen (-) I am using the below code string content = "foo,bar,(regular expression replace) 123"; string pattern = "[^a-zA-Z]"; //regex pattern string result = System.Text.RegularExpressions.Regex.Replace(content,pattern, "-"); OutPut foo-bar--...

JAVA: check a string if there is a special character in it

How do you check a string if there is a special character like: [,],{,},{,),*,|,:,>,etc.? ...

ajax post special characters

How do I pass a a large string containing characters like '%' and '&' to my php page through ajax post? In other words how to javascript-encode them and php-decode them? ...

How can i handle Special characters( =) in XML

Hello All I have some special characters in my data inside xml.So i am getting error to handle them. <SubFilePath>http://d2coa5o205622p.cloudfront.net/newswatchforweb&amp;amp;autoPlay=true&amp;amp;autoRewind=false&lt;/SubFilePath&gt; "'=' is an unexpected token. The expected token is '"; I know how to handle other special like "<","...

draggable accuracy in jQuery

Hi: I am running of a problem when I am trying to make a special drag drop in JQuery.In few words. from the link above you can see that when we drag the boxes to the dropping areas (the left red boxes) they ( I mean the droppable boxes) does not seem to be activated unless the dragged box reach the center of the target ( the droppable b...

sed with & in variable

hi, I would like to search and replace with sed and replace with something in a variable wich is containing some specials symbols like &. For example I done something like that: sed "s|http://.*|http://$URL|" where URL=1.1.1.1/login.php?user=admin&pass=password. I thinks it became a problem because I use ? and & in my variable. How...

Trouble selecting an item in a SELECT box with jQuery with a quot

I am having a hidden form with a list which I need to select an option from when a user wants to view this form. I was using var assignee = 'persons name'; jQuery('#edit-form' option[value='+option+']:first').attr("selected", "selected"); I tried doing this, but this is not working as the value in the option tag is not specified with t...

problem with IN and LIKE in SQL when arguments contain special characters for a language

Hello, I’ve got such a KeyWord table (MS SQL): KeyGuid Qualifier PrimitiveKey DA7E4E27-FDE5-4D43-A365-8A789164A816 tit kirkäna EED58875-FE41-4A18-A93C-A44AA62CEEEE htit kirkänbh A0EB795E-EE23-4990-BAB9-897C93C70CE3 htit kirkänah F7F4632B-AC82-4DEB-B966-BBA8EF4D2C9E tit kirkänb C0EB795E-EE23-4990-BAB9-897C93C70CE3 nam kirkänas E2F...

jQuery keyup delay event

Hi, I'm trying to creat special event for jQuery. I want to make controled delay, which will work when user stops fo 0.5s. But I can't use setTimeout. jQuery.event.special.keyupdelay = { add : function(handler, data, namespaces) { var delay = data && data.delay || 100; return function(event) { ...

Convert Special Characters (other language) to English in PHP

Is there a function that coverts special characters to their english equivalents. For Eg. Convert é to e. Etc... ...