
By Jim.
(Image generated by quickmeme.com)
* Added a tiny wrapper around spiffy-request-vars, adding the
with-request-variables macro and exporting
spiffy-request-vars's converters.
* Updated JQuery from version 1.5.1 to 1.5.2.
* Better support for multiple applications under the same virtual
host (add-request-handler-hook! and remove-request-handler-hook!)
* $db checks if database access is enabled via (enable-db) and
throws an error if it is not.
* Fixed critical bug regarding to parameters and thread reuse by Spiffy
* Fixed redirect-to but introduced in version 0.29
* Updated JQuery from version 1.5.0 to 1.5.1.
* ajax and periodical-ajax bugfix (for situations when they
are used simultaneously, or periodical-ajax and add-javascript).
* The default URI for ajax-library is now protocol-relative
(thanks to Peter Bex).
* Added the javascript-position parameter.
$ csi -s repl.scm
(define (fatorial n) (if (< n 2) 1 (* n (fatorial (- n 1)))))
#<unspecified>
(fatorial 6)
720
--development-mode
). No modo de desenvolvimento, awful automaticamente define o caminho /reload
, o qual, quando requisitado, recarrega as aplicações.(defun awful-reload ()
(interactive)
(shell-command "lynx -dump http://localhost:8080/reload"))
(add-hook 'scheme-mode-hook
#'(lambda ()
(local-set-key "\C-cR" 'awful-reload)))
awful-reload
) que pode ser invocada no Emacs através de C-cR
estando-se no modo Scheme.lynx
serve bem a este propósito por fornecer a opção -dump
, que gera a saída sem formatação, a qual pode ser exibida com facilidade no buffer do Emacs.awful-reload
através de C-cR
.