search for: no_filter

Displaying 3 results from an estimated 3 matches for "no_filter".

Did you mean: nm_filter
2005 Jan 31
1
[patch] add "--ignore" option
...ther SERVER_FILTERS or ALL_FILTERS. */ -static int is_excluded(char *fname, int is_dir, int filter_level) +static enum matchtype is_excluded(char *fname, int is_dir, int filter_level) { + enum matchtype r; #if 0 /* This currently never happens, so avoid a useless compare. */ if (filter_level == NO_FILTERS) return 0; @@ -241,14 +242,19 @@ } } if (server_filter_list.head - && check_filter(&server_filter_list, fname, is_dir) < 0) - return 1; - if (filter_level != ALL_FILTERS) - return 0; + && (r = check_filter(&server_filter_list, fname, is_dir)) != M_NOM...
2009 Feb 07
0
wice grid
...to show, edit and delete. nothing displays on the page. when i look at page source -- there is on <th></th> here is the view: <%= grid(@installed_softwares) do |g| g.column :column_name =>''Software:'', :attribute_name => ''name'', :no_filter => true, :model_class => Software do |isoftware| isoftware.software.name end g.column do |isoftware| link_to "Show", hardware_installed_softwares_path (:hardware_id,isoftware) end end %> here is controller view: class InstalledSoftwaresController < Appl...
2007 Aug 20
5
DO NOT REPLY [Bug 4899] New: When a mounted dir cannot be visited, rsync will halt there and the shell is halted, even "ctrl -c" can't quit it.
...STRUCT_STAT *stp, unsigned short flags, int filter_level) { ... memset(sum, 0, SUM_LENGTH); /* In case a mounted dir crashed, than stat will hang there even the dir has been filtered */ if (filter_level != NO_FILTERS && is_excluded(thisname, 1, filter_level)) { rprintf(FINFO, "Excluding %s\n", thisname); return NULL; } else if (stp && S_ISDIR(stp->st_mode)) { st = *stp; /* Needed for "symlink/." with --re...