Skip to content

Commit e20d8fe

Browse files
committed
Swicth to https links to Drupal.org.
Also changed links to Drush (now on Github) and Coder Sniffer (now part of coder.module).
1 parent 8eec967 commit e20d8fe

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

drupal-mode.el

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ a single newline (\\n)."
6767
(const :tag "Always" t)
6868
(const :tag "Never" nil)
6969
(const :tag "Ask" ask))
70-
:link '(url-link :tag "drupal.org" "http://drupal.org/coding-standards#indenting")
70+
:link '(url-link :tag "drupal.org" "https://drupal.org/coding-standards#indenting")
7171
:group 'drupal)
7272

7373

@@ -88,7 +88,7 @@ whitespace at the end."
8888
(const :tag "Always" always)
8989
(const :tag "Default" default)
9090
(const :tag "Never" never))
91-
:link '(url-link :tag "drupal.org" "http://drupal.org/coding-standards#indenting")
91+
:link '(url-link :tag "drupal.org" "https://drupal.org/coding-standards#indenting")
9292
:group 'drupal)
9393

9494

@@ -123,7 +123,7 @@ whitespace at the end."
123123
"Name of the Drush executable.
124124
Include path to the executable if it is not in your $PATH."
125125
:type 'file
126-
:link '(url-link :tag "Drush" "http://drupal.org/project/drush")
126+
:link '(url-link :tag "Drush" "https://github.com/drush-ops/drush")
127127
:group 'drupal-drush)
128128

129129

@@ -283,8 +283,8 @@ function arguments.")
283283
(c-special-indent-hook . c-gnu-impose-minimum)
284284
)
285285
"Drupal coding style.
286-
According to http://drupal.org/coding-standards#indenting."
287-
:link '(url-link :tag "drupal.org" "http://drupal.org/coding-standards#indenting")
286+
According to https://drupal.org/coding-standards#indenting."
287+
:link '(url-link :tag "drupal.org" "https://drupal.org/coding-standards#indenting")
288288
:group 'drupal)
289289

290290
(c-add-style "drupal" drupal-style)
@@ -351,13 +351,13 @@ of the project)."
351351

352352
(define-key drupal-mode-map
353353
[menu-bar drupal drupal-project drupal-project-bugs]
354-
'(menu-item "Bug reports" (lambda () (interactive) (browse-url (concat "http://drupal.org/project/issues/" drupal-project "?categories=bug")))))
354+
'(menu-item "Bug reports" (lambda () (interactive) (browse-url (concat "https://drupal.org/project/issues/" drupal-project "?categories=bug")))))
355355
(define-key drupal-mode-map
356356
[menu-bar drupal drupal-project drupal-project-issues]
357-
'(menu-item "Issues" (lambda () (interactive) (browse-url (concat "http://drupal.org/project/issues/" drupal-project "?categories=All")))))
357+
'(menu-item "Issues" (lambda () (interactive) (browse-url (concat "https://drupal.org/project/issues/" drupal-project "?categories=All")))))
358358
(define-key drupal-mode-map
359359
[menu-bar drupal drupal-project drupal-project-home]
360-
'(menu-item "Project page" (lambda () (interactive) (browse-url (concat "http://drupal.org/project/" drupal-project)))))
360+
'(menu-item "Project page" (lambda () (interactive) (browse-url (concat "https://drupal.org/project/" drupal-project)))))
361361
(define-key drupal-mode-map
362362
[menu-bar drupal drupal-project drupal-project-separator]
363363
'("--"))
@@ -372,7 +372,7 @@ of the project)."
372372

373373
(defun drupal-convert-line-ending ()
374374
"Convert to unix style line ending.
375-
According to http://drupal.org/coding-standards#indenting you
375+
According to https://drupal.org/coding-standards#indenting you
376376
should save your files with unix style end of line."
377377
(when (and drupal-mode
378378
drupal-convert-line-ending

drupal/emacs-drush.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
;;; Commentary:
2323

2424
;; You need to install `Drush utilities for Emacs users'
25-
;; <http://drupal.org/project/emacs_drush> for this to work.
25+
;; <https://drupal.org/project/emacs_drush> for this to work.
2626

2727
;; If `Drush utilities for Emacs users' is installed it will run
2828
;; `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."
4141
:type `(choice
4242
(const :tag "Yes" t)
4343
(const :tag "No" nil))
44-
:link '(url-link :tag "Drush utilities for Emacs users" "http://drupal.org/project/emacs_drush")
44+
:link '(url-link :tag "Drush utilities for Emacs users" "https://drupal.org/project/emacs_drush")
4545
:group 'drupal)
4646

4747
(defun drupal/emacs-drush-run-after-save ()

drupal/ispell.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; drupal/ispell.el --- Drupal-mode support for ispell
22

3-
;; Copyright (C) 2012 Arne Jørgensen
3+
;; Copyright (C) 2012, 2013 Arne Jørgensen
44

55
;; Author: Arne Jørgensen <[email protected]>
66

@@ -30,7 +30,7 @@
3030
(defun drupal/ispell-enable ()
3131
"Set `ispell-local-dictionary' to `american'.
3232
Comments and names should use US English spelling (e.g., `color'
33-
not `colour') according to http://drupal.org/coding-standards."
33+
not `colour') according to https://drupal.org/coding-standards."
3434
(when (member "american" (ispell-valid-dictionary-list))
3535
(setq ispell-local-dictionary "american")))
3636

drupal/phpcs.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This can either be the name of an installed standard (to see
4343
installed standards run `phpcs -i') or it can be the file name of
4444
a standard. Adding file name requires PHP CodeSniffer version
4545
1.3.4 or newer."
46-
:link '(url-link :tag "Drupal Code Sniffer" "http://drupal.org/project/drupalcs")
46+
:link '(url-link :tag "Drupal Coder Sniffer" "https://drupal.org/node/1419980")
4747
:group 'drupal)
4848

4949

drupal/webjump.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; drupal/webjump.el --- Drupal projects as webjump sites
22

3-
;; Copyright (C) 2012 Arne Jørgensen
3+
;; Copyright (C) 2012, 2013 Arne Jørgensen
44

55
;; Author: Arne Jørgensen <[email protected]>
66

@@ -26,7 +26,7 @@
2626

2727
(require 'webjump)
2828

29-
(add-to-list 'webjump-sites '("Drupal" . [simple-query "drupal.org" "drupal.org/project/" ""]))
29+
(add-to-list 'webjump-sites '("Drupal" . [simple-query "drupal.org" "https://drupal.org/project/" ""]))
3030

3131

3232

0 commit comments

Comments
 (0)