Many source control systems have an "ignore"-file mechanism that specifies files that should not be committed or tracked in version control.

learn more… | top users | synonyms

2
votes
1answer
77 views

Ignore a file in git but have it downloaded when the project is cloned

I have a file that suffers modification every time I run my project. Thus, I don't want git to track it and so I add it to my .gitignore file. However, I do wish for the file to be pulled when ...
1
vote
1answer
355 views

How do you disable touch to screen without using beginIgnoringInteractionEvents?

from a similar question/answer You could always put a transparent UIView over top of the area you want to "disable" tap input for, have it listen for taps, and have it ignore them. Remove the ...
0
votes
1answer
234 views

in app purchase pop-up is clickable even when 'beginIgnoringInteractionEvents" is active

I'm showing custom indicator when user clicks a button to purchase an in-app item. The custom indicator calls 'beginIgnoringInteractionEvents' on init. However the apple provided in-app-purchase ...
3
votes
1answer
291 views

Mercurial: can I ignore a file for push/pull but still commit? (.hgsub)

I have a repo with two sub-repos set up like this: project/ |-- folder1 |-- folder2 |-- www [subrepo] |-- dev [subrepo] On Machine A, I have checked out project, www, and ...
2
votes
2answers
108 views

How to ignore/continue if TD does not contain an image?

I need to continue; if TD does not contain an image. I tried this: if(!$image){continue;} but that did not work. <?php ///////////////////////////////////////////////////////////////////// ...
0
votes
2answers
355 views

Prevent web.config from being committed in SVN

Is it possible to prevent the web.config file from being committed when doing an SVN commit? I have the following SVN Global ignore pattern set, but it still doesn't prevent it. If I replace ...
2
votes
1answer
64 views

Ignoring property in a class for response resource - Openrasta

I'm using Openrasta framework. I've simple POCO which is used in my API and this will be sent as ResponseResource to client. It looks like below: Public class User { Public int Id { get; set; } ...
2
votes
2answers
857 views

How to ignore newline characters when reading file in list format

I am trying to read a file with a list of titles and authors, and I need to be able to ignore the newline character that separates each line in the file. For example, my .txt file might have a list ...
2
votes
3answers
573 views

MySQL query ignores index when using LEFT JOIN with OR?

I have this query: SELECT f.uid, fi.status FROM friends f LEFT JOIN friends_invitations fi ON f.fid = fi.fid WHERE (f.uid = 2 OR fi.uid = 2) The above query is correct, however performance-wise ...
1
vote
1answer
91 views

How can I get Emacs to ignore certain keywords?

I would like to tell emacs to treat some keywords (or regular expressions even better) as syntactic whitespace, or, in other words, to ignore them. For example: emacs highlighting and cedet ...
0
votes
1answer
333 views

Ignore symbolic link in TortoiseHG

I'm using TortoiseHG to commit code into a repository. Part of the system is symbolic links and these are throwing errors and are not allowing code to be committed. These directories do not need to be ...
0
votes
1answer
347 views

HQL query ignoring accents

I've the following query: select u from User u where upper(u.name) like upper(?1) How this would be, but ignoring the accents in u.name and ?1? Thanks guys!
12
votes
5answers
4k views

MySQL's INSERT IGNORE INTO & foreign keys

Why in MySQL, INSERT IGNORE INTO does not change the foreign key constrain errors into warnings? I'm trying to insert a number of records into a table and I expect MySQL to leave out the ones that ...
6
votes
4answers
796 views

Ignoring .svn directories with Wix Heat?

I'm using the Heat tool to generate Wix markup to include a large number of files and folders in my setup. This was working fine, but I just realized that since I added the source folder to my ...
1
vote
6answers
959 views

PHP: Regex match string not preceded by number or space

I've been trying to check if a string value starts with a numerical value or space and act accordingly, but it doesn't seem to be working. Here is my code: private static function ParseGamertag( ...
0
votes
3answers
385 views

PHP: Regex match string not preceeded by a dollar sign

In my syntax highlighter, I use regex to parse different terms. Below is how I parse PHP classes: foreach ( PHP::$Classes as $class ) $code = preg_replace( "/\b{$class}\b/", ...
1
vote
1answer
146 views

RegEx ignore text inside inner braces .net

I have requirement where I have to handle NOT. For example: NOT( A AND B) will be converted to NOT A OR NOT B Now my problem is if there is a bracket inside it should just skip it as is. For ...
4
votes
6answers
1k views

JUnit @Ignore usefulness?

In JUnit you can use @Ignore before methods to tell the test runner to automatically skip those tests. From what I can gather, this is really only a convenient way to document/mark off incomplete/no ...
0
votes
4answers
387 views

Ignore a directory in SVN

We use SVN for a giant server of design assets at my job. I like to keep the root of our server checked out, so I can get organizational updates to the directory hierarchy as they're made. But their ...
0
votes
0answers
399 views

Force Apache to Ignore a Request Using mod_rewrite

We have certain IPs that, due to some load balancers and proxies, are tucked away in the X-Forwarded-For header and I have to block them with Apache using mod_rewrite (I know, we're getting a better ...
0
votes
2answers
2k views

How do I make JUnit ignore specific test case at run time when run with Parameterized runner? [duplicate]

Possible Duplicate: Conditionally ignoring tests in JUnit 4 I have a suite of system tests that are run with Parameterized runner and that I would like to run against different ...
3
votes
1answer
2k views

SVN ignoring hidden files (.project .pydevproject and . files)

I want to ignore some hidden files (like .project and .pydevproject) in SVN. They are already in our trunk at the moment so I don't want to delete them from the trunk since it may cause more problems ...
1
vote
1answer
560 views

android http request ignore cookie

I am using DefaultHttpClient and want to prevent HttpClient from accepting and sending cookies. I tried something like this but 'CookiePolicy.IGNORE_COOKIE' is not available. ...
0
votes
2answers
1k views

PHP: regex match phrase not containing specific word

I'm getting tired of looking around for a close enough example, time for some quick help! Here is my code: preg_match_all( '#<li.*?>.*?</li>#s', $card_html, $activity ); I want to ...
0
votes
1answer
167 views

cin ignores eof character ? !!! and returns -0 value of ignored eof character

Helow :) Here is my recursive program wich reverses numbers entered before eof .. but it does not stop when eof character ^Z is found : ( Until I press enter and write eof character in new line .. ...
1
vote
3answers
661 views

esacpe key exits full screen mode java

I have build a game in Java in full screen mode, I use this code to go full screen: this.setPreferredSize(new Dimension((int)screenSize.getWidth(), (int)screenSize.getHeight())); GraphicsDevice gd = ...
1
vote
5answers
8k views

perl if line matches regex, ignore line and move onto next line in file

How would you do the following in perl: for $line (@lines) { if ($line =~ m/ImportantLineNotToBeChanged/){ #break out of the for loop, move onto the next line of the file being processed ...
2
votes
3answers
880 views

How do I ignore a regex match if a line has a special prefix?

I'm using this regex in Perl to match and replace the following expressions: _HI2_ _HI_2 HI2_ _HI_2 if ($subject =~ m/_?HI2?_?|HI2?_?/) { # Successful match } else { # Match attempt failed ...
3
votes
1answer
165 views

Eclipse : Ignore warnings for a certain type of file but keep color syntaxing

I have some .tpl files in my PHP project and I want Eclipse to keep HTML color syntaxing but not to check if the syntax (if .tpl has errors or warnings) is correct. Thanks in advance for your help.
5
votes
3answers
4k views

How to correctly version control (svn:ignore) a Java project (Maven, Spring)?

i was on a 2-day training introducing as to Java EE. We used there Java EE, Spring Framework, Maven, Springsource Tool Suite (Eclipse), Tomcat. I took the Eclipse workspace we created there and run ...
1
vote
2answers
326 views

JS Busy loading indicator ignore middle click

My busy loading indicator basically works by detecting clicks. However, I just noted that when I middle click an item, it opens a link in a new tab and then the loading indicator shows up forever. How ...
0
votes
2answers
271 views

MySQL Ignore is not working

I am trying to prevent duplicates from occuring using the following query, but it doesnt seem to work. Please could you tell me what the problem is? INSERT IGNORE INTO Following SET `followingUserID` ...
2
votes
2answers
532 views

Using automapper to apply a filter to a collection

I have a domain model that contains a collection and I want to use AutoMapper to map the parent and children to the view model but I don't want children that have been "soft" deleted to be taken ...
0
votes
1answer
245 views

adding files to svn:ignore from a script

I am trying to remove all the NetBeans related files (nbactions.xml and nb-configuration.xml) from a maven based tree of projects, and add them to svn:ignore in every directory that contains a pom.xml ...
11
votes
4answers
2k views

What can cause JUnit to disregard @Ignore annotations?

I just used MyEclipse to automatically generate some JUnit test cases. One of the generated methods looks like this: @Ignore("Ignored") @Test public void testCreateRevision() { fail("Not yet ...
1
vote
1answer
431 views

Ignoring non-serializable objects in XamlWriter.Save

I have a bunch of WPF controls that needs to be dumped to xaml. Some controls contain non-serializable objects stored in their's Tag property. I need to ignore them during saving Xaml, since I need ...
0
votes
3answers
187 views

WCF - any way to mark an attribute as ignored?

Basically if I have the following: [DataContract] public class Foo { [MyCustomAttribute(...)] [DataMember(IsRequired = true)] public int bar { get; set; } } How can I get it so that the ...
1
vote
3answers
210 views

git diff: ignore renaming of variables

While doing some refactoring, I renamed a variable from oldName to newName. Is there a way to tell the git diff command to ignore differences where oldName is now newName? I want to do this to focus ...
1
vote
1answer
563 views

div ignoring explicitly set width

I've got a container that has a contact form in it.. the form is ignoring my width of 140px and somehow computing itself out to 300px. no idea where it's coming from. Thanks for your help! ...
1
vote
1answer
1k views

How to implement Ignore/Retry/Cancel pattern for an action?

I have a two layered Windows-Forms application developed by C#.NET 4.0 . In this APP i read a file content and create a list of entities in Data-Access-Layer, and return it to GUI-Layer to show in a ...
2
votes
1answer
269 views

SVN ignore problem

How is this possible? > svn status ? cp/app/cache ? cp/app/logs > svn propget svn:ignore cp/app/cache cp/app/logs order/app/cache order/app/logs It should ignore this 2 ...
3
votes
2answers
1k views

MySQL INSERT DELAYED - How to find out when inserts are done

When using MySQL's INSERT DELAYED statements, is there a way to force all Inserts to execute before continuing? Or alternatively to find out whether the Inserts are done yet?
0
votes
1answer
356 views

Why does Git keep ignoring subfolder

I have this .gitignore file: # Ignore wordpress /wordpress/ /wordpress/* # Except the wp-content folder !/wordpress/wp-content/ !/wordpress/wp-content/* But when I change something in wp-content ...
0
votes
2answers
89 views

What's wrong with this mod_rewrite?

RewriteCond %{HTTP_HOST} ^(www.)?domain.com$ RewriteCond %{REQUEST_URI} !^/errors/$ RewriteCond %{REQUEST_URI} !^/content/$ RewriteRule ^(.*)$ /domain/$1/ [L] The first and last line work, they ...
0
votes
5answers
565 views

c++ Reading a text file into ints and strings

I have the standard reading in of a text file but what I need is the first 3 characters of a line to be read in as int and the remainder of the line as a string on a line by line basis. I've put the ...
2
votes
2answers
987 views

C: ignoring a comment line in input file

im using the fscanf function to handle input. now in the input each line starting with a # must be ignored. how do i ignore a complete line? for example this input: #add some cars car add 123456 ...
0
votes
1answer
398 views

How can I ignore all children elements with JQuery

I've this code: $('.div2').mousemove(function(e) { var posX = (50 - (e.offsetX) / $(this).width() * 100); var posY = (-50 + (e.offsetY) / $(this).height() * 100); ...
8
votes
3answers
3k views

PHP: Regex to ignore escaped quotes within quotes

I looked through related questions before posting this and I couldn't modify any relevant answers to work with my method (not good at regex). Basically, here are my existing lines: $code = ...
2
votes
2answers
507 views

Ampersand (&) character is being ignored in Oracle ORDER BY

I am running a query in Oracle and that query is ordered by a column that may have values with ampersand. However, it seems that ampersand is being ignored by the sorting algorithm. For instance: ...
0
votes
2answers
186 views

Ignoring Leftmost Bit in Four Bytes

First an explanation of why: I have a list of links to a variety of MP3 links and I'm trying to read the ID3 information for these files quickly. I'm only downloading the first 1500 or so bytes and ...

1 4 5 6 7 8