<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,6 @@
 
 from django.contrib import admin
-from oebfare.blog.models import Post
+from blog.models import Post
 
 class PostAdmin(admin.ModelAdmin):
     list_display = (&quot;id&quot;, &quot;title&quot;, &quot;pub_date&quot;)</diff>
      <filename>apps/blog/admin.py</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@ from django.core.exceptions import ObjectDoesNotExist
 
 from tagging.models import Tag, TaggedItem
 
-from oebfare.blog.models import Post
+from blog.models import Post
 
 class LatestPostFeed(feeds.Feed):
     &quot;&quot;&quot;</diff>
      <filename>apps/blog/feeds.py</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,9 @@
 
 from django.conf.urls.defaults import *
 
-from oebfare.blog.models import Post
-from oebfare.blog.views import *
-from oebfare.blog.feeds import LatestPostFeed, LatestPostsByTagFeed
+from blog.models import Post
+from blog.views import *
+from blog.feeds import LatestPostFeed, LatestPostsByTagFeed
 
 feeds = {
     &quot;latest&quot;: LatestPostFeed,</diff>
      <filename>apps/blog/urls.py</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 
 from django.views.generic import date_based
-from oebfare.blog.models import Post
+from blog.models import Post
 
 def privileged_post_queryset(view_func):
     def _wrapped_view(request, **kwargs):</diff>
      <filename>apps/blog/views.py</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 
 from django.contrib import admin
-from oebfare.links.models import Link
+from links.models import Link
 
 admin.site.register(Link)</diff>
      <filename>apps/links/admin.py</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 
 from django.contrib.syndication import feeds
 
-from oebfare.links.models import Link
+from links.models import Link
 
 class LatestLinkFeed(feeds.Feed):
     &quot;&quot;&quot;</diff>
      <filename>apps/links/feeds.py</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 
 from django.template import Library, Node
 
-from oebfare.links.models import Link
+from links.models import Link
 
 register = Library()
 </diff>
      <filename>apps/links/templatetags/link_tags.py</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 
 from django.conf.urls.defaults import *
 
-from oebfare.links.feeds import LatestLinkFeed
+from links.feeds import LatestLinkFeed
 
 feeds = {
     &quot;latest&quot;: LatestLinkFeed,</diff>
      <filename>apps/links/urls.py</filename>
    </modified>
    <modified>
      <diff>@@ -75,9 +75,9 @@ TEMPLATE_DIRS = (
 )
 
 INSTALLED_APPS = (
-   &quot;oebfare.blog&quot;,
-   &quot;oebfare.links&quot;,
-   &quot;oebfare.aggregator&quot;,
+   &quot;blog&quot;,
+   &quot;links&quot;,
+   &quot;aggregator&quot;,
    
    &quot;tagging&quot;,
    </diff>
      <filename>conf/global_settings.py</filename>
    </modified>
    <modified>
      <diff>@@ -13,10 +13,10 @@ urlpatterns = patterns(&quot;&quot;,
         &quot;template&quot;: &quot;about.html&quot;,
     }),
     url(r&quot;^admin/(.*)&quot;, admin.site.root),
-    url(r&quot;^blog/&quot;, include(&quot;oebfare.blog.urls&quot;)),
+    url(r&quot;^blog/&quot;, include(&quot;blog.urls&quot;)),
     url(r&quot;^comments/&quot;, include(&quot;django.contrib.comments.urls&quot;)),
-    url(r&quot;^links/&quot;, include(&quot;oebfare.links.urls&quot;)),
-    url(r&quot;^$&quot;, &quot;oebfare.blog.views.homepage&quot;, name=&quot;oebfare_home&quot;),
+    url(r&quot;^links/&quot;, include(&quot;links.urls&quot;)),
+    url(r&quot;^$&quot;, &quot;blog.views.homepage&quot;, name=&quot;oebfare_home&quot;),
 )
 
 if settings.LOCAL_DEVELOPMENT:</diff>
      <filename>urls.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f2bad6829061f83436a0aea5f30f24b105398612</id>
    </parent>
  </parents>
  <author>
    <name>Brian Rosner</name>
    <email>brosner@gmail.com</email>
  </author>
  <url>http://github.com/brosner/oebfare/commit/f3d436e52de129bbf03f5d57d741f592d42b5c93</url>
  <id>f3d436e52de129bbf03f5d57d741f592d42b5c93</id>
  <committed-date>2008-11-03T10:55:07-08:00</committed-date>
  <authored-date>2008-11-03T10:55:07-08:00</authored-date>
  <message>Made the code changes for apps to live on the PYTHONPATH.</message>
  <tree>e15636f867dde9925e0b659900d117a9eb888f10</tree>
  <committer>
    <name>Brian Rosner</name>
    <email>brosner@gmail.com</email>
  </committer>
</commit>
