From 4cfde44d09feea44a258505559abde48c193453d Mon Sep 17 00:00:00 2001 From: Donald Curtis Date: Thu, 8 Nov 2012 13:58:19 -0600 Subject: [PATCH] removed fixed issues from index page A number of issues are no longer valid due to changes to Emacs upstream. --- html/index.erb | 34 ++++------------------------------ 1 file changed, 4 insertions(+), 30 deletions(-) diff --git a/html/index.erb b/html/index.erb index b87ea160..59667dd9 100644 --- a/html/index.erb +++ b/html/index.erb @@ -100,26 +100,11 @@ You can then customize two variables: ## Known Issues -Due to the way the HTTP routing works on my provider, the HTTP/1.1 -connection will time out for long package installs--where the -package is large and takes a while to compile--like *magit* or *evil*. If you run into problems with complaints about the response from the web server consider adding +**Note:** *This fix are included in the `melpa.el` package.* - - - (setq url-http-attempt-keepalives nil) - -This makes things a tad more slow but means that the install completes -correctly. Otherwise the connection times out and the install goes haywire. - -### Fixes for `package.el` - -**Note:** *These fixes are included in the `melpa.el` package.* - -There are a number of small bugs in Emacs24's `package.el`. First, -when installing dependencies, the packages were not getting -initialized. Second, the order for dependencies was coming out -backwards for what I needed. Both problems are - easily patched by some *advice*. +There is a small bug in Emacs24's `package.el` the order for +dependencies comes out backwards for what I needed. the problem is +patched by some *advice*. @@ -131,17 +116,6 @@ backwards for what I needed. Both problems are (setq requirements (reverse requirements)) (print requirements)) -If you are not using Emacs24 from HEAD, you may also need this to initialize packages after they are downloaded and installed. - - (defadvice package-download-tar - (after package-download-tar-initialize activate compile) - "initialize the package after compilation" - (package-initialize)) - - (defadvice package-download-single - (after package-download-single-initialize activate compile) - "initialize the package after compilation" - (package-initialize)) ## Updating Packages