Main  /  Edit  /  History  /  Login  /  Users Area

Tutorial: Basic Localization and Nice Urls

Now we learn how to use nice urls and add localization to our project

Code

First we create our hello class little bit differently:

  1. class hello: public application {  
  2. public:  
  3.     hello(worker_thread &worker) :  
  4.         application(worker)   
  5.     {  
  6.         url.add("^/(en|he)/?$",  
  7.             boost::bind(&hello::say_hello,this,_1));  
  8.         use_template("view");  
  9.     }  
  10.     void say_hello(string lang)  
  11.     {  
  12.         set_lang(lang);  
  13.         data::message c;  
  14.         c.message=gettext("Hello World");  
  15.         render("message",c);  
  16.     }  
  17. };  

Instead of overloading main() function, we use a url member of application class and add dispatchers according to urls we need.

We bind to url that match regular expression: ^/(en|he)/?$ member function say_hello which receives first matched expression (en|he) as first parameter (using placeholder _1).

Then we implement say_hello(string) member function.

First of all, we define our locale by calling set_lang(lang). and then set value of c.message using gettext().

Note: CppCMS gettext implementation is thread safe, thus you can set different languages in different threads.

Template

Now we change our template, and use following code:

  1. <html>  
  2.     <head>  
  3.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" >  
  4.     </head>  
  5.     <% if rtl %>  
  6.     <body dir="rtl">  
  7.     <% else %>  
  8.     <body>  
  9.     <% end %>  
  10.     <h1><% gt "We want to say" %></h1>  
  11.     <p><% message %></p>  
  12.   </body>  
  13. <html>  

First, we added utf-8 charset and then we have two important localization functions:

  1. <% if rtl %> is condition that checks if language is written right-to-left, like Hebrew or Arabic.
  2. Instead of writing directly "We want to say" we use command <% gt "We want to say" %>, defined that quoted text becomes translated to the target language when template is rendered.

Translation

Now when we build template code we add gettext domain name for our application using -d hello:

  1. cppcms_tmpl_cc -d hello view.tmpl -o view.cpp  

Now when C++ source code is build we can extract messages from them calling

  1. xgettext view.cpp hello.cpp  

And translate them.

There is an important part in messages.po:

  1. msgid "LTR"  
  2. msgstr ""  

It should be translated as RTL for languages like Hebrew or Arabic -- right-to-left languages.

After complete translation, we can create standard gettext directory locale/he/LC_MESSAGES and put there our hello.mo.

Configuration and Running

In order to enable gettext support in our application we should add following lines to our config.txt

  1. locale.dir = "./locale"  
  2. locale.lang_list = { "he" "en" }  
  3. locale.domain_list = { "hello" }  

Specifying location of "locale" directory, the list of supported languages and list of supported domains.

Now we can run our application

  1. cppcms_run hello.fcgi -c config.txt  

We can go to localhost:8080/hello.fcgi/en and see our "Hello World".

We can make urls nicer by adding -s parameter --- the script path.

  1. cppcms_run -s /hello hello.fcgi -c config.txt  

And now we can visit localhost:8080/hello/en or localhost:8080/hello/he

About

CppCMS is a web development framework for performance demanding applications.

Support This Project

SourceForge.net Logo

Поддержать проект

CppCMS needs You


Navigation

Main Page



Valid CSS | Valid XHTML 1.0