Extension:Git2Pages
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{Extension }} infobox. |
Git2Pages Release status: unmaintained |
|
---|---|
Implementation | Parser extension , Tag , Database |
Description | Allow wiki pages to include code from a git repository. |
Author(s) | Teresa Cho (original author) Dereckson (maintenance) Contributions by others |
Latest version | 1.1.1 (2015-10-08) |
MediaWiki | >= 1.31.0 |
PHP | 5.3+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | |
|
|
Quarterly downloads | 0 |
Translate the Git2Pages extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The Git2Pages extension implements a parser tag so you can transclude snippets of files in a git repository into wiki pages.
To do so it executes git
commands to clone a repository locally and then reads files from disk.
Usage
[edit]{{#snippet:repository=MYREPO|filename=MYFILE|branch=MYBRANCH
|startline=STARTLINE|endline=ENDLINE}}
The parameters are:
repository
- The URL of the git repository. REQUIREDfilename
- The filename whose data is going to be displayed. REQUIREDbranch
- The branch to look for the file. OPTIONAL (Default = master)startline
- The start of where the snippet will be pulled. OPTIONAL (Default = Start of file)endline
- The end of where the snippet will be pulled. OPTIONAL (Default = End of file)
Requirements
[edit]This extension uses wfShellExec()
to run shell commands that probably require the bash shell.
Installation
[edit]- Download and move the extracted
Git2Pages
folder to yourextensions/
directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Git2Pages - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'Git2Pages' );
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
See also
[edit]- Extension:External Content created in 2021 and still maintained as of 2023
- Git-remote-mediawiki which is actively maintained as of 2014