Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
893 views

#pragma mark not showing in methods in Xcode 4.0

In Xcode Version 4.0 I notice that #pragma marks within methods are no longer showing up in the Jump Bar. The only #pragma marks that are showing up are those that are between methods. I was using ...
4
votes
2answers
44 views

What is the optimal element to use for marking 'keywords' in an article?

Obviously, this is a bit of a "it depends" question, but what HTML element makes the most sense to provide the clearest meaning of "Hey, you, I think this is an important word!"? I realize I could ...
3
votes
2answers
134 views

Vim: create marks across files?

A feature I often use in Vim is mark and jump-to-mark (')… But they only work within a file. Is there any way to create a mark which works across files? For example, so I can create mark a on line 42 ...
2
votes
2answers
102 views

Vim: Delete mark '

I'm trying to delete the mark ' (single quote) but I dont know how. I'm doing delm \' but it doesn't work. I also tried every combination I could think of. I realize this is more a Vim script ...
2
votes
2answers
234 views

form action=“?login” : What does the question mark mean?

<form action="?login" method="post"> <button>Login with Google</button> </form> I usually see the action refer to a php or html file but the "?login" stumps me. ...
2
votes
2answers
92 views

Can I perform successive mark operations on an InputStream in Java

I'm trying to build a simple parser, and since InputStream doesn't have some peek-like method, I'm using mark and reset. But I suspect that successive calls to mark, invalidate the previous ones. Is ...
2
votes
4answers
1k views

VIM: Highlight positions of the marks?

I am practising '[ and '], and I cannot see the difference. How can you highlight the positions of the marks?
1
vote
2answers
15 views

Match Question mark at the begging of a regular expression for .htaccess

I am trying to match a regex expression ?page in url http://mydomain.com/?page in .htaccess. RewriteRule ^([\?])page$ ?menyu=404 [L] RewriteRule ^([\\?])page$ ?menyu=404 [L] RewriteRule ^(\?)page$ ...
1
vote
0answers
36 views

Marks in scintilla scrollbar?

Are possible to mark search results/brekpoints/bookmarks in scrollbar of scintilla control? Like it done in Google Chrome or JetBrains IDEs.
1
vote
4answers
101 views

Copy the start of an InputStream

I want to copy the "start" (i.e., first N characters) of an InputStream and then reset the stream to its start, so that it can be reused. Using mark() and reset() does not work for all types of input ...
1
vote
3answers
103 views

! meaning in c++ (following context)

I know what != is when if(x!=value){...}, but what does it mean in the following context: if (! ReadConsoleInput( hStdin, // input buffer handle irInBuf, // ...
1
vote
1answer
43 views

textmate, how to mark text in a self-written bundle…?

i start to love textmate, but there is one feature i miss in textmate, which i always used in notepad++ or eclipse. if you double click on a word in the text you get every word which is equally ...
1
vote
3answers
193 views

Quotation marks not shown on display

In my string xml file I have a line like this: <string name="infoHeader">random "text" here</string> But it is only displayed as random text here on the phone's display, that is, ...
1
vote
3answers
79 views

How do I understand what the following means?

Quoted from here: if (to_end) { /* If we want to scroll to the end, including horizontal scrolling, * then we just create a mark with right gravity at the end of the * buffer. ...
1
vote
1answer
138 views

Why does selecting text in a Command Prompt hang the running application?

We have an application that outputs logging info to stdout. However, if it is run in a command prompt window, you can use Mark to select text from the console. If you leave the text selected, the ...
1
vote
1answer
444 views

Reading data from MSMQ and marking it as read

We are using MSMQ to store an object. The client application (which is asp.net UI) reads data from the queue. We have 2 cases which i think .Net MessageQueue does not support directly Case 1: When ...
0
votes
0answers
9 views

Webview doesn't show <mark> as highlighted text for HTML5

I am trying to show the text as highlighted with HTML5 tag in WebView. But it is not showing it properly.
0
votes
1answer
73 views

Marking points on a JFreeChart TimeSeries Chart

I have a JFreeChart TimeSeries chart that has 2 data item. I need to mark points in it. For example I need it show at a specific time what is the line's value (while there is not actually any value ...
0
votes
0answers
52 views

How to add the “Mark Occurrences” in Eclipse RCP Text Editor [closed]

Possible Duplicate: Implement “Mark Occurance” in new Eclipse editor I want to ask how to implement the "Mark Occurrences" feature in an Eclipse-RCP-based text editor for ...
0
votes
1answer
100 views

Mod_rewrite - remove question mark, not only query string

I need to redirect an url like mydomain.com/index.php to mydomain.com/ This sounds easy but the software framework also uses urls like mydomain.com/index.php? Those urls (with an single-added ...
0
votes
0answers
33 views

JavaScript : MarkupString domnode not working for Ipad

I have a Javascript widget for which i have written a markupString. With the help of some markupMethods i try to manipulate my markupString. Now all works fine in Web Browsers, but everything get ...
0
votes
0answers
84 views

Openlayer marker dont' move with zoom

I have a map with several Openlayers layers. I place a mark on the map (search address and zoom do it), but when I zoom, the mark doesn't move. Someone can help me please. This is the code: ...
0
votes
1answer
62 views

Redirect ALL packet coming to port 60300 to gw 10.8.0.1 and/or dev tun0 using iproute2 and iptables

I want to forward all packet coming to port 60300 to tun0. Quick scheme: internet -> myserver:60300 -> tun0myserver -> 10.8.0.1 -> 10.8.0.2. I wanted to do that with this: iptables -t mangle -A ...
0
votes
0answers
63 views

Mark of the web not working with XSLT transform of a XML file to HTML

I am trying to transform an XML file to HTML using XSLT. The problem I have is the security warning in Internet Explorer. I know the fix for this is inserting a "mark of the web" comment. The ...
0
votes
2answers
137 views

notepad++ mark style with macro

One of my favorite feature of Notepad++ is marking a specific word/characters with style. However, whenever I want to mark, I have to manually select that word and mark through a context menu. ...
0
votes
1answer
284 views

jQuery - how to add mark to image

I am thinking how to add some marks to an image (I mean something like in google maps - marks for places). I have an image and if the user will clicked to this image, co I want on that place, where ...
0
votes
2answers
32 views

Replacing HTML markup characters with the coreesponding character entity reference

Recently when I was developing a simple web site i came across a problem with replacing HTML mark up(eg- & , '', "", % etc). Most of the time we have to replace these mark up with the ...
0
votes
3answers
134 views

HTML5 Mark Element Question

Which browsers and their versions, IE, FF Google Chrome, Opera, for example, FireFox 2.0, 3.0 support the mark element?
0
votes
1answer
95 views

I ran out of quotation marks when assigning an onclick attribute

My code: <a href="#" onclick="$('#s input[name='reset']').click(); return false;">RESET</a> Apparently as you can see I can't use ' nor " at the part [name= as either one will end the ...
0
votes
5answers
129 views

Problem with text marker

I have a problem with my website, and that is when i visit it and click somewhere a BIG text marker is shown at the side. Visit the site urself and check? The website Just visit and click somewhere ...