Displaying 2 results from an estimated 2 matches for "devel_".
Did you mean:
devel
2009 Sep 01
1
R devel repository tarball naming issue
Hi,
we noticed that since some time after Aug 24th the daily snapshots provided on
ftp://ftp.stat.math.ethz.ch/Software/R/
no longer have their default tarball file name
but dropped the date stamp, i.e. R-devel_.tar.bz2
Same for R-patched snapshots.
Could one of the maintainers please take a look. We rely on the default naming convention
for automatic builds.
Regards,
Matthias
--
Matthias Burger Project Manager/ Biostatistician
Epigenomics AG Kleine Praesidentenstr. 1 1017...
2006 Aug 11
0
habtm in a standalone ruby script broken?
...nd_belongs_to_many :host_scheduled_downtimes
...
And in .../app/models/host_scheduled_downtime.rb:
class HostScheduledDowntime < ActiveRecord::Base
has_and_belongs_to_many :host_downtimes
...
this works fine, until i introduce a table_prefix with
ActiveRecord::Base.table_name_prefix = "devel_"
>From the database log i see that each tablename is correctly prefixed
with _devel, execept the join_table
host_downtimes_host_scheduled_downtimes
I included a printf stament in Associations::join_table_name and saw
that table_name_prefix was an empty string.
If i comment out the requi...