filtering

Django Passing Custom Form Parameters to ModelFormset

Hey guys, My problem is similar to http://stackoverflow.com/questions/622982/django-passing-custom-form-parameters-to-formset/624013 Ive have these classes class Game(models.Model): home_team = models.ForeignKey(Team, related_name='home_team') away_team = models.ForeignKey(Team, related_name='away_team') round = models.Fore...

"stop words" list for english?

I'm generating some statistics for some english-language text and I would like to skip uninteresting words such as "a" and "the". Where can I find some lists of these uninteresting words? Is a list of these words the same as a list of the most frequently used words in English? update: these are apparently called "stop words" and not ...

column.OptionsFilter.ImmediateUpdateAutoFilter how to set it at run time

I need a mechanism that is not sending a filterquery for every keystroke the user types in the AutoFilterRow because this is to slow. can I catch some events after a user types a keystroke in a column of the AutoFilterRow ? I mean, when user ends editing the filter value, and presses enter, that should be the time i want to handle the g...

How to filter child collections in Linq.

Hi! I need to filter the child elements of an entity in linq using a single linq query. Is this possible? Suppose I have two related tables. Verses and VerseTranslations. The entity created by LINQ to SQL is such that i have a Verse object that contains a child object that is a collection of VerseTranslation. Now if i have the follow...

How to filter ressources during build in Eclipse project?

I have an application that uses several configuration files (let just consider appli.properties here). These files contain several values that depend on the environment. We can find some information such as: server.port=${envi.server.port} On other side, I have a set of properties files, one per environment (dev.properties, homolo.pro...

How to filter/sort/rank object model nodes?

I have some kind of object model and I need to filter and sort it's nodes for some kind of property. What kinds of automated systems exist to generate and select properties of the object model that correlate to what I want? (I'm intentionally being abstract and non-specific) I'm thinking of a system that works kind of like spam filters ...

nhibernate table pr hierarchy fetching specific class with LINQ

I have a class hierarchy mapped into one table. There is one superclass and 8 different sub classes. A lot of my queries needs to fetch e.g. 2 of the sub classes only for a specific date. The table has a discriminator column that nhibernate itself uses. But when using LINQ for querying it is not possible to use this discriminator as ther...

Filtering XML nodes in Java | XSLT or Parser

Hi All, I've a big XML data returned by SAP. Of this, I need only few nodes, may be 30% of the returned data. After googling, I got to know that I can filter the nodes in either of the ways: Apply XSLT templates - Have seen some nice solutions, which i want, in this site only. Using a parser - use JDOM or SAX parser. which is the e...

jquery livesearch?

I am looking for a nice quick live search/filter. Anybody use this? http://rikrikrik.com/jquery/quicksearch/#usage Also how do you combine it with pagination or ajax for large amounts of data? Code: HTML: <form method="get" autocomplete="off" action=""> <input type="text" value="" name="q" id="q"><br><br> </form> <ul id="posts"> <li>...

Filtering with P6SPY

Is there a way to set the filter in p6spy, such that it only logs "insert/delete/update" and NOT "select" SQL statements? Documentation of p6spy mentions: "P6Spy allows you to monitor specific tables or specific statement types" An example they gave was the following: An example showing capture of all select statements, except th...

filter form in Rails?

I am a newbie to Rails. I have simply scaffolded a small model. The model has a field called category. Now I want to filter the entries on the index page by category. <% form_for @domain do |f| %> <p> Domain: <%= f.select(:Domain,%w{ LifeStyle Automobiles FoodAndBeverage Health IT Telecom EntertainmentAndCelebrity Education BankingInv...

fastest way to remove an item in a list

I have a list of User objects, and I have to remove ONE item from the list with a specific UserID. This method has to be as fast as possible, currently I am looping through each item and checking if the ID matches the UserID, if not, then I add the row to a my filteredList collection. List allItems = GetItems(); for(int x = 0; x < all...

Provide users with a search feature filtering a dropdownlist

Hi I'm developing an ASP.NET form for data-entry. Users have to select a client from a dropdownlist that is filled with about 1000 clients. Now the client list is growing and the users have requested that I add a lookup feature: they'd like to type part of the name and filter the dropdownlist with clients whose name match. So if they ...

Allow embed/object/param HTML tags with HTMLPurifier?

Is it possible to allow embed, object, and param HTML tags with HTMLPurifier? I'm trying to allow YouTube, Vimeo, etc. videos to be embedded, but they're always stripped, no matter what I try. I do understand that these are risky tags to allow. If it's not possible, what other HTML filtering options do I have with PHP? It doesn't seem t...

Preventing Overwrite of flashlog.txt / filtering flashlog.txt in Flex

Hello, I am trying to make an application that logs particular events in flashlog.txt (the current location) using the trace() function. Right now, the application correctly logs to this file when I trigger the events (pressing a button/closing a dialog). What I would like to have happen is for this data to be saved forever (or until ...

ASP.NET MVC: Restricting access using url

The URL for the administration section of my website always starts with Admin/. Is it possible in ASP.NET MVC to restrict access to users by using this part of the URL? Obviously I would keep the [Authorize(Roles = "Administrator")] on appropriate controllers and actions but I wonder if it would be quicker for the application if it can ...

AS3 XML FILTERING

Hi, Here is an XML: <nodes> <node id="0" a="hello" b="this"/> <node id="1" c="is" d="a" e="test"/> </nodes> Is there a way, using E4X Filtering to find the node(s) who has an attribute with "this" as value ? ...

dojo filteringSelect is very slow

Hello friends, In my project I am fetching cities using country selected. Now I have about 8000 cities for 1 country, and because of that filteringSelect takes time to show it fast. following are ajax functions I am using to fetch records and display it in my page. function GetCities(){ dojo.xhrPost({ url: 'GetCitiesForCountry....

Excel filter questions

Hi, I need to know how to do the following filters: Filter a date column to show weekend dates only Filter a date column to show the first and last day of a month only Filter a number column to show round numbers only (e.g. include show 12 but filter out things like 12.12) Thanks. ...

mod_Rewrite: Filter specific pages by IP and redirect them

Hi All, I am researching a way to work filtering specific pages by IP and redirect them on a different page. The code below, did not work properly. RewriteCond %{REMOTE_ADDR} ^/192.168.10.* RewriteCond %{REQUEST_URI} ^/support RewriteRule ^/.* http://www.yahoo.com/gone [R,NE] Once the link http://example.com/support has been accesse...