Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(149) |
Jun
(174) |
Jul
(41) |
Aug
(118) |
Sep
(72) |
Oct
(111) |
Nov
(69) |
Dec
(147) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(242) |
Feb
(276) |
Mar
(363) |
Apr
(704) |
May
(183) |
Jun
(209) |
Jul
(173) |
Aug
(230) |
Sep
(80) |
Oct
(306) |
Nov
(338) |
Dec
(291) |
2002 |
Jan
(273) |
Feb
(294) |
Mar
(303) |
Apr
(463) |
May
(319) |
Jun
(182) |
Jul
(160) |
Aug
(140) |
Sep
(192) |
Oct
(302) |
Nov
(238) |
Dec
(176) |
2003 |
Jan
(179) |
Feb
(222) |
Mar
(256) |
Apr
(167) |
May
(139) |
Jun
(145) |
Jul
(113) |
Aug
(259) |
Sep
(146) |
Oct
(124) |
Nov
(143) |
Dec
(66) |
2004 |
Jan
(58) |
Feb
(128) |
Mar
(193) |
Apr
(228) |
May
(111) |
Jun
(107) |
Jul
(93) |
Aug
(78) |
Sep
(48) |
Oct
(99) |
Nov
(104) |
Dec
(119) |
2005 |
Jan
(115) |
Feb
(124) |
Mar
(86) |
Apr
(41) |
May
(52) |
Jun
(21) |
Jul
(32) |
Aug
(14) |
Sep
(52) |
Oct
(30) |
Nov
(19) |
Dec
(19) |
2006 |
Jan
(43) |
Feb
(35) |
Mar
(68) |
Apr
(21) |
May
(38) |
Jun
(46) |
Jul
(19) |
Aug
(38) |
Sep
(58) |
Oct
(15) |
Nov
(12) |
Dec
(30) |
2007 |
Jan
(49) |
Feb
(23) |
Mar
(29) |
Apr
(19) |
May
(33) |
Jun
(4) |
Jul
(10) |
Aug
(26) |
Sep
(2) |
Oct
(9) |
Nov
(1) |
Dec
(21) |
2008 |
Jan
(15) |
Feb
(3) |
Mar
(10) |
Apr
(8) |
May
(4) |
Jun
(2) |
Jul
(2) |
Aug
|
Sep
|
Oct
(2) |
Nov
(13) |
Dec
|
2009 |
Jan
(11) |
Feb
(4) |
Mar
|
Apr
(6) |
May
|
Jun
(16) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(9) |
2010 |
Jan
(6) |
Feb
(4) |
Mar
(2) |
Apr
(12) |
May
(20) |
Jun
(9) |
Jul
(7) |
Aug
|
Sep
(1) |
Oct
(5) |
Nov
|
Dec
(4) |
2011 |
Jan
|
Feb
|
Mar
(10) |
Apr
|
May
|
Jun
|
Jul
(9) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(3) |
Nov
(8) |
Dec
(11) |
2013 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(6) |
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
2017 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
(23) |
2
(6) |
3
|
4
(3) |
5
(23) |
6
(20) |
7
(12) |
8
(3) |
9
(4) |
10
|
11
(4) |
12
(1) |
13
(5) |
14
(13) |
15
(13) |
16
(3) |
17
|
18
(8) |
19
(2) |
20
(1) |
21
(6) |
22
|
23
(8) |
24
(4) |
25
(1) |
26
(3) |
27
(2) |
28
(3) |
29
(3) |
30
|
|
From: Geoff Talvola <gtalvola@NameConnector.com> - 2000-06-09 16:44:34
|
Chuck Esterbrook wrote: > Geoff, Since you're the only one who experienced the Colors example problem > could you update and try it out? Yup, the Colors example and all other examples work fine for me. -- - Geoff Talvola Parlance Corporation gtalvola@... |
From: Chuck Esterbrook <echuck@mi...> - 2000-06-09 16:34:29
|
CVS is updated now. In my notes below, - means removed and + means added the method that follows. * KeyValueAccess + hasValueForName() # return 1 if the object has a value for the given name * Servlet + serverSideDir() serverSidePath() # if you need to know where the servlet lives in the file system * Page + session() # convenience method to get current session * WebUtils.WebFuncs: HTMLEncode/Decode() now handle quotes, " <--> " * HTTPResponse: - contents(), + rawResponse(): Returns the final contents of the response. Don't invoke this method until after deliver(). Returns a dictionary representing the response containing only strings, numbers, lists, tuples, etc. with no backreferences. That means you don't need any special imports to examine the contents and you can marshal it. Currently there are two keys. 'headers' is list of tuples each of which contains two strings: the header and it's value. 'contents' is a string (that may be binary (for example, if an image were being returned)). * HTTPResponse: Added more assertions in various methods that the response is not already committed. * AppServer: tweaked for raw response dictionaries * CGIAdaptor: Handle raw response dictionaries. Also, shouldn't crap out on Windows anymore. * I tested all WebKit examples and they work. * FCGIAdaptor must be broken now. I can fix later today. Geoff, Since you're the only one who experienced the Colors example problem could you update and try it out? Dave, let me know if this works for you in mod_python. -Chuck |
From: Chuck Esterbrook <echuck@mi...> - 2000-06-09 03:39:28
|
At 10:57 PM 6/8/00 -0400, Dave wrote: >Chuck, >You had hinted earlier that you wanted to pass this responsibility off >to an adaptor (perhaps an Adapter?) Are you still of this mind? I was Yea. >thinking that if this were so it would make it simple to do some neat >things like adding a Python webserver in the same process space, or >somehow importing WebKit into a mod_python handler and letting it kick >around a suitably wrapped mod_python request object. The second could be >a big win, but I'm not sure if sub-interpreters can communicate directly >and share objects with each other or not. Hey, I don't know either, but sounds like fun. :-) I'll crank on this and get it into the repository by tomorrow sometime. -Chuck |
From: Dave <dwallace@de...> - 2000-06-09 02:58:53
|
Chuck, You had hinted earlier that you wanted to pass this responsibility off to an adaptor (perhaps an Adapter?) Are you still of this mind? I was thinking that if this were so it would make it simple to do some neat things like adding a Python webserver in the same process space, or somehow importing WebKit into a mod_python handler and letting it kick around a suitably wrapped mod_python request object. The second could be a big win, but I'm not sure if sub-interpreters can communicate directly and share objects with each other or not. Dave. Chuck wrote: >Cool. Thanks. Sorry you had to parse the string that AppServer sends back. >It should really send a dictionary for a response, just like we send a > dictionary for a request. |