search for: follong

Displaying 3 results from an estimated 3 matches for "follong".

Did you mean: folloing
2006 Feb 05
0
How can i specify default time to datetime_select tag
...' : '' + select_minute(datetime, options_with_prefix.call(5)) unless options[:discard_minute] || options[:discard_hour] datetime_select end ----------------------------------------------------------------------- i was wondering where did the variable value come from in follong line: datetime = options[:include_blank] ? (value || nil) : (value || Time.now) -- Posted via http://www.ruby-forum.com/.
2011 Nov 18
0
Sweave
...1.tex, I got: /Users/meurice/Desktop/Sweave-test-1.tex:101: LaTeX Error: File `Sweave-test-1-006' not found. So I change \includegraphics{Sweave-test-1-006} \includegraphics{Sweave-test-1-007} to \includegraphics{Sweave-test-1-006.pdf} \includegraphics{Sweave-test-1-007.pdf} Now, I get the follong error : /Users/meurice/Desktop/Sweave-test-1.tex:101: LaTeX Error: Cannot determine size of graphic in Sweave-test-1-006.pdf (no BoundingBox) Many thanks for help and sorry again if my problem sounds too much like beginner problems -- R version 2.13.0 (2011-04-13) Platform: x86_64-apple-darwi...
2006 Jan 26
0
If you want to disconnect a database properly, there is the code:)!!!
...some new methodes in order to remove all link between rails and the database. First, we added a new methode to the adapter, we are using postgresql, the following code is written for postgresql_adapter.rb if you are using another database, you have to rewrite it. In postgresql_adapter.rb, add the follong code def disconnect if (@connection != nil) then # methode "close" is exported by the postgres.so for disconnect the database @connection.close @connection = nil # clear the connection end end In connection_specification.rb, add the following code at the end (in th...