From 1997b12f51d728c2a5958506c22adc002159f34c Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Fri, 26 Dec 2014 23:22:03 +0100 Subject: [PATCH] Use the correct cssselect library name in docblocks. The original python library is called cssselect, not cssselector. --- src/Symfony/Component/CssSelector/CssSelector.php | 2 +- .../Component/CssSelector/Exception/ExceptionInterface.php | 2 +- .../CssSelector/Exception/ExpressionErrorException.php | 2 +- .../Component/CssSelector/Exception/InternalErrorException.php | 2 +- src/Symfony/Component/CssSelector/Exception/ParseException.php | 2 +- .../Component/CssSelector/Exception/SyntaxErrorException.php | 2 +- src/Symfony/Component/CssSelector/Node/AbstractNode.php | 2 +- src/Symfony/Component/CssSelector/Node/AttributeNode.php | 2 +- src/Symfony/Component/CssSelector/Node/ClassNode.php | 2 +- src/Symfony/Component/CssSelector/Node/CombinedSelectorNode.php | 2 +- src/Symfony/Component/CssSelector/Node/ElementNode.php | 2 +- src/Symfony/Component/CssSelector/Node/FunctionNode.php | 2 +- src/Symfony/Component/CssSelector/Node/HashNode.php | 2 +- src/Symfony/Component/CssSelector/Node/NegationNode.php | 2 +- src/Symfony/Component/CssSelector/Node/NodeInterface.php | 2 +- src/Symfony/Component/CssSelector/Node/PseudoNode.php | 2 +- src/Symfony/Component/CssSelector/Node/SelectorNode.php | 2 +- src/Symfony/Component/CssSelector/Node/Specificity.php | 2 +- .../Component/CssSelector/Parser/Handler/CommentHandler.php | 2 +- .../Component/CssSelector/Parser/Handler/HandlerInterface.php | 2 +- .../Component/CssSelector/Parser/Handler/HashHandler.php | 2 +- .../Component/CssSelector/Parser/Handler/IdentifierHandler.php | 2 +- .../Component/CssSelector/Parser/Handler/NumberHandler.php | 2 +- .../Component/CssSelector/Parser/Handler/StringHandler.php | 2 +- .../Component/CssSelector/Parser/Handler/WhitespaceHandler.php | 2 +- src/Symfony/Component/CssSelector/Parser/Parser.php | 2 +- src/Symfony/Component/CssSelector/Parser/ParserInterface.php | 2 +- src/Symfony/Component/CssSelector/Parser/Reader.php | 2 +- .../Component/CssSelector/Parser/Shortcut/ClassParser.php | 2 +- .../Component/CssSelector/Parser/Shortcut/ElementParser.php | 2 +- .../Component/CssSelector/Parser/Shortcut/EmptyStringParser.php | 2 +- .../Component/CssSelector/Parser/Shortcut/HashParser.php | 2 +- src/Symfony/Component/CssSelector/Parser/Token.php | 2 +- src/Symfony/Component/CssSelector/Parser/TokenStream.php | 2 +- .../Component/CssSelector/Parser/Tokenizer/Tokenizer.php | 2 +- .../CssSelector/Parser/Tokenizer/TokenizerEscaping.php | 2 +- .../CssSelector/Parser/Tokenizer/TokenizerPatterns.php | 2 +- .../Component/CssSelector/XPath/Extension/AbstractExtension.php | 2 +- .../CssSelector/XPath/Extension/AttributeMatchingExtension.php | 2 +- .../CssSelector/XPath/Extension/CombinationExtension.php | 2 +- .../CssSelector/XPath/Extension/ExtensionInterface.php | 2 +- .../Component/CssSelector/XPath/Extension/FunctionExtension.php | 2 +- .../Component/CssSelector/XPath/Extension/HtmlExtension.php | 2 +- .../Component/CssSelector/XPath/Extension/NodeExtension.php | 2 +- .../CssSelector/XPath/Extension/PseudoClassExtension.php | 2 +- src/Symfony/Component/CssSelector/XPath/Translator.php | 2 +- src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php | 2 +- src/Symfony/Component/CssSelector/XPath/XPathExpr.php | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) diff --git a/src/Symfony/Component/CssSelector/CssSelector.php b/src/Symfony/Component/CssSelector/CssSelector.php index 103c60d9e6..82c9283ea2 100644 --- a/src/Symfony/Component/CssSelector/CssSelector.php +++ b/src/Symfony/Component/CssSelector/CssSelector.php @@ -24,7 +24,7 @@ use Symfony\Component\CssSelector\XPath\Translator; * * $xpath = CssSelector::toXpath('h1.foo'); * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * Copyright (c) 2007-2012 Ian Bicking and contributors. See AUTHORS diff --git a/src/Symfony/Component/CssSelector/Exception/ExceptionInterface.php b/src/Symfony/Component/CssSelector/Exception/ExceptionInterface.php index da01c2b271..e4c5ae1b6b 100644 --- a/src/Symfony/Component/CssSelector/Exception/ExceptionInterface.php +++ b/src/Symfony/Component/CssSelector/Exception/ExceptionInterface.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Exception; /** * Interface for exceptions. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Exception/ExpressionErrorException.php b/src/Symfony/Component/CssSelector/Exception/ExpressionErrorException.php index 151dbf0350..756a12a75a 100644 --- a/src/Symfony/Component/CssSelector/Exception/ExpressionErrorException.php +++ b/src/Symfony/Component/CssSelector/Exception/ExpressionErrorException.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Exception; /** * ParseException is thrown when a CSS selector syntax is not valid. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Exception/InternalErrorException.php b/src/Symfony/Component/CssSelector/Exception/InternalErrorException.php index 8a815fb9ea..2decde67fe 100644 --- a/src/Symfony/Component/CssSelector/Exception/InternalErrorException.php +++ b/src/Symfony/Component/CssSelector/Exception/InternalErrorException.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Exception; /** * ParseException is thrown when a CSS selector syntax is not valid. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Exception/ParseException.php b/src/Symfony/Component/CssSelector/Exception/ParseException.php index 9c119f84c6..3b0b0ee8f1 100644 --- a/src/Symfony/Component/CssSelector/Exception/ParseException.php +++ b/src/Symfony/Component/CssSelector/Exception/ParseException.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Exception; /** * ParseException is thrown when a CSS selector syntax is not valid. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Fabien Potencier diff --git a/src/Symfony/Component/CssSelector/Exception/SyntaxErrorException.php b/src/Symfony/Component/CssSelector/Exception/SyntaxErrorException.php index 529b891a3f..831b001340 100644 --- a/src/Symfony/Component/CssSelector/Exception/SyntaxErrorException.php +++ b/src/Symfony/Component/CssSelector/Exception/SyntaxErrorException.php @@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\Parser\Token; /** * ParseException is thrown when a CSS selector syntax is not valid. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/AbstractNode.php b/src/Symfony/Component/CssSelector/Node/AbstractNode.php index f5324e191b..b1c8e9508d 100644 --- a/src/Symfony/Component/CssSelector/Node/AbstractNode.php +++ b/src/Symfony/Component/CssSelector/Node/AbstractNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Abstract base node class. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/AttributeNode.php b/src/Symfony/Component/CssSelector/Node/AttributeNode.php index e2fa9a294c..b10a4dd5b3 100644 --- a/src/Symfony/Component/CssSelector/Node/AttributeNode.php +++ b/src/Symfony/Component/CssSelector/Node/AttributeNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a "[| ]" node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/ClassNode.php b/src/Symfony/Component/CssSelector/Node/ClassNode.php index a7a59a33a9..544342f871 100644 --- a/src/Symfony/Component/CssSelector/Node/ClassNode.php +++ b/src/Symfony/Component/CssSelector/Node/ClassNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a "." node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/CombinedSelectorNode.php b/src/Symfony/Component/CssSelector/Node/CombinedSelectorNode.php index 4e085ea4e1..6d00db431c 100644 --- a/src/Symfony/Component/CssSelector/Node/CombinedSelectorNode.php +++ b/src/Symfony/Component/CssSelector/Node/CombinedSelectorNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a combined node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/ElementNode.php b/src/Symfony/Component/CssSelector/Node/ElementNode.php index 9ab13c3f24..71ef121741 100644 --- a/src/Symfony/Component/CssSelector/Node/ElementNode.php +++ b/src/Symfony/Component/CssSelector/Node/ElementNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a "|" node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/FunctionNode.php b/src/Symfony/Component/CssSelector/Node/FunctionNode.php index ecd11a50b0..f94af8dafc 100644 --- a/src/Symfony/Component/CssSelector/Node/FunctionNode.php +++ b/src/Symfony/Component/CssSelector/Node/FunctionNode.php @@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\Parser\Token; /** * Represents a ":()" node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/HashNode.php b/src/Symfony/Component/CssSelector/Node/HashNode.php index 7fb407579b..ddbe76477a 100644 --- a/src/Symfony/Component/CssSelector/Node/HashNode.php +++ b/src/Symfony/Component/CssSelector/Node/HashNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a "#" node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/NegationNode.php b/src/Symfony/Component/CssSelector/Node/NegationNode.php index 2529689095..0fafb0a120 100644 --- a/src/Symfony/Component/CssSelector/Node/NegationNode.php +++ b/src/Symfony/Component/CssSelector/Node/NegationNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a ":not()" node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/NodeInterface.php b/src/Symfony/Component/CssSelector/Node/NodeInterface.php index 1601c33a6e..dd300e23cd 100644 --- a/src/Symfony/Component/CssSelector/Node/NodeInterface.php +++ b/src/Symfony/Component/CssSelector/Node/NodeInterface.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Interface for nodes. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/PseudoNode.php b/src/Symfony/Component/CssSelector/Node/PseudoNode.php index 4f2d538f6f..0e413adc54 100644 --- a/src/Symfony/Component/CssSelector/Node/PseudoNode.php +++ b/src/Symfony/Component/CssSelector/Node/PseudoNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a ":" node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/SelectorNode.php b/src/Symfony/Component/CssSelector/Node/SelectorNode.php index 49f417f286..4958da55af 100644 --- a/src/Symfony/Component/CssSelector/Node/SelectorNode.php +++ b/src/Symfony/Component/CssSelector/Node/SelectorNode.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a "(::|:)" node. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Node/Specificity.php b/src/Symfony/Component/CssSelector/Node/Specificity.php index 96bbd11f51..a8e4885955 100644 --- a/src/Symfony/Component/CssSelector/Node/Specificity.php +++ b/src/Symfony/Component/CssSelector/Node/Specificity.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node; /** * Represents a node specificity. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @see http://www.w3.org/TR/selectors/#specificity diff --git a/src/Symfony/Component/CssSelector/Parser/Handler/CommentHandler.php b/src/Symfony/Component/CssSelector/Parser/Handler/CommentHandler.php index 97c3f8dd24..f480776d2c 100644 --- a/src/Symfony/Component/CssSelector/Parser/Handler/CommentHandler.php +++ b/src/Symfony/Component/CssSelector/Parser/Handler/CommentHandler.php @@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\Parser\TokenStream; /** * CSS selector comment handler. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Handler/HandlerInterface.php b/src/Symfony/Component/CssSelector/Parser/Handler/HandlerInterface.php index c7a48c0d6e..049ddd3ec4 100644 --- a/src/Symfony/Component/CssSelector/Parser/Handler/HandlerInterface.php +++ b/src/Symfony/Component/CssSelector/Parser/Handler/HandlerInterface.php @@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\Parser\TokenStream; /** * CSS selector handler interface. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Handler/HashHandler.php b/src/Symfony/Component/CssSelector/Parser/Handler/HashHandler.php index 2227ea62a6..b144223fbd 100644 --- a/src/Symfony/Component/CssSelector/Parser/Handler/HashHandler.php +++ b/src/Symfony/Component/CssSelector/Parser/Handler/HashHandler.php @@ -20,7 +20,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns; /** * CSS selector comment handler. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Handler/IdentifierHandler.php b/src/Symfony/Component/CssSelector/Parser/Handler/IdentifierHandler.php index 346532ec15..86739eab99 100644 --- a/src/Symfony/Component/CssSelector/Parser/Handler/IdentifierHandler.php +++ b/src/Symfony/Component/CssSelector/Parser/Handler/IdentifierHandler.php @@ -20,7 +20,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns; /** * CSS selector comment handler. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Handler/NumberHandler.php b/src/Symfony/Component/CssSelector/Parser/Handler/NumberHandler.php index 208f83c08f..97a9387b18 100644 --- a/src/Symfony/Component/CssSelector/Parser/Handler/NumberHandler.php +++ b/src/Symfony/Component/CssSelector/Parser/Handler/NumberHandler.php @@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns; /** * CSS selector comment handler. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Handler/StringHandler.php b/src/Symfony/Component/CssSelector/Parser/Handler/StringHandler.php index 2663fe87b5..9f7a5946b0 100644 --- a/src/Symfony/Component/CssSelector/Parser/Handler/StringHandler.php +++ b/src/Symfony/Component/CssSelector/Parser/Handler/StringHandler.php @@ -22,7 +22,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns; /** * CSS selector comment handler. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Handler/WhitespaceHandler.php b/src/Symfony/Component/CssSelector/Parser/Handler/WhitespaceHandler.php index 806cfbb513..234bbd84cf 100644 --- a/src/Symfony/Component/CssSelector/Parser/Handler/WhitespaceHandler.php +++ b/src/Symfony/Component/CssSelector/Parser/Handler/WhitespaceHandler.php @@ -18,7 +18,7 @@ use Symfony\Component\CssSelector\Parser\TokenStream; /** * CSS selector whitespace handler. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Parser.php b/src/Symfony/Component/CssSelector/Parser/Parser.php index c622383e84..9625e3e8a1 100644 --- a/src/Symfony/Component/CssSelector/Parser/Parser.php +++ b/src/Symfony/Component/CssSelector/Parser/Parser.php @@ -18,7 +18,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\Tokenizer; /** * CSS selector parser. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/ParserInterface.php b/src/Symfony/Component/CssSelector/Parser/ParserInterface.php index b27f79f4a6..3b43a52fde 100644 --- a/src/Symfony/Component/CssSelector/Parser/ParserInterface.php +++ b/src/Symfony/Component/CssSelector/Parser/ParserInterface.php @@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\Node\SelectorNode; /** * CSS selector parser interface. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Reader.php b/src/Symfony/Component/CssSelector/Parser/Reader.php index 8bd8ed6698..3d9e164e77 100644 --- a/src/Symfony/Component/CssSelector/Parser/Reader.php +++ b/src/Symfony/Component/CssSelector/Parser/Reader.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Parser; /** * CSS selector reader. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Shortcut/ClassParser.php b/src/Symfony/Component/CssSelector/Parser/Shortcut/ClassParser.php index bb9653ce01..142bd16315 100644 --- a/src/Symfony/Component/CssSelector/Parser/Shortcut/ClassParser.php +++ b/src/Symfony/Component/CssSelector/Parser/Shortcut/ClassParser.php @@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface; /** * CSS selector class parser shortcut. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Shortcut/ElementParser.php b/src/Symfony/Component/CssSelector/Parser/Shortcut/ElementParser.php index eae18b9467..f62d25960c 100644 --- a/src/Symfony/Component/CssSelector/Parser/Shortcut/ElementParser.php +++ b/src/Symfony/Component/CssSelector/Parser/Shortcut/ElementParser.php @@ -18,7 +18,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface; /** * CSS selector element parser shortcut. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Shortcut/EmptyStringParser.php b/src/Symfony/Component/CssSelector/Parser/Shortcut/EmptyStringParser.php index 0031f7cfef..98a08fde06 100644 --- a/src/Symfony/Component/CssSelector/Parser/Shortcut/EmptyStringParser.php +++ b/src/Symfony/Component/CssSelector/Parser/Shortcut/EmptyStringParser.php @@ -22,7 +22,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface; * - The parser fails to parse an empty string. * - In the previous version, an empty string matches each tags. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Shortcut/HashParser.php b/src/Symfony/Component/CssSelector/Parser/Shortcut/HashParser.php index 28c7d296f1..fde614149b 100644 --- a/src/Symfony/Component/CssSelector/Parser/Shortcut/HashParser.php +++ b/src/Symfony/Component/CssSelector/Parser/Shortcut/HashParser.php @@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface; /** * CSS selector hash parser shortcut. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Token.php b/src/Symfony/Component/CssSelector/Parser/Token.php index ba5d657f7b..6f7586f612 100644 --- a/src/Symfony/Component/CssSelector/Parser/Token.php +++ b/src/Symfony/Component/CssSelector/Parser/Token.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Parser; /** * CSS selector token. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/TokenStream.php b/src/Symfony/Component/CssSelector/Parser/TokenStream.php index 05d715b961..8184b832b3 100644 --- a/src/Symfony/Component/CssSelector/Parser/TokenStream.php +++ b/src/Symfony/Component/CssSelector/Parser/TokenStream.php @@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\Exception\SyntaxErrorException; /** * CSS selector token stream. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Tokenizer/Tokenizer.php b/src/Symfony/Component/CssSelector/Parser/Tokenizer/Tokenizer.php index c850276728..79fa7b77d0 100644 --- a/src/Symfony/Component/CssSelector/Parser/Tokenizer/Tokenizer.php +++ b/src/Symfony/Component/CssSelector/Parser/Tokenizer/Tokenizer.php @@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\Parser\TokenStream; /** * CSS selector tokenizer. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerEscaping.php b/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerEscaping.php index 76386c9371..bf5096be9f 100644 --- a/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerEscaping.php +++ b/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerEscaping.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Parser\Tokenizer; /** * CSS selector tokenizer escaping applier. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerPatterns.php b/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerPatterns.php index 6fc98b71e1..326f020821 100644 --- a/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerPatterns.php +++ b/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerPatterns.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Parser\Tokenizer; /** * CSS selector tokenizer patterns builder. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/AbstractExtension.php b/src/Symfony/Component/CssSelector/XPath/Extension/AbstractExtension.php index 1b147e9ecf..c70609c695 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/AbstractExtension.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/AbstractExtension.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\XPath\Extension; /** * XPath expression translator abstract extension. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/AttributeMatchingExtension.php b/src/Symfony/Component/CssSelector/XPath/Extension/AttributeMatchingExtension.php index 31d24b28ef..cbe48c57a9 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/AttributeMatchingExtension.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/AttributeMatchingExtension.php @@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr; /** * XPath expression translator attribute extension. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/CombinationExtension.php b/src/Symfony/Component/CssSelector/XPath/Extension/CombinationExtension.php index 639e924952..9ce018f13a 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/CombinationExtension.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/CombinationExtension.php @@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr; /** * XPath expression translator combination extension. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/ExtensionInterface.php b/src/Symfony/Component/CssSelector/XPath/Extension/ExtensionInterface.php index 2231265942..9b47f24f36 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/ExtensionInterface.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/ExtensionInterface.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\XPath\Extension; /** * XPath expression translator extension interface. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/FunctionExtension.php b/src/Symfony/Component/CssSelector/XPath/Extension/FunctionExtension.php index e849474383..0086240c81 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/FunctionExtension.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/FunctionExtension.php @@ -21,7 +21,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr; /** * XPath expression translator function extension. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php b/src/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php index 71ed4b4a79..883156be70 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php @@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr; /** * XPath expression translator HTML extension. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/NodeExtension.php b/src/Symfony/Component/CssSelector/XPath/Extension/NodeExtension.php index 212955c1f2..2b8920f1ab 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/NodeExtension.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/NodeExtension.php @@ -18,7 +18,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr; /** * XPath expression translator node extension. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php b/src/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php index d59857225c..008ec2b4b1 100644 --- a/src/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php +++ b/src/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php @@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr; /** * XPath expression translator pseudo-class extension. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/Translator.php b/src/Symfony/Component/CssSelector/XPath/Translator.php index 011882cca3..5053793ea0 100644 --- a/src/Symfony/Component/CssSelector/XPath/Translator.php +++ b/src/Symfony/Component/CssSelector/XPath/Translator.php @@ -21,7 +21,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface; /** * XPath expression translator interface. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php b/src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php index 676f4a033e..1d9d1c88ee 100644 --- a/src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php +++ b/src/Symfony/Component/CssSelector/XPath/TranslatorInterface.php @@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\Node\SelectorNode; /** * XPath expression translator interface. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon diff --git a/src/Symfony/Component/CssSelector/XPath/XPathExpr.php b/src/Symfony/Component/CssSelector/XPath/XPathExpr.php index 4ec9fda672..c7ef97cb9a 100644 --- a/src/Symfony/Component/CssSelector/XPath/XPathExpr.php +++ b/src/Symfony/Component/CssSelector/XPath/XPathExpr.php @@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\XPath; /** * XPath expression translator interface. * - * This component is a port of the Python cssselector library, + * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon