io.utf8 renamed to io.encodings.utf8
parent
803e49b129
commit
2f5ad0324b
|
@ -1,12 +1,12 @@
|
||||||
USING: help.markup help.syntax io.encodings strings ;
|
USING: help.markup help.syntax io.encodings strings ;
|
||||||
IN: io.encodings.utf8
|
IN: io.encodings.utf8
|
||||||
|
|
||||||
ARTICLE: "io.utf8" "Working with UTF8-encoded data"
|
ARTICLE: "io.encodings.utf8" "Working with UTF8-encoded data"
|
||||||
"The UTF8 encoding is a variable-width encoding. 7-bit ASCII characters are encoded as single bytes, and other Unicode code points are encoded as 2 to 4 byte sequences."
|
"The UTF8 encoding is a variable-width encoding. 7-bit ASCII characters are encoded as single bytes, and other Unicode code points are encoded as 2 to 4 byte sequences."
|
||||||
{ $subsection encode-utf8 }
|
{ $subsection encode-utf8 }
|
||||||
{ $subsection decode-utf8 } ;
|
{ $subsection decode-utf8 } ;
|
||||||
|
|
||||||
ABOUT: "io.utf8"
|
ABOUT: "io.encodings.utf8"
|
||||||
|
|
||||||
HELP: decode-utf8
|
HELP: decode-utf8
|
||||||
{ $values { "seq" "a sequence of bytes" } { "str" string } }
|
{ $values { "seq" "a sequence of bytes" } { "str" string } }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
! Copyright (C) 2003, 2007 Slava Pestov.
|
! Copyright (C) 2003, 2007 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: hashtables io kernel math namespaces math.parser assocs
|
USING: hashtables io kernel math namespaces math.parser assocs
|
||||||
sequences strings splitting ascii io.utf8 assocs.lib
|
sequences strings splitting ascii io.encodings.utf8 assocs.lib
|
||||||
namespaces unicode.case ;
|
namespaces unicode.case ;
|
||||||
IN: http
|
IN: http
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
! Copyright (C) 2005, 2007 Eduardo Cavazos and Slava Pestov
|
! Copyright (C) 2005, 2007 Eduardo Cavazos and Slava Pestov
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: alien alien.c-types arrays ui ui.gadgets ui.gestures ui.backend
|
USING: alien alien.c-types arrays ui ui.gadgets ui.gestures
|
||||||
ui.clipboards ui.gadgets.worlds assocs kernel math namespaces
|
ui.backend ui.clipboards ui.gadgets.worlds assocs kernel math
|
||||||
opengl sequences strings x11.xlib x11.events x11.xim x11.glx
|
namespaces opengl sequences strings x11.xlib x11.events x11.xim
|
||||||
x11.clipboard x11.constants x11.windows io.utf8 combinators
|
x11.glx x11.clipboard x11.constants x11.windows
|
||||||
debugger system command-line ui.render math.vectors tuples
|
io.encodings.utf8 combinators debugger system command-line
|
||||||
opengl.gl threads ;
|
ui.render math.vectors tuples opengl.gl threads ;
|
||||||
IN: ui.x11
|
IN: ui.x11
|
||||||
|
|
||||||
TUPLE: x11-ui-backend ;
|
TUPLE: x11-ui-backend ;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
! 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: alien alien.c-types alien.syntax arrays kernel math
|
USING: alien alien.c-types alien.syntax arrays kernel math
|
||||||
namespaces sequences io.utf8 x11.xlib x11.constants ;
|
namespaces sequences io.encodings.utf8 x11.xlib x11.constants ;
|
||||||
IN: x11.clipboard
|
IN: x11.clipboard
|
||||||
|
|
||||||
! This code was based on by McCLIM's Backends/CLX/port.lisp
|
! This code was based on by McCLIM's Backends/CLX/port.lisp
|
||||||
|
|
Loading…
Reference in New Issue