search for: my_opt

Displaying 4 results from an estimated 4 matches for "my_opt".

Did you mean: myopt
2006 Apr 13
3
QueryParser doesn''t use StandardAnalyzer correctly?
I am having a bit of a problem with my search queries being parsed correctly it seems, and I wonder if anyone else has experienced this. I have written an index using StandardAnalyzer for analysis. I want to search that index by passing my user query through a QueryParser instance which is also using a StandardAnalyzer. However the resultant query does not seem to be a valid term query and
2006 Jun 10
0
Dynamic file paths in FileColumn
...ile.join(options[:store_dir], "tmp") options[:base_url] ||= options[:web_root] + File.join(attr) FileUtils.mkpath([ options[:store_dir], options[:tmp_base_dir] ]) options end ... def file_column(attr, options={}) options = DEFAULT_OPTIONS.merge(options) if options my_options = FileColumn::init_options(options, attr.to_s) end ... end Thanks in advance -- Posted via http://www.ruby-forum.com/.
2006 Jun 21
7
acts_as_taggable and paginate?
Hi there, I''ve been trying to paginate over a list of members that all share a tag in common using the acts_as_taggable plugin. The regular way of paginating over a collection doesn''t seem to work with acts_as_taggable. Here''s what my method looks like that takes in a tag name, finds all the members that share the tag and then displays all the members. Nothing too fancy
2009 Jul 27
1
[PATCH] mboot using module path
...X nodiff syslinux-3.82-orig/com32/mboot/mboot.c syslinux-3.82/com32/mboot/mboot.c --- syslinux-3.82-orig/com32/mboot/mboot.c??? 2009-06-09 10:19:25.000000000 -0700 +++ syslinux-3.82/com32/mboot/mboot.c??? 2009-07-27 12:19:27.000000000 -0700 @@ -38,12 +38,18 @@ ?struct syslinux_pm_regs regs; ?struct my_options opt; +char pxelinuxpath[1024]; + ?struct module_data { ?? void *data; ?? size_t len; ?? const char *cmdline; ?}; +static void restorepath(void) { +?? chdir(pxelinuxpath); +} + ?static int map_modules(struct module_data *modules, int nmodules) ?{ ?? struct mod_list *mod_list; @@ -96,6 +102,7 @...