You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2011/10/12 23:27:45 UTC

svn commit: r1182587 - in /incubator/lcf/branches/CONNECTORS-256: connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/ tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/

Author: kwright
Date: Wed Oct 12 21:27:44 2011
New Revision: 1182587

URL: http://svn.apache.org/viewvc?rev=1182587&view=rev
Log:
Start collecting test responses, and start to fix problems found with finding full urls

Added:
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/14773725.xml   (with props)
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19219017.xml   (with props)
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19319577.xml   (with props)
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19839654.xml   (with props)
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/30955295.xml   (with props)
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/get_timestamps.xml   (with props)
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full.xml   (with props)
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full_last.xml   (with props)
    incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_one.xml   (with props)
Modified:
    incubator/lcf/branches/CONNECTORS-256/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java

Modified: incubator/lcf/branches/CONNECTORS-256/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java?rev=1182587&r1=1182586&r2=1182587&view=diff
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java (original)
+++ incubator/lcf/branches/CONNECTORS-256/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java Wed Oct 12 21:27:44 2011
@@ -272,10 +272,16 @@ public class WikiConnector extends org.a
     DocumentSpecification spec, boolean[] scanOnly, int jobMode)
     throws ManifoldCFException, ServiceInterruption
   {
+    Map<String,String> urls = new HashMap<String,String>();
+    getDocURLs(documentIdentifiers,urls);
     for (int i = 0 ; i < documentIdentifiers.length ; i++)
     {
       if (!scanOnly[i])
-        getDocInfo(documentIdentifiers[i], versions[i], activities);
+      {
+        String url = urls.get(documentIdentifiers[i]);
+        if (url != null)
+          getDocInfo(documentIdentifiers[i], versions[i], url, activities);
+      }
     }
   }
   
@@ -1300,7 +1306,14 @@ public class WikiConnector extends org.a
     }
   }
 
-
+  // -- Methods and classes to perform a "get doc urls" operation. --
+  
+  protected void getDocURLs(String[] documentIdentifiers, Map<String,String> urls)
+    throws ManifoldCFException, ServiceInterruption
+  {
+    // MHL
+  }
+  
   // -- Methods and classes to perform a "get Timestamp" operation. --
 
   /** Obtain document versions for a set of documents.
@@ -1689,7 +1702,7 @@ public class WikiConnector extends org.a
 
   /** Get document info and index the document.
   */
-  protected void getDocInfo(String documentIdentifier, String documentVersion, IProcessActivity activities)
+  protected void getDocInfo(String documentIdentifier, String documentVersion, String fullURL, IProcessActivity activities)
     throws ManifoldCFException, ServiceInterruption
   {
     getSession();
@@ -1741,7 +1754,6 @@ public class WikiConnector extends org.a
             String author = t.getAuthor();
             String comment = t.getComment();
             String title = t.getTitle();
-            String fullURL = t.getFullURL();
             
             RepositoryDocument rd = new RepositoryDocument();
             dataSize = contentFile.length();
@@ -1856,7 +1868,6 @@ public class WikiConnector extends org.a
     protected String author = null;
     protected String title = null;
     protected String comment = null;
-    protected String fullURL = null;
     
     protected String statusCode = null;
     protected String errorMessage = null;
@@ -1907,7 +1918,6 @@ public class WikiConnector extends org.a
             {
               x.parse(is);
               contentFile = c.getContentFile();
-              fullURL = c.getURL();
               title = c.getTitle();
               author = c.getAuthor();
               comment = c.getComment();
@@ -1981,11 +1991,6 @@ public class WikiConnector extends org.a
       return title;
     }
     
-    public String getFullURL()
-    {
-      return fullURL;
-    }
-    
     public void cleanup()
     {
       if (contentFile != null)
@@ -2003,14 +2008,12 @@ public class WikiConnector extends org.a
   protected String getGetDocInfoURL(String documentIdentifier)
     throws ManifoldCFException
   {
-    return baseURL + "action=query&prop=revisions&pageids="+documentIdentifier+"&rvprop=user|comment|content&inprop=url";
+    return baseURL + "action=query&prop=revisions&pageids="+documentIdentifier+"&rvprop=user|comment|content";
   }
 
   /** Class representing the "api" context of a "get doc info" response */
   protected static class WikiGetDocInfoAPIContext extends SingleLevelContext
   {
-    /** Full URL */
-    protected String fullURL = null;
     /** Title */
     protected String title = null;
     /** Content file */
@@ -2035,7 +2038,6 @@ public class WikiConnector extends org.a
     {
       WikiGetDocInfoQueryContext pc = (WikiGetDocInfoQueryContext)child;
       tagCleanup();
-      fullURL = pc.getURL();
       title = pc.getTitle();
       contentFile = pc.getContentFile();
       author = pc.getAuthor();
@@ -2053,11 +2055,6 @@ public class WikiConnector extends org.a
       }
     }
 
-    public String getURL()
-    {
-      return fullURL;
-    }
-
     public String getTitle()
     {
       return title;
@@ -2085,8 +2082,6 @@ public class WikiConnector extends org.a
   /** Class representing the "api/query" context of a "get doc info" response */
   protected static class WikiGetDocInfoQueryContext extends SingleLevelContext
   {
-    /** Full URL */
-    protected String fullURL = null;
     /** Title */
     protected String title = null;
     /** Content file */
@@ -2111,7 +2106,6 @@ public class WikiConnector extends org.a
     {
       WikiGetDocInfoPagesContext pc = (WikiGetDocInfoPagesContext)child;
       tagCleanup();
-      fullURL = pc.getURL();
       title = pc.getTitle();
       contentFile = pc.getContentFile();
       author = pc.getAuthor();
@@ -2129,11 +2123,6 @@ public class WikiConnector extends org.a
       }
     }
 
-    public String getURL()
-    {
-      return fullURL;
-    }
-
     public String getTitle()
     {
       return title;
@@ -2161,8 +2150,6 @@ public class WikiConnector extends org.a
   /** Class representing the "api/query/pages" context of a "get doc info" response */
   protected static class WikiGetDocInfoPagesContext extends SingleLevelContext
   {
-    /** Full URL */
-    protected String fullURL = null;
     /** Title */
     protected String title = null;
     /** Content file */
@@ -2187,7 +2174,6 @@ public class WikiConnector extends org.a
     {
       WikiGetDocInfoPageContext pc = (WikiGetDocInfoPageContext)child;
       tagCleanup();
-      fullURL = pc.getURL();
       title = pc.getTitle();
       contentFile = pc.getContentFile();
       author = pc.getAuthor();
@@ -2205,11 +2191,6 @@ public class WikiConnector extends org.a
       }
     }
 
-    public String getURL()
-    {
-      return fullURL;
-    }
-
     public String getTitle()
     {
       return title;
@@ -2237,8 +2218,6 @@ public class WikiConnector extends org.a
   /** Class representing the "api/query/pages/page" context of a "get doc info" response */
   protected static class WikiGetDocInfoPageContext extends BaseProcessingContext
   {
-    /** Full URL */
-    protected String fullURL = null;
     /** Title */
     protected String title = null;
     /** Content file */
@@ -2258,7 +2237,6 @@ public class WikiConnector extends org.a
     {
       if (qName.equals("page"))
       {
-        fullURL = atts.getValue("fullurl");
         title = atts.getValue("title");
         return new WikiGetDocInfoRevisionsContext(theStream,namespaceURI,localName,qName,atts);
       }
@@ -2293,11 +2271,6 @@ public class WikiConnector extends org.a
       }
     }
 
-    public String getURL()
-    {
-      return fullURL;
-    }
-    
     public String getTitle()
     {
       return title;

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/14773725.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/14773725.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/14773725.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/14773725.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<api><query><pages><page pageid="14773725" ns="0" title="Kre8tiveworkz"><revisions><rev user="71.196.107.90" anon="" comment="/* Company Identity */" xml:space="preserve">{{orphan|date=July 2009}}
+
+[[Image:kre8tiveworkz logo.jpg|300px|right|]]
+'''Kre8tiveworkz''', a privately owned [[United States|American]] company based in [[Pembroke Pines, Florida]], is the original manufacturer and designer of Reality Rhyming&lt;!--hide broken link &lt;ref name=autogenerated1&gt;[http://www.fox4morningblend.com/tabid/3530/story/18679/Default.aspx Fox 4 Morning Blend - Turn Your Day Around Weekdays at 10AM &gt; Past Shows &gt; Segment Detail]&lt;/ref&gt; --&gt; personalized poetry gifts worldwide.  Reality Rhyming is a poetic writing style that uses a person's name and background information about a person's life and their experiences to create a story of [[rhyme]] for a particular occasion that's based on the premise "If Your Life Was A Poem, What Would It Say?".
+
+== Background ==
+
+Founded in 2004 by 34 year old [[Barbara Goleman Senior High]] [[Special Education]] [[Teacher]] and [[American poet]] Todd Edwards&lt;!-- broken link &lt;ref name=autogenerated3&gt;http://www.miamiherald.com/news/broward/story/352651.html&lt;/ref&gt; --&gt;, who started the company by selling poetry in the form of people's lives by word of mouth.  He was born in [[Hollywood, Florida]] in 1970 to his parents Michell and Joan Rubinstein.  Edwards' birth name is Todd Edward Rubinstein and is also an avid tennis player, being formally ranked #1 in Florida, 9th in United States (2006 - singles, Men's 30's) and #1 in Florida, 8th in United States (2008 - doubles - Men's 30's).
+
+[[Image:Marth Stewart finished frame this one.JPG|thumb|Sample Kre8tiveworkz Reality Rhyming personalized poetry masterpiece designed for [[Martha Stewart]]]].
+===Company Identity===
+In 2006, the Kre8tiveworkz personalized gift company redesigned its identity, along with branding the poetic writing style of Reality Rhyming. The slogans (2006) "Expressions for a Lifetime", (2007) "If Your Life Was A Poem, What Would It Say?", (2008) "If Your Pet's Life Was A Poem, What Would It Say?" and "If Your Wedding Was A Poem, What Would It Say?" created a mass public appeal by being promoted in ad campaigns, a practice the company continues to the present day.  The company has showcased its collections in art shows, at special events, on televised newscasts,&lt;ref name=autogenerated2&gt;[http://www.nbc6.net/station/13915322/detail.html On Friday's Show - About NBC 6 News Story - WTVJ | Miami&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;&lt;ref name=autogenerated4&gt;[http://www1.wsvn.com/features/articles/stylefiles/MI70669/ WSVN-TV - Style Files - Extreme Gifts&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;, including [[Entertainment Tonight]],&lt;ref&gt;http://
 www.etonline.com/news/2008/12/69167/index.html&lt;/ref&gt; the [[Today (NBC program)|Today Show]]&lt;ref&gt;http://today.msnbc.msn.com/id/26184891/vp/30641675#30641675&lt;/ref&gt;, ABC's [[Extreme Makeover: Home Edition]]&lt;ref&gt;http://abc.go.com/primetime/xtremehome/index?pn=afo#t=131956&lt;/ref&gt; and other media outlets.&lt;ref&gt;[http://specialevents.com/eventtools/rhyme_time/ Rhyme Time | Kre8tiveworkz introduces Reality Rhyming&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;   
+
+Some celebrities and organizations that Kre8tiveworkz has designed poetry for have been [[Elton John]]&lt;ref&gt;[http://www.eltonjohnworld.com/coranto/news/2007/November/EltontobeFetedForHelpWithC.html Elton to be Feted For Help With Children's Charity&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;, [[Ellen DeGeneres]], [[Maria Sharapova]]&lt;ref&gt;[http://enews.penton.com/enews/specialevents/eventline/2007_november_07_november/display Eventline: EVENTLINE: HOTELS EXPECT STRONG EVENT BUSINESS IN '08&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;, [[Oprah Winfrey]]&lt;ref&gt;http://www.prleap.com/pr/104532/&lt;/ref&gt;, [[Justin Timberlake]], [[Martha Stewart]], NFL Commissioner [[Roger Goodell]], [[Kathie Lee Gifford]], [[Donny Deutsch]], [[Regis Philbin]], [[Kelly Ripa]], [[Paris Hilton]], [[Hoda Kotb]], [[Will I Am]], [[James Blake]], Kevin Harrington, [[Daymond John]], [[Jeana Keough]] of the Housewives of OC, [[Keegan-Michael Key]] of MADtv, [[Kimbo Slice]] MMA Fighter
 , Lisa Stanley of [[KRTH]] 101, [[NBC]]&lt;ref name=autogenerated2 /&gt; and [[Fox Broadcasting Company|Fox]]&lt;ref name=autogenerated4 /&gt; Television Networks, [[Carling Bassett]], [[Nadia Petrova]], the [[Academy Awards]], Sandals Resorts, Hard Rock Hotels, [[Miami-Dade County Public Schools]], the [[Miami Heat]], Lorraine Thomas and television news personalities such as Lynn Martinez, Louis Aguirre and [[Belkys Nerey]] of [[WSVN]],&lt;ref&gt;[http://www.pr.com/press-release/64240 Kre8tiveworkz to be Featured on Top Rated South Florida News Program - PR.com&lt;!-- Bot generated title --&gt;]&lt;/ref&gt; Cyndi Edwards and Dave Nemeth of the nationally syndicated show "Daytime", Bob Mayer, Trina Robinson and Kelly Craig of "South Florida Today" and Gayle Guyardo, Jennifer Hill and Alicia Roberts of WFLA.  
+
+In 2006, Kre8tiveworkz founded the "Kre8tiveworkz Humanitarian Award" which is an inspirational award given to individuals who have demonstrated outstanding service to their community and have contributed to making the world a better place.  Winners include:  2006 [[Oprah Winfrey]], 2007 Karen Embden of [[Miami-Dade County Public Schools]], 2008 Bob Mayer, Trina Robinson and Kelly Craig of [[WTVJ]] and 2009 [[Janet Reno]].
+
+===Charitable Organizations===
+
+Kre8tiveworkz has been linked to charitable organizations such as [[Fran Drescher]]'s Cancer Schmancer, the [[American Heart Association]], the [[Andy Roddick]] Foundation&lt;ref&gt;[http://www.andyroddick.com/3699/pr-insidecom-singersongwriter-to-receive-honor-from-andy-roddick-foundation/ AndyRoddick.com » Blog Archive » PR-Inside.com: SINGER/SONGWRITER TO RECEIVE HONOR FROM ANDY RODDICK FOUNDATION&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;, the [[Make-A-Wish Foundation]]&lt;ref&gt;[http://sfla.wish.org/spev-ichmawball07B-auction.htm Make-A-Wish Foundation of Southern Florida InterContinental Make-A-Wish Ball Featuring Sharon Stone Natalie Cole Governor Charlie Crist&lt;!-- Bot generated title --&gt;]&lt;/ref&gt;, Shriners Children's Hospital, Adopt-A-Classroom, Metro Zoo, Women of Tomorrow, ICAN, the Ann Storke Foundation, Dress for Success and the Sydney &amp; Alexandria Cohen Foundation.
+
+==Management ==
+The current President and CEO is Todd Edwards and the current Director is his father, Michell Rubinstein.
+
+== External links ==
+
+*Official Site [http://www.RealityRhyming.com]
+
+== References ==
+{{reflist}}
+
+[[Category:Companies based in Florida]]</rev></revisions></page></pages></query></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/14773725.xml
------------------------------------------------------------------------------
    svn:binary = 

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19219017.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19219017.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19219017.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19219017.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<api><query><pages><page pageid="19219017" ns="0" title="Kre M'Baye"><revisions><rev user="Noformation" comment="Reverted edit(s) by [[Special:Contributions/173.35.84.11|173.35.84.11]] identified as test/vandalism using [[WP:STiki|STiki]]" xml:space="preserve">{{Orphan|date=November 2008}}
+'''Kre M’Baye''', also known as Amadou (or Armedy) Kre M’Baye, is a Senegalese artist and art instructor. He was born Andy Keve in [[Dakar, Senegal]] on April 25, 1949. He was nicknamed “Kere” or “Kre” even as a primary school child because he used to draw constantly on the classroom blackboard with chalk. Since 1969 he has been an associate of celebrated [[Africa]]n artists such as Ibou Diouf, Mamadou Niang, Seidou Barry, Mor Faye (father of Ousmane Faye) and Art College professor Pierre Lods. 
+
+In 1974 he played the head of a gang in the well-received movie ''Baks (Yamba)''&lt;ref&gt;[http://translate.google.com/translate?hl=en&amp;sl=fr&amp;u=http://www.africine.org/%3Fmenu%3Dfilm%26no%3D6942&amp;sa=X&amp;oi=translate&amp;resnum=9&amp;ct=result&amp;prev=/search%3Fq%3Dbaks%2BYamba%26hl%3Den%26client%3Dfirefox-a%26rls%3Dorg.mozilla:en-US:official%26hs%3DtEJ Africine Website]&lt;/ref&gt; produced by Momar Thiam, but abandoned his acting career in favor of his career as an artist. His first exhibition in 1976 at the Dynamique Museum of Dakar was highly acclaimed, his painting “The Messenger” receiving particular praise by President [[Léopold Sédar Senghor]]. 
+
+Some of his best-known works are his portraits of women inspired by the face of his mother Fari Fate (Mame Fari),&lt;ref&gt;[http://sfgate.com/cgi-bin/article.cgi?file=/c/a/2005/11/11/EBG2AFIHKH1.DTL San Francisco Chronicle ''Emeryville: Gallery Gives Rare Spotlight to West African Art'' by Rick DelVecchio, San Francisco Chronicle Nov. 11th, 2005]&lt;/ref&gt; “a woman [[griot]] of great renown; a fascinating storyteller of Senegalese history”. Very stylish, full of exuberance and cheerfulness, Fari Fate with her jewelries, her meticulous dresses, her elaborate hairstyles, inspired to the artist a painting style full of fineness. M'Baye has another style that tends to abstract paintings dominated by blue and orange colors.
+
+M'Baye is a disciple of Pierre Lods and was self-trained in the workshop of Peter Plastics Research Lods.&lt;ref&gt;[http://findarticles.com/p/articles/mi_m0438/is_3_35/ai_98171011/pg_19 ''The Ecole de Dakar: Pan-Africanism in Paint and Textile by Elizabeth Harney (Autumn 2002) African Arts]&lt;/ref&gt; In 1994 Gaston Madeira formed "Netty Guy" (The Three Baobabs), bringing together Kré M'Baye, Moussa N'Diaye Baydie M'Baye and Zulu, three painters representative of the School of Arts in Dakar, who in 1998 opened a gallery on the Senegalese island of N'gor and founded Workshops N'gor.&lt;ref&gt;[http://translate.google.com/translate?hl=en&amp;sl=fr&amp;u=http://www.takusaan.com/pages/neoCrea/art-ngor-present.html&amp;sa=X&amp;oi=translate&amp;resnum=2&amp;ct=result&amp;prev=/search%3Fq%3Dkre%2Bmbaye%26start%3D30%26hl%3Den%26client%3Dfirefox-a%26rls%3Dorg.mozilla:en-US:official%26sa%3DN%26pwst%3D1 Takusaan Website]&lt;/ref&gt; He was a participant in Tenq, the first worksho
 p on the Triangle model (led by El Hadji Sy and sponsored by CBAO, [[Maersk]], SAEC and the [[British Council]], Dakar) held in West Africa, which took place at the Lycée Cheikh Oumar Fontiyou in Saint Louis, Senegal; the first event of Africa95, a year-long festival celebrating African arts in the [[United Kingdom|UK]] and Africa, featuring 25 artists from 10 African countries and Britain.&lt;ref&gt;[http://www.trianglearts.org/detail.php?id=33&amp;more=yes Triangle Arts Trust Website]&lt;/ref&gt; 
+
+His brother Seni M’Baye is also a noted Senegalese artist.
+
+==Exhibitions==
+* 1976	First exhibit to the 4th Senegalese painters and visual arts show at the Dynamique Museum of Dakar. 
+* 1983	New Expressions at [[Lorient]] in France
+* 1985	French Cultural Center in Dakar
+* 1985  IFA Gallery in [[Bonn, Germany]]
+* 1987	Senegalese painters &amp; visual artists exhibit – received Prize of the Head of State
+* 1987  Stadfische Gallery in Wendlinger in [[Germany]]
+* 1988	American Cultural Center of Dakar at the National Gallery – Kre’s ''Totem du Silence'' was the only painting selected to be put to auction
+* 1990	Le’Arche de la Defense in [[Paris, France]]
+* 1995	[[Cape Verde]]’ Islands – several traveling exhibitions
+* 1996	Contemporary Art Exhibition of Dammarie-les-Lys in France – won the City Prize
+* 1996	Selected to the Dak’Art 1996 Biennale&lt;ref&gt;Program of the event - Dak'Art: Biennial africain de l'art contemporain, Editions Cimaise, Paris, 1996&lt;/ref&gt;
+* 1998  Mil Arte, 98 Mill Lane (West Hampstead) [[London, England]] April - May
+* 1999	Kenkeleba Gallery in [[New York City]], U.S.A.
+* Since 1999, Permanent exposition at the Antenna Gallery, Félix Faure street in Dakar
+* 2002  Arts Plastiques Exposition: Dakar - Dakart at Aude Minart in Paris, France April 30 - May 5&lt;ref&gt;[http://www.africultures.com/index.asp?menu=affiche_evenement&amp;no_evenement=374 Africultures Website]&lt;/ref&gt;
+* 2005  April 1–14 National Gallery of Art - Sponsored by the American Cultural Center, [[National Museum of African Art]] in Washington. Three exhibitions of artists: Souleye Keita, Jacob Yacouba, and Amadou Kré M'Baye
+* 2005  [[St. Mark's Church]], New York City, U.S.A. Participated in Plexus International's presentation ''Erosions and Renaissance, Act IV'' 12/10/05
+* 2006  Senegalese Contemporary Art Exhibit: The Jokko Bar-Expo - 5 Rue Elzévir [[Paris, France]] (June - July)
+* 2007  Fine Arts Exhibition at Marcel Rozier's gallery in [[Bois-le-Roi, Seine-et-Marne|Bois-le-Roi]] from May 12–20 
+* 2008  Black Visibility: Contemporary African Art Exhibit March 19 - April 5 at the Conservatoire des Arts, 1, parvis sources 78180 [[Montigny-le-Bretonneux]], [[Saint-Quentin-en-Yvelines]]
+
+==Awards==
+
+* 1987	Prize of the Head of State of Senegal
+* 1996	City Prize of [[Dammarie-les-Lys]], France
+* 1999	Awarded L’Ordre National du Lion by [[Abdou Diouf]], President of the Republic of Senegal
+
+==References==
+{{reflist}}
+
+* ''An Anthology of African Art: The Twentieth Century'' by N’Gone’ Fall &amp; Jean Loup Pivin (June 2, 2002) D.A.P./Editions Revue Noire ISBN 1891024388, ISBN 978-1891024382
+* ''The Courier: Africa-Caribbean-Pacific-European Union'' (1991) Published by Commission of the European Communities (Original from the University of Virginia)
+* ''The Ecole de Dakar: Pan-Africanism in Paint and Textile'' by Elizabeth Harney (Autumn 2002) African Arts 
+* ''El Arte Africano Contemporaneo Existe'' by Jean-Arsène Yao [http://latinamericalandya.blogspot.com/2008/06/el-arte-africano-contemporneo-existe.html Latinamericalandya Website]
+* ''Emeryville: Gallery Gives Rare Spotlight to West African Art'' by Rick DelVecchio, San Francisco Chronicle November 11, 2005 [http://sfgate.com/cgi-bin/article.cgi?file=/c/a/2005/11/11/EBG2AFIHKH1.DTL San Francisco Chronicle]
+* ''In Senghor's Shadow: Art, Politics, and the Avant-Garde in Senegal, 1960-1995'' by Elizabeth Harney (2004) Duke University Press, 2004 ISBN 0822333953, ISBN 9780822333951
+* ''La Presse'' (Tunisia) October 30, 1974
+* ''St. James Guide to Black Artists'' by Thomas Riggs (1997) St. James Press (Original from the University of Michigan) ISBN 1558622209, ISBN 9781558622203
+* ''Thinking About Exhibitions'' by Reesa Greenberg, Bruce W. Ferguson &amp; Sandy Naime (May 13, 1996) Routledge ISBN 0415115906, ISBN 978-0415115902
+* ''Trajectoires: Art Contemporain du Senegal'' by Joanna Grabski (Spring, 2008) African Arts
+
+==External links==
+* [http://www.krembaye.com/biographie2.htm Krembaye.com]
+
+{{Persondata &lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&gt;
+| NAME              = Mbaye, Kre
+| ALTERNATIVE NAMES =
+| SHORT DESCRIPTION =
+| DATE OF BIRTH     = 1949
+| PLACE OF BIRTH    =
+| DATE OF DEATH     =
+| PLACE OF DEATH    =
+}}
+{{DEFAULTSORT:Mbaye, Kre}}
+[[Category:Senegalese artists]]
+[[Category:1949 births]]
+[[Category:Living people]]
+[[Category:Senegalese people]]
+[[Category:Senegalese film actors]]</rev></revisions></page></pages></query></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19219017.xml
------------------------------------------------------------------------------
    svn:binary = 

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19319577.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19319577.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19319577.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19319577.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<api><query><pages><page pageid="19319577" ns="0" title="Kre Mbaye"><revisions><rev user="Rosencomet" comment="[[WP:AES|←]] Redirected page to [[Kre M'Baye]]" xml:space="preserve">#REDIRECT [[Kre M'Baye]]</rev></revisions></page></pages></query></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19319577.xml
------------------------------------------------------------------------------
    svn:binary = 

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19839654.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19839654.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19839654.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19839654.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<api><query><pages><page pageid="19839654" ns="0" title="Kre'fey"><revisions><rev user="Mr.Z-man" comment="[[Wikipedia:Articles for deletion/Kre'fey]] closed as redirect to [[The New Jedi Order]]" xml:space="preserve">#REDIRECT [[The New Jedi Order]]</rev></revisions></page></pages></query></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/19839654.xml
------------------------------------------------------------------------------
    svn:binary = 

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/30955295.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/30955295.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/30955295.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/30955295.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<api><query><pages><page pageid="30955295" ns="0" title="Kre-O"><revisions><rev user="99.229.33.31" anon="" comment="/* $30 price */" xml:space="preserve">{{multiple issues|cleanup=February 2011|refimprove=April 2011}}
+{{Infobox Toy
+|name=Kre-O
+|image=
+|type=[[Construction set]]
+|inventor=
+|country=[[United States]]
+|company=[[Hasbro]]
+|from=2011
+|to=present
+|website=http://www.hasbro.com/kre-o/en_US/
+}}
+''Not to be consfused with [[KREO]].''&lt;br&gt;
+
+'''KRE-O''' is a line of construction toys (similar to [[Lego]] and [[Megabloks]]) manufactured by [[Hasbro]]. Kre-O has been announced to release in stores in Fall 2011&lt;ref&gt;[http://www.usatoday.com/money/companies/2011-02-12-hasbro-transformers_N.htm USATODAY.com: Hasbro pushes into Lego's land with new blocks]&lt;/ref&gt;&lt;ref&gt;[http://geek-news.mtv.com/2011/04/27/mtv-geek-exclusive-images-transformers-kre-o-optimus-prime-bumblee-and-ratchet/?xrs=share_fb MTV Geek EXCLUSIVE Images: Transformers , Bumblee, and Ratchet]&lt;/ref&gt;, although Hasbro started shipping out the first ''Transformers'' sets in early June 2011.&lt;ref&gt;[http://tformers.com/transformers-kre-o-transformers-optimus-prime/15920/news.html Kre-O Transformers Optimus Prime Now Shipping - Time Lapse Video of Building Prime]&lt;/ref&gt; The creators of the toy franchise got the named "Kre-O", from the Latin word "[[creo]]", which means "I create".&lt;ref&gt;[http://www.tfw2005.com/transformers-ne
 ws/conventions-15/tfcc-magazine-issue-38-tidbits-171803/ TFCC Magazine Issue #38 Tidbits]&lt;/ref&gt; 
+
+==Kre-O Toylines==
+===Kre-O Transformers===
+Kre-O ''Transformers'' is the first line of all the Kre-O sets ever released. They were first shown at the New York Toy Fair 2011.&lt;ref&gt;[http://tformers.com/transformers-toy-fair-2011-transformers-building-block-toys-coming-in-2011/15131/news.html Toy Fair 2011 - Transformers Building Block Toys Coming In 2011]&lt;/ref&gt;
+====$7 "Basic" price====
+* '''[[Bumblebee (Transformers)|Bumblebee]]''' - 75 bricks, can be built as a robot or a car. No Kreons included.
+* '''[[Optimus Prime (Transformers)|Optimus Prime]]''' - 90 bricks, can be built as a robot or a semi-truck cab. No Kreons included.
+
+====$10 price====
+* '''[[Jazz (Transformers)|Jazz]]''' - 90 bricks, can be assemples as a robot or a sports car. Comes with 2 Kreons, '''Jazz''', and a '''driver'''.
+* '''[[Mirage (Transformers)|Mirage]]''' - 100 bricks, can be built as a robot or a race car. Comes with 3 Kreons, '''Mirage''', and 2 '''drivers'''.
+
+====$15 price====
+* '''[[Prowl (Transformers)|Prowl]]''' - 150 bricks, can be built as a robot or a police car. Comes with 3 Kreons, '''Prowl''', and 2 '''drivers'''. 
+
+====$20 price====
+* '''[[Ratchet (Transformers)|Ratchet]]''' - 200 pieces, can turn into a robot or an ambulance. Comes with 2 Kreons, '''Ratchet''' and a '''driver'''.
+* '''[[Sideswipe (Transformers)|Sideswipe]]''' - 220 bricks, can be build as a robot or a car. Comes with 2 Kreons, '''Sideswipe''' and a '''driver'''.&lt;ref&gt;[http://www.hasbro.com/kre-o/en_US/shop/details.cfm?R=50E47E34-5056-900B-10D0-19C5848E6ACC:en_US Hasbro.com - Kre-O Sideswipe]&lt;/ref&gt;
+
+====$25 price====
+* '''[[Bumblebee (Transformers)|Bumblebee]]''' - 336 bricks, can be built as a robot or a car. Comes with 3 Kreons, '''Bumblebee''', '''Red Alert''' and '''Driver'''.
+
+====$30 price====
+* '''[[Megatron (Transformers)|Megatron]]''' - 310 pieces, can be built as a robot or truck. Comes with  4 Kreons, '''Megatron''', '''[[Shockwave (Transformers)|Shockwave]]''', and 2 '''drivers'''.
+* '''[[Starscream]]''' - 316 bricks, can be built as a robot or a jet fighter. Comes with 3 Kreons, '''Starscream''',&lt;ref&gt;[http://www.tfw2005.com/transformers-news/transformers-movie-toys--products-30/more-transformers-kre-o-figures-and-kreons-revealed-171751/ More Transformers Kre-O Figures And Kreons Revealed]&lt;/ref&gt; and 2 '''pilots'''.
+
+====$40 price====
+* '''[[Sentinel Prime]]''' - 375 pieces, can be built as a robot or a fire truck. Comes with 5 Kreons, '''Sentinel Prime''', '''[[Soundwave (Transformers)|Soundwave]]''', '''[[Thundercracker]]''', and 2 '''drivers'''.
+
+====$60 price====
+* '''[[Optimus Prime (Transformers)|Optimus Prime]]''' - 500+ bricks, can be built as a robot or a semi-truck cab with trailer. Comes with 5 Kreons, '''Optimus Prime,''' '''[[Skywarp]]''', '''[[Bluestreak]]''', and 2 '''[[motorcycle]] drivers'''.&lt;ref&gt;[http://www.tfw2005.com/transformers-news/conventions-15/tfcc-magazine-issue-38-tidbits-171803/ TFCC Magazine Issue #38 Tidbits]&lt;/ref&gt;
+
+==Kreon==
+Kreon figures are mini [[super-deformed]] figures. They will be released with Kre-O construction sets. The Kre-O Transformers line will feature Kreon figures. Kreon figures are similar to [[Lego minifigure|Lego minifigures]] (e.g. [[Lego Batman]], [[Lego Star Wars]], [[Lego Atlantis]], [[Lego City]]). In the Kreon Transformers line there was 29 Kreon figures released (17 of them Transformers including an exclusive version of '''Optimus Prime''' that comes with the Matrix and 12 of them Humans.)
+
+==References==
+{{reflist}}
+[[Category:Construction toys]]
+[[Category:2011 introductions]]
+
+==External links==
+* [http://www.hasbro.com/kre-o/en_US/ Official Website]
+
+{{Hasbro}}</rev></revisions></page></pages></query></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/30955295.xml
------------------------------------------------------------------------------
    svn:binary = 

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/get_timestamps.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/get_timestamps.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/get_timestamps.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/get_timestamps.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1 @@
+<?xml version="1.0"?><api><query><pages><page pageid="14773725" ns="0" title="Kre8tiveworkz"><revisions><rev timestamp="2010-07-31T18:52:44Z" /></revisions></page><page pageid="19219017" ns="0" title="Kre M&#039;Baye"><revisions><rev timestamp="2011-05-29T22:07:53Z" /></revisions></page><page pageid="19319577" ns="0" title="Kre Mbaye"><revisions><rev timestamp="2008-09-14T20:37:19Z" /></revisions></page><page pageid="19839654" ns="0" title="Kre&#039;fey"><revisions><rev timestamp="2008-10-19T02:35:00Z" /></revisions></page><page pageid="30955295" ns="0" title="Kre-O"><revisions><rev timestamp="2011-09-06T12:20:20Z" /></revisions></page></pages></query></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/get_timestamps.xml
------------------------------------------------------------------------------
    svn:binary = 

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1 @@
+<?xml version="1.0"?><api><query><allpages><p pageid="19839654" ns="0" title="Kre&#039;fey" /><p pageid="30955295" ns="0" title="Kre-O" /><p pageid="14773725" ns="0" title="Kre8tiveworkz" /><p pageid="19219017" ns="0" title="Kre M&#039;Baye" /><p pageid="19319577" ns="0" title="Kre Mbaye" /></allpages></query><query-continue><allpages apfrom="Krea" /></query-continue></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full.xml
------------------------------------------------------------------------------
    svn:binary = 

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full_last.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full_last.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full_last.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full_last.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1 @@
+<?xml version="1.0"?><api><query><allpages><p pageid="19319577" ns="0" title="Kre Mbaye" /></allpages></query><query-continue><allpages apfrom="Kre Mbaye" /></query-continue></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_full_last.xml
------------------------------------------------------------------------------
    svn:binary = 

Added: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_one.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_one.xml?rev=1182587&view=auto
==============================================================================
--- incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_one.xml (added)
+++ incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_one.xml Wed Oct 12 21:27:44 2011
@@ -0,0 +1 @@
+<?xml version="1.0"?><api><query><allpages><p pageid="19839654" ns="0" title="Kre&#039;fey" /></allpages></query><query-continue><allpages apfrom="Krea" /></query-continue></api>
\ No newline at end of file

Propchange: incubator/lcf/branches/CONNECTORS-256/tests/wiki/src/test/resources/org/apache/manifoldcf/wiki_tests/list_one.xml
------------------------------------------------------------------------------
    svn:binary =