Displaying 4 results from an estimated 4 matches for "heplers".
Did you mean:
helpers
2004 Jun 03
3
printing tabular data nicely
Hi R-heplers,
I would like to print various matrices, dataframes, tables, etc to
files, preferably nicely formatted postscript for import into papers.
Is there a way to do this?
I know ?cat, ?writeLines, ?format, ?paste. But I am not sure of a good
combination of these in order to get a nice looking table...
2009 Jul 07
0
[PATCH] speed up snapshot dropping
This patch contains two changes to avoid unnecessary tree block reads during
snapshot dropping. First, check tree block''s reference count and flags before
reading the tree block. if reference count > 1 and there is no need to update
backrefs, we can avoid reading the tree block. Second, save when snapshot was
created in root_key.offset. we can compare block pointer''s
2010 Jan 15
3
How can I configure dovecot as gmail imap proxy
Hi,
I want to configure dovecot as gmail imap proxy. If any system in my network
wants to connect to imap.gmail.com,993 it has to go through the dovecot
proxy.
Is it possible to setup such environment with dovecot? If yes, can you
please
help me to configure my dovecot server.
Warm Regards
Supratik
2006 May 21
6
Is there a way to call helper methods in a controller?
Hi,
Is there a way to call helper methods in a controller?
I want to do something like this in my controller
Class MyController < Action....
def my_method
string = link_to "some_url", :controller => "home", :action => "command"
end
end
link_to is an ActionView helper method and it seems that I couldn''t access
the method in the controller