This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/CssSelector
2015-10-11 10:29:26 +02:00
..
Exception [2.3] Static Code Analysis for Components 2015-03-21 18:48:06 +01:00
Node [CssSelector] Tag all internal classes as internal ones 2015-09-28 16:03:26 +02:00
Parser [CssSelector] Tag all internal classes as internal ones 2015-09-28 16:03:26 +02:00
Tests synchronize tests for static and non-static API 2015-10-01 19:39:35 +02:00
XPath [CssSelector] Tag all internal classes as internal ones 2015-09-28 16:03:26 +02:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [CssSelector] remove ConverterInterface 2015-09-30 09:43:59 +02:00
composer.json Merge branch '2.7' into 2.8 2015-10-10 11:36:22 +02:00
CssSelector.php fixed typos 2015-09-30 12:12:58 +02:00
CssSelectorConverter.php [CssSelector] remove ConverterInterface 2015-09-30 09:43:59 +02:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
phpunit.xml.dist [PhpUnit] Auto-register SymfonyTestsListener 2015-10-11 10:29:26 +02:00
README.md [CssSelector] updated README 2015-09-30 09:44:53 +02:00

CssSelector Component

CssSelector converts CSS selectors to XPath expressions.

The component only goal is to convert CSS selectors to their XPath equivalents:

use Symfony\Component\CssSelector\CssSelectorConverter;

$converter = new CssSelectorConverter();
print $converter->toXPath('div.item > h4 > a');

HTML and XML are different

The CssSelector component comes with an HTML extension which is enabled by default. If you need to use this component with XML documents, you have to disable this HTML extension. That's because, HTML tag & attribute names are always lower-cased, but case-sensitive in XML:

// disable `HTML` extension:
$converter = new CssSelectorConverter(false);

When the HTML extension is enabled, tag names are lower-cased, attribute names are lower-cased, the following extra pseudo-classes are supported: checked, link, disabled, enabled, selected, invalid, hover, visited, and the lang() function is also added.

Resources

This component is a port of the Python cssselect library v0.7.1, which is distributed under the BSD license.

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/CssSelector/
$ composer install
$ phpunit

License

This component is a port of the Python cssselect library, which is copyright Ian Bicking, https://github.com/SimonSapin/cssselect.

Copyright (c) 2007-2012 Ian Bicking and contributors. See AUTHORS for more details.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of Ian Bicking nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL IAN BICKING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.