similar to: spandsp, app_rxfax: apps_Makefile.patch v1.2 > v1.4 = No Workie!

Displaying 7 results from an estimated 7 matches similar to: "spandsp, app_rxfax: apps_Makefile.patch v1.2 > v1.4 = No Workie!"

2006 Jun 27
1
user.save now workie, but user.update_attributes does
In my User model, I had this: def update_last_login_time self.last_login = Time.now self.save end But last_login was not being set. When I changed it to this it worked: self.update_attribute( :last_login, Time.now ) Any ideas why? ~S
2006 May 08
4
gsub no workie
Don''t know why, but cant seem to get this to work for me. I have a phone number field for an addressbook. In the addressbook model I have a before_update declaration that says the following: I''d like to be able to remove all special characters (just numbers please), but this doesn''t want to work for me. before_update :format_phone def format_phone self.phone =
2010 Nov 04
0
[backport] Allow app_dial to play 'indication tone while ringing' back ported to 1.6.2.X
I have back ported the 'r' feature for app Dial from 1.8.0 to 1.6.2.X. The link to the diff is below. http://files.bluecrow.net/asterisk/backports/1.6.2/asterisk-1.6.2.4-app_ dial-play-indications.diff I made the diff against 1.6.2.4 and later patched a 1.6.2.13 system. All hunks passed. I have this running on two production 1.6.2.X systems with no problems yet. The
2008 Apr 13
1
compilation of asterisk 1.4.19 with ilbc already on system
I already have ilbc installed on my system. The files are: /usr/include/ilbc/iLBC_decode.h /usr/include/ilbc/iLBC_define.h /usr/include/ilbc/iLBC_encode.h /usr/lib/libilbc.a /usr/lib/libilbc.la /usr/lib/libilbc.so -> libilbc.so.0.0.0 /usr/lib/libilbc.so.0 -> libilbc.so.0.0.0 /usr/lib/libilbc.so.0.0.0 However, if I do a "make" in asterisk-1.4.19, it will not detect that libilbc.a
2006 Feb 24
0
increment!(attribute) no worky
I tried this: @item.increment!(''views'') But Rails say: wrong number of arguments (1 for 0) And the docs say (under instance methods): increment!(attribute) Say what? What say you? Joe -- Posted via http://www.ruby-forum.com/.
2004 Oct 19
1
Issues/Questions about Samba 3.x.x versus it's Worki ng Status
Hi Jerry, First, thanks a lot for the answers! In regards, to your reply, can you provide a little bit more precisions here: 1. The question 1 was about not using winbindd when in ADS security mode. Is the answer still Yes? I know that it is true when in DOMAIN security mode. 2. About Question 6, from your answer, my understanding is that the Samba server must be in the same domain as the
2008 Feb 13
5
Example controller spec no worky?
I''m trying to spec a dead simple "show non-existent record should render 404" case, but it seems the RecordNotFound exception is making it impossible for some reason. #controller def show @event = Event.find(params[:id]) end #spec - pretty much straight from the rspec site before do Event.stub!(:find) get :show, :id => ''broken'' end #