#6464: notebook: Unicode in notebook worksheets
-------------------------+--------------------------------------------------
Reporter: mvngu | Owner: boothby
Type: enhancement | Status: new
Priority: major | Milestone:
Component: notebook | Keywords: Unicode, notebook
Reviewer: | Author:
Merged: |
-------------------------+--------------------------------------------------
At this [http://groups.google.com/group/sage-
devel/browse_thread/thread/e3b8dce14b6375bf sage-devel] thread, there is a
patch to fix a Unicode problem related to typesetting Korean in notebook
worksheets. Here's an essential snippet:
{{{
So I find the python code and modify it.
sageroot/devel/sage/sage/server/notebook/cell.py:211
211 : </script>"""%(self.__id,self.__id,self.__text)
=>
211 : </script>"""%(self.__id,self.__id,((self.__text).decode
('utf-8')).encode('ascii', 'xmlcharrefreplace'))
}}}
This might be related to #6417.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/6464>
Sage <http://sagemath.org/>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---