pinax

what is the 'self.__class__.__missing__' mean .

in pinax Userdict.py: def __getitem__(self, key): if key in self.data: return self.data[key] if hasattr(self.__class__, "__missing__"): return self.__class__.__missing__(self, key) why does it do this on self.__class__.__missing__. thanks ...

Apps won't show in Django admin

I've read all the other threads but I still don't get why my apps are not showing up in Django admin. Everything else works fine. My apps are in settings.py I have admin.autodiscover in my root urls.py file from django.conf.urls.defaults import * from django.conf import settings from django.views.generic.simple import direct_to_templ...

How to Run pinax inside eclipse ?

i have been trying to running some pinax code inside pydev eclipse i keep on having this error Error: Can't import Pinax. Make sure you are in a virtual environment that has Pinax installed or create one with pinax-boot.py. my question is how do i run pinax inside eclipse using django built in server i am python newbie ...

Any Ruby on Rails equivalent to Pinax?

Pinax is: An integrated collection of Django applications that provides the most commonly needed social networking features, including openID support, email verification, site announcements, user-to-user messaging, friend invitations, interest groups with discussions, wikis, and more. Cloud27 is a demonstration of Pin...

What is the purpose of pinax's groups?

I viewed the DjangoCon 2009 talks about pinax by James Tauber and pydanny and heared about pinax's groups. But I don't get the actual usecases they describe, even after reading the documentation. So what is the real purpose of groups and what advantages do I get in using them? It would be nice if you could provide a simple usecase to l...

How add an public API to an intranet-like site?

I run a Pinax-site for collaborative purposes. I added 'account.middleware.AuthenticatedMiddleware' to 'MIDDLEWARE_CLASSES' in order to not allow anonymous access to anything on the site. But now I need public APIs to be enabled. Is there any solutions besides adding 'login_required'-decorator at all the views that still need to be priv...

Is Pinax able to be deployed on gae?

Hi all, Is there any chance that an application developed with Pinax could be deployed in google app engine? As I know, Pinax is based on Django, and integrates tons of applications, it is suitable for building even a social networking site. It's extremely useful but I wonder if I can deploy it on google app engine. Thank you, ...

what is this code mean in django.

<a href={% url home %}></a> i can't find {% url %} in django api ...

pinax ImportError cannot import name UserOpenidAssociation

i have these errors ImportError at / cannot import name UserOpenidAssociation i could make any sense out of the traceback equest Method: GET Request URL: http://127.0.0.1:8000/ Django Version: 1.1.1 Python Version: 2.6.1 Installed Applications: ['inventory.inlanddbase'] Installed Middleware: ('django.middleware.common.CommonMiddleware'...

Tool for building a social network: Elgg or Pinax?

I'm going to build a social network (yes... another one). I'm thinking about using Pinax (which is Django which is Python) or Elgg (PHP). That's the two options I know. Could you help me to choose beetwen them? Another options? Thanks ...

Pinax TemplateSyntaxError

hi, i ran into this errors while trying to modify pinax database model i am using eclipse pydev i have this error on the pydev Exception Type: TemplateSyntaxError at / Exception Value: Caught an exception while rendering: (1146, "Table 'test1.announcements_announcement' doesn't exist") please how do i correct this UPDATE: i asked ...

how does create a new app in pinax ???

thanks only need 'python manage.py startapp xx' ??? ...

How do I get the google username and email when someone login my site use google openid. (I used pinax)

thanks the next is mysite1\django_openid\registration.py: from django.http import HttpResponseRedirect from django.core.mail import send_mail from django.conf import settings from django_openid.auth import AuthConsumer from django_openid.utils import OpenID, int_to_hex, hex_to_int from django_openid import signed from django_openid ...

how do i get the username and email when someono login my site use google openid .what does google return .

i used pinax,the user who login my site use openid is successful now , i only want to get the username and email when they return . the google openid url is :https://www.google.com/accounts/o8/id and yahoo openid url is :http://yahoo.com/ how can i get it . thanks ...

Pinax (13, 'Permission denied')

I'm a noob but I made my application work beautifully using python manage.py runserver but when I brought it to Apache + mod_wsgi, I keep getting this error. The debug messages aren't much help. Here is a screenshot of the entire debug image: http://img694.imageshack.us/img694/6723/screenshotfb.png Here is the dump of my http.conf file....

how do i get the username who login use openid ,i use django,pinax

1. 2 3. in this example,my username is zjm1126 ,and my email is [email protected], i want to get this. and this is my django-plug-in in this project: ...

Where does 'article_set' come from in Django?

Hello! I am currently working on a Django/Pinax application (I'm sure my question is not pinax-specific, that's why Pinax's not mentioned in the theme title), and trying to figure out how the whole framowork works. Right now I have to write a view to pass data to a tempate. I've only seen it done in the django manual: there ObjectName.o...

django error :1146, "Table 'basic_project.topics_topic' doesn't exist"

TemplateSyntaxError at /tribes/ Caught an exception while rendering: (1146, "Table 'basic_project.topics_topic' doesn't exist") why ?? thanks ...

Is Django the Best solution for me, if so please help me

What is the easiest (and fastest) way to migrate (+-) a simple data driven "app" to a Framework that does most of the work for me (like forms, add , remove). What I have is a simple Excel 2003 for Stock managemment. Quite simple, 3 tables: 1 for **Information **on the product. 1 with product code, type of movemment (IN ou OUT), quan...

which is the best library(python or javascipt) to save the google-maps info(kml file)..

i want to save the user's map info ,and then loading them when they need. i use python(pinax) and jquery , thanks ...