search for: newapp

Displaying 8 results from an estimated 8 matches for "newapp".

Did you mean: netapp
2006 Nov 14
11
RESTful mixin, mixin repo?
Hi, I just put together a little mixin to provide pseudo-RESTful services in camping apps. Basically, it looks for a hidden _verb field in form posts, and sets the @method to the supplied value (e.g. put or delete - which browsers don''t support). This lets you define put and delete methods in your controllers. Groovy. Code: http://pastie.caboo.se/22613 Is there any permanent repo of
2013 Jan 31
1
obtainl survival curves for single strata
...on Surv(time,response) object, so there is a single row per subject and no start,stop and no switching of strata. The newdata has many subjects and each subject has a strata and the survival based on the subject risk and the subject strata is needed. If I do newpred <- survfit(cph.approve,new=newapp,se=F) I get all strata for every subject. Attempting > newpred <- survfit(cph.approve,new=newapp,id=CertId,se=F) Error in survfit.coxph(cph.approve, new = newapp, id = CertId, se = F) : The individual option is only valid for start-stop data > newpred <- survfit(cph.approve,new=n...
2007 Apr 02
10
multiple virtual host?
...verAdmin USER@PLACE ProxyPass /APP http://127.0.0.1:8000/APP ProxyPassReverse /APP http://127.0.0.1:8000/APP ProxyPass /images http://127.0.0.1:8000/APP/images </VirtualHost> <VirtualHost *:80> ServerName URL ServerAlias URL ServerAdmin USER@PLACE ProxyPass /NEWAPP http://127.0.0.1:8010/NEWAPP ProxyPassReverse /NEWAPP http://127.0.0.1:8010/NEWAPP ProxyPass /images http://127.0.0.1:8010/NEWAPP/images </VirtualHost> where URL is for my machine, and APP and NEWAPP are the names of two applications, which I serve up with mongrel_rails start -d -p...
2012 Sep 18
1
creating graphs using Rook
...using Rook. So i found a code i.e library(Rook) # for web functionality library(ggplot2) # for graphing library(tseries) # used to grab time series from yahoo for stock symbols library(plyr) # data tweaks PIC.DIR = paste(getwd(), 'pic', sep='/') # define the web page form newapp = function(env) { req = Rook::Request$new(env) res = Rook::Response$new() if (!is.null(req$POST())) { stock.symbol <- req$POST()[["stock.symbol"]] day.window <- req$POST()[["day.window"]] } else { stock.symbol <- 'AAP...
2013 Dec 06
13
Can't seem to get modulepath attribute recognized by puppetmasterd
...new new directory with modules I have written. I then run puppet master --configprint modulepath and I in fact see /etc/puppet/modules:/opt/our-repo/puppetmaster/modules But when I restart puppetmasterd I get the following errors. 2013-12-06 19:05:09 +0000 Puppet (err): Could not find class newapp for ip-10-0-22-5 on node ip-10-0-22-5 On the clients I get the message Puppet (err): Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class newapp for ip-10-0-22-5 on node ip-10-0-22-5 If I move my newapp module to /etc/puppet/modules it works fine. So I thi...
2006 Mar 21
5
RoR and Growing Pains
...che 1.34 and decided it''d be easier to make the Lighty (1.4.11) jump. So I did. I get it working fine as per all the nice HowTos out there... but it only works for one single Virtual Host. Namely: http://localhost/test/ but if I wanted to add a second one I had to add to http://mylappy/newapp Both being on the same box but added to my /etc/hosts file... Could I just setup mod_userdir and have ALL my Rails apps be under /home/ro/public_html/<railappsX> ?? (I''ve tried something to this effect but I am too green in Lighty to know where I''m wrong) This is my sam...
2009 Dec 20
3
Noob Install Failed 0.0.0.0:3000
...alling RDoc documentation for activeresource-2.3.5... Installing RDoc documentation for rails-2.3.5... C:\Downloads\Ruby on Rails\rubygems-1.3.5\rubygems-1.3.5> C:\Downloads\Ruby on Rails\rubygems-1.3.5\rubygems-1.3.5>rails c: \program files\ apache software foundation\apache2.2\htdocs\rails\newapp create create app/controllers create app/helpers create app/models create app/views/layouts create config/environments create config/initializers create config/locales create db create doc create lib create lib/tasks...
2006 Apr 21
10
Paypal payments and IPN
...s over at http://dist.leetsoft.com/api/paypal/ In order I: 1. installed the money library with gem install --source http://dist.leetsoft.com/api/paypal/ money 2. installed the paypal library with gem install --source http://dist.leetsoft.com/api/paypal/ paypal 3. created a new app with rails NewApp 4. added the PaymentHelper module to the app/controllers/application.rb 5. generated controller(and view) Test with ./script/generate controller Test index 6. launched the server 7. connected to server with http://<mydomain>/Test/index I get the following: NameError in <controller n...