You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2010/11/04 06:36:56 UTC

[lucy-commits] svn commit: r1030838 [12/12] - in /incubator/lucy/trunk: ./ clownfish/lib/Clownfish/Binding/ clownfish/lib/Clownfish/Binding/Core/ clownfish/lib/Clownfish/Binding/Perl/ core/KinoSearch/ core/Lucy/ core/Lucy/Analysis/ core/Lucy/Docs/ core/Lucy/Document/...

Modified: incubator/lucy/trunk/perl/xs/Lucy/Store/FSFolder.c
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/xs/Lucy/Store/FSFolder.c?rev=1030838&r1=1030833&r2=1030838&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/xs/Lucy/Store/FSFolder.c (original)
+++ incubator/lucy/trunk/perl/xs/Lucy/Store/FSFolder.c Thu Nov  4 05:36:36 2010
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-#include "KinoSearch/Util/ToolSet.h"
-#include "KinoSearch/Object/Host.h"
-#include "KinoSearch/Store/FSFolder.h"
+#include "Lucy/Util/ToolSet.h"
+#include "Lucy/Object/Host.h"
+#include "Lucy/Store/FSFolder.h"
 
 CharBuf*
 FSFolder_absolutify(const CharBuf *path)

Modified: incubator/lucy/trunk/perl/xs/Lucy/Util/Json.c
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/xs/Lucy/Util/Json.c?rev=1030838&r1=1030833&r2=1030838&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/xs/Lucy/Util/Json.c (original)
+++ incubator/lucy/trunk/perl/xs/Lucy/Util/Json.c Thu Nov  4 05:36:36 2010
@@ -14,11 +14,11 @@
  * limitations under the License.
  */
 
-#include "KinoSearch/Util/ToolSet.h"
+#include "Lucy/Util/ToolSet.h"
 
-#include "KinoSearch/Util/Json.h"
-#include "KinoSearch/Object/Host.h"
-#include "KinoSearch/Store/Folder.h"
+#include "Lucy/Util/Json.h"
+#include "Lucy/Object/Host.h"
+#include "Lucy/Store/Folder.h"
 
 bool_t
 Json_spew_json(Obj *dump, Folder *folder, const CharBuf *path)

Modified: incubator/lucy/trunk/perl/xs/Lucy/Util/StringHelper.c
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/xs/Lucy/Util/StringHelper.c?rev=1030838&r1=1030833&r2=1030838&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/xs/Lucy/Util/StringHelper.c (original)
+++ incubator/lucy/trunk/perl/xs/Lucy/Util/StringHelper.c Thu Nov  4 05:36:36 2010
@@ -15,7 +15,7 @@
  */
 
 #include "xs/XSBind.h"
-#include "KinoSearch/Util/StringHelper.h"
+#include "Lucy/Util/StringHelper.h"
 
 // TODO: replace with code from ICU in common/ucnv_u8.c.
 chy_bool_t

Modified: incubator/lucy/trunk/perl/xs/XSBind.c
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/xs/XSBind.c?rev=1030838&r1=1030837&r2=1030838&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/xs/XSBind.c (original)
+++ incubator/lucy/trunk/perl/xs/XSBind.c Thu Nov  4 05:36:36 2010
@@ -17,7 +17,7 @@
 #define C_LUCY_OBJ
 #define NEED_newRV_noinc
 #include "XSBind.h"
-#include "KinoSearch/Util/StringHelper.h"
+#include "Lucy/Util/StringHelper.h"
 
 // Convert a Perl hash into a Clownfish Hash.  Caller takes responsibility for
 // a refcount.
@@ -45,7 +45,7 @@ XSBind_new_blank_obj(SV *either_sv)
 
     // Get a VTable. 
     if (   sv_isobject(either_sv) 
-        && sv_derived_from(either_sv, "KinoSearch::Object::Obj")
+        && sv_derived_from(either_sv, "Lucy::Object::Obj")
     ) {
         // Use the supplied object's VTable. 
         IV iv_ptr = SvIV(SvRV(either_sv));
@@ -178,7 +178,7 @@ XSBind_perl_to_cfish(SV *sv)
                 retval = (cfish_Obj*)S_perl_hash_to_cfish_hash((HV*)inner);
             }
             else if (   sv_isobject(sv) 
-                     && sv_derived_from(sv, "KinoSearch::Object::Obj")
+                     && sv_derived_from(sv, "Lucy::Object::Obj")
             ) {
                 IV tmp = SvIV(inner);
                 retval = INT2PTR(cfish_Obj*, tmp);

Modified: incubator/lucy/trunk/perl/xs/XSBind.h
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/xs/XSBind.h?rev=1030838&r1=1030837&r2=1030838&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/xs/XSBind.h (original)
+++ incubator/lucy/trunk/perl/xs/XSBind.h Thu Nov  4 05:36:36 2010
@@ -25,14 +25,14 @@ extern "C" {
 #endif
 
 #include "charmony.h"
-#include "KinoSearch/Object/Obj.h"
-#include "KinoSearch/Object/ByteBuf.h"
-#include "KinoSearch/Object/CharBuf.h"
-#include "KinoSearch/Object/Err.h"
-#include "KinoSearch/Object/Hash.h"
-#include "KinoSearch/Object/Num.h"
-#include "KinoSearch/Object/VArray.h"
-#include "KinoSearch/Object/VTable.h"
+#include "Lucy/Object/Obj.h"
+#include "Lucy/Object/ByteBuf.h"
+#include "Lucy/Object/CharBuf.h"
+#include "Lucy/Object/Err.h"
+#include "Lucy/Object/Hash.h"
+#include "Lucy/Object/Num.h"
+#include "Lucy/Object/VArray.h"
+#include "Lucy/Object/VTable.h"
 
 #include "EXTERN.h"
 #include "perl.h"
@@ -149,7 +149,7 @@ cfish_XSBind_enable_overload(void *pobj)
  * length of the paramter name.  A NULL pointer terminates the list:
  *
  *     cfish_XSBind_allot_params(stack, start, num_stack_elems, 
- *         "KinoSearch::Search::TermQuery::new_PARAMS", 
+ *         "Lucy::Search::TermQuery::new_PARAMS", 
  *          &field_sv, "field", 5,
  *          &term_sv, "term", 4,
  *          NULL);