search for: characaters

Displaying 8 results from an estimated 8 matches for "characaters".

2003 Sep 30
3
higher ascii characaters in smbusers, success!
Hi list, Update: originally i wanted to post a question, but in writing i thought of things that finally led me to the solution. This i wanted to share with the community in case it can help. Sorry if this is a FAQ, but I had no luck searching for it. I have a working Samba 2.2.5 installation on SuSE8.1. I have two users on a windows client called Torge (that's me) and Ga&ediaresis;lle
2003 Aug 06
2
L10N and i18n of R
...o Japanese, E. Nakama and M. Okada, succeeded in "making R speak Japanese". At present, R can handle Japanese (as well as other languages, I guess) character strings if one use consoles which can understand Japanese. Also P. Murrell kindly provided a facility to plot hundreads of Japaense characaters as graphical symbols (Hershey vector fonts). Nakama and Okada's "L10N" (Localization) and "i18n" (internationalization) patches make it possible to use Japanese object names and to display Japanese characters on graphical devices (although still limited). If you are interes...
2003 Aug 06
2
L10N and i18n of R
...o Japanese, E. Nakama and M. Okada, succeeded in "making R speak Japanese". At present, R can handle Japanese (as well as other languages, I guess) character strings if one use consoles which can understand Japanese. Also P. Murrell kindly provided a facility to plot hundreads of Japaense characaters as graphical symbols (Hershey vector fonts). Nakama and Okada's "L10N" (Localization) and "i18n" (internationalization) patches make it possible to use Japanese object names and to display Japanese characters on graphical devices (although still limited). If you are interes...
2009 Oct 10
0
PHP Markdown 1.0.1n & Extra 1.2.4
...ixed a bug where tags where the name contains an underscore aren't parsed correctly. * Fixed some corner-cases mixing underscore-ephasis and asterisk- emphasis. Extra 1.2.4 (10 Oct 2009): * Fixed a problem where unterminated tags in indented code blocks could prevent proper escaping of characaters in the code block. -- Michel Fortin michel.fortin at michelf.com http://michelf.com/
2006 Mar 02
2
Different Collation (utf8_slovak_ci, utf8_danish_ci, latin1_german1_ci) etc.
One issue left for me to figure out is that in different languages there are different characters and Xapian takes only english characters. Thefore many word entered by users that contains their own language special characters will not return any result. MySQL offers different collations ... Now when I see how much data Xapian can search perhaps I could expand my index spider different European
2006 Apr 11
12
RJS
I am trying to use RJS as shown in this tutorial : http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates However it does not seem to work. I am not getting any excpetions in the logs. Here is what the logs say : Parameters: {"action"=>"add", "controller"=>"homepage"} Rendering homepage/add The homepage/add is named add.rjs I know
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not allocating RBP to any virtual register, the instances of RBP in function foo are in the machine code when my register allocator starts.) Function foo calls function bar. Register RBP is not saved across the call, though it is live after the call. Function bar includes a virtual register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
On 11/30/2012 6:36 PM, Lang Hames wrote: > > > RBP is used as the frame pointer on x86 (hence its automatic > appearance in your code), and shouldn't be allocated to any vreg in > function bar. Loading/saving RBP should be managed by the stack frame > setup/teardown code. > If it doesn't already, your allocator should filter out reserved > registers (See