You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by rg...@apache.org on 2009/12/28 03:18:12 UTC

svn commit: r894126 - in /comdev/nearby_people: local_settings.py.example readme.txt

Author: rgardler
Date: Mon Dec 28 02:18:11 2009
New Revision: 894126

URL: http://svn.apache.org/viewvc?rev=894126&view=rev
Log:
Add a readme and make example settings work with a fresh checkout.

Added:
    comdev/nearby_people/readme.txt
Modified:
    comdev/nearby_people/local_settings.py.example

Modified: comdev/nearby_people/local_settings.py.example
URL: http://svn.apache.org/viewvc/comdev/nearby_people/local_settings.py.example?rev=894126&r1=894125&r2=894126&view=diff
==============================================================================
--- comdev/nearby_people/local_settings.py.example (original)
+++ comdev/nearby_people/local_settings.py.example Mon Dec 28 02:18:11 2009
@@ -5,8 +5,8 @@
 BASE_PATH = os.path.realpath(os.path.dirname(__file__))
 
 # FOAF/DOAP settings
-COMDEV_DOAP = os.path.join(BASE_PATH, "data/project/CommunityDevelopment.rdf")
-SPEAKERS_DOAP = os.path.join(BASE_PATH, "data/project/LocalSpeakers.rdf")
+COMDEV_DOAP = os.path.join(BASE_PATH, "../subprojects/CommunityDevelopment.rdf")
+SPEAKERS_DOAP = os.path.join(BASE_PATH, "../subprojects/LocalSpeakers.rdf")
 PEOPLE_FOAF_PATH = os.path.join(BASE_PATH, "data/people/")
 PEOPLE_FOAF_NAMESPACE = "http://people.apache.org/"
 

Added: comdev/nearby_people/readme.txt
URL: http://svn.apache.org/viewvc/comdev/nearby_people/readme.txt?rev=894126&view=auto
==============================================================================
--- comdev/nearby_people/readme.txt (added)
+++ comdev/nearby_people/readme.txt Mon Dec 28 02:18:11 2009
@@ -0,0 +1,22 @@
+A web application to help with two proposed areas of effort - Local Mentors and Local Speakers.
+
+On one side, there's a web application that people can use to find either a local mentor 
+(eg someone to go to the pub with who won't know about your project, but will know about 
+apache in general + any local/language things to be aware of with involvement in apache), 
+or someone local who's willing to talk about the ASF. 
+
+Behind the scenes, ASFers just need to pop the appropriate foaf:currentProject and foaf:based_near
+tags in their foaf files in [2]. They then need to provide a patch for
+subprojects/CommunityDevelopment.rdf and/or subprojects/LocalSpeakers.rdf see [3].
+
+If you're interested in having a play, it's a Django (python) web app. Just check it out [1] and
+our subproject DOAP files [3] (these need to be checked out to the same directory, or you
+need to update local_settings.py). You'll also need to check out the Apache Foaf files from [2], 
+either put [3] into data/people or edit PEOPLE_FOAF_PATH in local_settings.py accordingly. 
+
+Copy local_settings.py.example to local_settings.py and tell it where the checkouts are. 
+Finally, do ./manage.py runserver and then http://localhost:8000/ will be it.
+
+[1] https://svn.apache.org/repos/asf/comdev/nearby_people
+[2] https://svn.apache.org/repos/private/committers/info
+[3] https://svn.apache.org/repos/asf/comdev/subprojects  
\ No newline at end of file