Merge branch 'master' of git://factorcode.org/git/factor

release
Eduardo Cavazos 2007-10-10 17:36:36 -05:00
commit 1e80002445
2 changed files with 12 additions and 4 deletions

View File

@ -5,8 +5,10 @@ TUPLE: gvim ;
M: gvim vim-command ( file line -- string ) M: gvim vim-command ( file line -- string )
[ [
"\"" % vim-path get % "\" --remote-tab-silent " % "\"" % vim-path get % "\"" %
vim-switches get [ % ] when*
"+" % # " \"" % % "\"" % "+" % # " \"" % % "\"" %
] "" make ; ] "" make ;
T{ gvim } vim-editor set-global T{ gvim } vim-editor set-global
"gvim" vim-path set-global

View File

@ -1,8 +1,8 @@
! Copyright (C) 2005 Alex Chapman ! Copyright (C) 2005 Alex Chapman
! Copyright (C) 2006, 2007 Slava Pestov ! Copyright (C) 2006, 2007 Slava Pestov
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: sequences kernel parser namespaces io io.files USING: continuations sequences kernel parser namespaces io
io.streams.lines io.streams.string html html.elements io.files io.streams.lines io.streams.string html html.elements
source-files debugger combinators math quotations generic source-files debugger combinators math quotations generic
strings splitting ; strings splitting ;
@ -70,6 +70,9 @@ DEFER: <% delimiter
: eval-template ( string -- ) parse-template call ; : eval-template ( string -- ) parse-template call ;
: html-error. ( error -- )
<pre> error. </pre> ;
: run-template-file ( filename -- ) : run-template-file ( filename -- )
[ [
[ [
@ -77,7 +80,10 @@ DEFER: <% delimiter
parser-notes off parser-notes off
templating-vocab use+ templating-vocab use+
dup source-file file set ! so that reload works properly dup source-file file set ! so that reload works properly
[ <file-reader> contents eval-template ] keep [
?resource-path <file-reader> contents
[ eval-template ] [ html-error. drop ] recover
] keep
] with-scope ] with-scope
] assert-depth drop ; ] assert-depth drop ;