[ESS] Trouble getting my password reset

Nielsen, Krystle DLA CTR DISTRIBUTION HILL, UT krystle.nielsen.ctr at dla.mil
Thu Feb 24 05:23:22 CET 2011


This is the correct address to send my a NEW PASSWORD to get my direct
deposit set up or a phone number that I can help for help need PASSWORD
RESET please thanks 
krystle.nielsen.ctr at dla.mil


-----Original Message-----
From: ess-help-bounces at r-project.org
[mailto:ess-help-bounces at r-project.org] On Behalf Of
ess-help-request at r-project.org
Sent: Monday, February 21, 2011 4:00 AM
To: ess-help at r-project.org
Subject: ESS-help Digest, Vol 96, Issue 25

Send ESS-help mailing list submissions to
	ess-help at r-project.org

To subscribe or unsubscribe via the World Wide Web, visit
	https://stat.ethz.ch/mailman/listinfo/ess-help
or, via email, send a message with subject or body 'help' to
	ess-help-request at r-project.org

You can reach the person managing the list at
	ess-help-owner at r-project.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of ESS-help digest..."


Today's Topics:

   1. Re:  Emacs Modified available (Vincent Goulet)
   2.  [patch] minor modifications to .*paragraph-and-step
      functions (Erik Iverson)
   3. Re:  list email address on web site doesn't work
      (Michele Marcionelli)


----------------------------------------------------------------------

Message: 1
Date: Sun, 20 Feb 2011 13:57:08 -0500
From: Vincent Goulet <Vincent.Goulet at act.ulaval.ca>
To: Paul Johnson <pauljohn32 at gmail.com>
Cc: ess-help <ESS-help at stat.math.ethz.ch>
Subject: Re: [ESS] Emacs Modified available
Message-ID: <DE797619-A055-46B4-9BFE-920FB4C30A76 at act.ulaval.ca>
Content-Type: text/plain; charset="iso-8859-1"


Le 2011-02-18 ? 23:20, Paul Johnson a ?crit :

> On Sat, Feb 12, 2011 at 2:04 AM, Vincent Goulet
> <Vincent.Goulet at act.ulaval.ca> wrote:
>> I finally managed to set up my web site on a new server provided by
my faculty. Therefore, the Emacs for [Windows|OS X] Modified
distribution is now available at the usual address:
>> 
>>        http://vgoulet.act.ulaval.ca/en/emacs/
>> 
>> I took to opportunity to simplify and overhaul the site a bit. And
use a more recent picture on the home page... ;-)
>> 
>> Sorry for the inconvenience and the delay.
> 
> 
> Thanks for doing this. I truly appreciate the effort. And framepop?
> how much better can it get than that!
> 
> Can you tell me something.  How "smart" are these windows installers
> about upgrading an existing Emacs install?

Very little, I'm think!

>  Will they remove the old
> version for us automatically?

Not that I know of, but I'm far from being a reference on these things.
Personally, I always remove before I install a new version.

> 
> Here's why I ask. Last time, I installed Emacs in a folder that does
> not mention the version number,
> 
> C:\Program Files\GNUEmacs
> 
> Will this one notice that and install in the same place (I hope yes).

I'm pretty sure the Inno installer will overwrite existing files (good),
install new files (good), but leave there old files behind (bad).

> 
> I do lots of Linux packaging, and I know how I wish this would work in
> Windows, but I am afraid...

Linux packagers are much smarter in every respect. I also like the Mac
way of doing things: most applications are one bundle that you simply
copy in your /Applications folder to install and drag in the Trash to
delete. Neat.

v.

> 
> pj
> -- 
> Paul E. Johnson
> Professor, Political Science
> 1541 Lilac Lane, Room 504
> University of Kansas
> 
> ______________________________________________
> ESS-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/ess-help



------------------------------

Message: 2
Date: Sun, 20 Feb 2011 22:06:53 -0600
From: Erik Iverson <eriki at ccbr.umn.edu>
To: ess-help <ess-help at stat.math.ethz.ch>
Subject: [ESS] [patch] minor modifications to .*paragraph-and-step
	functions
Message-ID: <4D61E4DD.10106 at ccbr.umn.edu>
Content-Type: text/plain; charset="ISO-8859-1"; format=flowed

Hello,

I find the following small change useful when using C-c C-c to
step through R code. It uses (ess-next-code-line) to move around
the buffer after evaluation, skipping blank lines and comments.
Might be useful for others, seems to work fine in my cursory testing.

--Erik

Index: lisp/ess-inf.el
===================================================================
--- lisp/ess-inf.el	(revision 4461)
+++ lisp/ess-inf.el	(working copy)
@@ -1218,7 +1218,8 @@
  	  (princ (concat "Loading: " name) t)
  	  (ess-eval-region beg end-fun vis
  			   (concat "Eval function " name))
-	  (goto-char (1+ end-fun)))
+	  (goto-char end-fun)
+	  (ess-next-code-line))
        ;; else: not in a function
        (ess-eval-paragraph-and-step vis)
        ))
@@ -1331,7 +1332,8 @@
  the next paragraph.  Arg has same meaning as for `ess-eval-region'."
    (interactive "P")
    (let ((beg-end (ess-eval-paragraph vis)))
-    (goto-char (1+ (cadr beg-end))))
+    (goto-char (cadr beg-end))
+    (ess-next-code-line))
  )

  ;;; Related to the ess-eval-* commands, there are the ess-load



------------------------------

Message: 3
Date: Mon, 21 Feb 2011 08:18:00 +0100
From: Michele Marcionelli <michele.marcionelli at math.ethz.ch>
To: Martin Maechler <maechler at stat.math.ethz.ch>
Cc: Scott Otterson <scotto at sharpleaf.org>,	Stephen Eglen
	<S.J.Eglen at damtp.cam.ac.uk>,	ess-help
<ess-help at stat.math.ethz.ch>
Subject: Re: [ESS] list email address on web site doesn't work
Message-ID: <0BB536D7-7360-4661-A3B0-9DC24F23E1BF at math.ethz.ch>
Content-Type: text/plain; charset="windows-1252"

Hi Martin

I fixed the problem and the list seems to work again correctly.

Kind regards,
Michele


On Feb 19, 2011, at 21:08 , Martin Maechler wrote:

> On Mon, Feb 14, 2011 at 22:36, Stephen Eglen
<S.J.Eglen at damtp.cam.ac.uk> wrote:
>> Scott Otterson <scotto at sharpleaf.org> wrote:
>> 
>>>     ess-help at r-project.org
>> 
>> hi Scott, thanks for pointing out that this address doesn't work --
>> we'll try to get this fixed soon, as it also didn't work for Rodney
and
>> me.
>> 
>> Best wishes, Stephen
>> 
>> ______________________________________________
>> ESS-help at r-project.org mailing list
> 
> ^^^^
> 
> as it says here, this *is* the address that should work, and will
> eventually be the only address that works.
> Some IT powers at ETH have decided to urge all users e-mail onto an
> ETH central abomination M$ server,... and we have agreed that all
> @r-project.org mailing lists would remain @r-project.org and addressed
> that way (and that the @stat.math.ethz.ch *aliases* would continue to
> work for a while ...).
> 
> So we have a messup somewhere in our e-mail configurations..
> hence I'm BCCing this e-mail to someone who should fix the problem
> hopefully by Monday at least...
> 
> Martin
>> https://stat.ethz.ch/mailman/listinfo/ess-help
>> 
>> 

-- 
ETH Z?rich
Michele Marcionelli
IT Support Gruppe D-MATH
HG G 32.1
R?mistrasse 101
CH?8092 Z?rich

michele.marcionelli at math.ethz.ch
http://www.math.ethz.ch/~michele

+41 44 632 6193 Telefon
+41 44 632 1354 Fax



------------------------------

_______________________________________________
ESS-help mailing list  DIGESTED
ESS-help at r-project.org
https://stat.ethz.ch/mailman/listinfo/ess-help


End of ESS-help Digest, Vol 96, Issue 25



More information about the ESS-help mailing list