Use the correct cssselect library name in docblocks.

The original python library is called cssselect, not cssselector.
This commit is contained in:
Jakub Zalas 2014-12-26 23:22:03 +01:00
parent e10024e5f4
commit 1997b12f51
48 changed files with 48 additions and 48 deletions

View File

@ -24,7 +24,7 @@ use Symfony\Component\CssSelector\XPath\Translator;
* *
* $xpath = CssSelector::toXpath('h1.foo'); * $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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* Copyright (c) 2007-2012 Ian Bicking and contributors. See AUTHORS * Copyright (c) 2007-2012 Ian Bicking and contributors. See AUTHORS

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Exception;
/** /**
* Interface for exceptions. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Exception;
/** /**
* ParseException is thrown when a CSS selector syntax is not valid. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Exception;
/** /**
* ParseException is thrown when a CSS selector syntax is not valid. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Exception;
/** /**
* ParseException is thrown when a CSS selector syntax is not valid. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>

View File

@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\Parser\Token;
/** /**
* ParseException is thrown when a CSS selector syntax is not valid. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Abstract base node class. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a "<selector>[<namespace>|<attribute> <operator> <value>]" node. * Represents a "<selector>[<namespace>|<attribute> <operator> <value>]" 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a "<selector>.<name>" node. * Represents a "<selector>.<name>" 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a combined 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a "<namespace>|<element>" node. * Represents a "<namespace>|<element>" 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\Parser\Token;
/** /**
* Represents a "<selector>:<name>(<arguments>)" node. * Represents a "<selector>:<name>(<arguments>)" 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a "<selector>#<id>" node. * Represents a "<selector>#<id>" 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a "<selector>:not(<identifier>)" node. * Represents a "<selector>:not(<identifier>)" 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Interface for nodes. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a "<selector>:<identifier>" node. * Represents a "<selector>:<identifier>" 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a "<selector>(::|:)<pseudoElement>" node. * Represents a "<selector>(::|:)<pseudoElement>" 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Node;
/** /**
* Represents a node specificity. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @see http://www.w3.org/TR/selectors/#specificity * @see http://www.w3.org/TR/selectors/#specificity

View File

@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\Parser\TokenStream;
/** /**
* CSS selector comment handler. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\Parser\TokenStream;
/** /**
* CSS selector handler interface. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -20,7 +20,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns;
/** /**
* CSS selector comment handler. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -20,7 +20,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns;
/** /**
* CSS selector comment handler. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns;
/** /**
* CSS selector comment handler. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -22,7 +22,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns;
/** /**
* CSS selector comment handler. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -18,7 +18,7 @@ use Symfony\Component\CssSelector\Parser\TokenStream;
/** /**
* CSS selector whitespace handler. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -18,7 +18,7 @@ use Symfony\Component\CssSelector\Parser\Tokenizer\Tokenizer;
/** /**
* CSS selector parser. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\Node\SelectorNode;
/** /**
* CSS selector parser interface. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Parser;
/** /**
* CSS selector reader. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface;
/** /**
* CSS selector class parser shortcut. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -18,7 +18,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface;
/** /**
* CSS selector element parser shortcut. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -22,7 +22,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface;
* - The parser fails to parse an empty string. * - The parser fails to parse an empty string.
* - In the previous version, an empty string matches each tags. * - 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface;
/** /**
* CSS selector hash parser shortcut. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Parser;
/** /**
* CSS selector token. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\Exception\SyntaxErrorException;
/** /**
* CSS selector token stream. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\Parser\TokenStream;
/** /**
* CSS selector tokenizer. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Parser\Tokenizer;
/** /**
* CSS selector tokenizer escaping applier. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\Parser\Tokenizer;
/** /**
* CSS selector tokenizer patterns builder. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\XPath\Extension;
/** /**
* XPath expression translator abstract 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr;
/** /**
* XPath expression translator attribute extension. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr;
/** /**
* XPath expression translator combination extension. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\XPath\Extension;
/** /**
* XPath expression translator extension interface. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -21,7 +21,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr;
/** /**
* XPath expression translator function extension. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -19,7 +19,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr;
/** /**
* XPath expression translator HTML extension. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -18,7 +18,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr;
/** /**
* XPath expression translator node extension. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -17,7 +17,7 @@ use Symfony\Component\CssSelector\XPath\XPathExpr;
/** /**
* XPath expression translator pseudo-class extension. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -21,7 +21,7 @@ use Symfony\Component\CssSelector\Parser\ParserInterface;
/** /**
* XPath expression translator interface. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -16,7 +16,7 @@ use Symfony\Component\CssSelector\Node\SelectorNode;
/** /**
* XPath expression translator interface. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\CssSelector\XPath;
/** /**
* XPath expression translator interface. * 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. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
* *
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>