[Bese-devel] New patches to ucw_public: 5-Mar-2006

Marco Baringer mbaringer at common-lisp.net
Mon Mar 6 07:58:48 UTC 2006


Sun Mar  5 08:11:48 EST 2006  Marco Baringer <mb at bese.it>
  * The :backned parameter to ucw:create-server is now a list of backend + backend initargs
  
  Basically i kept forgetting to change the :port parameter when i
  switched from the httpd backend to the mod_lisp backend. With this
  change all the backend specific parameters are in the same parameter
  and it's easier to see that changing ones requires you to change the
  other. This also makes it easier to pass backend specific initargs
  since the entire list is passed unchanged to make-backend.

    M ./bin/start.lisp -6 +4
    M ./src/control.lisp -7 +7

Sat Mar  4 20:22:13 EST 2006  aycan.irican at core.gen.tr
  UNDO: typo fix for forms example

    M ./examples/forms.lisp -1 +1

Sat Mar  4 20:22:13 EST 2006  aycan.irican at core.gen.tr
  * typo fix for forms example

    M ./examples/forms.lisp -1 +1

Thu Mar  2 08:49:56 EST 2006  Maciek Pasternacki <maciekp at japhy.fnord.org>
  * When sending response, use :iso-8859-1 external format only as fallback.

    M ./src/backend/httpd.lisp -1 +5

Sun Mar  5 07:27:21 EST 2006  Marco Baringer <mb at bese.it>
  * session.frames is no lonnger a hash-table, fix jump-to-component. (Reported by: Attila Lendvai <attila.lendvai at gmail.com>)

    M ./src/rerl/standard-component/control-flow.lisp -3 +5

Sat Mar  4 10:33:43 EST 2006  Marco Baringer <mb at bese.it>
  * Move the yaclml directory into the new html directory

     ./src/yaclml -> ./src/html/yaclml
    A ./src/html/
    M ./ucw.asd -5 +6

Sat Mar  4 10:23:41 EST 2006  Marco Baringer <mb at bese.it>
  * Move form-field's javascript validators into a custom property on the field object (client side)
  
  This change makes it much simpler to reuse the validation in other
  places, we no longer have to rewrite all the validation code every
  time we want to call it.

    M ./src/components/form.lisp -14 +7

Sat Mar  4 07:06:17 EST 2006  matley at muppetslab.org
  * Exporting alist,hash-table,plist-select-field

    M ./src/packages.lisp -1 +4

Fri Mar  3 14:31:03 EST 2006  Marco Baringer <mb at bese.it>
  * Allow an empty integer form-field to be valid.
  
  If an field must be an integer (iow it's a required parameter) just
  mix an integer-field with a not-empty-validator.

    M ./src/components/form.lisp -9 +9

Fri Mar  3 14:30:19 EST 2006  Marco Baringer <mb at bese.it>
  * Added initially-validate slot to form-field

    M ./src/components/form.lisp -2 +18

Fri Mar  3 14:02:29 EST 2006  Marco Baringer <mb at bese.it>
  * When a form-field is valid set itsclass to ucw-form-field-valid

    M ./src/components/form.lisp -1 +1

Thu Mar  2 13:46:49 EST 2006  Marco Baringer <mb at bese.it>
  * Rebind *yaclml-stream* when we clear out the response object.
  
  Previously we had the RENDER method rebind *yaclml-stream* each and
  every time it was called. this meant that if html-stream should change
  between one call and the next (whichi is exactly what happens when an
  error occurs) this change was picked up immediatly. We no longer do
  that, so any code which changes html-stream (by calling cleare-context
  or clear-respons) needs to make sure to rebind *yaclml-stream*

    M ./src/rerl/standard-session-frame.lisp -2 +7

Thu Mar  2 11:19:15 EST 2006  Marco Baringer <mb at bese.it>
  * Dropped the in-field-password-field. It's a pretty bad idea and fundamentally broken on explorer.

    M ./src/components/form.lisp -15

Thu Mar  2 11:18:25 EST 2006  Marco Baringer <mb at bese.it>
  * Indentation fixup

    M ./src/backend/mod-lisp.lisp -5 +5

Thu Mar  2 10:57:30 EST 2006  Marco Baringer <mb at bese.it>
  * Make the javascript-invalid methods use css styles, unstead of directly setting the border size and color

    M ./src/components/form.lisp -5 +2
    M ./wwwroot/stylesheet.css +8

Tue Feb 28 16:19:52 EST 2006  Marco Baringer <mb at bese.it>
  * Only show the inspector component's Ok link when there's a calling-component to answer to.

    M ./src/components/ucw-inspector.lisp -1 +3

Tue Feb 28 16:04:49 EST 2006  Marco Baringer <mb at bese.it>
  * Various fixups required by latest form-field api changes

    M ./src/admin/admin.lisp -6 +6

Tue Feb 28 16:04:21 EST 2006  Marco Baringer <mb at bese.it>
  * Make the select-field select the current-value
  
  previously we were never setting :selected on the generated option
  tags.

    M ./src/components/form.lisp -1 +5

Mon Feb 27 12:24:40 EST 2006  Marco Baringer <mb at bese.it>
  * Export generic-html-input (usefull when creating your own form fields)

    M ./src/packages.lisp +1

Mon Feb 27 12:24:24 EST 2006  Marco Baringer <mb at bese.it>
  * Added file-upload-field

    M ./src/components/form.lisp +11
    M ./src/packages.lisp +1

Mon Feb 27 12:24:10 EST 2006  Marco Baringer <mb at bese.it>
  * Make template-component a standard-class and not a component.
  
  There's no reason why the template-component class needs the component
  machinery, making this change allows us to use templates for widget
  components.

    M ./src/components/template.lisp -2 +1

Mon Feb 27 12:23:27 EST 2006  Marco Baringer <mb at bese.it>
  * Silly bug in date-field's conversion to encoded-universal-time

    M ./src/components/form.lisp -1 +1

Mon Feb 27 12:23:00 EST 2006  Marco Baringer <mb at bese.it>
  * Fix mod_lisp's handling of form upload data.
  
  This is turning into a never ending odyssey :(. hopefully this is the
  last fix and everything will work perfectly now and forever.

    M ./src/backend/mod-lisp.lisp -2 +7

Mon Feb 27 05:46:03 EST 2006  Marco Baringer <mb at bese.it>
  * in-field-password-field needs to have type="password" if there's a client-value

    M ./src/components/form.lisp -1 +10

Mon Feb 27 05:45:32 EST 2006  Marco Baringer <mb at bese.it>
  * The default client-value for in-field forms is NIL, not ""

    M ./src/components/form.lisp -1 +2

Mon Feb 27 05:15:08 EST 2006  Marco Baringer <mb at bese.it>
  * Export the dom-id symbol

    M ./src/packages.lisp +1

Mon Feb 27 05:12:10 EST 2006  Marco Baringer <mb at bese.it>
  * Fix the error-component's initargs (use :javascript and not :inline-javascirpt)

    M ./examples/examples.lisp -4 +1
    M ./src/components/error.lisp -7 +7

Sun Feb 26 17:14:37 EST 2006  Marco Baringer <mb at bese.it>
  * Added dom-id slot to simple-form component

    M ./src/components/form.lisp -2 +6

Sun Feb 26 17:13:49 EST 2006  Marco Baringer <mb at bese.it>
  * Implement checkbox-field

    M ./src/components/form.lisp +19
    M ./src/packages.lisp -1 +2

Sun Feb 26 17:12:43 EST 2006  Marco Baringer <mb at bese.it>
  * Added :name attribute to form fields
  
  Mainly we want username/password fields to have constant names so that
  browsers will remeber the values. Doesn't hurt to add it to all the fields.

    M ./src/components/form.lisp -4 +10

Sun Feb 26 17:10:49 EST 2006  Marco Baringer <mb at bese.it>
  * The header for setting cookies is called Set-Cookie, not Cookie :(

    R ./src/backend/cookie.lisp
    M ./src/rerl/cookie-session.lisp -1 +1

Sun Feb 26 16:31:55 EST 2006  Marco Baringer <mb at bese.it>
  * Template components must not rebind *yaclml-stream*

    M ./src/yaclml/yaclml.lisp -1 +1

Sun Feb 26 16:30:57 EST 2006  Marco Baringer <mb at bese.it>
  * Added in-field-string-field and in-field-password-field form-field classes.
  
  If we keep adding things like this it may be better to create a
  seperate ucw-forms library.

    M ./src/components/form.lisp +41
    M ./src/packages.lisp +4

Sun Feb 26 15:52:11 EST 2006  Marco Baringer <mb at bese.it>
  * Fix bug in the call to arnesi:extract-argument-names (the logging statement in defaction now works as expected)

    M ./src/rerl/standard-action.lisp -3 +1

Sun Feb 26 15:50:54 EST 2006  Marco Baringer <mb at bese.it>
  * added validp method specialized on standard-component
  
  this method traverses the slots of a generic component and makes sure
  that all form-fields contained therein are valid.

    M ./src/components/form.lisp +9

Sun Feb 26 15:50:18 EST 2006  Marco Baringer <mb at bese.it>
  * Added form-field-p test method

    M ./src/components/form.lisp +4

Sun Feb 26 12:21:18 EST 2006  Marco Baringer <mb at bese.it>
  * Added (very simple) e-mail-address-validator

    M ./src/components/form.lisp +13
    M ./src/packages.lisp +1

Sun Feb 19 08:24:21 EST 2006  Alberto Santini <albertosantini at tiscali.it>
  * added trivial-sockets and split-sequence deps

    M ./docs/QUICKSTART -17 +27

Sat Feb 25 09:25:02 EST 2006  Marco Baringer <mb at bese.it>
  * Move the binding of yaclml-stream out of the main render :wrapping method and into standard-server's handle-request method
  
  Basically there's no need to rebind yaclml-stream each and every time
  we call render. Binding it once in standard-server's handle-request
  method is jsut as good and allows us effectivly to rebind the tsream our selves
  for testing or other purposes.

    M ./src/rerl/standard-component/standard-component.lisp -17 +16
    M ./src/rerl/standard-server.lisp -1 +6

Fri Feb 17 12:41:02 EST 2006  Marco Baringer <mb at bese.it>
  * Dropped our cookie parsing utilities for rfc2109 library
  
  There's no need to have our own code if someone else has written,
  documentated and debugged it already.

    M ./src/rerl/cookie-session.lisp -3 +10
    M ./ucw.asd -3 +3

Sat Feb 25 08:40:23 EST 2006  Marco Baringer <mb at bese.it>
  * Make generic-widget-component a subclass of component
  
  We don't actually define anything of the componnet class so this
  doesn't change anything functionally. However, we specify in the docs
  that all objects used to build up the UI are subclasses of COMPONENT.

    M ./src/components/widget.lisp -1 +1

Sat Feb 25 08:36:49 EST 2006  Marco Baringer <mb at bese.it>
  * Make simple-form a standard-component

    M ./src/components/form.lisp -3 +7

Sat Feb 25 08:28:10 EST 2006  Marco Baringer <mb at bese.it>
  * Make widget-component NOT a subclass of standard-component
  
  Widgets are generally used for simple graphical widgets (duh) which
  never call/answer, don't use transactions, don't need to remeber their
  place, etc. This change makes that distinction exlpcit and saves a lot
  of space in terms of what we need to backtracke and what we can safely
  forget.

    M ./examples/forms.lisp -20 +20
    M ./src/components/form.lisp -44 +46
    M ./src/components/widget.lisp -4 +4

Sat Feb 25 07:50:27 EST 2006  Marco Baringer <mb at bese.it>
  * Drop transaction-stack slot from standard-component

    M ./src/rerl/standard-component/standard-component.lisp -5 +1

Sat Feb 25 07:42:55 EST 2006  Marco Baringer <mb at bese.it>
  * Refactored the transaction stuff out into a seperate mixin class.

    M ./examples/examples.lisp -1 +1
    A ./src/components/transaction-mixin.lisp
    M ./src/packages.lisp +1
    M ./src/rerl/standard-component/control-flow.lisp -18 +10
    M ./src/rerl/standard-component/transactions.lisp -20
    M ./ucw.asd +1

Sat Feb 25 07:30:24 EST 2006  Marco Baringer <mb at bese.it>
  * Make date-field not fail when the user hasn't yet submitted a value

    M ./src/components/form.lisp -1 +3

Fri Feb 24 12:28:50 EST 2006  Marco Baringer <mb at bese.it>
  * Fix session.current-frame handling
  
  It is very important that we set the session's current frame before
  servicing the frame. The fact that it took so long to find and correct
  this bug is a sign that there's something really wrong with the
  current rerl api.

    M ./src/rerl/standard-session.lisp -4 +3

Fri Feb 24 12:11:19 EST 2006  Marco Baringer <mb at bese.it>
  * Moved standard-session's print-object method next to its defclass form

    M ./src/rerl/standard-classes.lisp +4
    M ./src/rerl/standard-session.lisp -4

Fri Feb 24 12:03:21 EST 2006  Marco Baringer <mb at bese.it>
  * Make select-field a subclass of generic-html-input and drop its print-object method

    M ./src/components/form.lisp -5 +1

Fri Feb 24 11:55:52 EST 2006  Marco Baringer <mb at bese.it>
  * Merge the frames and frame-queue slot of standard-session-frame into a frame-queue
  
  We now use a single object, a sub class of arnesi:lru-queue to manage
  the frames in a session.

    M ./src/rerl/standard-classes.lisp -6 +3
    M ./src/rerl/standard-session.lisp -47 +31

Fri Feb 24 11:47:07 EST 2006  Marco Baringer <mb at bese.it>
  * Drop the generating-frame slot

    M ./src/rerl/standard-classes.lisp -5 +1
    M ./src/rerl/standard-component/control-flow.lisp -2 +1
    M ./src/rerl/standard-session-frame.lisp -1

Fri Feb 24 12:03:41 EST 2006  Marco Baringer <mb at bese.it>
  * Added print-object method for standard-session-frame

    M ./src/rerl/standard-classes.lisp +8

Fri Feb 24 11:47:59 EST 2006  Marco Baringer <mb at bese.it>
  * Added the fail-miserably and try-again restarts to standard-server's handle-request method
  
  These two restarts handle those, very rare, cases where even ucw's
  builtin error checking and handling mechanisms fail.

    M ./src/rerl/standard-server.lisp -35 +42

Thu Feb 23 10:29:53 EST 2006  Marco Baringer <mb at bese.it>
  UNDO: Avoid keeping empty session-frames
  
  If a frame doesn't generate any actions there's no way we'll ever need
  it again. We now drop these frames just after they've been serviced.

    M ./src/rerl/standard-session.lisp -10 +3

Thu Feb 23 17:19:57 EST 2006  Marco Baringer <mb at bese.it>
  * removing spurious newlines

    M ./src/rerl/standard-application.lisp -2

Thu Feb 23 14:57:50 EST 2006  Marco Baringer <mb at bese.it>
  * Added contrib directory and get-contrib script

    A ./contrib/
    A ./contrib/get-contrib.sh

Thu Feb 23 10:44:11 EST 2006  Marco Baringer <mb at bese.it>
  * Minor docstring fixup

    M ./src/rerl/standard-component/control-flow.lisp -1 +1

Thu Feb 23 10:29:53 EST 2006  Marco Baringer <mb at bese.it>
  * Avoid keeping empty session-frames
  
  If a frame doesn't generate any actions there's no way we'll ever need
  it again. We now drop these frames just after they've been serviced.

    M ./src/rerl/standard-session.lisp -3 +10

Thu Feb 23 05:26:02 EST 2006  Marco Baringer <mb at bese.it>
  * Don't attempt to parse araneida::request-unparsed-body if its nil

    M ./src/backend/araneida.lisp -5 +6

Mon Feb 20 12:04:57 EST 2006  Marco Baringer <mb at bese.it>
  * Don't attempt to parse the request's body if the content length is 0.

    M ./src/backend/common.lisp -13 +14

Mon Feb 20 12:02:27 EST 2006  Marco Baringer <mb at bese.it>
  * Added ignore declaration

    M ./src/backend/araneida.lisp +1

Mon Feb 20 12:01:04 EST 2006  Marco Baringer <mb at bese.it>
  * Fix araneida backend (it hasn't been kept up-to-date with the latest backend changes)
  
  This consisted of changing the call in araneida.lisp and, to make
  things esaier, changing parse-request-body's body api (so we needed to
  change the httpd backend as well).

    M ./src/backend/araneida.lisp -8 +24
    M ./src/backend/common.lisp -16 +14
    M ./src/backend/httpd.lisp -1 +6

Mon Feb 20 12:00:26 EST 2006  Marco Baringer <mb at bese.it>
  * Notes and download locations regarding ucw's dependencies were waaaaay out of date

    M ./README -9 +27

Mon Feb 20 03:59:47 EST 2006  Marco Baringer <mb at bese.it>
  * Instead of checking whether SELF is NIL we moved the logging statement to within the let form, where we're sure it can't be NIL

    M ./src/rerl/standard-action.lisp -12 +9

Mon Feb 20 03:59:16 EST 2006  Marco Baringer <mb at bese.it>
  * Define (answer-without-caller* null standard-component t) method
  
  answer-without-caller* added the source argument, however this
  argument may be null in some cases. when there was only
  answer-without-caller the "null-caller" case was taken care of with an
  if form in the method, so we needed to drop the if form and add this
  second method specialized on null.

    M ./src/rerl/standard-component/control-flow.lisp -8 +7

Sun Feb 19 18:46:08 EST 2006  Marco Baringer <mb at bese.it>
  * Implement date-field

    M ./examples/forms.lisp +6
    M ./src/components/form.lisp -26 +73
    M ./src/packages.lisp -1 +7

Sun Feb 19 16:43:08 EST 2006  Marco Baringer <mb at bese.it>
  * Renamed formx.lisp to form.lisp

     ./src/components/formx.lisp -> ./src/components/form.lisp
    M ./ucw.asd -2 +2

Sun Feb 19 16:33:19 EST 2006  Marco Baringer <mb at bese.it>
  * Removed presentation and interface-element stuff.
  
  This code, while very cool, belongs in a seperate library and not
  inside ucw inself. The wall-time stuff has been dropped as well.
  
  The code is now located in the ucw-presentations library located at:
  
  http://common-lisp.net/project/ucw/repos/ucw-presentations

    M ./examples/examples.lisp -2
    R ./examples/presentations.lisp
    R ./src/components/aux-slots-mixin.lisp
    M ./src/components/form.lisp -909
    R ./src/components/ie.lisp
    R ./src/components/indirect-value-class.lisp
    R ./src/components/presentations.lisp
    M ./src/components/range-set.lisp -228
    R ./src/components/search-criteria.lisp
    R ./src/components/time-element.lisp
    M ./src/components/user-login.lisp -23 +20
    M ./src/packages.lisp -48 +1
    R ./src/wall-time.lisp
    M ./ucw.asd -12 +2

Sun Feb 19 16:31:25 EST 2006  Marco Baringer <mb at bese.it>
  * Deal with logging an action call when SELF is NIL. (Reported by: Aleksandar Bakic <a_bakic at yahoo.com>)

    M ./src/rerl/standard-action.lisp -2 +4

Sun Feb 19 15:19:53 EST 2006  Marco Baringer <mb at bese.it>
  * Run javascript form checks on keyup, not onchange (onkeyup gives much more immediate feedback)

    M ./src/components/formx.lisp -1 +1

Sun Feb 19 14:13:45 EST 2006  Marco Baringer <mb at bese.it>
  * Typo in print-object method

    M ./src/components/formx.lisp -1 +1

Sun Feb 19 14:13:01 EST 2006  Marco Baringer <mb at bese.it>
  * Added missing declare ignore declaration

    M ./src/components/secure-application.lisp -1 +1

Sat Feb 18 13:40:11 EST 2006  Marco Baringer <mb at bese.it>
  * Added new form library and reworked examples to use it
    
  The new form library (temporarily called formx) is much much simpler
  than the presentation stuff we currently have. This should make it
  easer to use and customize, while it may do a lot less it no longer
  imposes an entire framevork on every form tag.

    M ./examples/examples.lisp -7 +5
    M ./examples/forms.lisp -239 +108
    M ./src/admin/admin.lisp -17 +19
    A ./src/components/formx.lisp
    M ./src/packages.lisp +21
    M ./ucw.asd +1
    A ./wwwroot/dojo.js
    M ./wwwroot/ucw/admin/admin-repl.tal -3 +3

Sat Feb 18 10:27:33 EST 2006  Marco Baringer <mb at bese.it>
  * Added :script type to window-component's javascript slot.
  
  This now option does what :js said it did (but didn't acutally
  do). :js now mentions that its value will be passed to js:js* and then
  to <:script.

    M ./src/components/window.lisp -1 +4

Sat Feb 18 09:16:02 EST 2006  Marco Baringer <mb at bese.it>
  * Added :application parametetr to with-dummy-context
  
  In the face of TAL templates it is very usefull to be able to supply
  an existing, and properly configured, application to use.

    M ./src/rerl/standard-request-context.lisp -8 +9

Sat Feb 18 06:18:13 EST 2006  Marco Baringer <mb at bese.it>
  * standard-request-context depends on stadard-component
  
  Since standard-request-context now includes the dummy-request-context
  stuff, which includes a dummy-root-component component, we need the defcomponent to be defined when loading/compiling this file.

    M ./ucw.asd -1 +2

Fri Feb 17 16:21:14 EST 2006  matley at muppetslab.org
  * Added Trivial Sockets to the list of requirements in the README

    M ./README +6

Fri Feb 17 14:22:37 EST 2006  Marco Baringer <mb at bese.it>
  * Added the with-dummy-context macro

    M ./src/packages.lisp +1
    M ./src/rerl/standard-request-context.lisp +52

Fri Feb 17 09:27:21 EST 2006  Marco Baringer <mb at bese.it>
  * Changed window-component's javascript handling (only one slot now)
  
  Instead of having three different slot for the different ways we might
  want to include javascript we now have exactly one slot and each value
  specifies if it's a file to link to or a bit of javascript code to include.

    M ./src/components/window.lisp -25 +20

Fri Feb 17 09:16:40 EST 2006  Marco Baringer <mb at bese.it>
  * ucw.araneida asdf definition was wrong

    M ./ucw.asd -1 +1

Tue Feb 14 10:58:56 EST 2006  henrik.hjelte at poboxes.com
  * known order of javascripts in window-component

    M ./src/components/window.lisp -3 +12

Tue Feb 14 10:58:03 EST 2006  henrik.hjelte at poboxes.com
  * inline-javascript rendered as-is

    M ./src/components/window.lisp -1 +1

Thu Feb 16 03:35:34 EST 2006  Marco Baringer <mb at bese.it>
Thu Feb 16 03:14:12 EST 2006  Marco Baringer <mb at bese.it>
Mon Feb 13 14:09:57 EST 2006  Marco Baringer <mb at bese.it>
Fri Feb 10 10:54:21 EST 2006  Marco Baringer <mb at bese.it>
Wed Feb  8 10:42:48 EST 2006  Marco Baringer <mb at bese.it>
Wed Feb  8 10:42:13 EST 2006  Marco Baringer <mb at bese.it>
Wed Feb  8 10:38:48 EST 2006  Marco Baringer <mb at bese.it>
Wed Feb  8 10:38:30 EST 2006  Marco Baringer <mb at bese.it>
Wed Feb  8 10:31:24 EST 2006  Marco Baringer <mb at bese.it>
Tue Feb 14 12:09:07 EST 2006  Nathan Bird <nathan at acceleration.net>
Tue Feb 14 13:42:03 EST 2006  henrik.hjelte at poboxes.com
Mon Feb 13 14:07:08 EST 2006  Marco Baringer <mb at bese.it>
Mon Feb  6 02:58:15 EST 2006  henrik.hjelte at poboxes.com
Mon Feb  6 02:31:51 EST 2006  henrik.hjelte at poboxes.com
Tue Feb  7 17:26:24 EST 2006  Nathan Bird <nathan at acceleration.net>
Mon Feb 13 14:22:24 EST 2006  levente.meszaros at gmail.com
Mon Feb 13 14:07:18 EST 2006  levente.meszaros at gmail.com
Sun Feb 12 10:58:33 EST 2006  attila.lendvai at gmail.com
Thu Feb  9 16:03:16 EST 2006  attila.lendvai at gmail.com
Wed Feb  8 15:02:34 EST 2006  svg at surnet.ru
Wed Feb  8 13:56:35 EST 2006  svg at surnet.ru
Wed Feb  8 05:54:45 EST 2006  svg at surnet.ru
Wed Feb  8 04:17:26 EST 2006  henrik.hjelte at poboxes.com
Tue Feb  7 15:23:35 EST 2006  henrik.hjelte at poboxes.com
Tue Feb  7 15:22:04 EST 2006  henrik.hjelte at poboxes.com
Tue Feb  7 15:09:40 EST 2006  henrik.hjelte at poboxes.com
Tue Feb  7 15:09:40 EST 2006  henrik.hjelte at poboxes.com
Sun Feb  5 18:32:42 EST 2006  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Feb  5 18:11:27 EST 2006  Maciek Pasternacki <maciekp at japhy.fnord.org>
Thu Feb  2 07:26:24 EST 2006  Marco Baringer <mb at bese.it>
Sun Jan 15 11:33:04 EST 2006  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Jan 15 11:32:48 EST 2006  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Jan 15 11:30:22 EST 2006  Maciek Pasternacki <maciekp at japhy.fnord.org>
Thu Jan 12 15:19:49 EST 2006  Marco Baringer <mb at bese.it>
Wed Jan 11 13:48:48 EST 2006  Marco Baringer <mb at bese.it>
Wed Jan 11 13:28:36 EST 2006  Marco Baringer <mb at bese.it>
Wed Jan 11 11:53:01 EST 2006  Marco Baringer <mb at bese.it>
Tue Jan 10 13:42:37 EST 2006  Marco Baringer <mb at bese.it>
Tue Jan 10 12:34:02 EST 2006  Marco Baringer <mb at bese.it>
Wed Dec 21 06:40:25 EST 2005  Marco Baringer <mb at bese.it>
Wed Dec 21 06:40:11 EST 2005  Marco Baringer <mb at bese.it>
Wed Dec 21 06:39:44 EST 2005  Marco Baringer <mb at bese.it>
Mon Dec 19 12:26:24 EST 2005  Marco Baringer <mb at bese.it>
Mon Dec 19 12:25:18 EST 2005  Marco Baringer <mb at bese.it>
Mon Dec 19 12:24:54 EST 2005  Marco Baringer <mb at bese.it>
Mon Dec 19 12:24:44 EST 2005  Marco Baringer <mb at bese.it>
Mon Dec 19 10:17:40 EST 2005  Marco Baringer <mb at bese.it>
Mon Dec 19 10:17:12 EST 2005  Marco Baringer <mb at bese.it>
Mon Dec 19 10:16:21 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 13:09:20 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 13:08:30 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 13:07:57 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 10:05:41 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 09:22:47 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 09:21:16 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 09:17:34 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 06:47:39 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 18 06:46:57 EST 2005  Marco Baringer <mb at bese.it>
Fri Dec 16 10:02:01 EST 2005  Marco Baringer <mb at bese.it>
Sun Jan 22 16:42:22 EST 2006  attila.lendvai at gmail.com
Tue Jan 24 14:36:34 EST 2006  Marco Baringer <mb at bese.it>
Sun Dec 18 06:39:38 EST 2005  Marco Baringer <mb at bese.it>
Thu Jan 19 07:45:05 EST 2006  svg at surnet.ru
Thu Jan 12 13:34:59 EST 2006  svg at surnet.ru
Thu Jan 12 13:13:14 EST 2006  svg at surnet.ru
Sat Dec 24 15:56:17 EST 2005  svg at surnet.ru
Sat Dec 24 15:41:18 EST 2005  svg at surnet.ru
Sat Dec 24 15:39:17 EST 2005  svg at surnet.ru
Sat Dec 24 15:38:27 EST 2005  svg at surnet.ru
Sat Dec 24 15:37:41 EST 2005  svg at surnet.ru
Wed Dec 21 17:51:34 EST 2005  svg at surnet.ru
Wed Dec 21 17:50:43 EST 2005  svg at surnet.ru
Wed Dec 21 17:49:52 EST 2005  svg at surnet.ru
Wed Dec 21 17:46:54 EST 2005  svg at surnet.ru
Mon Dec 19 11:16:43 EST 2005  asbjxrn at bjxrnstad.net
Thu Dec 15 18:42:58 EST 2005  svg at surnet.ru
Thu Dec 15 18:41:55 EST 2005  svg at surnet.ru
Sun Dec 11 20:28:43 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Dec 11 19:55:18 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Dec 11 19:54:36 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Dec 11 09:49:41 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 11 09:49:18 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec 11 08:53:42 EST 2005  Marco Baringer <mb at bese.it>
Sat Dec 10 01:12:34 EST 2005  asbjxrn at bjxrnstad.net
Wed Dec  7 20:57:10 EST 2005  Nathan Bird <nathan at acceleration.net>
Wed Dec  7 20:53:06 EST 2005  Nathan Bird <nathan at acceleration.net>
Wed Dec  7 20:38:52 EST 2005  Nathan Bird <nathan at acceleration.net>
Wed Dec  7 14:03:37 EST 2005  Alberto Santini <albertosantini at tiscali.it>
Wed Dec  7 10:24:39 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Wed Dec  7 10:18:19 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Tue Dec  6 18:08:20 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Tue Dec  6 17:44:54 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Tue Dec  6 13:25:36 EST 2005  Nathan Bird <nathan at acceleration.net>
Tue Dec  6 13:23:50 EST 2005  Nathan Bird <nathan at acceleration.net>
Mon Dec  5 18:12:07 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Dec  4 10:35:55 EST 2005  Marco Baringer <mb at bese.it>
Sun Dec  4 07:09:08 EST 2005  Alberto Santini <albertosantini at tiscali.it>
Fri Dec  2 00:57:20 EST 2005  rusabd at gmail.com
Thu Dec  1 15:26:29 EST 2005  Marco Baringer <mb at bese.it>
Thu Dec  1 14:49:05 EST 2005  Marco Baringer <mb at bese.it>
Mon Dec  5 12:17:53 EST 2005  Nathan Bird <nathan at acceleration.net>
Thu Dec  1 13:33:20 EST 2005  Marco Baringer <mb at bese.it>
Thu Dec  1 14:13:42 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Thu Dec  1 13:40:31 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Thu Dec  1 11:04:57 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Tue Nov 29 08:56:31 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Tue Nov 29 08:54:12 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Nov 27 21:13:34 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Sun Nov 27 11:25:44 EST 2005  asbjxrn at bjxrnstad.net
Sun Nov 27 06:09:04 EST 2005  Marco Baringer <mb at bese.it>
Sat Nov 26 12:25:18 EST 2005  binarin at binarin.ru
Sat Nov 26 11:08:26 EST 2005  Marco Baringer <mb at bese.it>
Sat Nov 26 10:33:56 EST 2005  Marco Baringer <mb at bese.it>
Sat Nov 26 06:27:48 EST 2005  Alberto Santini <albertosantini at tiscali.it>
Sat Nov 26 05:07:48 EST 2005  Maciek Pasternacki <maciekp at japhy.fnord.org>
Mon Nov 21 11:18:34 EST 2005  russ at acceleration.net
Tue Nov 15 17:11:59 EST 2005  albertosantini at tiscali.it
Sat Nov 12 09:48:27 EST 2005  albertosantini at tiscali.it
Thu Nov 17 07:01:26 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov 16 17:11:47 EST 2005  russ at acceleration.net
Fri Nov 18 14:27:15 EST 2005  Asbjørn Bjørnstad <asbjxrn at bjxrnstad.net>
Tue Nov 15 06:54:10 EST 2005  Asbjørn Bjørnstad <asbjxrn at bjxrnstad.net>
Mon Nov 14 20:42:16 EST 2005  Nathan Bird <nathan at acceleration.net>
Mon Nov 14 20:34:59 EST 2005  Nathan Bird <nathan at acceleration.net>
Mon Nov 14 20:30:07 EST 2005  Nathan Bird <nathan at acceleration.net>
Mon Nov 14 20:28:29 EST 2005  Nathan Bird <nathan at acceleration.net>
Mon Nov 14 20:24:22 EST 2005  Nathan Bird <nathan at acceleration.net>
Mon Nov 14 04:17:38 EST 2005  Marco Baringer <mb at bese.it>
Mon Nov 14 04:16:55 EST 2005  Marco Baringer <mb at bese.it>
Sun Nov 13 06:45:57 EST 2005  Marco Baringer <mb at bese.it>
Sat Nov 12 07:54:19 EST 2005  Marco Baringer <mb at bese.it>
Fri Nov 11 11:45:30 EST 2005  Marco Baringer <mb at bese.it>
Sun Nov 13 05:50:17 EST 2005  henrik.hjelte at poboxes.com
Fri Nov 11 11:20:51 EST 2005  Nathan Bird <nathan at acceleration.net>
Fri Nov 11 11:00:37 EST 2005  Nathan Bird <nathan at acceleration.net>
Thu Sep  8 19:25:19 EDT 2005  Nathan Bird <nathan at acceleration.net>
Thu Nov 10 14:41:04 EST 2005  Marco Baringer <mb at bese.it>
Thu Nov 10 06:58:45 EST 2005  Marco Baringer <mb at bese.it>
Thu Oct 20 14:10:46 EDT 2005  Nathan Bird <nathan at acceleration.net>
Wed Nov  9 11:08:31 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 10:57:43 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 10:49:48 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 10:14:06 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 10:13:55 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 09:56:20 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 09:53:12 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 09:35:30 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 09:02:33 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 06:12:49 EST 2005  Marco Baringer <mb at bese.it>
Wed Nov  9 05:53:34 EST 2005  Marco Baringer <mb at bese.it>
Tue Nov  8 13:01:55 EST 2005  Marco Baringer <mb at bese.it>
Tue Nov  8 12:55:25 EST 2005  Marco Baringer <mb at bese.it>
Tue Nov  8 12:52:55 EST 2005  Marco Baringer <mb at bese.it>
Tue Nov  8 09:03:50 EST 2005  Jan Rychter <jan at rychter.com>
Tue Nov  8 09:00:57 EST 2005  Jan Rychter <jan at rychter.com>
Sat Nov  5 22:05:59 EST 2005  hoan at ton-that.org
Sat Nov  5 08:49:02 EST 2005  Marco Baringer <mb at bese.it>
Sat Nov  5 08:33:52 EST 2005  Marco Baringer <mb at bese.it>
Mon Nov  7 03:48:53 EST 2005  henrik.hjelte at poboxes.com
Fri Nov  4 21:01:17 EST 2005  asbjxrn at bjxrnstad.net
Fri Nov  4 08:12:59 EST 2005  Marco Baringer <mb at bese.it>
Fri Nov  4 07:57:19 EST 2005  Marco Baringer <mb at bese.it>
Thu Nov  3 13:48:01 EST 2005  Marco Baringer <mb at bese.it>
Thu Nov  3 13:46:19 EST 2005  Marco Baringer <mb at bese.it>
Mon Oct 31 13:25:39 EST 2005  svg at surnet.ru
Mon Oct 31 13:22:07 EST 2005  svg at surnet.ru
Mon Oct 31 13:21:15 EST 2005  svg at surnet.ru
Sun Oct 30 18:05:59 EST 2005  svg at surnet.ru
Sun Oct 30 15:36:48 EST 2005  svg at surnet.ru
Sat Oct 29 14:48:29 EDT 2005  svg at surnet.ru
Sat Oct 29 11:02:06 EDT 2005  Marco Baringer <mb at bese.it>
Sat Oct 29 10:53:57 EDT 2005  Marco Baringer <mb at bese.it>
Fri Oct 28 21:04:35 EDT 2005  hoan at ton-that.org
Fri Oct 28 13:28:17 EDT 2005  Marco Baringer <mb at bese.it>
Fri Oct 28 06:50:18 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 27 13:38:03 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 27 11:03:04 EDT 2005  Jan Rychter <jan at rychter.com>
Thu Oct 27 11:02:52 EDT 2005  Jan Rychter <jan at rychter.com>
Thu Oct 27 08:25:37 EDT 2005  svg at surnet.ru
Wed Oct 26 15:26:22 EDT 2005  svg at surnet.ru
Wed Oct 26 07:48:34 EDT 2005  svg at surnet.ru
Wed Oct 26 07:47:53 EDT 2005  svg at surnet.ru
Mon Oct 24 12:51:52 EDT 2005  svg at surnet.ru
Mon Oct 24 12:47:55 EDT 2005  svg at surnet.ru
Mon Oct 24 12:40:25 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 23 11:06:06 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 23 11:04:14 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 23 10:55:24 EDT 2005  Marco Baringer <mb at bese.it>
Sat Oct 22 13:47:42 EDT 2005  svg at surnet.ru
Thu Oct 20 13:44:17 EDT 2005  svg at surnet.ru
Wed Oct 19 14:59:52 EDT 2005  svg at surnet.ru
Tue Oct 18 13:46:49 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 18 13:45:47 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 18 13:45:25 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 18 13:44:22 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 18 13:24:11 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 18 13:23:50 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 18 13:17:32 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 18 12:24:57 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 18 05:31:32 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 16 22:19:17 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 16 14:48:34 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 16 13:11:45 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 16 10:39:40 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 16 10:13:33 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 16 08:56:41 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct 16 06:44:45 EDT 2005  Marco Baringer <mb at bese.it>
Fri Oct 14 08:03:22 EDT 2005  Marco Baringer <mb at bese.it>
Fri Oct 14 07:53:06 EDT 2005  Marco Baringer <mb at bese.it>
Fri Oct 14 07:51:27 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 13 12:53:27 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 13 10:57:58 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 13 10:57:36 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 13 10:39:31 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 13 08:35:19 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 13 08:30:08 EDT 2005  Marco Baringer <mb at bese.it>
Thu Oct 13 08:29:21 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 11 19:10:59 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 11 19:05:51 EDT 2005  Marco Baringer <mb at bese.it>
Tue Oct 11 08:25:12 EDT 2005  Marco Baringer <mb at bese.it>
Mon Oct 10 10:49:29 EDT 2005  asbjxrn at bjxrnstad.net
Sun Oct  9 14:42:13 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct  9 14:18:07 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct  9 11:30:50 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct  9 11:30:24 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct  9 11:28:58 EDT 2005  Marco Baringer <mb at bese.it>
Sun Oct  9 11:28:09 EDT 2005  Marco Baringer <mb at bese.it>
Sat Oct  8 18:14:16 EDT 2005  svg at surnet.ru
Fri Oct  7 15:35:13 EDT 2005  Marco Baringer <mb at bese.it>
Fri Oct  7 15:11:17 EDT 2005  Marco Baringer <mb at bese.it>
Fri Oct  7 13:59:29 EDT 2005  Marco Baringer <mb at bese.it>
Fri Oct  7 13:58:17 EDT 2005  Marco Baringer <mb at bese.it>
Wed Oct  5 01:13:41 EDT 2005  Marco Baringer <mb at bese.it>
Sat Oct  1 13:16:43 EDT 2005  Marco Baringer <mb at bese.it>
Sat Oct  1 05:26:39 EDT 2005  Marco Baringer <mb at bese.it>
Tue Sep 27 15:34:46 EDT 2005  Marco Baringer <mb at bese.it>
Sun Sep 25 12:42:27 EDT 2005  Marco Baringer <mb at bese.it>
Sun Sep 25 12:41:21 EDT 2005  Marco Baringer <mb at bese.it>
Thu Sep 22 11:24:36 EDT 2005  Marco Baringer <mb at bese.it>
Wed Sep 21 09:38:19 EDT 2005  Marco Baringer <mb at bese.it>
Tue Sep 20 16:08:30 EDT 2005  Jan Rychter <jan at rychter.com>
Tue Sep 20 13:48:55 EDT 2005  Marco Baringer <mb at bese.it>
Tue Sep 20 13:44:12 EDT 2005  Marco Baringer <mb at bese.it>
Tue Sep 20 13:42:00 EDT 2005  Marco Baringer <mb at bese.it>
Thu Sep 15 15:31:37 EDT 2005  svg at surnet.ru
Thu Sep 15 04:12:15 EDT 2005  svg at surnet.ru
Wed Sep 14 16:47:26 EDT 2005  svg at surnet.ru
Wed Sep 14 11:02:39 EDT 2005  Marco Baringer <mb at bese.it>
Tue Sep 13 03:24:52 EDT 2005  Marco Baringer <mb at bese.it>
Mon Sep 12 03:34:13 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 10:18:31 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 10:17:20 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 10:16:10 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 07:29:59 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 07:29:48 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 07:22:29 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 07:17:32 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 06:44:36 EDT 2005  Marco Baringer <mb at bese.it>
Sat Sep 10 06:44:07 EDT 2005  Marco Baringer <mb at bese.it>
Thu Sep  8 19:41:36 EDT 2005  Nathan Bird <nathan at acceleration.net>
Fri Sep  9 18:48:43 EDT 2005  Marco Baringer <mb at bese.it>
Fri Sep  9 04:05:13 EDT 2005  Marco Baringer <mb at bese.it>
Fri Sep  9 04:01:02 EDT 2005  Marco Baringer <mb at bese.it>
Fri Sep  9 03:53:56 EDT 2005  Marco Baringer <mb at bese.it>
Thu Sep  8 19:17:52 EDT 2005  Nathan Bird <nathan at acceleration.net>
Thu Sep  8 18:19:01 EDT 2005  Nathan Bird <nathan at acceleration.net>
Fri Sep  9 03:27:39 EDT 2005  Marco Baringer <mb at bese.it>
Thu Sep  8 13:57:55 EDT 2005  Marco Baringer <mb at bese.it>
Thu Sep  8 13:53:08 EDT 2005  Marco Baringer <mb at bese.it>
Thu Sep  8 12:56:54 EDT 2005  asbjxrn at bjxrnstad.net
Wed Sep  7 15:09:04 EDT 2005  Craig McDaniel <craigmcd at gmail.com>
Thu Sep  8 12:27:53 EDT 2005  Marco Baringer <mb at bese.it>
Wed Sep  7 17:21:48 EDT 2005  Marco Baringer <mb at bese.it>
Tue Sep  6 20:48:19 EDT 2005  Marco Baringer <mb at bese.it>
Tue Sep  6 10:09:02 EDT 2005  Jan Rychter <jan at rychter.com>
Tue Sep  6 05:10:35 EDT 2005  Marco Baringer <mb at bese.it>
Sun Sep  4 15:41:51 EDT 2005  Peter Scott <sketerpot at gmail.com>
Thu Sep  1 02:28:36 EDT 2005  Marco Baringer <mb at bese.it>
Thu Sep  1 02:23:56 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 31 07:43:50 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 31 07:05:07 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 31 06:31:42 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 31 06:31:27 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug 27 19:14:00 EDT 2005  drewc at tech.coop
Mon Aug 29 05:44:17 EDT 2005  Jan Rychter <jan at rychter.com>
Sun Aug 28 04:23:11 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug 27 09:50:18 EDT 2005  binarin at gmail.com
Sat Aug 27 09:46:32 EDT 2005  binarin at gmail.com
Sat Aug 27 15:39:31 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug 27 07:29:15 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 24 13:00:29 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 24 08:55:46 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 24 08:54:59 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 24 08:54:23 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 24 08:53:37 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 24 08:53:06 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 24 08:50:07 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 19 04:21:55 EDT 2005  Marco Baringer <mb at bese.it>
Thu Aug 18 10:53:47 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 17 06:08:30 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug 14 12:31:32 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug 14 10:15:01 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug 14 09:51:45 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug 14 09:51:14 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug 14 07:18:42 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug 14 07:18:09 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug 14 07:17:15 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 13:47:01 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 08:28:05 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 08:27:42 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 08:27:01 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 07:49:33 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 07:49:07 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 07:47:52 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 07:47:18 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 07:46:47 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 07:37:58 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 05:00:52 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug 12 03:14:21 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug 10 01:37:46 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  9 09:03:42 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  9 08:26:24 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  9 07:29:51 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  9 02:47:28 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  9 01:57:56 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  9 01:40:05 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug  7 10:09:06 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug  7 09:50:42 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug  7 09:48:32 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug  7 08:28:44 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug  7 08:26:39 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug  7 08:18:44 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug  7 05:11:51 EDT 2005  Marco Baringer <mb at bese.it>
Sun Aug  7 03:58:49 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug  6 05:34:02 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug  6 05:05:50 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug  6 05:00:59 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug  6 04:59:33 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug  6 04:29:07 EDT 2005  Marco Baringer <mb at bese.it>
Sat Aug  6 01:42:07 EDT 2005  Marco Baringer <mb at bese.it>
Fri Aug  5 03:30:24 EDT 2005  Marco Baringer <mb at bese.it>
Wed Aug  3 05:53:47 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  2 12:17:26 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  2 07:12:31 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  2 07:03:27 EDT 2005  Marco Baringer <mb at bese.it>
Tue Aug  2 07:01:51 EDT 2005  Marco Baringer <mb at bese.it>
Fri Jul 29 06:52:41 EDT 2005  Marco Baringer <mb at bese.it>
Tue Jul 26 05:54:55 EDT 2005  Marco Baringer <mb at bese.it>
Tue Jul 26 05:54:25 EDT 2005  Marco Baringer <mb at bese.it>
Tue Jul 26 05:53:33 EDT 2005  Marco Baringer <mb at bese.it>
Mon Jul 25 08:13:48 EDT 2005  Marco Baringer <mb at bese.it>
Sat Jul 23 09:33:29 EDT 2005  Marco Baringer <mb at bese.it>
Sat Jul 23 09:33:11 EDT 2005  Marco Baringer <mb at bese.it>
Sat Jul 23 07:30:39 EDT 2005  Marco Baringer <mb at bese.it>
Mon Aug  1 10:36:43 EDT 2005  Marco Baringer <mb at bese.it>
Mon Aug  1 10:32:54 EDT 2005  Marco Baringer <mb at bese.it>
Mon Aug  1 10:24:40 EDT 2005  Marco Baringer <mb at bese.it>
Mon Aug  1 10:22:47 EDT 2005  Marco Baringer <mb at bese.it>
Mon Aug  1 09:46:38 EDT 2005  Marco Baringer <mb at bese.it>
Mon Aug  1 01:07:20 EDT 2005  Robert Marlow <bobstopper at bobturf.org>
Sun Jul 31 10:51:19 EDT 2005  Julian Stecklina <der_julian at web.de>
Tue Jul 26 05:54:06 EDT 2005  Marco Baringer <mb at bese.it>
Sat Jul 30 07:44:29 EDT 2005  Marco Baringer <mb at bese.it>
Fri Jul 29 06:31:58 EDT 2005  Marco Baringer <mb at bese.it>
Thu Jul 28 08:03:22 EDT 2005  Marco Baringer <mb at bese.it>
Thu Jul 28 08:01:29 EDT 2005  Marco Baringer <mb at bese.it>
Tue Jul 26 08:28:03 EDT 2005  Marco Baringer <mb at bese.it>
Tue Jul 26 08:27:40 EDT 2005  Marco Baringer <mb at bese.it>
Mon Jul 25 08:15:51 EDT 2005  Marco Baringer <mb at bese.it>
Mon Jul 25 08:14:47 EDT 2005  Marco Baringer <mb at bese.it>
Mon Jul 25 08:14:21 EDT 2005  Marco Baringer <mb at bese.it>
Sun Jul 24 10:26:09 EDT 2005  matley at innerloop.it
Sat Jul 23 10:24:19 EDT 2005  matley at innerloop.it
Fri Jul 22 16:08:35 EDT 2005  matley at innerloop.it
Sat Jul 23 06:28:41 EDT 2005  Marco Baringer <mb at bese.it>
Thu Jul 21 11:54:17 EDT 2005  Marco Baringer <mb at bese.it>
Thu Jul 21 11:53:38 EDT 2005  Marco Baringer <mb at bese.it>
Thu Jul 21 11:42:59 EDT 2005  Marco Baringer <mb at bese.it>
Thu Jul 21 11:41:24 EDT 2005  Marco Baringer <mb at bese.it>
Mon Jul 18 13:28:34 EDT 2005  Marco Baringer <mb at bese.it>
Mon Jul 18 13:18:31 EDT 2005  Marco Baringer <mb at bese.it>
Sun Jul 17 23:39:50 EDT 2005  José Pablo Ezequiel Fernández <pupeno at pupeno.com>
Sun Jul 17 17:47:20 EDT 2005  José Pablo Ezequiel Fernández <pupeno at pupeno.com>
Sun Jul 17 17:34:07 EDT 2005  José Pablo Ezequiel Fernández <pupeno at pupeno.com>
Sun Jul 17 15:19:36 EDT 2005  Marco Baringer <mb at bese.it>
Sun Jul 17 15:13:01 EDT 2005  Marco Baringer <mb at bese.it>
Sun Jul 17 15:02:54 EDT 2005  Marco Baringer <mb at bese.it>
Sun Jul 17 14:58:26 EDT 2005  Marco Baringer <mb at bese.it>
Wed Jul  6 09:38:29 EDT 2005  Marco Baringer <mb at bese.it>
Wed Jul  6 09:26:41 EDT 2005  Marco Baringer <mb at bese.it>

An updated tarball of ucw_public's source can be downloaded here:
http://common-lisp.net/project/ucw/tarballs/ucw_public-20060305.tar.gz

Darcsweb URL:
http://uncommon-web.com/darcsweb/darcsweb.cgi?r=ucw_public;a=summary



More information about the bese-devel mailing list