Skip to content

Commit

Permalink
Removed expired URL
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshyPHP committed Feb 6, 2014
1 parent 59d85da commit 7cee737
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -174,7 +174,7 @@ Media BB Codes for XenForo, imported from [s9e\TextFormatter](https://github.com
<tr>
<td><code>traileraddict</code></td>
<td>Trailer Addict</td>
<td>http://www.traileraddict.com/trailer/watchmen/feature-trailer<br/>http://www.traileraddict.com/the-amazing-spider-man-2/super-bowl-tv-spot</td>
<td>http://www.traileraddict.com/the-amazing-spider-man-2/super-bowl-tv-spot</td>
</tr>
<tr>
<td><code>twitch</code></td>
Expand Down
2 changes: 1 addition & 1 deletion build/addon.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<addon addon_id="s9e" title="s9e Media Pack" url="https://github.com/s9e/XenForoMediaBBCodes" version_id="20140202" version_string="201402020" install_callback_class="s9e_MediaBBCodes" install_callback_method="install">
<addon addon_id="s9e" title="s9e Media Pack" url="https://github.com/s9e/XenForoMediaBBCodes" version_id="20140206" version_string="201402060" install_callback_class="s9e_MediaBBCodes" install_callback_method="install">
<bb_code_media_sites>
<site media_site_id="bandcamp" site_title="Bandcamp" site_url="http://bandcamp.com/" match_is_regex="1" supported="1" embed_html_callback_class="s9e_MediaBBCodes" embed_html_callback_method="embed" match_callback_class="s9e_MediaBBCodes" match_callback_method="matchBandcamp">
<match_urls>!(?'id')bandcamp\.com/album/.!
Expand Down
2 changes: 1 addition & 1 deletion vendor/s9e/TextFormatter
Submodule TextFormatter updated 78 files
+1 −1 docs/Rules.md
+6 −1 docs/testdox.txt
+2 −2 phpunit.xml
+7 −5 src/Configurator/Helpers/RegexpBuilder.php
+48 −31 src/Configurator/Helpers/TemplateParser.php
+1 −2 src/Configurator/JavaScript.php
+3 −3 src/Configurator/TemplateCheck.php
+19 −16 src/Configurator/TemplateChecks/AbstractDynamicContentCheck.php
+6 −5 src/Configurator/TemplateChecks/AbstractFlashRestriction.php
+4 −4 src/Configurator/TemplateChecks/DisallowAttributeSets.php
+4 −4 src/Configurator/TemplateChecks/DisallowCopy.php
+4 −4 src/Configurator/TemplateChecks/DisallowDisableOutputEscaping.php
+4 −4 src/Configurator/TemplateChecks/DisallowDynamicAttributeNames.php
+4 −4 src/Configurator/TemplateChecks/DisallowDynamicElementNames.php
+4 −4 src/Configurator/TemplateChecks/DisallowElement.php
+4 −4 src/Configurator/TemplateChecks/DisallowElementNS.php
+4 −4 src/Configurator/TemplateChecks/DisallowNodeByXPath.php
+4 −4 src/Configurator/TemplateChecks/DisallowObjectParamsWithGeneratedName.php
+4 −4 src/Configurator/TemplateChecks/DisallowPHPTags.php
+4 −4 src/Configurator/TemplateChecks/DisallowUnsafeCopyOf.php
+2 −2 src/Configurator/TemplateChecks/DisallowUnsafeDynamicCSS.php
+2 −2 src/Configurator/TemplateChecks/DisallowUnsafeDynamicJS.php
+1 −2 src/Configurator/TemplateChecks/DisallowUnsafeDynamicURL.php
+4 −4 src/Configurator/TemplateChecks/DisallowXPathFunction.php
+3 −3 src/Configurator/TemplateNormalization.php
+3 −3 src/Configurator/TemplateNormalizations/ConvertCurlyExpressionsInText.php
+3 −3 src/Configurator/TemplateNormalizations/Custom.php
+3 −3 src/Configurator/TemplateNormalizations/InlineAttributes.php
+3 −3 src/Configurator/TemplateNormalizations/InlineCDATA.php
+3 −3 src/Configurator/TemplateNormalizations/InlineElements.php
+3 −3 src/Configurator/TemplateNormalizations/InlineInferredValues.php
+3 −3 src/Configurator/TemplateNormalizations/InlineTextElements.php
+3 −3 src/Configurator/TemplateNormalizations/MinifyXPathExpressions.php
+3 −3 src/Configurator/TemplateNormalizations/NormalizeAttributeNames.php
+3 −3 src/Configurator/TemplateNormalizations/NormalizeElementNames.php
+3 −3 src/Configurator/TemplateNormalizations/OptimizeConditionalAttributes.php
+3 −3 src/Configurator/TemplateNormalizations/OptimizeConditionalValueOf.php
+3 −3 src/Configurator/TemplateNormalizations/PreserveSingleSpaces.php
+3 −3 src/Configurator/TemplateNormalizations/RemoveComments.php
+3 −3 src/Configurator/TemplateNormalizations/RemoveInterElementWhitespace.php
+10 −0 src/Parser/Tag.js
+11 −1 src/Parser/Tag.php
+3 −2 src/Parser/TagProcessing.js
+3 −2 src/Parser/TagProcessing.php
+1 −1 src/Parser/TagStack.js
+1 −1 src/Parser/TagStack.php
+1 −1 src/Plugins/Keywords/Configurator.php
+11 −14 src/Plugins/Litedown/Parser.js
+12 −15 src/Plugins/Litedown/Parser.php
+0 −1 src/Plugins/MediaEmbed/Configurator/sites.xml
+1 −1 src/Plugins/MediaEmbed/README.md
+76 −64 tests/Configurator/Helpers/RegexpBuilderTest.php
+2 −21 tests/Configurator/RendererGenerators/PHP/OptimizerTest.php
+2 −2 tests/Configurator/TemplateChecks/AbstractDynamicContentCheckTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowAttributeSetsTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowCopyTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowDisableOutputEscapingTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowDynamicAttributeNamesTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowDynamicElementNamesTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowElementNSTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowElementTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowFlashFullScreenTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowNodeByXPathTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowObjectParamsWithGeneratedNameTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowPHPTagsTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowUnsafeCopyOfTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowUnsafeDynamicCSSTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowUnsafeDynamicJSTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowUnsafeDynamicURLTest.php
+1 −1 tests/Configurator/TemplateChecks/DisallowXPathFunctionTest.php
+1 −1 tests/Configurator/TemplateChecks/RestrictFlashNetworkingTest.php
+1 −1 tests/Configurator/TemplateChecks/RestrictFlashScriptAccessTest.php
+1 −1 tests/Configurator/TemplateNormalizations/CustomTest.php
+2 −2 tests/Configurator/TemplateNormalizerTest.php
+41 −0 tests/Parser/TagProcessingTest.php
+36 −0 tests/Parser/TagTest.php
+16 −0 tests/Plugins/Litedown/ParserTest.php
+27 −4 tests/Plugins/MediaEmbed/ParserTest.php

0 comments on commit 7cee737

Please sign in to comment.