<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>LICENSE</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,2 +1,38 @@
-sp.py is a small Python library for working with Microsoft Office SharePoint
-Server 2007.  sp.py requires IronPython.
\ No newline at end of file
+This library provides the ability to automate various
+SharePoint activities through easy to read and modify Python
+scripts.
+
+The core library is located in the sp module.  The scripts
+module contains a number of scripts for performing specific
+activities such as backing up sites.
+
+USAGE
+
+	# Working with the sp module.
+	
+	import sp
+	from sp import *
+	
+	# enumerate all sites and print out the url
+	sp.enum_sites(&quot;http://myserver&quot;, lambda s: print s.Url)
+	
+	# apply a master page to all webs
+	def apply_theme(web):
+		web.MasterUrl = &quot;http://myserver/custom.master&quot;
+		web.Update()
+	
+	sp.enum_all_webs(&quot;http://myserver&quot;, apply_theme)
+	
+	
+	# Calling scripts in the scripts module
+	
+	&gt; cd scripts
+	&gt; ipy backupsites.py http://myserver c:\backups
+	&gt;
+	&gt; ipy setprofileprop.py http://myserver Picture http://myserver/pics/{Alias}.jpg
+	&gt;
+
+REQUIREMENTS
+
+This library is designed to work with Iron Python 1.1.1.  You
+can download Iron Python from http://www.codeplex.com/IronPython.</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>5e914f463e62933dddf7c3a1d9d5fe32b0f715be</id>
    </parent>
  </parents>
  <author>
    <name>Glen Cooper</name>
    <email>glen@glenc.net</email>
  </author>
  <url>http://github.com/glenc/sp.py/commit/a7a663c930b018e11025f857da61ef2a804ae990</url>
  <id>a7a663c930b018e11025f857da61ef2a804ae990</id>
  <committed-date>2008-05-18T09:20:24-07:00</committed-date>
  <authored-date>2008-05-18T09:20:24-07:00</authored-date>
  <message>Updated readme and added a license</message>
  <tree>d805e6ebd8b174cee4fa212d4f1447a42d8bf9ae</tree>
  <committer>
    <name>Glen Cooper</name>
    <email>glen@glenc.net</email>
  </committer>
</commit>
