Hello List-Members: Just to clarify, yes, I have used editor = '''/usr/bin/gedit''' editold = '''%(e)s -f +%(n)s %(f)s''' editnew = '''%(e)s -f + %(f)s'''
as this page indicated... http://www.duke.edu/~dgraham/wxRemind/WXREMINDRC-LINUX I tried triple single quote (''') and a single+double ('") and double+single quote ("') These settings at least opens gedit and opens a new file called "set but it's empty. editor = '''/usr/bin/gedit''' # editold = '"%(e)s -f +%(n)s %(f)s"' # editnew = '"%(e)s -f + %(f)s"' Nothing else works. Thanks Jostein! On Wed, Sep 15, 2010 at 12:00 PM, < [email protected]> wrote: > Send Remind-fans mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > > http://lists.roaringpenguin.com/cgi-bin/mailman/listinfo/remind-fans > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Remind-fans digest..." > > Today's Topics: > > 1. Re: Remind Wiki (David Rogers) > 2. Re: Remind Wiki (David F. Skoll) > 3. Re: Problem with German month names in remind scripts > (Simon Ruderich) > 4. Re: wxremind and editing events (Jostein Berntsen) > 5. Re: Problem with German month names in remind scripts > (Simon Ruderich) > 6. Re: Remind and UTF-8 (Kresimir Kumericki) > > > ---------- Forwarded message ---------- > From: David Rogers <[email protected]> > To: Users of Remind <[email protected]> > Date: Tue, 14 Sep 2010 11:35:07 -0700 > Subject: Re: [Remind-Fans] Remind Wiki > * David F. Skoll <[email protected]> [2010-09-13 14:29]: > > Hi, >> >> I've set up a wiki on our site. I used mediawiki rather than ikiwiki >> because it's much easier to set up and use and looks a whole lot nicer. >> >> Anyway, the wiki is here: >> http://www.roaringpenguin.com/wiki/index.php/Main_Page >> >> There is essentially no content yet. If someone would like to suck >> content from the 43Folders wiki and/or add original content... please >> do so! >> > > > I have no experience with this type of thing. Is there any issue with > getting permission from authors, making attributions, and so on, or is a > simple copy and paste all there is to transferring wiki material? > > -- > Thanks > David > > > > ---------- Forwarded message ---------- > From: "David F. Skoll" <[email protected]> > To: Users of Remind <[email protected]> > Date: Tue, 14 Sep 2010 14:39:26 -0400 > Subject: Re: [Remind-Fans] Remind Wiki > On 09/14/10 14:35, David Rogers wrote: > > > I have no experience with this type of thing. Is there any issue with > > getting permission from authors, making attributions, and so on, or is a > > simple copy and paste all there is to transferring wiki material? > > The 43Folders wiki content is licensed under > "Attribution-NonCommercial-ShareAlike 2.5" > (http://creativecommons.org/licenses/by-nc-sa/2.5/) so I'm guessing > a cut-n-paste is allowed. Hmm... attribution is tricky... > Maybe I'll just email the 43Folders owner and ask his opinion. > > Regards, > > David. > > > > > > > ---------- Forwarded message ---------- > From: Simon Ruderich <[email protected]> > To: [email protected] > Date: Tue, 14 Sep 2010 21:34:04 +0200 > Subject: Re: [Remind-Fans] Problem with German month names in remind > scripts > On Mon, Sep 13, 2010 at 08:17:34PM -0400, David F. Skoll wrote: > > Your patch is almost correct (I've put a corrected version at the end of > > this message.) > > Thanks for your quick reply, it works fine for me. Will this get > included in future version of remind? Is there a VCS with > unreleased changes? > > > But I recommend against using non-English month names, etc. This will > > make your file less portable. It will only work with a version of Remind > > compiled for German. > > Yes, you're right, that's a good idea. I was just curious why it > didn't worked, as the man page suggested it would. But I will use > English names from now on. > > > (I think it was a misfeature for Remind to accept localized names on > *input* > > and it might be removed in a future version.) > > > > Regards, > > David. > > Thanks, > Simon > -- > + privacy is necessary > + using gnupg http://gnupg.org > + public key id: 0x92FEFDB7E44C32F9 > > > ---------- Forwarded message ---------- > From: Jostein Berntsen <[email protected]> > To: [email protected] > Date: Tue, 14 Sep 2010 22:08:10 +0200 > Subject: Re: [Remind-Fans] wxremind and editing events > On 13.09.10,23:11, John Jones wrote: > > Hello: > > > > I have installed wxremind 101 as a GUI front-end to remind version > 03.01.07 > > Everything seems to be functional except editing the current > ~/.reminders. > > I can add events using the GUI, but not edit them. > > > > "Unable to edit using: > > '/usr/bin/gedit' > > Check settings in ~/.wxremindrc" > > > > Now if I switch "editor = '/usr/bin/gedit'" to "editor = > > '/usr/bin/mousepad'" it opens up a mousepad window > > but no file is shown to edit. It's blank. > > > > ~/.wxremindrc settings re: edit/files: > > reminders = '''/home/JJ/.reminders''' > > current = '''/home/JJ/.reminders''' > > > > and the editor section specifically: > > editor = '/usr/bin/mousepad' > > editold = '%(e)s -f +%(n)s %(f)s' > > editnew = '%(e)s -f + %(f)s' > > > > The settings in my .wxremindrc are: > > ### Edit settings > ### editor: the full path to the external editor > ### editold: the command for editing an old reminder > ### editnew: the command for editing an new reminder > ### Both editold and editnew use the following SUBSTITUTIONS: > ### %(e)s -> editor > ### %(n)s -> the line number to edit > ### %(f)s -> the file name > editor = '''/usr/bin/gvim''' > editold = '''%(e)s -f +%(n)s %(f)s''' > editnew = '''%(e)s -f + %(f)s''' > # editor = '''/usr/bin/emacs''' > # editold = '''%(e)s +%(n)s %(f)s''' > # editnew = '''%(e)s +999999 %(f)s''' > > > See the triple quoutes. Have you tried that? > > > Jostein > > > > > > > > > ---------- Forwarded message ---------- > From: Simon Ruderich <[email protected]> > To: [email protected] > Date: Tue, 14 Sep 2010 22:08:59 +0200 > Subject: Re: [Remind-Fans] Problem with German month names in remind > scripts > On Tue, Sep 14, 2010 at 09:34:04PM +0200, Simon Ruderich wrote: > > [snip] > > Is there a VCS with > > unreleased changes? > > Never mind, found it: git.roaringpenguin.com > > > [snip] > > -- > + privacy is necessary > + using gnupg http://gnupg.org > + public key id: 0x92FEFDB7E44C32F9 > > > ---------- Forwarded message ---------- > From: Kresimir Kumericki <[email protected]> > To: Users of Remind <[email protected]> > Date: Wed, 15 Sep 2010 10:18:07 +0200 > Subject: Re: [Remind-Fans] Remind and UTF-8 > On (13 Sep 08:59), David F. Skoll wrote: > > It looks like properly supporting UTF-8 in PostScript is quite hard. > > So there's no ETA yet on when that will be fixed in Remind. > > Yes. I hoped that I could solve this via the following chain: > > remind -m -p1 ~/.reminders | \ > iconv -f UTF-8 -t ISO-8859-2 | \ > rem2ps <-i> | \ > ogonkify <some options> > cal.ps > > But it doesn't work. Never mind ... > > > > -- > Kresimir Kumericki > http://www.phy.hr/~kkumer/<http://www.phy.hr/%7Ekkumer/> > > > _______________________________________________ > Remind-fans mailing list > [email protected] > http://lists.roaringpenguin.com/cgi-bin/mailman/listinfo/remind-fans > Remind is at http://www.roaringpenguin.com/products/remind > > _______________________________________________ Remind-fans mailing list [email protected] http://lists.roaringpenguin.com/cgi-bin/mailman/listinfo/remind-fans Remind is at http://www.roaringpenguin.com/products/remind
