search for: winfo

Displaying 20 results from an estimated 21 matches for "winfo".

Did you mean: info
2001 Feb 03
1
tk non-widget commands (esp. update and winfo)
...ou! Alas, I also have questions: In Tcl everything is a string [*]. This is not the case in R, of course. So why are return values of tk commands still strings? (Is there any other reason than speed or "package is work in progress"?) Example: > tt <- tktoplevel () > tkwinfo ("width", tt) [1] "200" Could (Should?) be: > tt <- tktoplevel () > tkwinfo ("width", tt) [1] 200 with > tkwidth <- function (widget) as.numeric (tkcmd ("winfo", "width", widget)) Maybe a better example is the use of...
2003 Jul 09
1
authentication from win2k DC
...winbind gid = 10000-20000 smb passwd file = /etc/smbpasswd ;log level = 3 socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 netbios name = ccdev1 A note: with winbind a list of the domain groups and users can be obtained from the samba server using winfo -u and winfo -g Any help will be appreciated ! Tks, Ilko Dipl.-Ing. Ilko ILIEV application developer CureComp IT-Solutions GmbH Hafenstr. 47-51 A-4040 Linz, Austria Tel : +43-(0)70-9015-5562 Fax : +43-(0)70-9015-5579 Mobile: +43-(0)664-8209556 mailto: <mailto:i.iliev@curecomp.c...
2003 Jul 10
1
AW: authentication from win2k DC
...> smb passwd file = /etc/smbpasswd > ;log level = 3 > socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 > netbios name = ccdev1 > > A note: with winbind a list of the domain groups and users can be > obtained from the samba server using winfo -u and winfo -g > > Any help will be appreciated ! > > Tks, > Ilko > > > Dipl.-Ing. Ilko ILIEV > application developer > > CureComp IT-Solutions GmbH > Hafenstr. 47-51 > A-4040 Linz, Austria > > Tel : +43-(0)70-9015-5562 > Fax : +43-(0)70-9015-557...
2014 Dec 17
4
IDMAP_NSS on member server
...les that I am the owner. Group is ignored. The Security properties of files (from windows) show users and groups as "Unix User\myname" and "Unix Group\mygroup." Winbind is running on both the domain controller and the member server. The "wbinfo -u" and "winfo -g" commands show the users and groups. This machine does not need to support trusted domains. It looks like I need some sort of IDMapping. SInce I have unix accounts in LDAP backend I was trying to configure idmap_nss. idmap config MYDOMAIN : backend = nss...
2007 May 22
0
tcl font size issue on centso 4.4 x86_64
...ckground. How do I get a bigger font than 40? I run this script as "wish -f file.tcl" What am I doing wrong to not get bigger fonts? THanks, Jerry --------------------------------------------- set font_size 40 set show_window_title 0 set disable_window_decorations 1 set screen_width [winfo screenwidth . ] set screen_height [winfo screenheight . ] set window_x 0 set window_y 0 set my_message "This is my message..." wm geometry . ${screen_width}x${font_size}+${window_x}+${window_y} wm overrideredirect . $disable_window_decorations font create ourFont -family helvetica -size...
2009 Jan 22
2
Samba 3.0.23d + winbind
...wins server = My wins server ldap ssl = no winbind enum users = Yes winbind enum groups = Yes winbind use default domain = Yes In this smb, re-direct all incoming connections to the AD server for authentication, but no working. This command work OK: ./net rpc join -S ADSERV -U wbinfo -u winfo -g Please help me
2014 Dec 18
2
IDMAP_NSS on member server
...d. The Security properties of files (from windows) show >> users and groups as "Unix User\myname" and "Unix Group\mygroup." >> >> >> Winbind is running on both the domain controller and the member >> server. The "wbinfo -u" and "winfo -g" commands show the users and >> groups. This machine does not need to support trusted >> domains. It looks like I need some sort of IDMapping. SInce I >> have unix accounts in LDAP backend I was trying to configure idmap_nss. >> >> >>...
2014 Dec 18
2
IDMAP_NSS on member server
...from windows) show >>>> users and groups as "Unix User\myname" and "Unix Group\mygroup." >>>> >>>> >>>> Winbind is running on both the domain controller and the member >>>> server. The "wbinfo -u" and "winfo -g" commands show the users and >>>> groups. This machine does not need to support trusted >>>> domains. It looks like I need some sort of IDMapping. SInce >>>> I have unix accounts in LDAP backend I was trying to configure >>>> idmap...
2014 Dec 18
0
IDMAP_NSS on member server
...Group is ignored. The Security > properties of files (from windows) show users and groups as "Unix > User\myname" and "Unix Group\mygroup." > > > Winbind is running on both the domain controller and the member server. > The "wbinfo -u" and "winfo -g" commands show the users and groups. This > machine does not need to support trusted domains. It looks like I > need some sort of IDMapping. SInce I have unix accounts in LDAP backend > I was trying to configure idmap_nss. > > > idmap config MYDOMAIN...
2001 Feb 20
2
tcltk: testing for widgets?
Hallo! I want to test if a widget exists. Using Perl/Tk i can call the function tkexists(). How can I realise this function with R/tclTk ? Thanks -- Frank Gerrit Zoellner -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
2003 Nov 27
1
tcltk - tkcreate question
...rient vertical \ -command "$base.fm.cv yview" pack $base.fm.cv -side left -fill both -expand true pack $base.fm.cv_vertscrollbar -side right -fill y pack $base.fm -side top -fill both -expand true set hull [frame $base.fm.cv.hull -borderwidth 2 -relief ridge] set wid [winfo width $base.fm] $base.fm.cv create window 0 0 -anchor nw -window $hull -width 10 -height 500 -tag window bind $base.fm.cv <Configure> "ResizeCanvas %W %w %h" return $hull } I have successfully translated the code until the line $base.fm.cv create window 0 0 -anchor nw...
2006 Feb 10
0
tk mouse cursor icon widget tkwinfo tkfocus questions
1. I want to change the mouse cursor over my window into a wait/watch icon while R computes. Can this be done directly? Some ancient tcltk mailing lists said change the cursor over every widget in the window: foreach widget [winfo children $window] { $widget config -cursor watch } To do this I'll need a list of R/tcl widget objects: lapply(widglist, function(z) tkconfigure(z, cursor="watch")) From where can I get this widglist? I tried: &g...
2014 Dec 18
0
IDMAP_NSS on member server
...roup is ignored. > The Security properties of files (from windows) show users and groups > as "Unix User\myname" and "Unix Group\mygroup." > > > Winbind is running on both the domain controller and the member > server. The "wbinfo -u" and "winfo -g" commands show the users and > groups. This machine does not need to support trusted domains. > It looks like I need some sort of IDMapping. SInce I have unix > accounts in LDAP backend I was trying to configure idmap_nss. > > > idmap config MYDOMA...
2014 Dec 18
0
IDMAP_NSS on member server
...roperties of files (from windows) show >>> users and groups as "Unix User\myname" and "Unix Group\mygroup." >>> >>> >>> Winbind is running on both the domain controller and the member >>> server. The "wbinfo -u" and "winfo -g" commands show the users and >>> groups. This machine does not need to support trusted >>> domains. It looks like I need some sort of IDMapping. SInce I >>> have unix accounts in LDAP backend I was trying to configure idmap_nss. >>> >>&gt...
2014 Dec 18
0
IDMAP_NSS on member server
...>>>>> users and groups as "Unix User\myname" and "Unix Group\mygroup." >>>>> >>>>> >>>>> Winbind is running on both the domain controller and the member >>>>> server. The "wbinfo -u" and "winfo -g" commands show the users >>>>> and groups. This machine does not need to support trusted >>>>> domains. It looks like I need some sort of IDMapping. SInce >>>>> I have unix accounts in LDAP backend I was trying to configure >>&g...
2009 Apr 01
0
try to join win2k3 r2 pdc
...s networks: files dns passwd: files winbind ldap passwd_compat: nis shells: files shadow: files winbind kinit works kinit wbinfo -t --> works net rpc testjoin --> works net ads testjoin --> works net rpc join works net ads join works wbinfo -g --> doesn't work winfo -u --> doesn't work getent passwd --> doesn't work getent group --> doesn't work in the logs i find several errors (* marks start of log line) * add_new_domain_info: failed to add domain dn= sambaDomainName=LOCALHOST,DC=DOMAIN,DC=NET with: No such attributte * smbldap...
2012 Feb 25
0
No IVR audio. Jump in RTP sequence number
...x:5060> User-Agent: Wireless Call Manager Allow: INVITE, ACK, BYE, CANCEL, OPTIONS, PRACK, MESSAGE, SUBSCRIBE, NOTIFY, REFER, UPDATE, REGISTER, INFO, PUBLISH Supported: timer, precondition, path, replaces Allow-Events: talk, presence, dialog, call-info, sla, include-session-description, presence.winfo, message-summary, refer Content-Type: application/sdp Content-Disposition: session Content-Length: 231 Remote-Party-ID: "14735201326" <sip:14735201326 at x.x.x.x>;party=calling;screen=yes;privacy=off v=0 o=wCM 1330087502 1330087503 IN IP4 x.x.x.x s=wCM c=IN IP4 x.x.x.x t=0 0 m=audi...
2007 May 29
3
FW: Help Please! - Copying files from Windows to Samba share loses connection
Aaron, Yes, I left the server string out intentionally because of how the mapped drive description showed in Windows. Could this be causing my problem? I was able to join this server to the domain and I could retrieive a list of users using the winfo command. Thanks! Will -----Original Message----- From: Aaron Kincer [mailto:kincera@gmail.com] Sent: Tuesday, May 29, 2007 12:21 PM To: Will Holmes Cc: samba@lists.samba.org Subject: Re: [Samba] Help Please! - Copying files from Windows to Samba share loses connection I see you don't have t...
2015 Sep 28
2
Link R with Tcl 8.6 on Windows
Dear all, I am working on an R package intended for CRAN that requires Tcl version 8.6 because of the TclOO tcl extension and the -angle option for canvas text items. R for Windows currently still ships with Tcl 8.5. Does anyone have experience with linking R under Windows to a Tcl interpreter of version 8.6? When I link R 3.2.2 (installed from the binary on Windows 8) to a custom Tcl
2007 Jun 09
3
Polycom sip.cfg / voIpProt.SIP.requestValidation.x.request.y.event
Hi all, My company has pretty much standardized on Polycom phones and I am in the beginning phase of writing a GUI for administering/managing polycom provisioning at multiple sites which we intend to release as OS. I've started studying the docs and I'm having trouble understanding the following xml attribute: voIpProt.SIP.requestValidation.x.request.y.event I understand what it