AltME groups: search
Help · search scripts · search articles · search mailing listresults summary
world | hits |
r4wp | 5 |
r3wp | 12 |
total: | 17 |
results window for this page: [start: 1 end: 17]
world-name: r4wp
Group: #Red ... Red language group [web-public] | ||
Rebolek: 23-Aug-2012 | Sorry for the false alarm :) | |
Endo: 10-Apr-2013 | Some antivirus programs gives false alarm for compiled executables, so I think its better to not spread this site too much, people can think that it downloads viruses. | |
DocKimbel: 11-Apr-2013 | Ok, thanks, will try to reproduce the false alarm and will contact AVira for reporting it. | |
Bo: 2-Jul-2013 | Sorry for the false alarm and all the trouble. | |
Group: Ann-Reply ... Reply to Announce group [web-public] | ||
AdrianS: 19-Oct-2012 | the regular windows console doesn't block the output, so false alarm |
world-name: r3wp
Group: All ... except covered in other channels [web-public] | ||
Graham: 28-Jun-2008 | and the guy had zone alarm, and spybot installed .. and that kept popping up windows as well! | |
Group: !AltME ... Discussion about AltME [web-public] | ||
Mchean: 3-Feb-2010 | i was in the process of installing a new version. I knew it was a false alarm though. | |
Group: View ... discuss view related issues [web-public] | ||
Izkata: 6-Oct-2005 | DideC - I slept through my alarm this morning. Me so tired... =^.^= | |
Group: Parse ... Discussion of PARSE dialect [web-public] | ||
Claude: 20-Sep-2010 | but mystring is like this {Number : 10017 Name : Disable Message Partner Application: MXS Severity : Info Type : Alarm Event Date-Time : 20/09/10 12:39:43 GMT : Mon Sep 20 10:39:43 2010} | |
Maxim: 20-Sep-2010 | here is an overblown example, with lots of extra prints, so you can see it running... it parses your above example text. -------------------------------- rebol [] data: {Number : 10017 Name : Disable Message Partner Application: MXS Severity : Info Type : Alarm Event Date-Time : 20/09/10 12:39:43 GMT : Mon Sep 20 10:39:43 2010} ; rules token: ["Number" | "Name" | "Severity" | "Type" | "Date-Time" | "GMT" | "Application"] space: charset " ^-" spaces: [any space] content: complement charset "^/" ; all but newlines. contents: [some content] ; used as variables in the rules v-token: none v-content: none parse/all data [ some [ ( print "^/0>" ) copy v-token token ( print "1>" probe v-token ) spaces ; ignore ( print "2>" ) ":" ; end of token ( print "3>" ) spaces ; ignore ( print "4>" ) copy v-content contents ;grab all but newline ( print "5>" probe v-content ) [ ; this is important, it ensures that you've got a whole line. [some "^/"] | end ] ( print "6>" ) ( ; do something with your data here ?? v-token ?? v-content ) ] ] probe "." ask "done" | |
Steeve: 20-Sep-2010 | Much easier with R3. assuming, >> src: {Number : 10017 Name : Disable Message Partner Application: MXS Severity : Info Type : Alarm Event Date-Time : 20/09/10 12:39:43 GMT : Mon Sep 20 10:39:43 2010} then, >> construct parse copy src [return while[and[some #" " #":"] remove[some #" "]| skip]] == make object! [ Number: "10017" Name: "Disable Message Partner" Application: "MXS" Severity: "Info" Type: "Alarm Event" Date-Time: "20/09/10 12:39:43" GMT: "Mon Sep 20 10:39:43 2010" ] | |
Maxim: 20-Sep-2010 | this is what I get in my console.... 0> 1> Number 2> 3> 4> 5> 10017 6> v-token: "Number" v-content: "10017" 0> 1> Name 2> 3> 4> 5> Disable Message Partner 6> v-token: "Name" v-content: "Disable Message Partner" 0> 1> Application 2> 3> 4> 5> MXS 6> v-token: "Application" v-content: "MXS" 0> 1> Severity 2> 3> 4> 5> Info 6> v-token: "Severity" v-content: "Info" 0> 1> Type 2> 3> 4> 5> Alarm Event 6> v-token: "Type" v-content: "Alarm Event" 0> 1> Date-Time 2> 3> 4> 5> 20/09/10 12:39:43 6> v-token: "Date-Time" v-content: "20/09/10 12:39:43" 0> 1> GMT 2> 3> 4> 5> Mon Sep 20 10:39:43 2010 6> v-token: "GMT" v-content: "Mon Sep 20 10:39:43 2010" | |
Claude: 21-Sep-2010 | {Number : 10017 Name : Disable Message Partner Application: MXS Severity : Info Type : Alarm Event Date-Time : 20/09/10 12:40:57 GMT : Mon Sep 20 10:40:57 2010 Text : Message Partner AlertsNagios - Disabled} | |
Group: SDK ... [web-public] | ||
Louis: 7-Mar-2006 | Ok, now I have a related problem. Zone Alarm won't allow my encapped program to access the Internet. I think it is because the program is not a view program, and therefore ZA cannot recognize it as a program separate from the rebol interpreter. Is there any way around this? | |
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public] | ||
Robert: 24-May-2009 | toQueryString: This was a false alarm, it's working correct. | |
Henrik: 7-Jan-2010 | I had one breakdown for some hours, but their response was very detailed. I use Linode. As I understand it, Slicehost were recently purchased by Rackspace (buyouts = alarm bells). | |
Dockimbel: 18-Apr-2011 | Ok, false alarm, no bug in RSP request decoder: json.r <%= mold request/content %> <%= mold as-string request/posted %> <%= mold as-string request/parsed/content %> <%= mold request/parsed/arg %> >> print read/custom http://localhost/json.rsp?test[POST {{"a": 1, "b": 2}}] none connecting to: localhost [{"a": 1, "b": 2} "" test ""] {{"a": 1, "b": 2}} {{"a": 1, "b": 2}} test The <%= in addition to PROBE was producing a misleading output. |