From: SVN c. m. f. t. SWORD-A. p. <swo...@li...> - 2012-04-25 11:53:14
|
Revision: 502 http://sword-app.svn.sourceforge.net/sword-app/?rev=502&view=rev Author: richard-jones Date: 2012-04-25 11:53:04 +0000 (Wed, 25 Apr 2012) Log Message: ----------- Add dependency declarations and some extra logging * setup.py now lists web.py and lxml==2.3.4 as dependencies * the ingesters_disseminators.py now logs (in debug mode) the incoming atom (default repository implementation only) Modified Paths: -------------- sss/branches/sss-2/setup.py sss/branches/sss-2/sss/ingesters_disseminators.py Modified: sss/branches/sss-2/setup.py =================================================================== --- sss/branches/sss-2/setup.py 2012-04-22 16:11:41 UTC (rev 501) +++ sss/branches/sss-2/setup.py 2012-04-25 11:53:04 UTC (rev 502) @@ -10,4 +10,5 @@ author_email='ric...@gm...', url='http://www.swordapp.org/', packages=find_packages(exclude=['tests']), + setup_requires=["web.py", "lxml==2.3.4"] ) Modified: sss/branches/sss-2/sss/ingesters_disseminators.py =================================================================== --- sss/branches/sss-2/sss/ingesters_disseminators.py 2012-04-22 16:11:41 UTC (rev 501) +++ sss/branches/sss-2/sss/ingesters_disseminators.py 2012-04-25 11:53:04 UTC (rev 502) @@ -204,6 +204,7 @@ ssslog.debug("Existing Metadata (before new ingest): " + str(metadata)) + ssslog.debug("Incoming atom: " + atom) entry = etree.fromstring(atom) # go through each element in the atom entry and just process the ones we care about This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |