1
vote
4answers
5k views
How to create a custom filter for the Drupal View’s Module?
I have the Profile, CCK, and Views2 modules installed on a Drupal 6 site. I added a string field to the user profile. I can filter easily on preset values, thru the Views GUI bui …
0
votes
2answers
25 views
Symfony cache is breaking my flash messages
Flash messages in Symfony projects give feedback to website users after an action is performed. They usually only show for one page load after the action is triggered.
Unfortuna …
3
votes
2answers
122 views
Stop implicit wildcard in Directory.GetFiles()
string[] fileEntries = Directory.GetFiles(pathName, "*.xml");
Also returns files like foo.xml_ Is there a way to force it to not do so, or will I have to write code to filter th …
0
votes
0answers
15 views
CRM SSRS Subscriptions with default filters
I've managed to create a subscription for some of the standard CRM reports.
I've basically followed this article:
link text
The remaining question I have is how do I set up eac …
2
votes
2answers
75 views
What are the algorithms used behind filters in image editing softwares?
For example: What algorithm is used to generate the image by the fresco filter in Adobe Photoshop?
Do you know some place where I can read about the algorithms implemented in thes …
1
vote
2answers
551 views
Django filter — How do I go about filtering for emply or NULL names in a queryset
Hi,
I have first_name, last_name & alias (optional) which I need to search for.
So, I need a query to give me all the names that have an alias set.
Only if I could do:
Name …
0
votes
0answers
33 views
Jetty Filter Problem (ClassNotFoundException)
Hi!
I have a groovy project running under jetty for development and under tomcat for production.
I wrote a filter called URLFilter
I've added the following lines in web.xml
(actu …
0
votes
1answer
46 views
Weird response for controller.request.format.html? in Rails
In my main controller, I have this:
class MainController < ApplicationController
before_filter do |controller|
logger.info "controller.request.format.html? = #{control …
1
vote
0answers
74 views
Following a foreign-key of a commented item in a Django Queryset
Dear all,
I'm working on a Django application allowing one to comment either a Text, its Paragraphs or the comments themselves. I'm using the Comment app bundled with Django, and …
0
votes
1answer
114 views
Ruby on Rails FilterChain internals - how to make it reloadable?
Hi,
I'd like to have a more dynamic way of working with filter chains in Ruby on Rails 2.3.2.
At the moment, the filter chain is built as the classes are loaded. I have a very p …
1
vote
2answers
128 views
Why is NHibernate lazy loading bound to the session?
Using Castle ActiveRecord, I stumbled into a problem when lazy-loading.
The following works (obviously)
using (new SessionScope())
{
User singleUser = User.FindFirst(...)
…
0
votes
1answer
30 views
Is Tomcat’s performance reduced by introducing more filters?
Is the performance of tomcat is reduced if we implement more filters in the web application?
0
votes
2answers
58 views
Apply Rails controller filter to all controllers of a particular namespace?
I have a bunch of controllers in a namespace Foo.
I'd like to apply a before_filter 'require_user' to all of them, but not to other controllers, that do not belong to Foo namespace …
1
vote
3answers
177 views
Using safe filter in django for rich text fields
I am using Tinymce editor for textarea fileds in django forms.
Now, in order to display the rich text back to the user, I am forced to use the "safe" filter in django templates so …
0
votes
1answer
54 views
Need some help/advice with a custom ASP.NET MVC IAuthorizationFilter class.
Hi folks,
i'm trying to make my own IAuthorizationFilter attribute class. Basically, each api call has a query string parameter called 'key'. I was going to then decorate any acti …
