search for: forder

Displaying 20 results from an estimated 105 matches for "forder".

Did you mean: order
2019 Nov 07
2
Junk virtual forder
Is it possible to create a virtual folder that selects all mails with imap Junk flag (set by pigeonhole imap4flags' setflag "Junk")? -- sergio.
2019 Nov 20
0
Junk virtual forder
On 7.11.2019 8.58, sergio via dovecot wrote: > Is it possible to create a virtual folder that selects all mails with > imap Junk flag (set by pigeonhole imap4flags' setflag "Junk")? > Yes, see https://doc.dovecot.org/configuration_manual/virtual_plugin/ Aki
2019 Nov 20
2
Junk virtual forder
Aki, sorry for poor question. >> Is it possible to create a virtual folder that selects all mails with >> imap Junk flag (set by pigeonhole imap4flags' setflag "Junk")? > Yes, see https://doc.dovecot.org/configuration_manual/virtual_plugin/ Yes, I'm talking exactly about virtual_plugin. While it's absolutely clear how to select all messages marked as
2019 Nov 20
0
Junk virtual forder
On 11/20/19 12:58 PM, sergio via dovecot wrote: >> Yes, see https://doc.dovecot.org/configuration_manual/virtual_plugin/ > Yes, I'm talking exactly about virtual_plugin. While it's absolutely > clear how to select all messages marked as deleted, I can't understand > how to select all messages with the "junk" flag. > I'm guessing: * KEYWORD \Junk --
2006 Aug 15
6
Net::LDAP 0.0.4 released
...ki, and for valuable comments and help with testing. We have un-deprecated Net::LDAP#modify, which can be useful with LDAP servers that observe non-standard transactional and concurrency semantics in LDAP Modify operations. Note: this is a documentation change, not a code change. Thanks to Justin Forder for providing the rationale for this change. We added a larger set of special characters which may appear in RFC-2254 standard search filters. Thanks to Andre Nathan for this patch. We fixed a bug that was preventing Net::LDAP#open from being called more than once on the same object. Net::LDAP i...
2004 Feb 06
1
Savitzky-Golay smoothing -- an R implementation
...:1000, t1) lines(1:1000, t, col="blue") lines(1:1000, t2, col="red") # ---------------------------------------------------------------------- # Savitzky-Golay Algorithm # ---------------------------------------------------------------------- # T2 <- sav.gol(T, fl, forder=4, dorder=0); # # Polynomial filtering method of Savitzky and Golay # See Numerical Recipes, 1992, Chapter 14.8, for details. # # T = vector of signals to be filtered # (the derivative is calculated for each ROW) # fl = filter length (for instance fl = 51..151) # forder = filter o...
2006 Sep 18
3
(slightly O/T) Agile dev. contract form for clients?
Apologies for cross-posting. We''ve been asked to do a job for a client who wants to embrace agile development methodologies. Hurrah! However, our standard contract was written for the 1980s. It is full of phrases like "agreed specification" and "change request procedure" and so on. I was wondering, how do other people get around this in contract forms with
2006 Apr 10
6
Object isn''t being saved when called through association
I have three models in this small game I''m working on - the Game, Players, and Turns. A Player should be able to rescue another Player on any given turn. So it looks like this: class Game has_many :players has_many :turns def rescue_player(p) t = turns.last t.rescued = p t.save end end class Turn belongs_to :rescued, :foreign_key =>
2006 Jun 27
6
embedding ruby code in a [flash :notice]
The ruby code in this isn''t evaluated... flash[:notice] = "Your last recorded entry was <%= @in_out.time_in %> <br />You are currently marked as ''In'', you probably want to check ''Out''" Is there a way? Craig
2005 Oct 16
13
More than one parameter with link_to_remote
Hi all, I''m trying to pass more than one parameters using link_to_remote, but I''m getting a behaviour that seems quite strange to me. Here''s the code: link_to_remote ''some text'', :update => ''form'', :method => ''get'', :url => { :action =>
2006 Jul 27
16
Net::LDAP 0.0.3 released, adds TLS encryption
We''re pleased to announce version 0.0.3 of Net::LDAP, the first pure-Ruby LDAP library. Net::LDAP intends to be a feature-complete LDAP client which can access as much as possible of the functionality of the most-used LDAP server implementations. This library does not wrap any existing native-code LDAP libraries, creates no Ruby extensions, and has no dependencies external to Ruby.
2006 Oct 16
4
Singleton Pattern in RoR
Hi all how can I implement the singleton patter in RoR? thanks -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this
2006 Mar 30
13
need an Ruby on Rails IDE
Hello everybody, I''m a new member on Ruby on Rails. I''m friendly on using Microsoft Visual Studio (VS) IDE. The VS IDE supports for Intellisense coding (that mean it will automatically display a list of member variables or functions for a class, struct, union, or namespace; the names and types of parameters required by a function or attribute; and the complete declaration for
2005 Mar 04
17
active record logs format
Hi, I think this has already been asked on the list, but I can''t seem to be able to find it again: currently, active record does some weird thing with its sql logs i.e.: [4;33mSQL (0.000000) [1;37mPRAGMA table_info(map_locations) how do I remove the "[4;35m" thx Jean
2006 Jan 07
11
Beware of Mozilla + Rails
Hi all, In re-doing the very first Hello World in the Agile Rails WEb Dev book, I continuously got blank pages, no matter what URL I put in, except when I put http://localhost:3000/ After eliminating everything else, I switched from Mozilla to Konqueror, and the symptom went away. I tried clearing cache on Mozilla, but that didn''t bring it back. I copied and pasted the URL from
2006 Aug 11
9
Getting Really Started with Rails - Tutorial styled Slides Available
For those that missed out joining the amazing turnout of ~70 people here in Vancouver for the mini-workshop I did on the 27th last month, I am making available the 30 slides I used for the presentation. The slides were used in conjunction with me demonstrating it via command line. Alot was learned by both attendees, and quite possibly even more so by myself while teaching the material. I created
2006 Mar 20
4
Capistrano: cap show_tasks working but rake show_tasks not?
Does it make sense that if I type cap show_tasks it works but when I type rake show_tasks I get: rake aborted! Don''t know how to build task ''show_tasks'' /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1287:in `[]'' /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:300:in `[]''
2009 Nov 18
0
Optimal parameters for Savitzky-Golay smoothing filter (loop)
...04/02/0385.html) for variables in my dataset, dim (272:90). I managed to run the code for individual variables in the dataset and then combine the results into a single dataset. My novice attempt at this task is shown below csg<-NULL for (i in 1:ncol(data.all)) { sg<-sav.gol(data.all[,i],1,forder=2,dorder=0) csg[i]<-data.frame(sg) dat<-do.call(cbind,(csg)) } I eventually plan to test whether there is a significant difference between the original noisy dataset (data.all) and the Savitzky-Golay datasets(dat 1,dat2, ...). To create the Savitzky-Golay datase...
2006 Jan 01
11
Can rails make use of accesskeys?
I added :accesskey=>"D" to the html options hash of my link_to tag but nothing happened. Should I keep trying or is this not an option yet? bruce
2006 Mar 30
4
with_scope and filters for Rails 1.1 (scoped_access plugin)
Has anyone successfully gotten the scoped_access[1] plugin to work in Rails 1.1? Some of the methods it was relying on are now no longer accessible. It seems the only way to add scope is to use the ''with_scope'' method that takes a block, but since Rails doesn''t have real around filters[2] I cannot see a way of adding a scope using a filter. Anyone using with_scope