-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup and add support for chunking (#90)
- Loading branch information
1 parent
fda403e
commit 2af27a1
Showing
27 changed files
with
1,901 additions
and
1,401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
<?xml version="1.0"?> | ||
<ruleset> | ||
<file>.</file> | ||
<rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki"> | ||
<exclude name="Generic.Files.LineLength.TooLong" /> | ||
<exclude name="MediaWiki.Commenting.FunctionComment" /> | ||
<rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki" /> | ||
<rule ref="Generic.Functions.FunctionCallArgumentSpacing.TooMuchSpaceAfterComma"> | ||
<severity>5</severity> | ||
</rule> | ||
<arg name="bootstrap" value="./vendor/mediawiki/mediawiki-codesniffer/utils/bootstrap-ci.php"/> | ||
<arg name="extensions" value="php"/> | ||
<arg name="encoding" value="UTF-8"/> | ||
<rule ref="Squiz.WhiteSpace.FunctionSpacing.BeforeFirst"> | ||
<severity>5</severity> | ||
</rule> | ||
<rule ref="Squiz.WhiteSpace.MemberVarSpacing.FirstIncorrect"> | ||
<severity>5</severity> | ||
</rule> | ||
<rule ref="MediaWiki.Classes.FullQualifiedClassName"> | ||
<severity>5</severity> | ||
<properties> | ||
<property name="allowMainNamespace" value="false" /> | ||
<property name="allowInheritance" value="false" /> | ||
<property name="allowFunctions" value="false" /> | ||
</properties> | ||
</rule> | ||
<arg name="bootstrap" value="./vendor/mediawiki/mediawiki-codesniffer/utils/bootstrap-ci.php" /> | ||
<arg name="extensions" value="php" /> | ||
<arg name="encoding" value="UTF-8" /> | ||
</ruleset> |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# DataDump | ||
An extension that provides dumps of wikis | ||
A MediaWiki extension that provides dumps of wikis. | ||
|
||
Developed by Miraheze. | ||
|
||
Licensed under the GPLv3 (or later) LICENSE. | ||
|
||
# Security Vulnerabilities | ||
|
||
If you believe you have found a security vulnerability in any part of our code, please do not post it publicly by using our wikis or bug trackers for that; rather, please read our [security page](https://meta.miraheze.org/wiki/Security) carefully, and follow the instructions. | ||
If you believe you have found a security vulnerability in any part of our code, please do not post it publicly by using our wikis or bug trackers for that; rather, please read our [security page](https://meta.miraheze.org/wiki/Special:MyLanguage/Security) carefully, and follow the instructions. | ||
|
||
As a quick overview, you can email security concerns to [email protected] which will open a Phorge task that is hidden from public view. If you'd like, you can instead directly create a security-related task [here](https://issue-tracker.miraheze.org/maniphest/task/edit/form/2/), but please leave the "Security" project on the issue. | ||
As a quick overview, you can email security concerns to [email protected] or if you'd like, you can instead directly create a security-related task [here](https://issue-tracker.miraheze.org/maniphest/task/edit/form/2/), but please leave the "Security" project on the issue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"SpecialPageAliases": { | ||
"DataDump": [ | ||
"DataDump" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.