Sphinx hosting

2010-05-03 Thread Michele Simionato
Say you have a project with a lot of documentation in the form of Sphinx pages (for instance a book project). What is the the easiest way to publish it on the Web? I see that GitHub Pages allows you to publish static pages, but I would need to check in both the .rst sources and the .html output: it

"bollywood actress" bollywood actress blue film" "bollywood actress katrina kaif" "bollywood actress wallpapers" "bollywood actress kareena kapoor" "bollywood actress sexiest videos" "mallika sheraw

2010-05-03 Thread Naeem
"bollywood actress" bollywood actress blue film" "bollywood actress katrina kaif" "bollywood actress wallpapers" "bollywood actress kareena kapoor" "bollywood actress sexiest videos" "mallika sherawat" hhttp://e-bollywoodhungama.blogspot.com/ "bollywood actress" bollywood actress blue film" "bo

Re: Recursive functions not returning lists as expected

2010-05-03 Thread Paul Rudin
rickhg12hs writes: > Would a kind soul explain something basic to a python noob? > > Why doesn't this function always return a list? > > def recur_trace(x,y): > print x,y > if not x: > return y > recur_trace(x[1:], y + [x[0]]) > > Here are a couple sample runs. > print(recur_trace(

Re: HTTP server + SQLite?

2010-05-03 Thread Bryan
John Nagle wrote: > [...] SQLite really > is a "lite" database.  Although there's good read concurrency, multiple > updates from multiple processes tend to result in sizable delays, since > the locking is via file locks and wait/retry logic. True, and I have other gripes about SQLite, but I've fal

Re: Sphinx hosting

2010-05-03 Thread Martin v. Loewis
Michele Simionato wrote: > Say you have a project with a lot of documentation in the form of > Sphinx pages (for instance a book project). What is the the easiest > way to publish it on the Web? I see that GitHub Pages allows you to > publish static pages, but I would need to check in both the .rst

Re: Sphinx hosting

2010-05-03 Thread Michele Simionato
On May 4, 8:07 am, "Martin v. Loewis" wrote: > If it's a Python package that this documentation is about, you can host > it on PyPI. It must not be Python, but let's consider this case first. How does it work? When I published my decorator module (http://pypi.python.org/pypi/decorator) the suppor

Rockin phone u r rit

2010-05-03 Thread Rony Mascreen
I wasnt intend to buy any of the samsung phones. but i was fascinated of its new corby series and buy this phone. really amazing phone with lots social networking programs. i have written more on http://hubpages.com/hub/Samsung-Corby-TxT-B3210 This phone is worth to buy. -- http://mail.python.org/

Re: Buy Samsung Corby TXT B3210 Mobile

2010-05-03 Thread Rony Mascreen
On Apr 12, 3:05 pm, "mohanti.si...@yahoo.in" wrote: > Samsung Corby TXT is a GSM phone. Samsung Corby TXT, a SmartPhone > mobile comes with a great list of features. > >  Samsung Corby TXT B3210 is a mobile with a user memory of 38 MB and > MicroSD support up to 8 GB of external memory. This simpl

Re: Sphinx hosting

2010-05-03 Thread Martin v. Loewis
> Do you know of recent improvements on the PyPI side about docs > hosting? Yes; go to your package's pkg_edit page, i.e. http://pypi.python.org/pypi?%3Aaction=pkg_edit&name=decorator and provide a zip file at Upload Documentation. Regards, Martin -- http://mail.python.org/mailman/listinfo/pyt

Re: repeat tkinter

2010-05-03 Thread Peter Otten
Robin wrote: > How can I make a command within a tkinter application repeat itself > over and over in intervals of a certain time. >>> import Tkinter as tk >>> root = tk.Tk() >>> color = "blue" >>> def switch_color(): ... global color ... if color == "blue": ... color = "red"

<    1   2