branch: elpa/drupal-mode
commit e20d8fefaa395b91d8cd40020abbcec0d9afb213
Author: Arne Jørgensen <[email protected]>
Commit: Arne Jørgensen <[email protected]>
Swicth to https links to Drupal.org.
Also changed links to Drush (now on Github) and Coder Sniffer (now part
of coder.module).
---
drupal-mode.el | 18 +++++++++---------
drupal/emacs-drush.el | 4 ++--
drupal/ispell.el | 4 ++--
drupal/phpcs.el | 2 +-
drupal/webjump.el | 4 ++--
5 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/drupal-mode.el b/drupal-mode.el
index 6b08360807..7a7f114ba9 100644
--- a/drupal-mode.el
+++ b/drupal-mode.el
@@ -67,7 +67,7 @@ a single newline (\\n)."
(const :tag "Always" t)
(const :tag "Never" nil)
(const :tag "Ask" ask))
- :link '(url-link :tag "drupal.org"
"http://drupal.org/coding-standards#indenting")
+ :link '(url-link :tag "drupal.org"
"https://drupal.org/coding-standards#indenting")
:group 'drupal)
@@ -88,7 +88,7 @@ whitespace at the end."
(const :tag "Always" always)
(const :tag "Default" default)
(const :tag "Never" never))
- :link '(url-link :tag "drupal.org"
"http://drupal.org/coding-standards#indenting")
+ :link '(url-link :tag "drupal.org"
"https://drupal.org/coding-standards#indenting")
:group 'drupal)
@@ -123,7 +123,7 @@ whitespace at the end."
"Name of the Drush executable.
Include path to the executable if it is not in your $PATH."
:type 'file
- :link '(url-link :tag "Drush" "http://drupal.org/project/drush")
+ :link '(url-link :tag "Drush" "https://github.com/drush-ops/drush")
:group 'drupal-drush)
@@ -283,8 +283,8 @@ function arguments.")
(c-special-indent-hook . c-gnu-impose-minimum)
)
"Drupal coding style.
-According to http://drupal.org/coding-standards#indenting."
- :link '(url-link :tag "drupal.org"
"http://drupal.org/coding-standards#indenting")
+According to https://drupal.org/coding-standards#indenting."
+ :link '(url-link :tag "drupal.org"
"https://drupal.org/coding-standards#indenting")
:group 'drupal)
(c-add-style "drupal" drupal-style)
@@ -351,13 +351,13 @@ of the project)."
(define-key drupal-mode-map
[menu-bar drupal drupal-project drupal-project-bugs]
- '(menu-item "Bug reports" (lambda () (interactive) (browse-url (concat
"http://drupal.org/project/issues/" drupal-project "?categories=bug")))))
+ '(menu-item "Bug reports" (lambda () (interactive) (browse-url (concat
"https://drupal.org/project/issues/" drupal-project "?categories=bug")))))
(define-key drupal-mode-map
[menu-bar drupal drupal-project drupal-project-issues]
- '(menu-item "Issues" (lambda () (interactive) (browse-url (concat
"http://drupal.org/project/issues/" drupal-project "?categories=All")))))
+ '(menu-item "Issues" (lambda () (interactive) (browse-url (concat
"https://drupal.org/project/issues/" drupal-project "?categories=All")))))
(define-key drupal-mode-map
[menu-bar drupal drupal-project drupal-project-home]
- '(menu-item "Project page" (lambda () (interactive) (browse-url (concat
"http://drupal.org/project/" drupal-project)))))
+ '(menu-item "Project page" (lambda () (interactive) (browse-url (concat
"https://drupal.org/project/" drupal-project)))))
(define-key drupal-mode-map
[menu-bar drupal drupal-project drupal-project-separator]
'("--"))
@@ -372,7 +372,7 @@ of the project)."
(defun drupal-convert-line-ending ()
"Convert to unix style line ending.
-According to http://drupal.org/coding-standards#indenting you
+According to https://drupal.org/coding-standards#indenting you
should save your files with unix style end of line."
(when (and drupal-mode
drupal-convert-line-ending
diff --git a/drupal/emacs-drush.el b/drupal/emacs-drush.el
index d483e6c2ee..bc6245278c 100644
--- a/drupal/emacs-drush.el
+++ b/drupal/emacs-drush.el
@@ -22,7 +22,7 @@
;;; Commentary:
;; You need to install `Drush utilities for Emacs users'
-;; <http://drupal.org/project/emacs_drush> for this to work.
+;; <https://drupal.org/project/emacs_drush> for this to work.
;; If `Drush utilities for Emacs users' is installed it will run
;; `drush etags' on `after-save-hook' if a TAGS file is present in
@@ -41,7 +41,7 @@ Requires `Drush utilities for Emacs users' to be installed."
:type `(choice
(const :tag "Yes" t)
(const :tag "No" nil))
- :link '(url-link :tag "Drush utilities for Emacs users"
"http://drupal.org/project/emacs_drush")
+ :link '(url-link :tag "Drush utilities for Emacs users"
"https://drupal.org/project/emacs_drush")
:group 'drupal)
(defun drupal/emacs-drush-run-after-save ()
diff --git a/drupal/ispell.el b/drupal/ispell.el
index 06274bee76..7f7ea05cca 100644
--- a/drupal/ispell.el
+++ b/drupal/ispell.el
@@ -1,6 +1,6 @@
;;; drupal/ispell.el --- Drupal-mode support for ispell
-;; Copyright (C) 2012 Arne Jørgensen
+;; Copyright (C) 2012, 2013 Arne Jørgensen
;; Author: Arne Jørgensen <[email protected]>
@@ -30,7 +30,7 @@
(defun drupal/ispell-enable ()
"Set `ispell-local-dictionary' to `american'.
Comments and names should use US English spelling (e.g., `color'
-not `colour') according to http://drupal.org/coding-standards."
+not `colour') according to https://drupal.org/coding-standards."
(when (member "american" (ispell-valid-dictionary-list))
(setq ispell-local-dictionary "american")))
diff --git a/drupal/phpcs.el b/drupal/phpcs.el
index a83c2b024c..c9fd848df8 100644
--- a/drupal/phpcs.el
+++ b/drupal/phpcs.el
@@ -43,7 +43,7 @@ This can either be the name of an installed standard (to see
installed standards run `phpcs -i') or it can be the file name of
a standard. Adding file name requires PHP CodeSniffer version
1.3.4 or newer."
- :link '(url-link :tag "Drupal Code Sniffer"
"http://drupal.org/project/drupalcs")
+ :link '(url-link :tag "Drupal Coder Sniffer"
"https://drupal.org/node/1419980")
:group 'drupal)
diff --git a/drupal/webjump.el b/drupal/webjump.el
index 99b77e55b1..4fc10dd9f5 100644
--- a/drupal/webjump.el
+++ b/drupal/webjump.el
@@ -1,6 +1,6 @@
;;; drupal/webjump.el --- Drupal projects as webjump sites
-;; Copyright (C) 2012 Arne Jørgensen
+;; Copyright (C) 2012, 2013 Arne Jørgensen
;; Author: Arne Jørgensen <[email protected]>
@@ -26,7 +26,7 @@
(require 'webjump)
-(add-to-list 'webjump-sites '("Drupal" . [simple-query "drupal.org"
"drupal.org/project/" ""]))
+(add-to-list 'webjump-sites '("Drupal" . [simple-query "drupal.org"
"https://drupal.org/project/" ""]))