Tagged Questions
The exclude tag has no wiki summary.
26
votes
7answers
8k views
Exclude .svn directories from grep
When I grep my Subversion working copy directory, the results include a lot of files from the .svn directories. Is it possible to recursively grep a directory, but exclude all results from .svn ...
16
votes
6answers
22k views
Regular Expression to exclude set of Keywords
I want an expression that will fail when it encounters words such as "boon.ini" and "http". The goal would be to take this expression and be able to construct for any set of keywords.
10
votes
1answer
3k views
working with .git/info/exclude too late
I usually do this:
git init
git add .
git commit .
And then I realize that it's about to add my nbproject directory, which I want excluded/ignored. Sometimes, I even check in this directory. Had I ...
7
votes
1answer
1k views
A way to exclude action filters in ASP.NET MVC?
I've run into several cases in ASP.NET MVC where I wanted to apply an action filter on every action except one or two. For example, say you have an AccountController. Every action in it requires the ...
7
votes
2answers
260 views
How to build Android without the phone application?
i'm trying to get android running on a gumstix overo system.
since i'm not planning to use the final "product" as a phone, i asked my self if it is possible to exclude applications like the ...
6
votes
2answers
167 views
sbt to exclude source directory
How do I config build.sbt to exclude src/main/java directory? I would like to put my Java sources there but I don't want to compile them. Also, can I exclude a file or group of files specify with RE. ...
6
votes
2answers
10k views
.htaccess mod_rewrite - how to exclude directory from rewrite rule
I have 8 lines of rewrite rules in my .htaccess file. I need to exclude two physical directories on my server from these rules, so they can become accessible. For now all requests are sent to ...
5
votes
3answers
65 views
Block script in IE
I have a fancy script that is nice, but not essential and surprise surprise, doesn't play nice with IE.
How do I 'comment it out' for IE?
I know I can use the following to include statements for IE, ...
5
votes
2answers
446 views
Is there a way in a visual studio database project to exclude certain object during deployment?
I have a scenario where I am using a visual studio 2010 database project to deploy changes to multiple database installations, but on certain ones I want to exclude a set of views from that copy. Is ...
5
votes
3answers
202 views
Is there an elegant way to exclude the first value of a range?
Let's say I have a range from 0 to 10:
range = 0...10
Three dots mean, that the last value (10) is excluded:
range.include? 10
=> false
Now, is there a similar and elegant way to exclude the ...
5
votes
4answers
761 views
SQL: Performance comparison for exclusion (Join vs Not in)
I am curious on the most efficient way to query exclusion on sql. E.g. There are 2 tables (tableA and tableB) which can be joined on 1 column (col1). I want to display the data of tableA for all the ...
5
votes
1answer
775 views
Trying to exclude certain extensions doing a recursive copy (MSBuild)
I'm trying to use MSBuild to read in a list of files from a text file, and then perform a recursive copy, copying the contents of those directories files to some staging area, while excluding certain ...
4
votes
1answer
172 views
Is there any way to tell IntelliJ IDEA not to look at files during a search/replace or during refactorings?
Basically my question is the topic ^
I have 4 files that are massive. I need to put them in resources under my maven project structure. Whenever I do a string-based refactoring or search/replace... I ...
4
votes
2answers
98 views
Freebase query - exclusion of certain values
I want to retrieve name of all movies and their genre. It's ok if information about genre is empty, but if genre is known I want to retrieve it.
"/film/film/genre": ...
4
votes
2answers
414 views
Selecting the certain resource files into WAR from the default src/main/resources location with Maven
I am trying to control which files make into the WAR package that is created by mvn package goal. Specifically, I want to exclude some files from the default src/main/resources folder for each package ...
4
votes
6answers
4k views
Exclude individual JUnit Test methods without modifying the Test class?
I'm currently re-using JUnit 4 tests from another project against my code. I obtain them directly from the other project's repository as part of my automated Ant build. This is great, as it ensures I ...
3
votes
2answers
199 views
Using exclude with Django fieldsets
So I'm trying to write a dynamic form for models that allow users with different permissions to do different things. What I would like is for the below code to function properly, so that ...
3
votes
2answers
250 views
Exclude directories & subdirectories from validation in Eclipse
How do I exclude a folder AND its sub-directories from validation in eclipse? I know that you can right click on a folder in Package Explorer and select Exclude Validation, but if you have ...
3
votes
1answer
147 views
Excluding a device from android app download based on RAM requirements?
Can I exclude a device from downloading my app from the android market by determining how much RAM the device has?
3
votes
1answer
494 views
How to exclude commons logging dependency of spring with ivy?
I have a project build with ant using ivy for dependency management. I have no ivysetting file, but an ivy.xml with the following dependency (I want to use spring with slf4j instead of commons ...
3
votes
2answers
554 views
How to exclude dependency in a Maven plugin?
I have a project that needs the following Maven jibx plugin:
<build>
<plugins>
<plugin>
<groupId>org.jibx</groupId>
...
3
votes
1answer
1k views
exclude file from maven build
I've a web application with file src/main/webapp/META-INF/context.xml which contains some configuration for testing database. On production server this file is in ...
3
votes
1answer
780 views
ASP.NET MVC - Alternative for [Bind(Exclude = “Id”)]
Is there an alternative for [Bind(Exclude = "Id")] (Related Question) ?
Could I write a model binder?
3
votes
4answers
405 views
How do you exclude object property in GWT from serialization?
Is there a way to exclude primitive and Object properties within Serializable Object from GWT Serialization?
public class Provider implements Serializable{
public Provider() {
}
...
3
votes
2answers
1k views
Django Piston: How can I exclude nested fields from handler results? Is it even possible?
Before the question, the background:
I am putting the finishing touches on an API I have written for a Django app utilizing django-piston. The API is able to search by request or IP address which are ...
3
votes
3answers
1k views
script-file vs command-line: problem with rsync and --exclude
I have a simple test bash script which looks like that:
#!/bin/bash
cmd="rsync -rv --exclude '*~' ./dir ./new"
$cmd # execute command
When I run the script it will copy also the files ending with ...
2
votes
4answers
54 views
How to select results from table #1 filtered by results in table #2?
Well, I have two tables:
events : id, title, description
trip_events : id, event_id (points to events.id)
I need to select results from table named events.
SELECT *
FROM `events`
Simple as ...
2
votes
2answers
69 views
Exclude some files on svn command line commit (not svn:ignore)
I'm developing with many people.
I check out remote repository, get 3 file. After edit, run:
svn status
It shows:
M file_1
M file_2
M file_3
Now, I want to commit only two file: file_1, file_2, ...
2
votes
1answer
68 views
excluding some folders in tar command not work
I run this command to compress the content of current folder while excluding some directories:
mahmood@mpc:set3-HHLL$ l
file1.txt a/ c/
file2.inp b/ ...
mahmood@mpc:set3-HHLL$ tar cvjf ...
2
votes
4answers
122 views
Java copy a folder excluding some internal file
I have a folder with this structure
mainFolder
--Sub1
--File .scl
--File .awl
--Other files
--Sub2
--Files
--Sub3
--Sub4
I want to copy it to ...
2
votes
4answers
126 views
How to limit grep to only search the files that you want
We have a rather large and complex file system and I am trying to generate a list of files containing a particular text string. This should be simple, but I need to exclude the './svn' and './pdv' ...
2
votes
1answer
119 views
How do Grails' inherited/framework dependencies work when using Maven?
According to:
http://grails.org/doc/latest/guide/3.%20Configuration.html#3.7.8 Maven Integration
Grails' dependency resolution is disabled when using Maven and resolution instead occurs from the ...
2
votes
2answers
124 views
How to exclude files/folder from Markers view in eclipse?
Is there a way in eclipse to stop markers from showing in the Markers view for files in a certain folder? I.e. I imported a Javascript library that I didn't write myself but it is going to be part of ...
2
votes
5answers
628 views
Number of days in date range, excluding weekends and other dates, in C#
I have a C# method like this:
public static int DaysLeft(DateTime startDate, DateTime endDate, Boolean excludeWeekends, String excludeDates)
{
}
What it's supposed to do is calculate the number of ...
2
votes
7answers
254 views
move files excluding *.log using a batch file
I want to move files from one directory to another excluding *.log file.
I have tried XCOPY as it has a EXCLUDE switch but it does COPY not MOVE, files still remain as source folder.
Any ideas?
2
votes
5answers
152 views
Excluding objects when print_r()ing variables in a custom logger
I have Logger-Class which is logging everything. Objects will be logged with print_r to a human-readable state. My Problem is that I have a big MVC-Object. Everytime an Exception or Error occurs, ...
2
votes
2answers
101 views
How to exclude field in XSLT?
I'm taking information from a table:
<xsl:template match="table1">
<xsl:element name="ApplicantAddress">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
...
2
votes
2answers
376 views
Makefile excluding files
I am creating a GNU Makefile and I have a following problem:
I have a list of exclude files (and directories) that need to be excluded from source list.
Now, removing listed files from list isn't to ...
2
votes
2answers
194 views
Exclude list of words for a name
I'm trying to make a regular expression that autorize this :
Only a-z, 0-9, _ chars, with a minimum length of 3
admin, static, my and www unauthorized
For the first part, I already managed to do ...
2
votes
1answer
260 views
jQuery function ignore class
I've got an interesting situation. I'm building a music page using an open source flash music player that degrades to html for mobile users. I've got everything working great except for one issue.. ...
2
votes
1answer
119 views
Exclude if MacOS
Is there a simple way to exclude certain code if a certain OS is detected?
I designed a site which works perfectly well (it's a sidescroller) that when a scrollwheel is used (up/down), it scrolls ...
2
votes
1answer
388 views
Cucumber Step Definition Regex Exclude Help
I need some help with a regular expression in a Cucumber step definition file. Many of my steps are of the type:
Given I am on the search page
I use this general pattern for most of my step ...
2
votes
2answers
1k views
ANT - how to use exclude, excludesfile with javac?
Looked at several post on stackoverflow as well as other sources (online + ANT definition guide book) but none of them helped so far. I can't exclude the file from compiling.
I have just one file ...
2
votes
3answers
662 views
SQL Query - SELECT all rows except where value in column begins with 402 or 403 or A40
I have a (MS) SQL VIEW with no control over and it also queries several other SQL VIEWs that I also have no control over but must use.
Get all rows based on "pilot" value except where it starts with ...
2
votes
4answers
685 views
jquery: exclude children
I know this has been asked numerous times, and I have tried all the suggestions, and read all about varying selectors, and etc. but nothing is working for me
given the following piece of HTML:
...
2
votes
1answer
4k views
maven-compiler-plugin exclude
I have a following Problem.
I would like to exclude some .java files (*/jsfunit/.java) during test-compile phace and on the other side i would like to include them during compile phace (id i start ...
2
votes
6answers
2k views
Exclude Category From wp_get_archives?
Is there any way to exclude a category from wp_get_archives? I'm trying to show the months in the sidebar, but I want to exclude the posts that are not blog entries.
$catID = get_cat_id('Projects');
...
2
votes
3answers
410 views
How can I copy a directory but ignore some files in Perl?
In my Perl code, I need to copy a directory from one location to another on the same host excluding some files/patterns (e.g. *.log, ./myDir/abc.cl).
What would be the optimum way of doing this in ...
2
votes
2answers
4k views
Excluding some tags from the Cufon Font system
I'm using Cufon to load some nice fonts with javascript.
And, as I have many tags, I use the following instruction to replace all the tags:
Cufon.replace('*', { fontFamily: 'MyFont' });
But, I ...
2
votes
1answer
2k views
What command do you use to exclude a file from a Mercurial repository?
I have a large file in my Mercurial repository that is preventing my repository from being uploaded to Bitbucket. I get the error:
abort: HTTP Error 413: Request Entity Too Large
Fortunately the ...