Installing Pinax 0.7 on Ubuntu

2013-03-25 Thread Christos Jonathan Hayward
I was wondering if people could help me with what I hope is a winning approach, installing 0.7 and dependencies. Thanks, -- [image: Christos Jonathan Hayward] <http://jonathanscorner.com/> Christos Jonathan Hayward, an Orthodox Christian author. *Amazon <http://amazon.com/author/cjsha

An alternate cry for help

2013-03-23 Thread Christos Jonathan Hayward
omething about Django and something about older, fully assembled versions of Pinax, but not how to take a starter Pinax project and make a finished site out of it. I'm ignorant on that point. How can I cure my ignorance? What resources are out there so I can get what was so easily in reach in old

As posted on StackOverflow

2013-03-22 Thread Christos Jonathan Hayward
e out of it. I'm ignorant on that point. How can I cure my ignorance? What resources are out there so I can get what was so easily in reach in older versions of Pinax? -- [image: Christos Jonathan Hayward] <http://jonathanscorner.com/> Christos Jonathan Hayward, an Orthodox Christian aut

Up-to-date Pinax Social Network *working*?

2013-03-22 Thread Christos Jonathan Hayward
ndering if you could give me any help to load static content appropriately (it doesn't work to copy the line that loads media and change it to point to static values). -- [image: Christos Jonathan Hayward] <http://jonathanscorner.com/> Christos Jonathan Hayward, an Orthodox C

Up-to-date Pinax social network?

2013-03-22 Thread Christos Jonathan Hayward
system whose features are best showcased in what happens to be a social network, but I have more easily gotten a social network running on 0.5 than more recent releases. -- [image: Christos Jonathan Hayward] <http://jonathanscorner.com/> Christos Jonathan Hayward, an Orthodox Christian author. *

Re: Where are the 2+ places user_id is defined?

2012-02-15 Thread Christos Jonathan Hayward
P.S. The source is at http://JonathansCorner.com/project/pim.tgz. On Wed, Feb 15, 2012 at 3:40 PM, Christos Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: > I forgot to specify where. The traceback is on a '''python manage.py > syncdb''

Re: Where are the 2+ places user_id is defined?

2012-02-15 Thread Christos Jonathan Hayward
I forgot to specify where. The traceback is on a '''python manage.py syncdb''', and happens immediately after the password is entered twice. On Wed, Feb 15, 2012 at 3:39 PM, Christos Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: > I'm

Re: Registering a user profile

2012-02-14 Thread Christos Jonathan Hayward
n Tue, Feb 14, 2012 at 12:32 PM, Kevin Anthony wrote: > Did you include the module in your settings.py? > > Kevin > Please excuse brevity, sent from phone > On Feb 14, 2012 1:27 PM, "Christos Jonathan Hayward" < > christos.jonathan.hayw...@gmail.com> wrote: > &g

Re: Registering a user profile

2012-02-14 Thread Christos Jonathan Hayward
tely you need to change the > "models" in AUTH_PROFILE_MODULE to the name of your app. > > Let us know if that works for you. > > Toodle-lo.. > creecode > > > -- > You received this message because you are subscribed to the Google G

Email settings to use localhost's email

2011-09-13 Thread Christos Jonathan Hayward
to my question: *How can I tell Django to use the VPS's regular sendmail to power send_mail, retry_deferred, and emit_notices?* * * Thanks in advance. -- [image: Christos Jonathan Hayward] <http://jonathanscorner.com/> Christos Jonathan Hayward, an Orthodox Christian

Re: Where is "base.html" that "templates/site_base.html" extends?

2011-09-09 Thread Christos Jonathan Hayward
f the directories > specified in your TEMPLATE_DIRS variable in settings.py. > They are considered in the order they are written, so the base.html you are > extending is the first you find in this sequence. > > Hope this helps, feel free to reply > > 2011/9/9 Christos J

Where is "base.html" that "templates/site_base.html" extends?

2011-09-09 Thread Christos Jonathan Hayward
te_base.html. -- [image: Christos Jonathan Hayward] <http://jonathanscorner.com/> Christos Jonathan Hayward, an Orthodox Christian author. Author Bio <http://jonathanscorner.com/author/> • Books<http://cjshayward.com/> • *Email * • Facebook<http://www.facebook.com/c

Re: Integrating django-honeypot with Pinax

2011-09-08 Thread Christos Jonathan Hayward
Breadcrumb note: someone on the list pointed out the middleware described at the bottom of django-honeypot's homepage. That was what I wanted. On Thu, Sep 8, 2011 at 1:21 PM, Christos Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: > I would like to incorporate d

Integrating django-honeypot with Pinax

2011-09-08 Thread Christos Jonathan Hayward
views to lessen the load of spam? -- [image: Christos Jonathan Hayward] <http://jonathanscorner.com/> Christos Jonathan Hayward, an Orthodox Christian author. Author Bio <http://jonathanscorner.com/author/> • Books<http://cjshayward.com/> • *Email * • Facebook<http://w

Re: Not calling clean() properly

2010-09-14 Thread Christos Jonathan Hayward
Thank you. On Tue, Sep 14, 2010 at 3:01 AM, Daniel Roseman wrote: > On Sep 13, 10:50 pm, Christos Jonathan Hayward > wrote: > > Other attempts to write a clean that would run a print statement and then > > call to_python(), validate(), and run_validators() did not result

Re: Not calling clean() properly

2010-09-13 Thread Christos Jonathan Hayward
alled. On Mon, Sep 13, 2010 at 3:44 PM, Christos Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: > I have a TextURLField defined below, and I am trying to get the clean() to > prepend http:// to all entries that do not contain a ':'. In other words, > if someo

Not calling clean() properly

2010-09-13 Thread Christos Jonathan Hayward
self.validate(value) self.run_validators(value) return value def get_internal_type(self): return u'TextField' def __init__(self, *arguments, **keywords): models.URLField.__init__(self, *arguments, **keywords) Any suggestions? -- [image: Christos

Gotcha with ?generic foreign keys?

2010-09-13 Thread Christos Jonathan Hayward
= models.TextField(null = True, blank = True) def format_timestamp(self): return directory.functions.format_timestamp(self.timestamp) Any comments on how either I am misunderstanding how to use GenericForeignKeys, or how I might otherwise be clobbering one model type with another?

Re: Filter for non-True NullBooleanField

2010-09-12 Thread Christos Jonathan Hayward
Thanks, and noted for the future. I went with a regular BooleanField defaulting to False. On Sat, Sep 11, 2010 at 7:08 AM, Preston Holmes wrote: > > > On Sep 10, 2:43 pm, Christos Jonathan Hayward > wrote: > > P.S. Setting: > > > > .filter(is_invisible__in

Re: Filter for non-True NullBooleanField

2010-09-10 Thread Christos Jonathan Hayward
P.S. Setting: .filter(is_invisible__in = [False, None]) is not working as intended; I seem to be getting no matches when I should be getting matches. On Fri, Sep 10, 2010 at 4:19 PM, Christos Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: > How can I filter for instanc

Filter for non-True NullBooleanField

2010-09-10 Thread Christos Jonathan Hayward
How can I filter for instances having a NullBooleanField that is not True (i.e. is either False or a null)? -- [image: Christos Jonathan Hayward] <http://jonathanscorner.com/> Christos Jonathan Hayward, an Orthodox Christian author. Author Bio <http://jonathanscorner.com/author/>

Re: Breaking many-to-many connections

2010-08-31 Thread Christos Jonathan Hayward
I finally pinned down the problem; it was in an unrelated area. Thanks, On Tue, Aug 31, 2010 at 5:59 PM, Christos Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: > I have an Entity which has a many-to-many field "tags" to Tags. I'm trying > to pin down

Breaking many-to-many connections

2010-08-31 Thread Christos Jonathan Hayward
.objects.get(id = int(search.group(2 entity.save() Is the code above, with the .tags.remove() code, enough, or do both the Entity and the Tag need to have a call to break the link? -- [image: Christos Jonathan Hayward] <http://JonathansCorner.com> Christos Jonathan

Re: Error working on many-to-many lookups

2010-08-26 Thread Christos Jonathan Hayward
ecified. > > Alex > > On Aug 25, 1:37 pm, Christos Jonathan Hayward > wrote: > > I think I found the problem; for the record, I wanted text__exact, not > > text__equals. > > > > On Wed, Aug 25, 2010 at 1:27 PM, Christos Jonathan Hayward < > > > &g

Re: Error working on many-to-many lookups

2010-08-25 Thread Christos Jonathan Hayward
I think I found the problem; for the record, I wanted text__exact, not text__equals. On Wed, Aug 25, 2010 at 1:27 PM, Christos Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: > I am trying to get a many-to-many tagging setup working, and I am getting > an error whic

Error working on many-to-many lookups

2010-08-25 Thread Christos Jonathan Hayward
ere the text field equals a name I am testing against. -- [image: Christos Jonathan Hayward] <http://JonathansCorner.com> Christos Jonathan Hayward, an Orthodox Christian author. Author Bio <http://JonathansCorner.com/author/> • Books<http://CJSHayward.com/> •

Re: Migration: AlreadyRegistered

2010-08-18 Thread Christos Jonathan Hayward
error looks like an import error in disguise. ( > http://code.djangoproject.com/browser/django/tags/releases/1.2.1/django/utils/importlib.py > ) > > Fire up the python interpreter shell, and trying importing the > django.contrib.admin module manually and see if you get

Re: Migration: AlreadyRegistered

2010-08-17 Thread Christos Jonathan Hayward
on/PyObjC', '/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/wx-2.8-mac-unicode']Server time:Tue, 17 Aug 2010 21:20:53 -0500 On Tue, Aug 17, 2010 at 8:39 PM, Christos Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: &g

Re: Migration: AlreadyRegistered

2010-08-17 Thread Christos Jonathan Hayward
admin.py file for the app that contains the Entity model. > > On 18 August 2010 10:57, Christos Jonathan Hayward < > christos.jonathan.hayw...@gmail.com> wrote: > >> I am trying to migrate from one server to another: I tarred it up on the >> Linux server, untarred on a M

Migration: AlreadyRegistered

2010-08-17 Thread Christos Jonathan Hayward
rsions/2.6/lib/python2.6/lib-dynload', '/Library/Python/2.6/site-packages', '/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/PyObjC', '/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/wx-2.8-mac-unicode']Server time:T