Skip to content

Commit 1fa6edb

Browse files
committed
Update links to use https where possible
1 parent c0966d6 commit 1fa6edb

24 files changed

+69
-77
lines changed

development/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BUILDDIR = _build
99

1010
# User-friendly check for sphinx-build
1111
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12-
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
12+
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://sphinx-doc.org/)
1313
endif
1414

1515
# Internal variables.

development/cli/getting_started.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Getting started
44

55
The command line interface (CLI) is a useful utility for phpBB administrators who have access to a shell (or SSH) on the server they run phpBB on, as well as for extension developers. It provides CLI commands for managing config values, extensions, running database migration, purging the cache, and more.
66

7-
Most operating systems ship with a built in command line application. For Mac OS and Ubuntu it is called "Terminal" and for Windows it is called "Command Prompt". Third party software such as `PuTTY <http://www.putty.org>`_ and `iTerm <https://www.iterm2.com>`_ can also be used.
7+
Most operating systems ship with a built in command line application. For Mac OS and Ubuntu it is called "Terminal" and for Windows it is called "Command Prompt". Third party software such as `PuTTY <https://www.putty.org>`_ and `iTerm <https://www.iterm2.com>`_ can also be used.
88

99
To use phpBB's CLI on a web server, you will need SSH access to your web server. You can find out from your web hosting company if they offer SSH access and how to log into your web server from the CLI.
1010

@@ -111,7 +111,7 @@ The phpBB CLI installer uses a YAML file populated with the data needed to confi
111111
112112
server:
113113
cookie_secure: false
114-
server_protocol: http://
114+
server_protocol: https://
115115
force_server_vars: false
116116
server_name: localhost
117117
server_port: 80

development/db/dbal.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Database Abstraction Layer
33
==========================
44

5-
phpBB uses a **D**\ ata\ **B**\ ase **A**\ bstraction **L**\ ayer to access the database instead of directly calling e.g. `mysql_query <http://php.net/manual/en/function.mysql-query.php>`_ functions.
5+
phpBB uses a **D**\ ata\ **B**\ ase **A**\ bstraction **L**\ ayer to access the database instead of directly calling e.g. `mysql_query <https://php.net/manual/en/function.mysql-query.php>`_ functions.
66
You usually access the :abbr:`DBAL (Database Abstraction Layer)` using the global variable ``$db``.
77
This variable is included from :class:`common.php` through :class:`includes/compatibility_globals.php`:
88

development/development/css/css_guidelines.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,12 +323,12 @@ Our project makes use of several tools to lint and keep code up to standards.
323323

324324
.. note:: This is used to help automatically re-format your code on-the-fly to meet standards during the build process via ``gulp`` as well as on save in your editor.
325325

326-
.. note:: Our editors of choice are `PhpStorm`_ & `ATOM`_ which provide useful plugins to make use of these tools. Check out the `Editor Setup`_ section of the docs for more information
326+
.. note:: Our editors of choice are `PhpStorm`_ & `Visual Studio Code`_ which provide useful plugins to make use of these tools. Check out the `Editor Setup`_ section of the docs for more information
327327

328-
.. _stylelint.io: http://www.stylelint.io
328+
.. _stylelint.io: https://stylelint.io/
329329
.. _postcss-sorting: https://github.com/hudochenkov/postcss-sorting
330330
.. _postcss-pxtorem: https://github.com/cuth/postcss-pxtorem
331331
.. _stylefmt: https://github.com/morishitter/stylefmt
332332
.. _PhpStorm: https://www.jetbrains.com/phpstorm/
333-
.. _ATOM: http://www.atom.io
333+
.. _Visual Studio Code: https://code.visualstudio.com/
334334
.. _Editor Setup: /editor-setup

development/development/css/css_selectors.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ Further Reading
248248
- `Writing efficient CSS selectors`_
249249

250250

251-
.. _Shoot to kill; CSS selector intent: http://csswizardry.com/2012/07/shoot-to-kill-css-selector-intent/
252-
.. _‘Scope’ in CSS: http://csswizardry.com/2013/05/scope-in-css/
253-
.. _Keep your CSS selectors short: http://csswizardry.com/2012/05/keep-your-css-selectors-short/
254-
.. _About HTML semantics and front-end architecture: http://nicolasgallagher.com/about-html-semantics-front-end-architecture/
255-
.. _Naming UI components in OOCSS: http://csswizardry.com/2014/03/naming-ui-components-in-oocss/
256-
.. _Writing efficient CSS selectors: http://csswizardry.com/2011/09/writing-efficient-css-selectors/
251+
.. _Shoot to kill; CSS selector intent: https://csswizardry.com/2012/07/shoot-to-kill-css-selector-intent/
252+
.. _‘Scope’ in CSS: https://csswizardry.com/2013/05/scope-in-css/
253+
.. _Keep your CSS selectors short: https://csswizardry.com/2012/05/keep-your-css-selectors-short/
254+
.. _About HTML semantics and front-end architecture: https://nicolasgallagher.com/about-html-semantics-front-end-architecture/
255+
.. _Naming UI components in OOCSS: https://csswizardry.com/2014/03/naming-ui-components-in-oocss/
256+
.. _Writing efficient CSS selectors: https://csswizardry.com/2011/09/writing-efficient-css-selectors/

development/development/css/css_specificity.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ Further Reading
277277

278278
- `Hacks for dealing with specificity`_
279279

280-
.. _jsfiddle.net/0yb7rque: http://jsfiddle.net/csswizardry/0yb7rque/
281-
.. _known bug: https://twitter.com/codepo8/status/505004085398224896
282-
.. _‘Scope’ in CSS: http://csswizardry.com/2013/05/scope-in-css/
283-
.. _Hacks for dealing with specificity: http://csswizardry.com/2014/07/hacks-for-dealing-with-specificity/
280+
.. _jsfiddle.net/0yb7rque: https://jsfiddle.net/csswizardry/0yb7rque/
281+
.. _known bug: https://web.archive.org/web/20200512073642/https://twitter.com/codepo8/status/505004085398224896
282+
.. _‘Scope’ in CSS: https://csswizardry.com/2013/05/scope-in-css/
283+
.. _Hacks for dealing with specificity: https://csswizardry.com/2014/07/hacks-for-dealing-with-specificity/

development/development/css/css_standards.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,4 +255,4 @@ Preprocessor Comments
255255

256256
With most—if not all—preprocessors, we have the option to write comments that will not get compiled out into our resulting CSS file. As a rule, use these comments to speed up and prevent errors in the minification step.
257257

258-
.. _EditorConfig: http://editorconfig.org/
258+
.. _EditorConfig: https://editorconfig.org/

development/development/git.rst

Lines changed: 15 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ See `Set Up Git <https://help.github.com/articles/set-up-git>`_ for help on sett
3636

3737
Branches
3838
^^^^^^^^
39-
- `master <http://github.com/phpbb/phpbb/tree/master>`_ - The latest unstable development version with new features etc.
40-
- `3.3.x <http://github.com/phpbb/phpbb/tree/3.3.x>`_ - Development branch of the 3.3 line. Bug fixes and minor feature changes are applied here.
41-
- `3.2.x <http://github.com/phpbb/phpbb/tree/3.2.x>`_ - Development branch of the 3.2 line. Bug fixes and minor feature changes are applied here.
42-
- `3.1.x <http://github.com/phpbb/phpbb/tree/3.1.x>`_ - Development branch of the stable 3.1 line. phpBB 3.1 has reached its End of Life and is therefore no longer maintained.
43-
- `3.0.x <http://github.com/phpbb/phpbb/tree/3.0.x>`_ - Development branch of the stable 3.0 line. phpBB 3.0 has reached its End of Life and is therefore no longer maintained.
44-
- `2.0.x <http://github.com/phpbb/phpbb/tree/2.0.x>`_ - Development branch of the deprecated 2.0 line.
39+
- `master <https://github.com/phpbb/phpbb/tree/master>`_ - The latest unstable development version with new features etc.
40+
- `3.3.x <https://github.com/phpbb/phpbb/tree/3.3.x>`_ - Development branch of the 3.3 line. Bug fixes and minor feature changes are applied here.
41+
- `3.2.x <https://github.com/phpbb/phpbb/tree/3.2.x>`_ - Development branch of the 3.2 line. Bug fixes and minor feature changes are applied here.
42+
- `3.1.x <https://github.com/phpbb/phpbb/tree/3.1.x>`_ - Development branch of the stable 3.1 line. phpBB 3.1 has reached its End of Life and is therefore no longer maintained.
43+
- `3.0.x <https://github.com/phpbb/phpbb/tree/3.0.x>`_ - Development branch of the stable 3.0 line. phpBB 3.0 has reached its End of Life and is therefore no longer maintained.
44+
- `2.0.x <https://github.com/phpbb/phpbb/tree/2.0.x>`_ - Development branch of the deprecated 2.0 line.
4545

4646
Tags
4747
^^^^
@@ -196,8 +196,8 @@ and re-run the install command.
196196

197197
Once these hooks are installed, you simply need to run ``git commit`` to commit new
198198
changes. Depending on your environment, you will be prompted to add a commit message
199-
using `Vim <http://vimdoc.sourceforge.net/htmldoc/>`__ or
200-
`Emacs <https://www.gnu.org/software/emacs/manual/html_node/emacs/Help.html>`__. The
199+
using `Vim <https://vimhelp.org/>`__ or
200+
`Emacs <https://www.gnu.org/software/emacs/manual/html_node/emacs/Help-Summary.html>`__. The
201201
hooks will take care of formatting your entire commit message in the required format
202202
(see `Commit Messages`_).
203203

@@ -474,7 +474,7 @@ The difference is that, if you don't use the global option, any new repository y
474474
create will not have this option properly set for phpBB development which may cause
475475
errors to occur while committing or when executing any php file.
476476

477-
**For those who use** `TortoiseGit <http://code.google.com/p/tortoisegit/>`_
477+
**For those who use** `TortoiseGit <https://tortoisegit.org/>`_
478478
**(and used to work with TortoiseSVN):**
479479

480480
When you use TortoiseGit the first time, you need to disable ``AutoCrlf`` in
@@ -489,9 +489,6 @@ can correctly merge branches (*you need to do that on every git repository you h
489489

490490
Create your own SSH key
491491
-----------------------
492-
.. seealso::
493-
494-
http://help.github.com/win-set-up-git/
495492

496493
TortoiseGit will automatically use the SSH key
497494

@@ -525,16 +522,11 @@ Commands
525522
Further reading
526523
===============
527524

528-
* `Git Community Book (online) <http://book.git-scm.com/>`__
529-
* `Pro Git Book (online) <http://progit.org/book/>`__
530-
* `GitCasts <http://gitcasts.com/>`__
531-
* `Getting Git <http://www.techscreencast.com/tool/versioncontrol/railsconf-git-talk/810>`__
532-
* `RailsConf 2008 <http://en.oreilly.com/rails2008/public/content/home>`__ Git Talk by Scott Chacon
533-
* `Official Git Documentation <http://git-scm.com/documentation>`__
534-
* `Git Crash Course for SVN users <http://git-scm.com/course/svn.html>`__
535-
* `GitHub Guides <http://github.com/guides/home>`__
536-
* `Learn.GitHub <http://learn.github.com/>`__
537-
* `Git for the lazy <http://www.spheredev.org/wiki/Git_for_the_lazy>`__
525+
* `Git Community Book (online) <https://git-scm.com/book/en/v2>`__
526+
* `Official Git Documentation <https://git-scm.com/doc>`__
527+
* `GitHub Git Guide <https://github.com/git-guides>`__
528+
* `Git and GitHub learning resources <https://docs.github.com/en/get-started/start-your-journey/git-and-github-learning-resources>`__
529+
* `Git for the lazy <https://wiki.spheredev.org/index.php/Git_for_the_lazy>`__
538530

539531
External links
540532
==============
@@ -545,4 +537,4 @@ External links
545537
* `phpBB Extensions GitHub account <https://github.com/phpbb-extensions>`__
546538
* `TortoiseGit <https://tortoisegit.org/>`__ - A windows Git client based on TortoiseSVN
547539
* `TortoiseGit on github <https://github.com/TortoiseGit/TortoiseGit/>`__ - GitHub repository
548-
* `Open Source Contribution Etiquette <http://tirania.org/blog/archive/2010/Dec-31.html>`__
540+
* `Open Source Contribution Etiquette <https://tirania.org/blog/archive/2010/Dec-31.html>`__

development/extensions/modification_to_extension.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ In this example my **controller/main.php** would look like the following:
188188
*
189189
* @package NV Newspage Extension
190190
* @copyright (c) 2013 nickvergessen
191-
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
191+
* @license https://opensource.org/license/gpl-2-0 GNU General Public License v2
192192
*
193193
*/
194194
@@ -282,7 +282,7 @@ As for the ``main_info.php`` we need to adjust the class name from
282282
*
283283
* @package NV Newspage Extension
284284
* @copyright (c) 2013 nickvergessen
285-
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
285+
* @license https://opensource.org/license/gpl-2-0 GNU General Public License v2
286286
*
287287
*/
288288
@@ -325,7 +325,7 @@ In case of the module, just adjust the class name:
325325
*
326326
* @package NV Newspage Extension
327327
* @copyright (c) 2013 nickvergessen
328-
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
328+
* @license https://opensource.org/license/gpl-2-0 GNU General Public License v2
329329
*
330330
*/
331331
@@ -550,7 +550,7 @@ A complete file could look like this:
550550
*
551551
* @package migration
552552
* @copyright (c) 2013 phpBB Group
553-
* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
553+
* @license https://opensource.org/license/gpl-2-0 GNU Public License v2
554554
*
555555
*/
556556
@@ -652,7 +652,7 @@ implements a Symfony class:
652652
*
653653
* @package NV Newspage Extension
654654
* @copyright (c) 2013 nickvergessen
655-
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
655+
* @license https://opensource.org/license/gpl-2-0 GNU General Public License v2
656656
*
657657
*/
658658

development/extensions/new_in_rhea.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ A major change introduced by the new engine is how text (in posts, PMs, signatur
131131
Extensions that are storing their own messages with BBCodes and smilies should consider adding a TextReparser class to ensure their messages are updated to the new XML format. See `New Text Reparser`_ for more information.
132132

133133
.. seealso::
134-
The s9e/TextFormatter library `documentation and cookbook <http://s9etextformatter.readthedocs.io>`_.
134+
The s9e/TextFormatter library `documentation and cookbook <https://s9etextformatter.readthedocs.io/>`_.
135135

136136
New Text Reparser
137137
=================
@@ -274,7 +274,7 @@ phpBB 3.2 includes the Font Awesome toolkit. It is used by the default style Pro
274274

275275
The result of this is significant template changes to Prosilver, including some new CSS classes. Extensions written for phpBB 3.1 that make use of any of Prosilver's icons may need to be adjusted to be compatible with phpBB 3.2.
276276

277-
The benefit of the new `Font Awesome icons <http://fontawesome.io/icons/>`_ is they make it easy to improve GUI elements of your extension. For example, if an extension has a "Delete" link or button, you can easily add a nice little Trash Can icon to the link or button:
277+
The benefit of the new `Font Awesome icons <https://fontawesome.com/v4/icons/>`_ is they make it easy to improve GUI elements of your extension. For example, if an extension has a "Delete" link or button, you can easily add a nice little Trash Can icon to the link or button:
278278

279279
.. code-block:: html
280280

development/extensions/tutorial_advanced.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ executed until such time as false is returned.
184184
Using service collections
185185
=========================
186186
In 3.1, a new concept is that of "services". You can read up on exactly what a
187-
service is `here <http://symfony.com/doc/current/book/service_container.html>`_.
187+
service is `here <https://symfony.com/doc/current/service_container.html>`_.
188188
The rest of this guide will assume you have basic knowledge of services and how
189189
to use them. A service
190190
collection is basically what it sounds like: a collection of services. Basically,
@@ -255,7 +255,7 @@ loaded, which is especially useful in cases where service priority and/or depend
255255
requires they be loaded in a specified order.
256256

257257
Ordered service collections are based on a normal service collection, but the
258-
collection is sorted with `ksort <http://php.net/ksort>`_. The usage of the
258+
collection is sorted with `ksort <https://php.net/ksort>`_. The usage of the
259259
sorted service collection is nearly the same as a normal service collection,
260260
except instead of using ``service_collection`` you should use ``ordered_service_collection``:
261261

@@ -403,7 +403,7 @@ Using service decoration
403403
========================
404404
.. seealso::
405405
Read about Service Decoration at
406-
`Symfony <http://symfony.com/doc/current/components/dependency_injection/advanced.html#decorating-services>`_
406+
`Symfony <https://symfony.com/doc/current/service_container/alias_private.html#decorating-services>`_
407407
for complete documentation.
408408

409409
From phpBB 3.2, you can use service decoration as the preferred method to replace

development/extensions/tutorial_bbcodes.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following sample code shows how BBCodes can be toggled and manipulated using
8080
.. seealso::
8181

8282
https://area51.phpbb.com/docs/code/3.2.x/phpbb/textformatter/parser_interface.html
83-
http://s9etextformatter.readthedocs.io/Getting_started/Runtime_configuration/
83+
https://s9etextformatter.readthedocs.io/Getting_started/Runtime_configuration/
8484

8585

8686
Executing PHP Code With BBCodes
@@ -133,9 +133,9 @@ method to read and change its attributes during parsing based on who is being qu
133133
134134
.. seealso::
135135

136-
http://s9etextformatter.readthedocs.io/Filters/Attribute_filters/
137-
http://s9etextformatter.readthedocs.io/Filters/Tag_filters/
138-
http://s9etextformatter.readthedocs.io/Filters/Callback_signature/
136+
https://s9etextformatter.readthedocs.io/Filters/Attribute_filters/
137+
https://s9etextformatter.readthedocs.io/Filters/Tag_filters/
138+
https://s9etextformatter.readthedocs.io/Filters/Callback_signature/
139139

140140

141141
Template Parameters
@@ -242,8 +242,8 @@ your own template parameters, in addition to the default one's already available
242242
243243
.. seealso::
244244

245-
http://s9etextformatter.readthedocs.io/Templating/Template_parameters/
246-
http://s9etextformatter.readthedocs.io/Plugins/BBCodes/Use_template_parameters/
245+
https://s9etextformatter.readthedocs.io/Templating/Template_parameters/
246+
https://s9etextformatter.readthedocs.io/Plugins/BBCodes/Use_template_parameters/
247247

248248

249249
Registering Custom Variables
@@ -301,9 +301,9 @@ set the value before each parsing.
301301
.. seealso::
302302

303303
https://area51.phpbb.com/docs/code/3.2.x/phpbb/textformatter/parser_interface.html
304-
http://s9etextformatter.readthedocs.io/Filters/Callback_signature/
305-
http://s9etextformatter.readthedocs.io/Filters/Attribute_filters/
306-
http://s9etextformatter.readthedocs.io/Filters/Tag_filters/
304+
https://s9etextformatter.readthedocs.io/Filters/Callback_signature/
305+
https://s9etextformatter.readthedocs.io/Filters/Attribute_filters/
306+
https://s9etextformatter.readthedocs.io/Filters/Tag_filters/
307307

308308
Enable Text Formatter Plugins
309309
=============================
@@ -354,4 +354,4 @@ settings are configured.
354354
355355
.. seealso::
356356

357-
http://s9etextformatter.readthedocs.io
357+
https://s9etextformatter.readthedocs.io

development/extensions/tutorial_controllers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Tutorial: Controllers and Routes
55
Introduction
66
============
77

8-
phpBB 3.1 introduced Symfony's `HttpKernel <http://symfony.com/doc/current/components/http_kernel.html>`__,
8+
phpBB 3.1 introduced Symfony's `HttpKernel <https://symfony.com/doc/current/components/http_kernel.html>`__,
99
`Controller <https://symfony.com/doc/current/controller.html>`__ and
10-
`Routing <http://symfony.com/doc/current/routing.html>`__ systems which
10+
`Routing <https://symfony.com/doc/current/routing.html>`__ systems which
1111
allow extensions to handle custom "front-facing" pages that users are able
1212
to view and interact with.
1313

development/extensions/tutorial_events.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ the link in the navigation bar should now display ``Demo`` instead of
256256
phpBB’s core PHP and template files have been prepared with dozens of event locations.
257257
However, if there are no events where your extension may need one, the phpBB development
258258
team welcomes event requests at the
259-
`area51.com Event Requests <http://area51.phpbb.com/phpBB/viewforum.php?f=111>`_ forum.
259+
`area51.com Event Requests <https://area51.phpbb.com/phpBB/viewforum.php?f=111>`_ forum.
260260

261261
Prioritising event listeners (optional)
262262
---------------------------------------

development/language/guidelines.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ If your language pack is denied and then resubmitted, it is placed at the end of
161161

162162
.. _Customisations Database: https://www.phpbb.com/go/customise/language-packs/4.0
163163
.. _Language Packs Database: https://www.phpbb.com/languages/
164-
.. _GNU General Public License 2.0: http://www.opensource.org/licenses/gpl-2.0.php
164+
.. _GNU General Public License 2.0: https://opensource.org/license/gpl-2-0
165165
.. _4.0 Translation (i18n/L10n) Guidelines: https://area51.phpbb.com/docs/40x/coding-guidelines.html#translation
166166
.. _4.0 Writing style: https://area51.phpbb.com/docs/40x/coding-guidelines.html#writingstyle
167167
.. _Notepad++: https://notepad-plus-plus.org/

0 commit comments

Comments
 (0)