You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: development/Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ BUILDDIR = _build
9
9
10
10
# User-friendly check for sphinx-build
11
11
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/)
Copy file name to clipboardExpand all lines: development/cli/getting_started.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Getting started
4
4
5
5
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.
6
6
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.
8
8
9
9
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.
10
10
@@ -111,7 +111,7 @@ The phpBB CLI installer uses a YAML file populated with the data needed to confi
Copy file name to clipboardExpand all lines: development/db/dbal.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
Database Abstraction Layer
3
3
==========================
4
4
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.
6
6
You usually access the :abbr:`DBAL(Database Abstraction Layer)` using the global variable ``$db``.
7
7
This variable is included from :class:`common.php` through :class:`includes/compatibility_globals.php`:
Copy file name to clipboardExpand all lines: development/development/css/css_guidelines.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -323,12 +323,12 @@ Our project makes use of several tools to lint and keep code up to standards.
323
323
324
324
.. 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.
325
325
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
Copy file name to clipboardExpand all lines: development/development/css/css_standards.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -255,4 +255,4 @@ Preprocessor Comments
255
255
256
256
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.
Copy file name to clipboardExpand all lines: development/development/git.rst
+15-23Lines changed: 15 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,12 +36,12 @@ See `Set Up Git <https://help.github.com/articles/set-up-git>`_ for help on sett
36
36
37
37
Branches
38
38
^^^^^^^^
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.
45
45
46
46
Tags
47
47
^^^^
@@ -196,8 +196,8 @@ and re-run the install command.
196
196
197
197
Once these hooks are installed, you simply need to run ``git commit`` to commit new
198
198
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
201
201
hooks will take care of formatting your entire commit message in the required format
202
202
(see `Commit Messages`_).
203
203
@@ -474,7 +474,7 @@ The difference is that, if you don't use the global option, any new repository y
474
474
create will not have this option properly set for phpBB development which may cause
475
475
errors to occur while committing or when executing any php file.
476
476
477
-
**For those who use** `TortoiseGit <http://code.google.com/p/tortoisegit/>`_
477
+
**For those who use** `TortoiseGit <https://tortoisegit.org/>`_
478
478
**(and used to work with TortoiseSVN):**
479
479
480
480
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
489
489
490
490
Create your own SSH key
491
491
-----------------------
492
-
.. seealso::
493
-
494
-
http://help.github.com/win-set-up-git/
495
492
496
493
TortoiseGit will automatically use the SSH key
497
494
@@ -525,16 +522,11 @@ Commands
525
522
Further reading
526
523
===============
527
524
528
-
* `Git Community Book (online) <http://book.git-scm.com/>`__
529
-
* `Pro Git Book (online) <http://progit.org/book/>`__
Copy file name to clipboardExpand all lines: development/extensions/new_in_rhea.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ A major change introduced by the new engine is how text (in posts, PMs, signatur
131
131
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.
132
132
133
133
.. 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/>`_.
135
135
136
136
New Text Reparser
137
137
=================
@@ -274,7 +274,7 @@ phpBB 3.2 includes the Font Awesome toolkit. It is used by the default style Pro
274
274
275
275
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.
276
276
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:
0 commit comments