Displaying 20 results from an estimated 44 matches for "log_messag".
Did you mean:
log_message
2008 Jan 19
10
lose focus event?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I''m new to wxruby, and I haven''t found any answer with google: Is
there a way to capture a lose focus event on controls, such as a combo
box? All my experiments show events when changing the text, but not
when leaving the box.
I want to make a combobox that autocompletes if I press tab (or down
arrow or something), but if I
2001 Sep 04
2
Problems using vorbisfile.dll
...o :)
Well, on to the problem.
I’m adding ogg support into an audio-player.
For some reason I want it using vorbisfile threw the dll’s.
It works just fine with the debug dll. No problems what so ever.
But with the Retail dlls, when I call ov_open my memory gets messed up.
In file:
ov_open(……..);
log_message(“do I live ?”);
The constant “do I live ?” string even gets messed up. Something like
“D#£%&” will be written in the logs. Then the program crashes naturally.
I’ve searched threw the archives and found similar problems, but none of
the solutions solve my problem.
When I “link” against the...
2007 May 04
0
[1009] trunk/wxruby2/samples/treectrl/treectrl.rb: ok method name changed to is_ok
...38:03 UTC (rev 1008)
+++ trunk/wxruby2/samples/treectrl/treectrl.rb        2007-05-04 23:38:36 UTC (rev 1009)
</span><span class="lines">@@ -1170,7 +1170,7 @@
</span><span class="cx"> Wx::log_message(''NOT IMPLEMENTED'')
</span><span class="cx"> return
</span><span class="cx"> col = Wx::get_colour_from_user(self, @treectrl.get_foreground_colour())
</span><del>- if col.ok()
</del><ins>+ if col.is_o...
2018 Apr 06
2
Dovecot Submission Proxy Auth
...ce with Exim??
here the steps I have done to integrate Dovecot submission in Exim:
- Create and set the acl_smtp_mailauth ACL:
acl_smtp_mailauth = acl_check_mailauth
acl_check_mailauth:
accept
hosts = <; 127.0.0.1 ; ::1
condition = ${if eq{$interface_port}{10025}}
log_message = Will accept MAIL AUTH parameter for $authenticated_sender
deny
- add a deny fo all connections to 10025 without MAIL AUTH parameter in acl_smtp_mail ACL:
deny
condition = ${if eq{$interface_port}{10025}}
condition = ${if eq{$authenticated_sender}{}}
message...
2004 May 22
10
Tabbing between Notebook pages
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: wxTony.rbw
Type: application/octet-stream
Size: 10436 bytes
Desc: not available
Url : http://rubyforge.org/pipermail/wxruby-users/attachments/20040522/9c1889d0/wxTony.obj
2006 Nov 13
7
[736] trunk/wxruby2/samples/dialogs/dialogs.rb: Fixed crashing bug in on_paint and made the code style more Ruby like.
...quot;cx"> # being flushed -- test it
</span><span class="lines">@@ -263,10 +262,10 @@
</span><span class="cx"> Log::flush_active()
</span><span class="cx">
</span><span class="cx"> log_message("And this is the same dialog but with only one message.")
</span><del>-        end
</del><ins>+         end
</ins><span class=...
2019 Jan 09
3
Dovecot Submission Proxy Auth
...t;
>> - Create and set the acl_smtp_mailauth ACL:
>>
>> acl_smtp_mailauth = acl_check_mailauth
>>
>> acl_check_mailauth:
>> accept
>> hosts = <; 127.0.0.1 ; ::1
>> condition = ${if eq{$interface_port}{10025}}
>> log_message = Will accept MAIL AUTH parameter for $authenticated_sender
>> deny
>>
>>
>> - add a deny fo all connections to 10025 without MAIL AUTH parameter in acl_smtp_mail ACL:
>>
>> deny
>> condition = ${if eq{$interface_port}{10025}}
>&...
2007 Jan 05
0
[832] trunk/wxruby2/samples: Fix samples for TreeItemIds as integers, fix image size in treectrl sample
...m = get_item_parent(dest_item)
</span><span class="cx"> end
</span><span class="cx">
</span><del>- unless dest_item.is_ok()
</del><ins>+ unless dest_item.nonzero?()
</ins><span class="cx"> Wx::log_message("OnEndDrag: can''t drop here.")
</span><span class="cx"> return nil
</span><span class="cx"> end
</span><span class="lines">@@ -662,7 +662,7 @@
</span><span class="cx">
</span>...
2010 Jun 17
3
implementation of IEEE 802.1Qbg in lldpad, part2
Hi,
This series of patches contains the second part of an initial implementation of
the IEEE 802.1Qbg standard: code for the exchange of VDP VSI TLVs between a
host with virtual machines and an adjacent switch.
VDP profiles consisting of mode,mgrid,typeid,typeidversion,instanceid,mac,vlan
can be given to lldpad with lldptool.
A way to deliver profiles to lldpad from libvirt using netlink
2010 Jun 17
3
implementation of IEEE 802.1Qbg in lldpad, part2
Hi,
This series of patches contains the second part of an initial implementation of
the IEEE 802.1Qbg standard: code for the exchange of VDP VSI TLVs between a
host with virtual machines and an adjacent switch.
VDP profiles consisting of mode,mgrid,typeid,typeidversion,instanceid,mac,vlan
can be given to lldpad with lldptool.
A way to deliver profiles to lldpad from libvirt using netlink
2010 Aug 25
12
implementation of IEEE 802.1Qbg in lldpad
Hi,
this set of patches contains the initial implementation of the IEEE 802.1Qbg
standard: code for the exchange of EVB TLVs in LLDP frames to negotiate VSI
capabalities as well as VDP VSI TLVs between a host with virtual machines
and an adjacent switch.
It supports setting the parameters of the TLV exchange from the command
line using lldptool.
VDP profiles consisting of
2010 Aug 25
12
implementation of IEEE 802.1Qbg in lldpad
Hi,
this set of patches contains the initial implementation of the IEEE 802.1Qbg
standard: code for the exchange of EVB TLVs in LLDP frames to negotiate VSI
capabalities as well as VDP VSI TLVs between a host with virtual machines
and an adjacent switch.
It supports setting the parameters of the TLV exchange from the command
line using lldptool.
VDP profiles consisting of
2006 Sep 17
1
run.rb
This is a first stab at a run.rb file that will let you run a sample in
the bigdemo directory by itself.
You have to add the following to the bottom of every sample file:
if __FILE__ == $0
load "run.rb"
run(File.basename($0))
end
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
2004 Jun 01
2
New wxRuby code is in CVS
I just checked in some good fixes. You can see the (full) Changelog
here: http://qualitycode.com/repos/wxruby/ChangeLog
Notable items:
- Added shanko''s grid sample (thanks!)
- Added support for ComboBox#get_value
- Fixed *all* the known crashing bugs.
The way I "fixed" the problems with get_client_data was to remove the
set_client_data and get_client_data implementations. I
2019 Jan 09
0
Dovecot Submission Proxy Auth
...rate Dovecot submission in Exim:
>
> - Create and set the acl_smtp_mailauth ACL:
>
> acl_smtp_mailauth = acl_check_mailauth
>
> acl_check_mailauth:
> accept
> hosts = <; 127.0.0.1 ; ::1
> condition = ${if eq{$interface_port}{10025}}
> log_message = Will accept MAIL AUTH parameter for $authenticated_sender
>
> deny
>
>
> - add a deny fo all connections to 10025 without MAIL AUTH parameter in acl_smtp_mail ACL:
>
> deny
> condition = ${if eq{$interface_port}{10025}}
> condition =...
2010 Jun 30
0
drb problem? ringy-dingy won't answer...
...# Module
mark_testlevel(''Test Child'', 6) # SubModule
@myBrowser = Watir::IE.new_process
@myHwnd = @myBrowser.hwnd
lookup(''Google'')
emaillogin(@myBrowser, @service, @username, @password)
logout(@myBrowser)
rescue
log_message(FATAL, "(#{__LINE__}) #{$!}", @@fail)
raise
ensure
create_flag_file(Time.new.to_f.to_s, ''parse'' ) unless @runid ==
''99999''
close_log(@myName, __LINE__)
end
end #def
end
--
You received this message because you are subsc...
2019 Jan 09
0
Dovecot Submission Proxy Auth
...acl_smtp_mailauth ACL:
>>>
>>> acl_smtp_mailauth = acl_check_mailauth
>>>
>>> acl_check_mailauth:
>>> accept
>>> hosts = <; 127.0.0.1 ; ::1
>>> condition = ${if eq{$interface_port}{10025}}
>>> log_message = Will accept MAIL AUTH parameter for $authenticated_sender
>>> deny
>>>
>>>
>>> - add a deny fo all connections to 10025 without MAIL AUTH parameter in acl_smtp_mail ACL:
>>>
>>> deny
>>> condition = ${if eq{$i...
2007 May 21
0
[1025] trunk/wxruby2/swig: Use Wx::THE_APP constant as global reference to App (as per WxWidgets);
...ublic:
</span><del>-        static VALUE app_ptr;
</del><ins>+
</ins><span class="cx"> };
</span><span class="cx">
</span><span class="cx"> void log_message(int argc, VALUE *argv, VALUE self)
</span><span class="lines">@@ -64,9 +64,7 @@
</span><span class="cx">
</span><span class="cx"> static VALUE get_app(VALUE self)
</span><span class="cx"> {
</span><de...
2019 Jul 31
0
Re: [PATCH] Rust bindings: Implement Event features
...mut data = (&close_invoked).lock().unwrap();
> + *data += 1;
> + },
> + &[guestfs::Event::Close],
> + )
> + .unwrap();
Check that the close_invoked count is still 0 before the block ending.
> diff --git a/rust/tests/420_log_messages.rs b/rust/tests/420_log_messages.rs
> new file mode 100644
> index 000000000..1e9627ca7
> --- /dev/null
> +++ b/rust/tests/420_log_messages.rs
> @@ -0,0 +1,60 @@
> +/* libguestfs Rust bindings
> + * Copyright (C) 2019 Hiroyuki Katsura <hiroyuki.katsura.0513@gmail.com>
&...
2010 Jul 23
19
implementation of IEEE 802.1Qbg in lldpad
Hi,
This set of patches contains the initial implementation of the IEEE 802.1Qbg
standard: code for the exchange of EVB TLVs in LLDP frames to negotiate VSI
capabalities as well as VDP VSI TLVs between a host with virtual machines
and an adjacent switch.
It supports setting the parameters of the TLV exchange from the command
line using lldptool.
VDP profiles consisting of