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 04:14:03 UTC

[lucy-commits] svn commit: r1030817 - in /incubator/lucy/trunk: clownfish/lib/Clownfish.pm core/KinoSearch/Object/VTable.c perl/buildlib/Lucy/Build.pm perl/buildlib/Lucy/Redacted.pm perl/t/binding/019-obj.t

Author: marvin
Date: Thu Nov  4 03:14:03 2010
New Revision: 1030817

URL: http://svn.apache.org/viewvc?rev=1030817&view=rev
Log:
Change a few instances of "KinoSearch" to "Lucy" or "Apache Lucy" in various
documentation.

Modified:
    incubator/lucy/trunk/clownfish/lib/Clownfish.pm
    incubator/lucy/trunk/core/KinoSearch/Object/VTable.c
    incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm
    incubator/lucy/trunk/perl/buildlib/Lucy/Redacted.pm
    incubator/lucy/trunk/perl/t/binding/019-obj.t

Modified: incubator/lucy/trunk/clownfish/lib/Clownfish.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/lib/Clownfish.pm?rev=1030817&r1=1030816&r2=1030817&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/lib/Clownfish.pm (original)
+++ incubator/lucy/trunk/clownfish/lib/Clownfish.pm Thu Nov  4 03:14:03 2010
@@ -28,7 +28,7 @@ languages.
 
 =head1 PRIVATE API
 
-Clownfish is a KinoSearch implementation detail.  This documentation is partial --
+Clownfish is an Apache Lucy implementation detail.  This documentation is partial --
 enough for the curious hacker, but not a full API.
 
 =head1 DESCRIPTION

Modified: incubator/lucy/trunk/core/KinoSearch/Object/VTable.c
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/core/KinoSearch/Object/VTable.c?rev=1030817&r1=1030816&r2=1030817&view=diff
==============================================================================
--- incubator/lucy/trunk/core/KinoSearch/Object/VTable.c (original)
+++ incubator/lucy/trunk/core/KinoSearch/Object/VTable.c Thu Nov  4 03:14:03 2010
@@ -75,16 +75,16 @@ uint32_t
 VTable_get_refcount(VTable *self)
 {
     UNUSED_VAR(self);
-    /* VTable_Get_RefCount() lies to other KinoSearch code about the refcount
+    /* VTable_Get_RefCount() lies to other Lucy code about the refcount
      * because we don't want to have to synchronize access to the cached host
      * object to which we have delegated responsibility for keeping refcounts.
-     * It always returns 1 because 1 is a positive number, and thus other KinoSearch
+     * It always returns 1 because 1 is a positive number, and thus other Lucy 
      * code will be fooled into believing it never needs to take action such
      * as initiating a destructor.
      * 
      * It's possible that the host has in fact increased the refcount of the
      * cached host object if there are multiple refs to it on the other side
-     * of the KinoSearch/host border, but returning 1 is good enough to fool KinoSearch
+     * of the Lucy/host border, but returning 1 is good enough to fool Lucy 
      * code.
      */
     return 1;

Modified: incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm?rev=1030817&r1=1030816&r2=1030817&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm (original)
+++ incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm Thu Nov  4 03:14:03 2010
@@ -125,9 +125,9 @@ sub extra_ccflags {
 
 =for Rationale
 
-When the distribution tarball for the Perl binding of KinoSearch is built, core/,
+When the distribution tarball for the Perl binding of Lucy is built, core/,
 charmonizer/, and any other needed files/directories are copied into the
-perl/ directory within the main KinoSearch directory.  Then the distro is built from
+perl/ directory within the main Lucy directory.  Then the distro is built from
 the contents of the perl/ directory, leaving out all the files in ruby/, etc.
 However, during development, the files are accessed from their original
 locations.

Modified: incubator/lucy/trunk/perl/buildlib/Lucy/Redacted.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/buildlib/Lucy/Redacted.pm?rev=1030817&r1=1030816&r2=1030817&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/buildlib/Lucy/Redacted.pm (original)
+++ incubator/lucy/trunk/perl/buildlib/Lucy/Redacted.pm Thu Nov  4 03:14:03 2010
@@ -23,7 +23,7 @@ BEGIN {
     our @EXPORT_OK = qw( list );
 }
 
-# Return a partial list of KinoSearch classes which were once public but are
+# Return a partial list of Lucy classes which were once public but are
 # now either deprecated, removed, or moved.
 
 sub redacted {

Modified: incubator/lucy/trunk/perl/t/binding/019-obj.t
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/t/binding/019-obj.t?rev=1030817&r1=1030816&r2=1030817&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/t/binding/019-obj.t (original)
+++ incubator/lucy/trunk/perl/t/binding/019-obj.t Thu Nov  4 03:14:03 2010
@@ -71,7 +71,7 @@ like( $@, qr/abstract/i, "Obj is an abst
 
 my $object = TestObj->new;
 isa_ok( $object, "KinoSearch::Object::Obj",
-    "KinoSearch objects can be subclassed outside the KinoSearch hierarchy" );
+    "Clownfish objects can be subclassed outside the KinoSearch hierarchy" );
 
 # TODO: Port this test to C.
 eval { my $evil_twin = $object->clone };