If you read this before the 26th of June 2006 it might be for your interest:
If you read it after, then sorry!!!!, you missed!! The European Apache Conference is over
Etiqueta: Apache
Waiting for the final word onApacheCon 2006
I have not get he final word to confirm if I am going to be giving a tutorial on the apache 2006.
I am impress that my name is there with all these important people:
ApacheCon 2006
I think that common look and feel is the subject that brought cocoon, and forrest to live. And still been an important role in the projects.
Me falta publicidad en lo que hago
Anoche hablando con mi primo Alberto sobre tecnologia se sorprendio bastante por el echo que tuviera mi propio blog. Pues, si, mira tu.
Cuando descubri el tema del blog, me di cuenta que lo mas facil seria subscribirte a cualquiera servicio de blog como blogger, y ponerme a escribir directamente. Pero a mi realmente el tema de escribir no es mi fuerte vaya. Lo que queria saber era como funcionaba por dentro y descubir a que se refieren con esto del blog.
Principalmente es una publicacion en la web de articulos periodicos. La diferencia de este a otros, es el echo de que soy mi propio administrador, es decir no tengo ninguna imposicion por parte del proveedor en el tipo de software que tengo que usar, obviamente esto es software libre y lo puedo modificar a mi antojo.
La otra diferencia es que al ser el administrador, decido donde vive esta aplicacion, corre sobre mi propia maquina, que fisicamente esta en el desvan y se aprovecha esos 384kbs de subida que nos ofrece el ADSL
En definitiva tienes un producto con un coste muy bajo. Todo esto esta estupendo, pero sin publicidad no llegamos muy lejos 🙂
El animo inicial de este espacio fue simplemente colaborar en http://planetapache.org/ donde se usa el formato rss para agregar contenito, debido a que escribo en español y en ingles este software te permite el utilizar categorias. De esa manera si pinchas en «es» podras ver los articulos solo en Español.
Forrest presentation on ApacheCon
I am impress about the amount of people that show up in the presentation for forrest.
One of the things that we know for sure is that we have a better idea of our user base.
Internalization a site using forrest 0.7-dev
I think that many people are asking for a way to display the same look and feel and different language using forrest.
I gather some information about how to do it here. I used this example for español and English example.
-
- First you need to download a dev version as for today (10 May 2005)
forrest seed
- set project.i18n=true on forrest.properties
- copy index.xml to index.es.xml
- modify index.es.xml to display some Spanish text
This should be enough for test if your setup is right.
load on your browser http://localhost:8888/ and change language. If everything goes right. you should be able to see the menus, tabs and content in Spanish (or whatever).
Now that we know that is it working on a live server, we are going to put it on a static view. We are going to start with a default language en (English)
-
cp $FORREST_HOME/main/webapp/WEB-INF/cli.xconf /var/tmp/fs
- add
project.configfile=/var/tmp/fs/cli.xconf
toforrest.properties
- modify
cli.xconf
and add this line:
<uri type=»insert» src-prefix=»» src=»index.html» follow-links=»false» dest=»/var/tmp/fs/build/i18n/*.en» />- run
forrest site
You should be able to see the fresh-site with all the files ending on html.en . Next is the turn of the alternative language.. Spanish.. 🙂
-
- export LANG=es
- modify cli.xconf and change the dest attribute on the uri element from *.en to *.es
- execute
forrest site
That should be enough in order to test it. you need to copy the destination folder (/var/tmp/fs/build/i18n) to a web directory in an Apache server. Well, I do a (cd /var/www; ln -s /var/tmp/fs/build/i18n i18n) but that is because I run a web server on my laptop. so http://localhost/i18n is enough for me to test.
Cheers,
Cheche