Displaying 2 results from an estimated 2 matches for "entry3".
Did you mean:
entry
2007 Aug 14
2
Question about unicode characters in tcltk
...t R won't
recognize the unicode for? Or am I input the \u2080 incorrectly?
library(tcltk)
m <-tktoplevel()
frame1 <- tkframe(m)
frame2 <- tkframe(m)
frame3 <- tkframe(m)
entry1 <- tkentry(frame1,width=5,bg='white')
entry2 <- tkentry(frame2,width=5,bg='white')
entry3 <- tkentry(frame3,width=5,bg='white')
tkpack(tklabel(frame1,text='\u03bc\u2080'),side='left')
tkpack(tklabel(frame2,text='\u03bc\u2081'),side='left')
tkpack(tklabel(frame3,text='\u03bc\u2082'),side='left')
tkpack(frame1,entry1,side='t...
2012 Jul 25
2
Purge-like ability for the augeas type?
I''ve been searching around but haven''t found a way to do something
like a purge with augeas.
If you have a file such as
[iniheader]
entry1 (managed by puppet)
entry2 (not managed by puppet)
And you want to add ''entry3'' as well as removing anything not managed
by puppet in that subsection then you currently do not have this
capability.
Is this correct?
I know how to get around this with concat, but I was hoping to not mix
the two for a single file set.
Thanks,
Trevor
--
Trevor Vaughan
Vice Presiden...