Skip to content
  1. Jul 12, 2007
  2. Sep 01, 2006
  3. Jul 03, 2006
    • Attila Lendvai's avatar
      Export config variables in the ucw.system package · 4690f230
      Attila Lendvai authored
      Which makes it possible to set the variables between (asdf:find-system :ucw)
      and (asdf:oos 'asdf:load-op :ucw) when loading UCW programmatically in a
      customized way.
      
      darcs-hash:dd3258c8cf754f3191cf30a4b003c81b7d07844d
      4690f230
  4. Jul 02, 2006
  5. Jul 01, 2006
  6. Jun 30, 2006
  7. Jun 28, 2006
  8. Jun 27, 2006
  9. Jun 24, 2006
  10. Jun 17, 2006
  11. Jun 13, 2006
  12. Jun 16, 2006
    • Attila Lendvai's avatar
      cl-l10n integration (WARNING: i18n api change) · b7f6f9ff
      Attila Lendvai authored
      The stuff in i18n.lisp has been revisited. Most of the locale values are
      cl-l10n locale instances or locale names that the cl-l10n locale function
      understands.
      
      If you subclass i18n-application then each request will bind *locale* according
      to the client's browser settings. Most of the time it's a list in which case *locale*
      will be bound to this list and resource lookups will try each locale in this list
      until the resource is found. The application's default locale is always appended
      to the end of this list when it's not already in it.
      
      darcs-hash:454f41e9455bda78e23c970cbd57d0eea7f99b84
      b7f6f9ff
  13. Jun 09, 2006
  14. May 29, 2006
    • Nathan Bird's avatar
      provide #'meta-refresh · 16c2145b
      Nathan Bird authored
      Cause a meta-refresh (a freshly got (GET) url) at this point.
      This is useful in order to have a GET url after a form POST's
      actions have completed running. The user can then refresh to his
      heart's content.
      
      darcs-hash:a8a1eb210fcb80af597a79ba1ba3f111ce317d8b
      16c2145b
  15. May 14, 2006
  16. May 03, 2006
  17. Mar 11, 2006
    • Marco Baringer's avatar
      Use a list of dispatchers, instead of entry-poinst and nested service methods,... · 38ccf4b1
      Marco Baringer authored
      Use a list of dispatchers, instead of entry-poinst and nested service methods, to route incoming requests.
      
      This change moves a lot of the code which was spread out over the
      various SERVICE methods into the various dispatch methods. This change
      sholud make customizing ucw's request handling code much easier and
      reduce the amout of code in general.
      
      darcs-hash:8e659d514dba883a6afce5eddee6252b8a915a64
      38ccf4b1
  18. Apr 15, 2006
  19. Apr 12, 2006
  20. Mar 30, 2006
    • Luca Capello's avatar
      render UCW really configurable via ucwctl · b2360508
      Luca Capello authored
      Let's me explain the new ucwctl behavior, even if the manual page is
      quite self-explanatory...
      
      1) Dependencies
      
      - detachtty (http://www.cliki.net/detachtty), with the patches
        located here:
      
          http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=282641
      
        This is  what you'll find in the darcs repo located at:
      
          http://common-lisp.net/project/bese/repos/detachtty/
      
      - cl-launch (http://www.cliki.net/cl-launch), but there a small
        problem with the SLIME swank when you're not using the
        common-lisp-controller, as reported here:
      
          http://common-lisp.net/pipermail/slime-devel/2006-March/004664.html
      
        Follow the thread for a possible solution.
      
        The `:ucw.default' system depends on cl-launch as well.
      
      - cl-fad (http://www.cliki.net/CL-FAD), the `:ucw.config' system
        (which is used by the `:ucw.default' system) depends on it.
      
      2) Configuration
      
      ucwctl reads by default /etc/ucw/ucwctl.conf (a shell script) and the
      settings can be overridden by command line parameters, please use
      `ucwctl --help` for an explicative list.
      
      By default, UCW reads the configuration from /etc/ucw/conf.lisp (a
      lisp file).  The config file can be specified to ucwctl via the
      command line option -c or --config-file.
      
      Moreover, a different lisp file used to load up UCW can be specified
      to ucwctl via the command line option -s or --start-file.  By default,
      this is /etc/ucw/start.lisp.
      
      3) Applications
      
      Another improvement is the ability to specify a folder in which there
      are all the ASDF files (or symlink to them) for the applications that
      UCW should load.  By default, this folder is /etc/ucw/applications.d/
      and its value can be overridden in the config file.  This behavior
      coexists with the ancient one: applications can be manually specified,
      as it's still the case for the *example- and the *admin-application*.
      
      The name of an application loaded by an ASDF file, however, needs to
      be shared by the ASDF file (name.asd), the package defined by the
      application (:name) and the variable containing the `make-instance'
      declaration (*name-application*).
      
      4) Control UCW
      
      The commands available are now three: start, stop or attach to a
      running section.
      
      darcs-hash:f251b6f00acf232acf4053dea6b402358091854e
      b2360508
  21. Mar 16, 2006
    • Ties Stuij's avatar
      asd-form-fix · e31a6e00
      Ties Stuij authored
      fixes class-precedence problem with generic-html-input on cmucl
      
      darcs-hash:360b3401e45261f60f856670ad9b5499f879d71a
      e31a6e00
  22. Feb 17, 2006
  23. Mar 05, 2006
  24. Feb 25, 2006
  25. Feb 19, 2006
  26. Feb 18, 2006
    • Marco Baringer's avatar
      Added new form library and reworked examples to use it · c217263f
      Marco Baringer authored
      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.
      
      darcs-hash:f964b4cf743a6fafc13a9753fccbeff71bc16b6c
      c217263f
    • Marco Baringer's avatar
      standard-request-context depends on stadard-component · f5072e9c
      Marco Baringer authored
      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.
      
      darcs-hash:7d9b899682bada26df2a279d91f1c58e250736c1
      f5072e9c
  27. Feb 17, 2006
  28. Feb 05, 2006
  29. Jan 10, 2006
  30. Dec 19, 2005
  31. Dec 18, 2005