search for: apptime

Displaying 4 results from an estimated 4 matches for "apptime".

2008 Sep 02
5
Appending a record to a table
...f using << but none of the literature I''m reading makes a huge deal of sense. @cart = find_treat l = LineItem.new c = Customer.find(session[:currentcustID]) t = Therapist.find(params[:appt_therapist]) a = Appointment.new a.appdate = params[:appt_date] a.apptime = params[:appt_time] a.applength = @cart.total_time a.customer = c l.appointment = a l.customer = c l.therapist = t tr = Treatment.new @cart.items.each do |item| tr = Treatment.find(item.id) logger.warn("Currently Dealing with: #{tr.desclong}")...
2018 May 22
3
Use EPEL without redirection ?
Hi, Is there any way to deactivate the redirection to a mirror when using the third-party EPEL repository ? Our network uses a transparent HTTP/HTTPS proxy with a local AC. We can create exceptions for sites like centos.org or download.fedoraproject.org, but whenever we want to install a package from EPEL, the mirror redirection causes an error due to redirection. Any suggestions ? Niki --
2018 May 22
0
Use EPEL without redirection ?
...9 (Fedora) mod_wsgi/4.5.15 Python/2.7 X-Frame-Options: SAMEORIGIN X-Xss-Protection: 1; mode=block X-Content-Type-Options: nosniff Referrer-Policy: same-origin Content-Length: 0 Location: https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/6/i386/ Content-Type: text/html; charset=UTF-8 AppTime: D=4793 AppServer: proxy14.fedoraproject.org Then edit baseurl in epel.repo to use the URL listed in Location: instead, changing the i386 or x86_64 back to $basearch Then you can create an exception for the specific host you configured. Cheers Tony -- Tony Mountifield Work: tony at softins.co.u...
2010 Jul 15
3
Good script to make appointment?
Hello I'd like to write a script that would make it easier for people to call in, listen to the IVR, and make an appointment (eg. "When? ASAP? A given day?" -> "Morning? Afternon", etc.) I assume I'm not the first one to try and write this type of IVR, so would appreciate any feedback on writing this. Thank you.