search for: plan

Displaying 20 results from an estimated 27432 matches for "plan".

Did you mean: plain
2010 Jun 24
1
BBH2 and FrF2 packages
...-1 1 -1 54 4 4 1 1 -1 68 5 5 -1 -1 1 52 6 6 1 -1 1 83 7 7 -1 1 1 45 8 8 1 1 1 80 Using these data and the R BHH2 package, I was not able to reproduce the very simple results in the BHH2 book. In particular, the following solution will have no meaning since K is categorical: ( plan <- lm(y ~ (T+C+K)^2, data = DATA) ) MEPlot(plan) # Main Effects IAPlot(plan) # Interactions Effects DanielPlot(plan) cubePlot(plan, "T", "C", "K") I decided to rebuilt the data using: plan <- FrF2(8, 3, factor.names=c("T","C","K"),...
2012 Nov 12
7
RSpec: controller POST create
Rails 3.1.3 rspec-rails (2.11.4) rspec 2.11.1 I am new to rspec. I don''t quite understand tests for POST create part. I have generated scaffold, and simultaneously it generated controller_spec.rb as well. it "assigns a newly created plan as @plan" do post :create, {:plan => valid_attributes}, valid_session assigns(:plan).should be_a(Plan) assigns(:plan).should be_persisted end is the default POST create test. It raises a failure, if I changed the validations of Plan class Plan < Acti...
2008 May 18
2
Fixed a Duplicate?
...very time I open a folder from this shared account, I get either one or two emails being created on the spot. The are /always/ created with the current date and time stamp (i.e. now) and at the same time a tail -f of maillog shows something like this: > May 19 09:10:05 sydsrv56 dovecot: IMAP(plans): Fixed a duplicate: > dovecot-shared:2, -> 1211152205.P10039Q1.sydsrv56 The only thing that appears to change is the last modified date and time of the two files, dovecot.index.log and dovecot.index.cache. Should I be maintaining separate index files or lock files for each user in this...
2005 Jan 21
1
More help on ACL problem please...anyone...anyone...Bueller?
...Y=y [root@atlas configs]# grep XATTR kernel-2.6.5-i686-smp.config CONFIG_EXT2_FS_XATTR=y CONFIG_EXT3_FS_XATTR=y CONFIG_DEVPTS_FS_XATTR=y Have extended attributes set in /etc/fstab is as follows: /dev/Goliath/root / ext3 acl,user_xattr 1 1 I have a directory called Planning with ACL permissions assigned via the setfacl command: drwxrwx---+ 2 root AVMAX+Planning 4096 Jan 14 09:55 Planning which looks like this with getfacl: [root@atlas avamx_shares]# getfacl Planning/ # file: Planning # owner: root # group: AVMAX+Planning user::rwx group::rwx grou...
2008 Sep 15
2
Passing an array into controller
I am trying to pass and array from an AJAX Javascript function to a controller. The parameter is being read as a single string and not an array. The Javascript function: function sendtolist(formName){ var form = $(formName) var checked = [] checked = form.getInputs("checkbox","plans[]").findAll(function(item) { return item.checked; }).pluck("value"); action="/generate_reports/advanced_plan_summary" window.location.href=action+"?plans[]="+checked } The controller is: def advanced_plan_summary @ids = params[:plans] @ids = @ids.split(...
2012 Sep 23
2
Find by id in the view template dynamically
Rails 3.1.3 I have a model ''Airline'', whose STRING column is ''company'' only. Also, another model ''Plan'' has an INTEGER column ''airline_id''. I would like to show the ''company'' name (string) in a template like <% @plans.each do |plan| %> Airline: <%= @airlines.find(plan.airline_id).first.company %><br /> ... <%...
2005 Dec 16
10
''Code table'' best practices?
I''ve been going back and forth about this kind of thing for a while. I reverse my opinion on it every project, and I''m wondering if anyone has any advice/battle scars to share. As usual, please forgive my long-windedness in advance. Let''s say I have this: Table: PLANS ID int CATEGORY_CODE_ID int --Other junk removed for clarity Table: CATEGORY_CODES ID int DESCRIPTION varchar(200) "category codes", to the user, are 6-digit numbers, sometimes with leading zeroes, that have specific meanings. My customers usually want a metric truckload full of repor...
2009 Aug 25
1
Problem with correct usage of formula environment
...works well as long as all variables used are columns of the design data frame. For one function, I would like to incorporate a dummy variable for center points that is not a column of the design. Without this function, it would work like this (at least version 0.97 of package FrF2): require(FrF2) plan <- FrF2(8,4,ncenter=6) y <- rnorm(14) r.plan<-add.response(plan,y) lm(y~A+B+C+D+!iscube(r.plan), r.plan) Building the formula from within function formula.design works OK at first sight: > formula(r.plan) y ~ A + B + C + D + (!iscube(r.plan)) However, using the formula in a linear mod...
2005 Jan 24
1
RE More help on ACL problemplease...anyone...anyone...Bueller?
...I modified your setting Sure: [Planning] comment = Avmax Domain Shares browseable = yes writable = yes read only = no # valid users = AVMAX+Planning create mode = 0664 directory mode = 0775 path = /usr/avamx_shares/Planning There she is. Do I have to include all groups in 'valid users'? If so what w...
2008 Oct 21
1
uninitialized constant error, help me
Hi, I''m a rails_fan in korea. As korean web site has a little information about rails I''m tryig to ask google groups users of my question <% for reserve in @plan.reserves %> This line make error like this ''uninitialized constant Plan::Reserf'' I already have plan and reserve model and I define their relationship. plan has_many :reserves reserve belongs_to :plan why does this error happen? --~--~---------~--~----~------------~----...
2005 Sep 27
2
Sipura 2000 Dial Plan
Anybody ever run into a case where the Sipura Dial Plan will not work with the S0 option to immediately connect? My Dial plan reads (*xx|[3469]11S0|0|00|[2-9]xxxxxxS0|1xxx[2-9]xxxxxxS0) and I can dial ONLY then numbers in the dial plan so I know that it works. For some reason when I dial 5551212 1212121212 It does not dial for a while and then...
2009 Jun 25
1
Lose of decimal when using write.table to text file
Good Day, I have the following: >Date<-c("08/05/08","08/06/08","08/07/08") >Weight<-c(209.4,211.8,210.0) >planned.meal<-cbind(Date,Weight) >planned.meal Date Weight 1 08/05/08, 209.4 2 08/06/08, 211.8 3 08/07/08, 210.0 >write.table(planned.meal, file="plannedMeal1.txt", + quote=FALSE, row.names=FALSE) output on vim editor: Date Weight 08/05/08, 209.4 08/06/08, 211.8 08...
2006 Jun 16
2
[Slightly Off Topic]How to handle downgrades
Let''s say that there is a web application which comes in several different plans. Each plan has a different number of users and content items allowed for an account. Obviously we can allow the user to upgrade to a higher level plan by just increasing their limits but how do we handle downgrades? If the user is only allowed x items on the downgraded plan and they curren...
2007 May 05
1
Dial Plan for Multi-Location & Support Queue
Hi, I am in the process of planning a dial plan, In regards to the requirement, I am confused how to go about the dial plan. The scenario is like below. BRANCH - A - (COMPANY) Line 1 -- Extension 239 Line 2 -- Extension 8239 BRANCH - B - (COMPANY) Line 1 -- Extension 239 Line 2 -- Extension 8239...
2003 Oct 14
3
*/SER/FW
Hi, I've just read the postings regarding the interworking between * and SER. As these persons seem quite knowledgeable on this, I would like to have their advise on my planned installation: - I have broadband cable access - I plan to install a SIP-aware router - I plan to install a Linux server with Digium analog IF card(s) for connection to my analog line (incoming and outgoing) - I plan to install Asteriks on that server - I plan to install a SIP-proxy,registrar on...
2006 Jul 17
2
planned comparisons for ANOVA
Hi, we need some help to define planned comparisons. I've based my understanding of the problem on reading Tabachnick and Fidell (2006), ie: http://www.ablongman.com/catalog/academic/product/0,1144,0205459382,00.html I don't understand how to specify planned comparisons in R. I've not found explanations for this in MAS...
2012 Dec 13
2
Installing Packages from a Local Repository
...9;ve modified my Rprofile.site file to add the local repository to my repos, but I haven't been able to successfully install my package from the repo. Here's the code that I've run. ################################## sessionInfo() getOption("repos") setwd("Q:/Integrated Planning/R") list.files(path = ".", recursive = TRUE) tools::write_PACKAGES("bin/windows/contrib/2.15", type = "win.binary") list.files(path = ".", recursive = TRUE) install.packages("RTIO") install.packages("RTIO", repos = "Q:/Integ...
2010 Oct 23
7
Dial plan help
Hi, I am facing issue while generating a dial plan for the following case: all caller should be asked a code to enter than All the callers should be connected one extension. also tell me testing scenario : I have pbx setup and currently I have soft phones to use as extension. Currently I have created a dial plan using vdp I tried submitting it h...
2010 Feb 15
2
insecure=invite - not working for different dial plan
I'm using "insecure=invite" with two different dial plans, it it working with one dial plan but not with the other. What other parameters could influence "insecure=invite" In sip.conf below "insecure=invite" is working OK [pstn-1270] type=friend secret=spa3k username=voice-1270 mailbox=369 host=dynamic insecure=invite canreinvite=...
2015 Jun 02
2
RES: How to invoke a binary file from the dial plan?
Ok. Thanks for the hint. But, what exactly is a "System() dialplan application"? Is it a kind of command that i can call in dial plan? I will look for System() related to dial plans. Thanks. RODRIGO PIMENTA CARVALHO Inatel Competence Center Software Ph: +55 35 3471 9200 RAMAL 979 ________________________________________ De: asterisk-users-bounces at lists...