Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
3answers
2k views

What does “class :” mean in C++?

I've never seen it before. I thought it was a typo for "::sample", but when I saw it actually compiles I was very confused. Can anyone help me find out please? I don't think it's a goto label. void ...
15
votes
4answers
535 views

What does 'unsigned temp:3' means

I'm trying to map a C structure to Java using JNA. I came across something that I've never seen. The struct definition is as follow, struct op { unsigned op_type:9; //---> what does this ...
8
votes
3answers
938 views

In C, what does a colon mean inside a declaration? [closed]

Possible Duplicate: What does ‘unsigned temp:3’ means I'm learning some kernel code, and came along the following line (in linux 2.4, sched.h, struct mm_struct): unsigned ...
7
votes
7answers
3k views

Using a colon (:) in a url with ASP.NET/IIS

I'm implementing a custom controller in ASP.NET MVC and really want to be able to use a colon in the urls, so that I can identify class/column names and their values, like so: ...
5
votes
2answers
368 views

Are colons allowed in URLs?

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? How do I make my ...
5
votes
5answers
5k views

VB.NET If Statement and the Colon

Here is an interesting piece of code that my fellow team members were just having a slightly heated discussion about... Dim fred As Integer If True Then fred = 5 : fred = 3 : fred = 6 Else fred ...
5
votes
2answers
2k views

What is the meaning of “..::.” in C#?

I saw this signature on the ListView class: public ListView..::.ListViewItemCollection Items { get; } When I saw that, "What?!" I searched "dot dot colon colon dot" and "..::." on Google with no ...
4
votes
5answers
215 views

replace “:” by tab to make columns

I have word lists where the word or expression in Spanish is separated by its translation with a colon (":"). I want to make two columns, one for spanish, the other for english. I tried with ...
3
votes
1answer
73 views

Emacs: How to automatically insert space after colon in cc-mode derivatives

Suppose I have this code: { "type" : "home", "number":"212 555-1234" } I want my emacs to automatically insert space after colon in some modes. Particularly I'm using javascript-mode based on ...
3
votes
1answer
1k views

What is the meaning of colon (:) operator in “uint isWidget : 1;” in Qt?

What is the meaning of colon (:) operator in "uint isWidget : 1;" in Qt? Is "uint isWidget : 1;" equivalent to "uint isWidget(1)"? The code in Qt is QObjectData { public: virtual ...
2
votes
2answers
31 views

preg_match character class replacing too much

I have a little problem with regex. I want to clean up a string. Currently I'm using the following regex: preg_replace("/[^a-zA-Z0-9 _-]/", "", "Example1:2@32"); which gives me: "Example1232" But ...
2
votes
3answers
237 views

What's the purpose of the colon in this git repository url?

Please pardon my ignorance; I'm new to Git and not sure where better to look for an answer, but what's the purpose of the colon after 'example.com' in the following url (which points to a git ...
2
votes
2answers
121 views

declaring variables in flex

I found this in an ActionScript class in flex. protected::valueMin Please let me know what this exactly means. at the outset, I dont see any type declaration. I am a newbie in flex.
2
votes
4answers
432 views

ASP.NET MVC Colon in URL

I've seen that IIS has a problem with letting colons into URLs. I also saw the suggestions others offered here. With the site I'm working on, I want to be able to pass titles of movies, books, ...
2
votes
2answers
647 views

What is the purpose of colons within Redis keys

I'm learning how to use Redis for a project of mine. One thing I haven't got my head around is what exactly the colons are used for in the names of keys. I have seen names of key such as these: ...
1
vote
2answers
19 views

Why am I getting problems with my rails hash key notation?

I have recently written some rails code lines like RandomApp::Application.config.session_store :cookie_store, key: '_ramdom_app_session' and I have used this kind of code in development and in ...
1
vote
1answer
42 views

Weird behaviour with colon operator on constant attribute in MATLAB class

I have a weird problem I can't solve and can't find any solution to on the internet: classdef test properties(Constant) bla = {'Marker', 'o', 'MarkerEdgeColor', 'b', 'MarkerFaceColor', ...
1
vote
2answers
86 views

Why colons precede variables in Common Lisp

What does the syntax, colons preceding variable in Common Lisp, mean? I've seen programs with such, and I'll present some sample code here, out of a large set of functions. (defun expand (successorf ...
1
vote
1answer
57 views

jQuery: jsonp fails because of strings containing colons

I grab a JSON string from an API using jQuery's dataType 'jsonp'. The operation fails because the returning obj contains strings which have ':' colons in it. Find fiddle here: ...
1
vote
1answer
70 views

Colon in Visual Studio's RegEx

I realise the colon is special character in the Visual Studio flavour of RegEx and so needs to be escaped, but I was having trouble making a regular expression that optionally included a single colon. ...
1
vote
2answers
102 views

PHP: DOMDocument - attributes with a colon in it?

I'm using DOMDocument to parse an XML (SVG). Some nodes have attributes with a colon in it, like : <svg id="svg2" width="1000" height="1000" sodipodi:version="0.32" ...
1
vote
1answer
162 views

Colon in SQL Datatype?

I've inherited a SQL Server 2005 database that has some data type syntax I've never seen before. In the Design view for a table, the following columns are defined: Column Name: "CustomerId" ...
1
vote
3answers
174 views

Usage of for and if in Python

Could you please look at the code below: def search(self, filter): return [note for note in self.notes if note.match(filter)] I thought for and if statements require a colon. Above, there ...
1
vote
2answers
193 views

How to make Python use a path that contains colons in it?

I have a program that includes an embedded Python 2.6 interpreter. When I invoke the interpreter, I call PySys_SetPath() to set the interpreter's import-path to the subdirectories installed next to ...
1
vote
1answer
237 views

matlab: expand vector using colon notation

I would like to expand an existing vector into a matrix using colon notation, or some other efficient way. For example, using colon notation to create a matrix, I can do < [0:4;5:9] which will ...
1
vote
3answers
249 views

Use of the : operator in C [closed]

Possible Duplicates: What does ‘: number’ after a struct field mean? What does ‘unsigned temp:3’ means Hello everyone, I hate to ask this type of question, but ...
1
vote
4answers
765 views

I'm following Qt Tutorials and got a simple question

If I want to create my own class MyWidget which inherits from QWidget Tutorial tells me to write constructor like this... MyWidget::MyWidget(QWidget *parent) : QWidget(parent){....} I'm wondering ...
0
votes
2answers
46 views

When using <s:select /> tag in Struts2, how to make colon disappear?

I have a problem when using UI tags (ex: ) in Struts. I use the default theme in a form (theme='xhtml') CASE 1: ======================================== When using <s:select label="FIELD1" ...
0
votes
2answers
37 views

How to change the Properties.store() divider symbol from “=” to “:”?

I recently found out about java.util.Properties, which allows me to write and read from a config without writing my own function for it. I was excited since it is so easy to use, but later noticed a ...
0
votes
1answer
41 views

data missing from string with multiple colon

Try this, and you'll notice the 1st data with the colon is missing. why & how to solve this? trace("1"+":"+"2"+":"+"3"+":"+"4")
0
votes
1answer
28 views

lxml tag name with a “:”

I am trying to create an xml tree from a JSON object using lxml.etree. Some of the tagnames contin a colon in them something like :- 'settings:current' I tried using '{settings}current' as the ...
0
votes
0answers
9 views

Duplicated elements after colon in IE6

here is my code: enter code here <ol> <li> <span class="label">Opening hours</span> <span class="value"> <span ...
0
votes
4answers
93 views

Jquery selecting an ID with a colon in it

I'm working on a pre-written module for a site, and I need to target an element with the id test:two. Now, this element has a colon in it, so jquery is presumably and understandably seeing the 'two' ...
0
votes
2answers
83 views

Use colon : or not with selectors

I was wondering: what's the difference between writing a selector name with no colon @selector(mySelector), or @selector(mySelector:) with the colon? As in: UIBarButtonItem *addButton = ...
0
votes
2answers
238 views

How to preserve colon character in filename when using NSData method “writeToFile:atomically:”?

When I run the following code, the filename that gets written on the disk ends up like this: "MyFileName_2011-02-07_13/07/55.png". I'd like to keep the colon character, not forward slashes. When I ...
0
votes
1answer
58 views

Simple regex problem!

I want to remove everything from a string except numbers, letters, _ (underscore) and : (colon) It's PREG and I've only come across #\W#, but it removes the : (colon). Any help is appreciated, ...
0
votes
1answer
705 views

CSS in ID colon means

I have seen an HTML code like this for the ID tag, id="t1:c3" Can someone explain this to me? What is the purpose of the said colon(:) ? Thank you.
0
votes
1answer
888 views

Colon in JSON string

Can I escape a colon : that is inside a JSON string? Currently this object/value set { pn: "MT46H128M16LFCK-5 IT:A", visible: false, url: ...
0
votes
3answers
604 views

Using colon in html tag and handle its element in javascript

why my "myns:button" don't become red in IE 6 / 7 / 8 unlike in Firefox / Opera / Safari / Chrome ? <html> <head> <script type="text/javascript"> ...
0
votes
2answers
1k views

jquery custom selector with colon

I need a function to select all elements with a custom attribute, and take its name and value. for example: <input type="text" my:name="koni" my:age="20" my:city="New York" /> Note that my is ...
0
votes
4answers
1k views

Inserting Colons into a list of Mac Addresses

I have over 500 MAC addresses and I'm trying to find a simple way to insert colons between every 2 characters.
-6
votes
3answers
113 views

Special characters (like colon) not printing

I have an issue with my code below. Why aren't special characters like colon (:) not printing? lista = ("KK",3,'go'); listb = [':b2:','bthree','b7']; print lista; print listb; # works lista = ...