[google-appengine] how can i write Arabic in app engine

2010-12-15 Thread tota
Hi
I have an application in google app engine and i want to make the
interface langauge in Arabic. I tried to do that but it display in
undefined charecters. I am using python. can any one help me.
Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] how can i write Arabic in app engine

2010-12-15 Thread 风笑雪
Hi, I don't know what framework are your using.

Generally speaking, you should set "Content-Type:text/html; charset=UTF-8"
header, and make sure you output UTF-8 encoded sting.

If you are using webapp, it will look like this:

self.response.headers['Content-Type'] = 'Content-Type:text/html;
charset=UTF-8'
self.response.out.write(u'something in Arabic'.encode('utf-8'))

--
keakon

My blog(Chinese): www.keakon.net
Blog source code: https://bitbucket.org/keakon/doodle/

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] how can i write Arabic in app engine

2010-12-15 Thread fatimah mujallid
Hi,thank you for your replay
I have this code in main.py

class Whatisinyourmind (db.Model):
name=db.StringProperty()
yourword=db.StringProperty()

class MainHandler(webapp.RequestHandler):
def get(self):
yourwords=db.GqlQuery('SELECT * FROM Whatisinyourmind')
values={'yourwords':yourwords}

self.response.out.write(template.render('main.html',values).decode('windows-1256'))
def post(self):
whatisinyourmind=Whatisinyourmind()
nameTemp=self.request.get('name')
#nameTemp=unicode(nameTemp,'windows-1256')
whatisinyourmind.name=nameTemp
temp=self.request.get('yourword')
#temp=unicode(temp,'windows-1256')
whatisinyourmind.yourword=temp
whatisinyourmind.put()
self.redirect('/')
---
you can see from the above code i used decode() to display any Arabic
characters and it display will EXCEPT the Arabic characters that i retrieve
it from the database it display garbish
The code in main.html are
--



Untitled Page


  ماذا يدور في عقلك؟
  
   {% for yourword in yourwords %}
{{yourword.name}}
{{yourword.yourword}}
   {% endfor %}
  
  الإسم الكريم: 
  
  الكلمة:
  
  
 


--
thanks again
2010/12/15 风笑雪 

> Hi, I don't know what framework are your using.
>
> Generally speaking, you should set "Content-Type:text/html; charset=UTF-8"
> header, and make sure you output UTF-8 encoded sting.
>
> If you are using webapp, it will look like this:
>
> self.response.headers['Content-Type'] = 'Content-Type:text/html;
> charset=UTF-8'
> self.response.out.write(u'something in Arabic'.encode('utf-8'))
>
> --
> keakon
>
> My blog(Chinese): www.keakon.net
> Blog source code: https://bitbucket.org/keakon/doodle/
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] how can i write Arabic in app engine

2010-12-16 Thread 风笑雪
I suggest you always use UTF-8, not windows-1256.

However, if you insist on using windows-1256, you should encode your unicode
output to str:
self.response.out.write(u'some unicode string'.*encode*('windows-1256'))
or:
self.response.out.write('some windows-1256 string') # don't decode it

--
keakon

My blog(Chinese): www.keakon.net
Blog source code: https://bitbucket.org/keakon/doodle/

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] how can i write Arabic in app engine

2010-12-16 Thread fatimah mujallid
Ok this code works great:
self.response.out.write(u'السلام عليكم'.encode('utf-8'))
but when i use an html page instead of a string just like this:
self.response.out.write(template.render(u'test.html'.encode('utf-8')))
it displays arabic characters rabish
in the html page i tried to write this:

and tried with out it arabic characters rabish
both displays
2010/12/16 风笑雪 

> I suggest you always use UTF-8, not windows-1256.
>
> However, if you insist on using windows-1256, you should encode your
> unicode output to str:
> self.response.out.write(u'some unicode string'.*encode*('windows-1256'))
> or:
> self.response.out.write('some windows-1256 string') # don't decode it
>
> --
> keakon
>
> My blog(Chinese): www.keakon.net
> Blog source code: https://bitbucket.org/keakon/doodle/
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] how can i write Arabic in app engine

2010-12-16 Thread fatimah mujallid
Ok this code works great:
self.response.out.write(u'
السلام عليكم'.encode('utf-8'))
but when i use an html page instead of a string just like this:
self.response.out.write(template.render(u'test.html'.encode('utf-8')))
it displays arabic characters rabish
in the html page i tried to write this:

and tried with out it
both displays arabic characters rabish


2010/12/17 fatimah mujallid 

> Ok this code works great:
> self.response.out.write(u'السلام عليكم'.encode('utf-8'))
> but when i use an html page instead of a string just like this:
> self.response.out.write(template.render(u'test.html'.encode('utf-8')))
> it displays arabic characters rabish
> in the html page i tried to write this:
> 
> and tried with out it arabic characters rabish
> both displays
> 2010/12/16 风笑雪 
>
> I suggest you always use UTF-8, not windows-1256.
>>
>> However, if you insist on using windows-1256, you should encode your
>> unicode output to str:
>> self.response.out.write(u'some unicode string'.*encode*('windows-1256'))
>> or:
>> self.response.out.write('some windows-1256 string') # don't decode it
>>
>> --
>> keakon
>>
>> My blog(Chinese): www.keakon.net
>> Blog source code: https://bitbucket.org/keakon/doodle/
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To post to this group, send email to google-appeng...@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-appengine+unsubscr...@googlegroups.com
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.