Re: Making a calendar

2005-02-27 Thread Pete.....
Thanks all.

I will look at your links tonight :D
Hopefully they will make me smile and jump around as a happy man...

Cheers


Brian Sutherland [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 On Sat, Feb 26, 2005 at 01:57:20PM +0100, Pete. wrote:
 I'm trying to make a calendar for my webpage, python and html is the only
 programming languages that I know, is it possible to make such a calendar
 with pythong code and some html.

 The Idea is that when I click the link calendar on my webpage, then the 
 user
 will be linked to the calendar.

 The calendar should show one month at the time, and the user should be 
 able
 to browse to the other month.

 I will make a script that puts events and such into a db ( I know how to 
 do
 this)

 Then I need a script that puts the events from the db into the calendar, 
 if
 every day in the calendar has a value id that part will not be hard.

 All this and more (perhaps overkill):

 http://www.schooltool.org/schoolbell

 -- 
 Brian Sutherland

 It's 10 minutes, 5 if you walk fast. 


-- 
http://mail.python.org/mailman/listinfo/python-list


Making a calendar

2005-02-26 Thread Pete.....
Hi all.

I'm trying to make a calendar for my webpage, python and html is the only 
programming languages that I know, is it possible to make such a calendar 
with pythong code and some html.

The Idea is that when I click the link calendar on my webpage, then the user 
will be linked to the calendar.

The calendar should show one month at the time, and the user should be able 
to browse to the other month.

I will make a script that puts events and such into a db ( I know how to do 
this)

Then I need a script that puts the events from the db into the calendar, if 
every day in the calendar has a value id that part will not be hard.

What I need is a script that generates the calender, in such a way that each 
month will be have a value, and that the user then can click the days to see 
more info about the events.

I was thinking something like the iMPcal calender: 
http://www.heidgerken.org/impcal2/calendar.php

Is there any modules I can use, or does any of you hardcore programmers have 
some advice on how I should proceed with this little project of mine :)

Thanks


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Making a calendar

2005-02-26 Thread Michele Simionato
Looking at the calendar module in the standard library may help.
Also, pydoc calendar is your friend.

Michele Simionato

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Making a calendar

2005-02-26 Thread Ksenia Marasanova
This is close to what you want: 
http://freespace.virgin.net/hamish.sanderson/htmlcalendar.html

You'll also need HTMLTemplate
http://freespace.virgin.net/hamish.sanderson/htmltemplate.html
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Making a calendar

2005-02-26 Thread Brian Sutherland
On Sat, Feb 26, 2005 at 01:57:20PM +0100, Pete. wrote:
 I'm trying to make a calendar for my webpage, python and html is the only 
 programming languages that I know, is it possible to make such a calendar 
 with pythong code and some html.
 
 The Idea is that when I click the link calendar on my webpage, then the user 
 will be linked to the calendar.
 
 The calendar should show one month at the time, and the user should be able 
 to browse to the other month.
 
 I will make a script that puts events and such into a db ( I know how to do 
 this)
 
 Then I need a script that puts the events from the db into the calendar, if 
 every day in the calendar has a value id that part will not be hard.

All this and more (perhaps overkill):

http://www.schooltool.org/schoolbell

-- 
Brian Sutherland

It's 10 minutes, 5 if you walk fast.
-- 
http://mail.python.org/mailman/listinfo/python-list