search for: alert

Displaying 20 results from an estimated 3225 matches for "alert".

2009 Mar 05
1
Snom Aler-info Ringtone
Have someone running fine Alert-Info with a Snom 370 ( System Information: Phone Type: snom370-SIP MAC-Address: 0004132661BD IP-Address: 192.168.10.170 Firmware-Version: snom370-SIP 7.3.14 14961) i've tried exten => 200,1,SIPAddHeader(Alert-Info:<http://www.notused.com>\;info=alert-external) exten => 200,n...
2007 Sep 20
10
Element.addMethods functions swallowing exceptions (IE6 + 7)
...src="prototype.js"></script> <script type="text/javascript"> Element.addMethods({ throwException: function() { if (arguments.length > 1) { var message = arguments[1]; } else { var message = "default message"; } alert("Element: about to throw exception"); throw new Error(message); alert("this should not be executed"); } }); var genericObject = { throwException: function() { if (arguments.length > 0) { var message = arguments[0]; } else { var m...
2006 May 26
4
What association do I want here, has_ or belongs_to?
I thought I had a handle on this one but it''s causing me grief and I''m hoping somebody can set me straight. I have an object AlertTemplate which will contain a fill in the blank style hunk of web content. I then have an object, Alert, which will have a relationship to one of those AlertTemplate objects, plus some data. So, in human speak, I''d think that an Alert has_one AlertTemplate. But I can''t really...
2006 Jun 07
2
Are the find_ methods strictly a SQL thing?
I''ve had a number of occasions now where I want to find something in my model that is not on the primary object. For instance I''ve got a class Alert that has_one Status. Status has a "label". I want to find all of my Alert objects and order the results alphabetically by status label. Can I do that without going into SQL? Right now I find myself doing an Alert.find :all, :joins=>"as a join status s on a.status_id=s.id&quo...
2014 Apr 09
3
Logrotate errors
Hi all, I have a problem with logrotate and I don't know why. In /var/log/messages appears these errors: Apr 8 15:01:01 plzfnsm02 logrotate: ALERT exited abnormally with [1] Apr 8 16:01:01 plzfnsm02 logrotate: ALERT exited abnormally with [1] Apr 8 17:01:01 plzfnsm02 logrotate: ALERT exited abnormally with [1] Apr 8 18:01:01 plzfnsm02 logrotate: ALERT exited abnormally with [1] Apr 8 19:01:01 plzfnsm02 logrotate: ALERT exited abnormally w...
2009 Sep 14
1
Aastra - Alert-Info : how to stop auto-answer on call second leg ?
Hi, When implementing click2dial feature, I can trigger an Aastra phone to auto-answer using statement like : SIPAddHeader(Alert-Info: info=alert-autoanswer); This is very convenient when trying to reach a distant party (ie through PSTN) The trouble is when 2 Aastra are calling each other over the LAN, this single statement is memorized somehow and both phones (caller and callee) auto-answer. Is there a way to "cancel...
1996 Nov 18
0
New moderator, linux-alert lists'' consolidation.
-----BEGIN PGP SIGNED MESSAGE----- The linux-alert-digest list has now been consolidated with the linux-alert list. There wasn''t nearly enough traffic on the linux-alert list to justify its having a separate digest list; subscribers to linux-alert-digest tended to receive the same number of e-mail messages as subscribers to linux-alert, o...
2011 Oct 07
1
ANOVA/ANCOVA Repeated Measure Mixed Model
Hello, I am trying to test some results I have for significance. It has been recommended that I use R and I am completely new to this. Set-up: Groups: two groups of 8 subjects (16 total) Two conditions: alert and passive Measurements: responses for three different stimuli (A, B, and C) measured in each condition Experiment: Testing the order of conditions Group one: Alert A, B and C followed by Passive A, B, and C Group two: Passive A, B, and C followed by Alert A, B, and C Stimuli A, B an...
2007 Sep 18
4
alerting through puppet
Hi all, I currently use puppet and cacti, and am in need of an alerting system for systems/services that are down. Alerts through cacti are a major pain, so I have begun looking at a small and simple tool called monit. Monit, however, seems to be doing a lot of things that puppet is already doing for me (such as checking if services are running and starting them if...
2008 Nov 28
1
Red Alert / Red Alert II / Tiberium Sun: Overriding wsock32.dll to avoid IPX
Background: Red Alert / Red Alert II / C&C / Tiberium Sun uses IPX for LAN play. According to AppDB, this works, at least for Red Alert II (Orginal RA is not on the first page of Google results...), but it requires Wine to be run as root. Since I do not have IPX installed and I'm not normally in a mood to recom...
2007 Apr 30
1
centos 5 - iintruder alert, intruder alert
CentOS 5 - Intruder alert Somebody that uses windows has infiltrated the upstream. Alert, alert, weeeeep weeeeeeeeepppp bweeeeeeeeeepppppp screeeeeccchhhhhh :-) [root at tstream11 ~]# ls -axl /bin/tracert lrwxrwxrwx 1 root root 10 Apr 20 17:56 /bin/tracert -> traceroute - rh -- Abba Communications Internet Spokan...
2010 Sep 29
2
Alert-Info advice
...----------------+-------+----------+--------------+-------------------------+ | id | context | exten | priority | app | appdata | +------+------------------+-------+----------+--------------+-------------------------+ | 2656 | pack-01616601906 | s | 4 | SIPAddHeader | Alert-Info: alert-group | +------+------------------+-------+----------+--------------+-------------------------+ and in the config of the phone I have set Alert Group Ringer: to Ringer 5 but when a call comes in it's still the default ringer that rings. I've also been lead to believe that I c...
2005 Dec 08
2
Prototype.js Hash Methods
...1. keys 2. values 3. toQueryString 4. inspect 5. Merge I am trying to play around with them and have come up with the following examples - var h = $H({name: "john doe", email: "john-Ch9RrZxMC0c@public.gmane.org", msg: "say hello to me"}); var h_in = h.inspect(); alert(h_in); //returns #<Hash:{''name'': ''john doe'', ''email'': ''john-Ch9RrZxMC0c@public.gmane.org'', ''msg'': ''say hello to me''}> var qs = h.toQueryString(); alert(qs); //returns john%20doe&e...
2009 May 15
0
[PATCH server] use service layer for Network controller.
...:layout => 'popup' - end + end - def create - begin - @network = PhysicalNetwork.new(params[:network]) if params[:network][:type] == 'PhysicalNetwork' - @network = Vlan.new(params[:network]) if params[:network][:type] == 'Vlan' - @network.save! - alert = "Network was successfully created." - render :json => { :object => "network", :success => true, - :alert => alert } - rescue - render :json => { :object => "network", :success => false, - :...
2014 Sep 22
1
SIPAddHeader from a realtime databse
Hi Guys I'm using asterisk 1.8.23.1 When I add a SIP Header from inside the extensions.conf (SIPAddHeader(Alert-Info:<http://www.notused.com>\;info=alert-internal\;x-line-id=0) ) it works fine. When I try to do the same thing from within a database table, all of the string apart from x-line-id=0 gets ignored. I've tried escaping the semicolon and not escaping it and the result is always the same,...
2007 Dec 06
11
Weird Prototype behavior
...<title>PT test</title> <script type=''text/javascript'' src=''/js/prototype/1.6.0/ prototype.js''></script> <script type=''text/javascript''> //<![CDATA[ Event.observe(window, ''load'', function () { alert($(''login_username'')); }); //]]> </script> </script> </head> <body> <input type=''text'' name=''login_username'' id=''login_username_index'' /> </body> </html> IE6 alerts "[object]&qu...
2007 Sep 06
7
alert function, V2
I guess the alert function is not part of the spec, because it appears to be unimplemented in Dovecot, even though most clients implement it. Timo, I would hope this would be easy to implement, and it's functionality that will be valuable to every installation. Here's why. America recently had the trage...
2016 Jun 15
2
tlsv1 alert unknown ca: SSL alert number 48
...have set up a mail server with postfix+dovecot 2.2.13 on my raspberry pi running Raspbian Jassie OS. Now I would like to add an on-line e-mail client like Squirrelmail or Roundcube. I was able to start up these two clients but when I try to login I get this error message in the dovecot log: tlsv1 alert unknown ca: SSL alert number 48 But I have inserted the self-signed certificate and key in /etc/dovecot/conf.d/10-master.conf Moreover, I can send and receive e-mails from/to my server, and I can login successfully to dovecot IMAP with Thunderbird. Can somebody give me a clue on how to solve thi...
2012 May 09
1
Sweave, beamer and alert within code chunks
Hi all, Using Beamer, in order to highlight a piece of R code I do something like this - note the "\structure" and "\alert" commands: \begin{semiverbatim} > mleOut <- \structure{dlmMLE}(Nile, + parm = c(0.2, 120), # initial values for optimizer + lower = c(1e-7, 0)) \alert<2>{# V must be positive} > mleOut$convergence \alert<3>{# always check this!!!} [1] 0...
2006 Nov 15
1
how to handle alert box message in selenium test?
hi guys, how to handle alert box message in selenium test? i want to handle alert box. i want to test(verify text present) the text in alert box & then click ok to alert box. how can i do this.? plz tell me... advance thx. regards, karthick. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------...