ChangeLog 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. 2011-02-08 20:38 donovan.jimenez
  2. * Apache/Solr/Service.php, tests/Apache/Solr/ServiceTest.php: See
  3. issue #59 - Adding service extractFromUrl method. This will use
  4. the configured HTTP transport to request the resource. extract
  5. has been modified to detect a file path that starts with http /
  6. https and to defer to extractFromUrl instead. Also, moved
  7. checking for params parameter to the top of method bodies so we
  8. can fail earlier rather than after we've gotten a file / url's
  9. content.
  10. 2011-02-08 19:28 donovan.jimenez
  11. * Apache/Solr/Service.php, tests/Apache/Solr/ServiceTest.php: See
  12. issue #43 - Changing optimize parameter of service's commit
  13. method to its correct name: expungeDeletes. Also harded php unit
  14. tests around commit.
  15. thanks to Liam O'Boyle and Olivier Ricordeau for patches for this
  16. commit and the previous one for issue #51
  17. 2011-02-08 19:11 donovan.jimenez
  18. * Apache/Solr/Service.php, tests/Apache/Solr/ServiceTest.php: See
  19. issue #51 - adding commitWithin parameter to addDocument and
  20. addDocuments. Also hardened php unit tests for this functions
  21. 2011-02-04 16:29 donovan.jimenez
  22. * Apache/Solr/Document.php, Apache/Solr/Exception.php,
  23. Apache/Solr/HttpTransport/Abstract.php,
  24. Apache/Solr/HttpTransport/Curl.php,
  25. Apache/Solr/HttpTransport/CurlNoReuse.php,
  26. Apache/Solr/HttpTransport/FileGetContents.php,
  27. Apache/Solr/HttpTransport/Interface.php,
  28. Apache/Solr/HttpTransport/Response.php,
  29. Apache/Solr/HttpTransportException.php,
  30. Apache/Solr/InvalidArgumentException.php,
  31. Apache/Solr/NoServiceAvailableException.php,
  32. Apache/Solr/ParserException.php, Apache/Solr/Response.php,
  33. Apache/Solr/Service.php, Apache/Solr/Service/Balancer.php,
  34. COPYING, tests/Apache/Solr/DocumentTest.php,
  35. tests/Apache/Solr/HttpTransport/AbstractTest.php,
  36. tests/Apache/Solr/HttpTransport/CurlNoReuseTest.php,
  37. tests/Apache/Solr/HttpTransport/CurlTest.php,
  38. tests/Apache/Solr/HttpTransport/FileGetContentsTest.php,
  39. tests/Apache/Solr/HttpTransport/ResponseTest.php,
  40. tests/Apache/Solr/HttpTransportExceptionTest.php,
  41. tests/Apache/Solr/ResponseTest.php,
  42. tests/Apache/Solr/Service/BalancerTest.php,
  43. tests/Apache/Solr/ServiceAbstractTest.php,
  44. tests/Apache/Solr/ServiceTest.php: Updating licence and copyright
  45. texts in sources to reflect transition from Conduit IT to
  46. Servigistics
  47. 2010-11-02 20:16 donovan.jimenez
  48. * Apache/Solr/Service.php, Apache/Solr/Service/Balancer.php,
  49. tests/Apache/Solr/ServiceAbstractTest.php,
  50. tests/Apache/Solr/ServiceTest.php: See issue #55
  51. * Adding an Apache_Solr_Service::extractFromString method
  52. * Adding Apache_Solr_Service_Balancer::extract and
  53. Apache_Solr_Service_Balancer::extractFromString methods
  54. 2010-10-21 15:23 donovan.jimenez
  55. * ., Apache/Solr/HttpTransport,
  56. Apache/Solr/HttpTransport/Abstract.php,
  57. Apache/Solr/HttpTransport/Curl.php,
  58. Apache/Solr/HttpTransport/CurlNoReuse.php,
  59. Apache/Solr/HttpTransport/FileGetContents.php,
  60. Apache/Solr/HttpTransport/Interface.php,
  61. Apache/Solr/HttpTransport/Response.php, Apache/Solr/Response.php,
  62. Apache/Solr/Service.php, Apache/Solr/Service/Balancer.php,
  63. COPYING, tests/Apache/Solr/DocumentTest.php,
  64. tests/Apache/Solr/HttpTransport,
  65. tests/Apache/Solr/HttpTransport/AbstractTest.php,
  66. tests/Apache/Solr/HttpTransport/CurlNoReuseTest.php,
  67. tests/Apache/Solr/HttpTransport/CurlTest.php,
  68. tests/Apache/Solr/HttpTransport/FileGetContentsTest.php,
  69. tests/Apache/Solr/HttpTransport/ResponseTest.php,
  70. tests/Apache/Solr/HttpTransportExceptionTest.php,
  71. tests/Apache/Solr/ResponseTest.php,
  72. tests/Apache/Solr/Service/BalancerTest.php,
  73. tests/Apache/Solr/Service/TestAll.php,
  74. tests/Apache/Solr/ServiceAbstractTest.php,
  75. tests/Apache/Solr/ServiceTest.php, tests/Apache/Solr/TestAll.php,
  76. tests/phpunit.bootstrap.inc, tests/phpunit.xml, tests/run.php:
  77. Merging the http_requests branch into trunk
  78. See issue #49 - Service can now have the way it makes HTTP
  79. requests plugged in.
  80. The only requirement is that the plugin implement the new
  81. Apache_Solr_HttpTransport_Interface. There are initial
  82. implementations for using
  83. file_get_contents (what was used previously) and for using the
  84. curl module. Much
  85. thanks to Timo Schmidt for submitting an initial patch.
  86. If the user does not specifically provide a transport interface
  87. instance, the
  88. file get contents implementation will be used by default.
  89. There is a compatibility breaking change on the
  90. Apache_Solr_Response
  91. constructor. The Signature has changed.
  92. The getDefaultTimeout and setDefaultTimeout methods on the
  93. Apache_Solr_Service
  94. class are now deprecated. They simple pass through to the active
  95. transport's
  96. methods of the same name, and I'd rather the user manage it
  97. there.
  98. Additionally, I have cleaned up and expanded the existing unit
  99. tests - had to
  100. change tests related to the breaking change, and added new ones
  101. for the new
  102. classes as well as expanding existing ones. They should now all
  103. pass. curl tests
  104. should only run if the curl module is enabled. file get contents
  105. tests should
  106. only run if allow_url_fopen is enabled. transport tests do rely
  107. on an internet
  108. connection at this time.
  109. 2010-09-07 14:44 donovan.jimenez
  110. * Apache/Solr/Document.php: See issue #48, doing an isset check as
  111. part of the magic get. Return null if not.
  112. 2010-09-07 14:34 donovan.jimenez
  113. * Apache/Solr/Service.php: See issue #47, adding missing argument
  114. to getFieldBoost call in Apache_Solr_Service::extract method
  115. 2010-07-08 22:35 donovan.jimenez
  116. * Apache/Solr/Service.php: See issue #37 - adding a getter /
  117. setting for the default timeout value. Still initially populated
  118. with the default_socket_timeout ini setting
  119. 2010-07-08 22:21 donovan.jimenez
  120. * Apache/Solr/Service.php: See issue #42 - Adding missing require
  121. once for ParserException
  122. 2010-04-24 00:44 donovan.jimenez
  123. * Apache/Solr/HttpTransportException.php, Apache/Solr/Service.php:
  124. See issue #38 - Adding support for Solr Cell (tika) extraction
  125. handler. Thanks to Liam O'Boyle for original patch.
  126. 2010-03-22 23:10 donovan.jimenez
  127. * Apache/Solr/Service.php: See Issue #39 - send charset for POST
  128. form encoded data so that the servlet container for solr will
  129. interpret data correctly (will usually default to latin1)
  130. 2010-03-22 23:06 donovan.jimenez
  131. * Apache/Solr/Service.php: Resolving Issue #40 - when using php
  132. with all error output or using a code analyzer, the
  133. http_response_header variable looks as though it won't be
  134. initialized before being used. Initializing it to null to
  135. alleviate the emitted warning.
  136. 2010-03-10 00:28 donovan.jimenez
  137. * tests, tests/Apache, tests/Apache/Solr,
  138. tests/Apache/Solr/DocumentTest.php,
  139. tests/Apache/Solr/ResponseTest.php, tests/Apache/Solr/Service,
  140. tests/Apache/Solr/Service/BalancerTest.php,
  141. tests/Apache/Solr/Service/TestAll.php,
  142. tests/Apache/Solr/ServiceTest.php, tests/Apache/Solr/TestAll.php,
  143. tests/README, tests/phpunit.bootstrap.inc, tests/phpunit.xml,
  144. tests/run.php: Adding some very dusty unit tests. They are not
  145. complete, and some recent API changes may not be reflected in
  146. them, but they are a start.
  147. 2010-02-20 00:01 donovan.jimenez
  148. * Apache/Solr/Service/Balancer.php: See Issue #34 - synchronizing
  149. Apache_Solr_Service_Balancer public methods with changes in
  150. Apache_Solr_Service. Specifically, adding some missing optional
  151. timeout parameters and adding the new deleteByMultipleIds method
  152. 2010-02-19 23:47 donovan.jimenez
  153. * Apache/Solr/Response.php: See Issue #35 - implementing __isset
  154. magic method on Apache_Solr_Response
  155. 2010-02-19 23:36 donovan.jimenez
  156. * Apache/Solr/Document.php, Apache/Solr/Exception.php,
  157. Apache/Solr/HttpTransportException.php,
  158. Apache/Solr/InvalidArgumentException.php,
  159. Apache/Solr/NoServiceAvailableException.php,
  160. Apache/Solr/ParserException.php, Apache/Solr/Response.php,
  161. Apache/Solr/Service.php, Apache/Solr/Service/Balancer.php: See
  162. Issue #36 - fix usage of generic exceptions, thanks to dennis
  163. vierkant for the patch.
  164. 2009-12-10 03:51 donovan.jimenez
  165. * Apache/Solr/Service.php: Fixes issue #28 - Fixes typo in
  166. setNamedListTreatment function name. Thanks to alex dunae
  167. 2009-12-10 03:49 donovan.jimenez
  168. * Apache/Solr/Response.php: Fixes issue #27 - when parsing the JSON
  169. data, add a check for null so we can throw an exception if the
  170. response seems to be invalid. Thanks to thomas rabaix for the
  171. suggestion.
  172. 2009-11-21 02:07 donovan.jimenez
  173. * Apache/Solr/Service.php: see issue #23 - removing unused (by Sorl
  174. JSON writer) and incorrect (version did not track with Solr
  175. version) version parameter from all requests
  176. 2009-11-21 02:02 donovan.jimenez
  177. * Apache/Solr/Service.php: Fixes #26 - Do a php version check
  178. against 5.1.3 to determine whether brackets will be url encoded
  179. by http_build_query function. Depending on the result of the
  180. version check use the proper regex for fixing up the query string
  181. before passing it to Solr
  182. 2009-11-09 22:46 donovan.jimenez
  183. * Apache/Solr/Service.php: Fixes #20 - in previous fix, used
  184. stream_context_set_params when I should have used
  185. stream_context_set_option
  186. 2009-11-09 22:08 donovan.jimenez
  187. * Apache/Solr/Service.php: Fixes #20 - Reusing a get and post
  188. context for each request instead of creating a new stream context
  189. for each. PHP does not provide a function to delete created
  190. stream contexts and does not appear to clean them up when they go
  191. out of scope, which leads to high memory usage when many solr
  192. requests were issued (typically in indexing usage)
  193. 2009-11-09 21:32 donovan.jimenez
  194. * Apache/Solr/Service.php: Fixes #21 - Adding method to delete by
  195. multiple IDs. Thanks to pwolanin
  196. 2009-08-12 14:08 donovan.jimenez
  197. * Apache/Solr/Response.php: The split function is deprecated as of
  198. PHP 5.3. Furthermore, since none of my split's were using a regex
  199. it is better to use explode anyway. Fixes #19
  200. 2009-08-04 18:23 donovan.jimenez
  201. * Apache/Solr/Response.php, Apache/Solr/Service.php: Removed todo's
  202. about investigating Serialized PHP and PHP output writer usage.
  203. I've made the decision to stick to usage of JSON output writer
  204. until it can be proven that the other output writers are more
  205. stable or provide a substantially faster implementation. Closes
  206. issue #6
  207. 2009-08-04 17:53 donovan.jimenez
  208. * Apache/Solr/Document.php, Apache/Solr/Response.php,
  209. Apache/Solr/Service.php, Apache/Solr/Service/Balancer.php: Adding
  210. useful SVN metadata constants to each Apache_Solr class by svn
  211. keyword substitution. Fixes issue #16
  212. 2009-08-04 17:14 donovan.jimenez
  213. * Apache/Solr/Service.php: Fixes issue #5 - Applying patch (with
  214. minor changes) from mkalkbrenner to replace all control
  215. characters in Apache_Solr_Document keys / values with spaces to
  216. avoid an exception from Solr's XML Parser.
  217. 2009-07-20 14:14 donovan.jimenez
  218. * Apache/Solr/Service.php: See issue #14
  219. * adding timeout parameters to all delete functions
  220. 2009-05-11 14:51 donovan.jimenez
  221. * Apache/Solr/Service.php: See issue #8
  222. * Adding the ability to specify the HTTP method used for sending
  223. a search query (GET or POST)
  224. 2009-03-12 03:46 donovan.jimenez
  225. * Apache/Solr/Service.php: See
  226. http://code.google.com/p/solr-php-client/issues/detail?id=4
  227. * Reworking Service::ping() to just use file_get_contents URL
  228. wrappers like we do for other GET's and POST operations
  229. * Reworked Service::_sendRawGet() and Service::_sendRawPost() to
  230. create a new stream context each time. Used for controlled
  231. request timeouts, headers, and POST information
  232. 2009-01-29 00:49 donovan.jimenez
  233. * Apache/Solr/Document.php: See
  234. http://code.google.com/p/solr-php-client/issues/detail?id=2
  235. Attempting to fix null vs. false boost parameter value issue by
  236. always casting to float value first.
  237. Needs tested.
  238. 2009-01-28 17:11 donovan.jimenez
  239. * Apache/Solr/Service.php, Apache/Solr/Service/Balancer.php: See
  240. http://code.google.com/p/solr-php-client/issues/detail?id=1
  241. Changed require_once statements that expected the Solr Client
  242. library to be on the include path into statements that use the
  243. __FILE__ magic constant to do them as absolute paths. This should
  244. get rid of the requirement for the user to change their include
  245. path configuration or add the library to the include path at
  246. runtime.
  247. Provided as a convenience for the user.
  248. 2009-01-22 04:01 donovan.jimenez
  249. * Apache/Solr/Document.php, Apache/Solr/Response.php,
  250. Apache/Solr/Service.php, Apache/Solr/Service/Balancer.php,
  251. COPYING: Updating license to New BSD for google code hosting.
  252. Also updating copyright message
  253. 2009-01-21 23:50 donovan.jimenez
  254. * Apache, Apache/Solr, Apache/Solr/Document.php,
  255. Apache/Solr/Response.php, Apache/Solr/Service,
  256. Apache/Solr/Service.php, Apache/Solr/Service/Balancer.php:
  257. Importing Solr PHP client from last released zip file
  258. 2008-11-26 00:26
  259. * .: Initial directory structure.