├── SolrPhpClient ├── Apache │ └── Solr │ │ ├── Document.php │ │ ├── Exception.php │ │ ├── HttpTransport │ │ ├── Abstract.php │ │ ├── Curl.php │ │ ├── CurlNoReuse.php │ │ ├── FileGetContents.php │ │ ├── Interface.php │ │ └── Response.php │ │ ├── HttpTransportException.php │ │ ├── InvalidArgumentException.php │ │ ├── NoServiceAvailableException.php │ │ ├── ParserException.php │ │ ├── Response.php │ │ ├── Service.php │ │ └── Service │ │ └── Balancer.php ├── COPYING └── tests │ ├── Apache │ └── Solr │ │ ├── DocumentTest.php │ │ ├── HttpTransport │ │ ├── AbstractTest.php │ │ ├── CurlNoReuseTest.php │ │ ├── CurlTest.php │ │ ├── FileGetContentsTest.php │ │ └── ResponseTest.php │ │ ├── HttpTransportExceptionTest.php │ │ ├── ResponseTest.php │ │ ├── Service │ │ └── BalancerTest.php │ │ ├── ServiceAbstractTest.php │ │ └── ServiceTest.php │ ├── README │ ├── phpunit.bootstrap.inc │ ├── phpunit.xml │ └── run.php ├── readme.txt ├── schema.xml ├── screenshot-1.png ├── screenshot-2.png ├── solr-for-wordpress.php ├── solr-for-wordpress.pot ├── solr-options-page.php └── template ├── autocomplete.css ├── s4w_search.php └── search.css /SolrPhpClient/Apache/Solr/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/Document.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/Exception.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/HttpTransport/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/HttpTransport/Abstract.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/HttpTransport/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/HttpTransport/Curl.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/HttpTransport/CurlNoReuse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/HttpTransport/CurlNoReuse.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/HttpTransport/FileGetContents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/HttpTransport/FileGetContents.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/HttpTransport/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/HttpTransport/Interface.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/HttpTransport/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/HttpTransport/Response.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/HttpTransportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/HttpTransportException.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/InvalidArgumentException.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/NoServiceAvailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/NoServiceAvailableException.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/ParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/ParserException.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/Response.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/Service.php -------------------------------------------------------------------------------- /SolrPhpClient/Apache/Solr/Service/Balancer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/Apache/Solr/Service/Balancer.php -------------------------------------------------------------------------------- /SolrPhpClient/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/COPYING -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/DocumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/DocumentTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/HttpTransport/AbstractTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/HttpTransport/AbstractTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/HttpTransport/CurlNoReuseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/HttpTransport/CurlNoReuseTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/HttpTransport/CurlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/HttpTransport/CurlTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/HttpTransport/FileGetContentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/HttpTransport/FileGetContentsTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/HttpTransport/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/HttpTransport/ResponseTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/HttpTransportExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/HttpTransportExceptionTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/ResponseTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/Service/BalancerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/Service/BalancerTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/ServiceAbstractTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/ServiceAbstractTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/Apache/Solr/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/Apache/Solr/ServiceTest.php -------------------------------------------------------------------------------- /SolrPhpClient/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/README -------------------------------------------------------------------------------- /SolrPhpClient/tests/phpunit.bootstrap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/phpunit.bootstrap.inc -------------------------------------------------------------------------------- /SolrPhpClient/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/phpunit.xml -------------------------------------------------------------------------------- /SolrPhpClient/tests/run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/SolrPhpClient/tests/run.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/readme.txt -------------------------------------------------------------------------------- /schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/schema.xml -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /solr-for-wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/solr-for-wordpress.php -------------------------------------------------------------------------------- /solr-for-wordpress.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/solr-for-wordpress.pot -------------------------------------------------------------------------------- /solr-options-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/solr-options-page.php -------------------------------------------------------------------------------- /template/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/template/autocomplete.css -------------------------------------------------------------------------------- /template/s4w_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/template/s4w_search.php -------------------------------------------------------------------------------- /template/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattweber/solr-for-wordpress/HEAD/template/search.css --------------------------------------------------------------------------------