Re: newsletter in django

2008-07-05 Thread sebey
ok I have been recomened mailman so I will have a look thanks On Jul 3, 3:16 pm, Jeff Anderson <[EMAIL PROTECTED]> wrote: > sebey wrote: > > I am planning on making a newsletters so should I use django build-in > > options or mailman or something else you would recomenmt &g

newsletter in django

2008-07-03 Thread sebey
I am planning on making a newsletters so should I use django build-in options or mailman or something else you would recomenmt but I am new to web dev and python so therefore django as well but I have one request that it is easy to mantain and costumize (costum signup in like an ajax window as an

Re: url views problem

2008-07-02 Thread sebey
wonderful!! its works thank you!!! On Jul 1, 3:27 pm, sebey <[EMAIL PROTECTED]> wrote: > cool sorry i will try that out sorry for replying so late but I will > post what the results are > > thanks again > > On Jun 26, 9:23 pm, "Emil Styrke" <[EMA

Re: url views problem

2008-07-01 Thread sebey
gt;   s = show.objects.get(pk=show_feed) > > and getting rid of the "for s in query" line might do the trick? Then you'll > get only the feed for show 1 parsed when you go to /shows/1. > >   /Emil > > 2008/6/25 sebey <[EMAIL PROTECTED]>: > > > > > so

Re: url views problem

2008-06-25 Thread sebey
?) by *something*, then do some slicing to limit > the results. > > Read:http://www.djangoproject.com/documentation/db-api/#limiting-querysets > > -Jeff > > On Jun 25, 4:58 am, sebey <[EMAIL PROTECTED]> wrote: > > > yes i have that set up it now looks like this

Re: url views problem

2008-06-25 Thread sebey
called show_feed. > you need to use it accordingly > > On Jun 24, 10:02 am, sebey <[EMAIL PROTECTED]> wrote: > > > either way its still the same thanks though but it still is not > > working > > > On Jun 24, 1:44 pm, Jeff FW <[EMAIL PROTECTED]> wrote: >

Re: url views problem

2008-06-24 Thread sebey
g slash optional like so: > r'^shows/(?P\d{1})[/]?$' > > On Jun 24, 7:09 am, sebey <[EMAIL PROTECTED]> wrote: > > > it works but  (thanks for the tips) it still is getting the same feed > > for local/shows/1/ and local/show/2 help please > > > everyone who

muiltlp items in a db colium show up on the home pages( muilpte rrs feeds in a db to show up on the front page

2008-06-24 Thread sebey
ok so I have a db that has a colium called show_feed that contains the url of the feed and I want to put all of those feeds with there latest entire up on the front page I am useing feedpareser to show the latest entire and I need to a way to show them but them in speerate divs for markup and

Re: url views problem

2008-06-24 Thread sebey
it works but (thanks for the tips) it still is getting the same feed for local/shows/1/ and local/show/2 help please everyone who has helped so far thank you On Jun 24, 12:06 pm, sebey <[EMAIL PROTECTED]> wrote: > ok fixed that yeah i saw that after I posted but here is what it loo

Re: url views problem

2008-06-24 Thread sebey
rom my iPhone > > On Jun 24, 2008, at 3:23, sebey <[EMAIL PROTECTED]> wrote: > > > > > I have gotten this traceback > > > Traceback (most recent call last): > > File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ > > site-p

Re: url views problem

2008-06-24 Thread sebey
y" in _get_urlconf_module 177. self._urlconf_module = __import__(self.urlconf_name, {}, {}, ['']) File "/Users/sebey/Sites/ubermicro/../ubermicro/urls.py" in 10. (r'^shows/(?p\d{1})/ s','ubermicro.shows.views.show_page') # .* does not work File "/Library/Frameworks/Python.framew

Re: url views problem

2008-06-24 Thread sebey
ut':   > > podcast.feed.summary,'show_latest_title': podcast.entries > > [0].title,'show_latest': podcast.entries[0].summary} > >      e = elements > >      t = loader.get_template('shows/show_page_base.html') > >      return  HttpResponse(t.render(Context(e))) > >

Re: url help

2008-05-30 Thread sebey
no that didn't work its still the same rss feed here is my models: from django.db import models class show(models.Model): """gets the show_rss feed""" show_title = models.CharField(blank=True, maxlength=100) show_feed = models.URLField(blank=True, verify_exists=True) class

url help

2008-05-30 Thread sebey
ok I so I want to make a url pattern that for every rss feed in my database I want all of them to be like show/1 show/2 show/forever so how can I do this? something with regular expressions? thanks --~--~-~--~~~---~--~~ You received this message because you are

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
please much suggestions thank you On May 28, 4:37 pm, sebastian stephenson <[EMAIL PROTECTED]> wrote: > great finally some help thank you so much! > On 28 May 2008, at 15:20, Rajesh Dhawan wrote: > > > > > > > On May 28, 6:30 am, sebey <[EMAIL PROTECTED]&

list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
et_response 77. response = callback(request, *callback_args, **callback_kwargs) File "/Users/sebey/Sites/ubermicro/../ubermicro/shows/views.py" in show_page 10. show_latest_title = podcast.entries[0].title IndexError at /shows/ list index out of range just to note that I am new web

list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
et_response 77. response = callback(request, *callback_args, **callback_kwargs) File "/Users/sebey/Sites/ubermicro/../ubermicro/shows/views.py" in show_page 10. show_latest_title = podcast.entries[0].title IndexError at /shows/ list index out of range I am to django program

Re: Help me build my site with answers to my questions from models to newsletters everybody view this at least once

2008-05-23 Thread sebey
mailman seens to be aimed at something like google groups and I doing a newletter so I just mailing list and stats thanks for you suggestion On May 23, 4:56 am, Jeff Anderson <[EMAIL PROTECTED]> wrote: > sebey wrote: > > OK so as you may see I have a lot of questions in h

getting a database cloum into django

2008-05-22 Thread sebey
how can I get a colium of information (in this case rss feeds) and grab them use them in views.py along with feedpareser and have them(rss feeds) had all have an instance of a template? thanks you --~--~-~--~~~---~--~~ You received this message because you are

Re: load external xml and css with varibles?

2008-05-22 Thread sebey
so if that is the case could I do all the processing in views.py or models.py? On May 22, 3:48 am, Eric Abrahamsen <[EMAIL PROTECTED]> wrote: > On May 22, 2008, at 5:15 AM, sebey wrote: > > > that script you told me to do how do i get it running though the admin > > inter

Re: load external xml and css with varibles?

2008-05-21 Thread sebey
that script you told me to do how do i get it running though the admin interface? On May 21, 4:25 pm, Eric Abrahamsen <[EMAIL PROTECTED]> wrote: > On May 21, 2008, at 11:07 PM, sebey wrote: > > > > >> Use Feedparser (http://www.feedparser.org/) in a stand-alone scr

Re: load external xml and css with varibles?

2008-05-21 Thread sebey
what I really need is how to code this I know what to do but I don't know how to do it On May 21, 4:31 pm, sebey <[EMAIL PROTECTED]> wrote: > ok but how can I add it though the admin interface and I how would I > get a relationship between models and the feedparser script? > >

Re: load external xml and css with varibles?

2008-05-21 Thread sebey
ok but how can I add it though the admin interface and I how would I get a relationship between models and the feedparser script? On May 21, 4:25 pm, Eric Abrahamsen <[EMAIL PROTECTED]> wrote: > On May 21, 2008, at 11:07 PM, sebey wrote: > > > > >> Use Feedparser

Re: load external xml and css with varibles?

2008-05-21 Thread sebey
TED]> wrote: > On May 21, 2008, at 6:58 PM, sebey wrote: > > > > > I know css does not not have any variables but I was thinking that > > python/django could look though the css file and have > > background-color:{{insert python varible here}} > > >

Re: load external xml and css with varibles?

2008-05-21 Thread sebey
TECTED]> wrote: > On May 21, 2008, at 6:58 PM, sebey wrote: > > > > > I know css does not not have any variables but I was thinking that > > python/django could look though the css file and have > > background-color:{{insert python varible here}} > > >

Re: load external xml and css with varibles?

2008-05-21 Thread sebey
TECTED]> wrote: > On May 21, 2008, at 6:58 PM, sebey wrote: > > > > > I know css does not not have any variables but I was thinking that > > python/django could look though the css file and have > > background-color:{{insert python varible here}} > > >

Re: load external xml and css with varibles?

2008-05-21 Thread sebey
"mime type"? sorry new to web development what is this? "Why don't you just use an inline

Re: load external xml and css with varibles?

2008-05-21 Thread sebey
but I can > possibly answer part of it, although please bear in mind I'm quite new > at Django, so there may be better ways of doing it. > > On May 19, 11:50 am, sebey <[EMAIL PROTECTED]> wrote: > > > I am thinking about making a template that has the sturc

I need some help on this questions for helping me build my site

2008-05-20 Thread sebey
OK so as you may see I have a lot of questions in helping build my django project so here they are 1. with models do just create the fields that you need? 2. how can I import rss feeds(i am running a podcast network) from other sites/soures?(models,views,admin etc) 3. I want to make an

Help me build my site with answers to my questions from models to newsletters everybody view this at least once

2008-05-20 Thread sebey
OK so as you may see I have a lot of questions in helping build my django project so here they are 1. with models do just create the fields that you need? 2. how can I import rss feeds(i am running a podcast network) from other sites/soures?(models,views,admin etc) 3. I want to make an

Re: load external xml and css with varibles?

2008-05-19 Thread sebey
can anyone help me? On May 19, 10:50 am, sebey <[EMAIL PROTECTED]> wrote: > ok so my site is a podcasting network and I need to import feeds form > different places and i am thinking for my model I should the URLField > and validate it with the XMLField? my shows all have

Re: questions about templates within templates and ajax pop-up window

2008-05-19 Thread sebey
I just read a bit of it and that sound like what I am looking for thank you very much you have been a great help On May 19, 9:43 pm, "Richard Dahl" <[EMAIL PROTECTED]> wrote: > Are you looking for template > inheritance?http://www.djangoproject.com/documentation/templates/

Re: questions about templates within templates and ajax pop-up window

2008-05-19 Thread sebey
updating a database record, modifying a function, or changing a > snippet on a template, depending on where it is stored. > -richard > > On 5/19/08, sebey <[EMAIL PROTECTED]> wrote: > > > > > ok but I may want enable it and disable it and change the message form > >

Re: questions about templates within templates and ajax pop-up window

2008-05-19 Thread sebey
and again just to say that the template is actually seperate from the ajax pop-up window question sorry I should have made that more clear so please keep'em coming On May 19, 9:33 pm, sebey <[EMAIL PROTECTED]> wrote: > ok but I may want enable it and disable it and change the message fo

Re: questions about templates within templates and ajax pop-up window

2008-05-19 Thread sebey
perhaps only the dynamic > part of the message, to be processed by a javascript callback. > hth, > -richard > > On 5/19/08, sebey <[EMAIL PROTECTED]> wrote: > > > > > can you load a template in a template and I what at time to have when > > you go to my

Re: questions about templates within templates and ajax pop-up window

2008-05-19 Thread sebey
, to be processed by a javascript callback. > hth, > -richard > > On 5/19/08, sebey <[EMAIL PROTECTED]> wrote: > > > > > can you load a template in a template and I what at time to have when > > you go to my site and the first thing that should

questions about templates within templates and ajax pop-up window

2008-05-19 Thread sebey
can you load a template in a template and I what at time to have when you go to my site and the first thing that should come up will be an ajax window with a message I wondering should I create a app fo r this or is there other way as it may seem a bit of a waste of an app thanks

load external xml and css with varibles?

2008-05-19 Thread sebey
ok so my site is a podcasting network and I need to import feeds form different places and i am thinking for my model I should the URLField and validate it with the XMLField? my shows all have a color binded with them so how would I guess make a colorField(or hexfield i guess)? I am thinking

Re: url tutorial problem

2008-05-13 Thread sebey
never mind forgot to change the "mysite" to "ubertester" I am doing so many stupid things in the tutorial On May 13, 3:27 pm, sebey <[EMAIL PROTECTED]> wrote: > hey I am having problems with the tutorial in the docs on page 3 and I > am at the stage where I have

url tutorial problem

2008-05-13 Thread sebey
hey I am having problems with the tutorial in the docs on page 3 and I am at the stage where I have created my first veiw and I get this back the index page: Page not found (404) Request Method: GET Request URL:http://localhost:8000/ Using the URLconf defined in ubertester.urls,

url tutorial problem

2008-05-13 Thread sebey
S:{'sessionid': '7dfd2000ef6045aad429fa3d5dbf7ebb'}, META: {'CONTENT_LENGTH': '', 'CONTENT_TYPE': 'text/plain', 'DJANGO_SETTINGS_MODULE': 'ubertester.settings', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HOME': '/Users/sebey', 'HTTP_ACCEPT': 'text/ xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/ plain;q=0.8,image/

Re: Class Admin prob (tut)

2008-05-08 Thread sebey
. "" what does this mean? On May 8, 3:15 pm, sebey <[EMAIL PROTECTED]> wrote: > ok so I am on page two of the django tutorial in the .96 docs and its > says to get the poll model into the admin interface and I type > > class Poll(models.Model): > &q

Class Admin prob (tut)

2008-05-08 Thread sebey
ok so I am on page two of the django tutorial in the .96 docs and its says to get the poll model into the admin interface and I type class Poll(models.Model): """docstring for Poll""" question = models.CharField(maxlength=200) pubdate = models.DateTimeField("date

Re: tutorial DB touble

2008-05-07 Thread sebey
it was "sqlite3.bin" as the last thing I did was put in the same directory as the settings.py file and it is a .bin extension On May 7, 9:02 pm, Kevin Monceaux <[EMAIL PROTECTED]> wrote: > Sebey, > > On Wed, 7 May 2008, sebey wrote: > > What do you have for your DA

Re: tutorial DB touble

2008-05-07 Thread sebey
it was "sqlite3.bin" as the last thing I did was put in the same directory as the settings.py file and it is a .bin extension On May 7, 9:02 pm, Kevin Monceaux <[EMAIL PROTECTED]> wrote: > Sebey, > > On Wed, 7 May 2008, sebey wrote: > > What do you have for your DA

Re: tutorial DB touble

2008-05-07 Thread sebey
it was "sqlite3.bin" as the last thing I did was put in the same directory as the settings.py file and it is a .bin extension On May 7, 9:02 pm, Kevin Monceaux <[EMAIL PROTECTED]> wrote: > Sebey, > > On Wed, 7 May 2008, sebey wrote: > > What do you have for your DA

Re: tutorial DB touble

2008-05-07 Thread sebey
it was "sqlite3.bin" as the last thing I did was put in the same directory as the settings.py file and it is a .bin extension On May 7, 9:02 pm, Kevin Monceaux <[EMAIL PROTECTED]> wrote: > Sebey, > > On Wed, 7 May 2008, sebey wrote: > > What do you have for your DA

tutorial DB touble

2008-05-07 Thread sebey
ok so created my project for the tut and I am using SQLite and I have tried to syncdb it but "" sebastian-stephensons-computer:~/Sites/ubertester sebey$ python manage.py syncdb Traceback (most recent call last): File "manage.py", line 11, in execute_manager(settin

sqlite and django tutorials setup

2008-04-15 Thread sebey
ok so I have latest verson of sqlite and django 96.0 and i'm reading the tutorial how do I set up sqlite for the tut? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: tutorial question

2008-04-11 Thread sebey
list" as well I have enough on my plate already but a remark on point three SQLite looks like a solution to my problem,am I correct? On Apr 11, 11:45 am, "James Bennett" <[EMAIL PROTECTED]> wrote: > On Fri, Apr 11, 2008 at 5:20 AM, sebey <[EMAIL PROTECTED]> wrote:

Re: tutorial question

2008-04-11 Thread sebey
i am on a mac and I am running a podcasting network so I will proabley be storing all my files in XML/RSS On Apr 11, 11:11 am, Brett Parker <[EMAIL PROTECTED]> wrote: > On 11 Apr 01:35, sebey wrote: > > > > > I see that in page 1 of the django tutorial in the django

tutorial question

2008-04-11 Thread sebey
I see that in page 1 of the django tutorial in the django docs it sets you up with a database can you skip this or is the a very easy way to get a database setup and then uninstaill or is the another tutorial that you can learn without a database needed?

I need some help building my django site

2008-02-18 Thread sebey
ok so this kind of general instead of django focused but I am building the site around the framework so I would love some help about how to built the site. ok so my site is a podcasting network.so I want to use rss to display my content, in other words I want to show my latest show from my

local dev them publish out to the real world

2007-11-20 Thread sebey
hey I am new to django? so is it possable to devlop a django site on my mac and then publish to another webserver or EC2/S3 would I face any problems along the way? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: learning django and python

2007-11-14 Thread sebey
is there anyway to download the documentation on the django site? On Nov 14, 3:11 pm, sebey <[EMAIL PROTECTED]> wrote: > ok ok thanks love some more resurces > > On Nov 14, 2:10 pm, cjl <[EMAIL PROTECTED]> wrote: > > > Buy me a mac and I'd be happy to create an OSX

Re: learning django and python

2007-11-14 Thread sebey
ok ok thanks love some more resurces On Nov 14, 2:10 pm, cjl <[EMAIL PROTECTED]> wrote: > Buy me a mac and I'd be happy to create an OSX version of Instant > Django for you! > > Just kidding, but there are many websites explaining Django > installation on OSX. You can still follow along with my

Re: learning django and python

2007-11-14 Thread sebey
yes thats cool but one problem; I''m a mac guy so if anyone can find a mac version of this please post On Nov 13, 7:37 pm, cjl <[EMAIL PROTECTED]> wrote: > Sebey: > > You may want to check out a tutorial I am working on: > > http://www.instantdjango.com > > It

Re: learning django and python

2007-11-13 Thread sebey
well I have a book on php,apache and mysql so are there? any differences between mysql and postgreSQL for django (proforanmce features etc.) On Nov 13, 1:36 pm, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 13-Nov-07, at 6:55 PM, sebey wrote: > > > has anyone tryed this I

Re: learning django and python

2007-11-13 Thread sebey
is that a joke or for real? sorry don't get it On Nov 13, 1:47 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 12-Nov-07, at 9:02 PM, sebey wrote: > > > good thanks for can I learn python with django > > while learningdjango(): > python.

Re: learning django and python

2007-11-13 Thread sebey
is that a joke or for real? sorry don't get it On Nov 13, 1:47 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > On 12-Nov-07, at 9:02 PM, sebey wrote: > > > good thanks for can I learn python with django > > while learningdjango(): > python.

Re: learning django and python

2007-11-12 Thread sebey
this is all great love anymore resource you guys have and for anyone else who may stumbleupon this thanks love some more please On Nov 12, 5:55 pm, kevinski <[EMAIL PROTECTED]> wrote: > This is also a decent resource for learning the basics of Python > quickly. > >

Re: learning django and python

2007-11-12 Thread sebey
plus I need to learn it fast as well so I had a look but it looks like a lot to go tought thanks thought On Nov 12, 2:42 pm, "Jon Atkinson" <[EMAIL PROTECTED]> wrote: > Dive into Python is a good resource for learning Python: > > http://www.diveintopython.org/ > &g

Re: learning django and python

2007-11-12 Thread sebey
good thanks for can I learn python with django? or is that sound silly On Nov 12, 2:42 pm, "Jon Atkinson" <[EMAIL PROTECTED]> wrote: > Dive into Python is a good resource for learning Python: > > http://www.diveintopython.org/ > > --Jon > > On 11/1

learning django and python

2007-11-12 Thread sebey
hey I am new to python and all that and of course django so I know there is a django book up on the site but I was wondering if it would be a good idea to use that resource ( cause I do not have a lot of time on my hands) for learning pthyon and django as well and if possable what resources are

Re: django and s3

2007-11-11 Thread sebey
web-hosting service and I would > > like to know do django or python itself prevent this from happening? > > see ya > > > sebey --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djang