My mother language being French, I would be naturally inclined to say yes.
However I do have a real concern, I am currently evaluating a dashboard option 
to be
added to our hospital integration product and our pilot site uses French.

I am counting on ClojureScript in the browser to make this thing
quite dynamic. Hospital personnel will carry tablets with them to enter data and
several huge screens will be installed so people can find where patients are 
located
at any moment.

Luc


> When sending data as strings from clojurescript to clojure there will be 
> issues if the source data contains certain unicode characters. (I think in 
> range 128-255 - extended latin characters mostly).
> 
> This is because the goog string conversion used by pr-str encodes these 
> characters as \x.. not \u00..
> 
> read-string will throw an exception if it encounters these characters.
> 
> Should read-string support these character escapes?
> 
> 
> 
> by way of work around, I am using:
> 
> (require '[clojure.string :as s])
> 
> (defn unescape [string]
>   (s/replace 
>     string #"\\x(..)" 
>     (fn [m] (str (char (Integer/parseInt (second m) 16))))))
> 
> (defn my-read-string [s]
>   (read-string (unescape s)))
> 
> Causes : https://github.com/ibdknox/pinot/issues/16
> 
> Cheers
> 
> Dave
> 
> -- 
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your 
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Softaddicts<lprefonta...@softaddicts.ca> sent by ibisMail!

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to