underpop

http://underpop.online.fr 2007-11-14  

Gerenciador de download das traduções

Compilei essa ferramenta para baixar a tradução atualizada do XOOPS cube legacy para o português direto do servidor svn do google code. Não requer instalação, não altera em nada as configurações do windows, e não cria nenhum tipo de lixo no seu computador. Para usar, basta descompactar e dar um clique-duplo. Para atualizar os arquivos baixados, basta dar um duplo clique de novo para que os arquivos antigos já baixados sejam substituídos pelos novos do servidor. É para windows, mas funciona no linux via wine. Resumindo: esta não é a tradução, mas uma ferramenta para baixar e manter atualizada a tradução em seu computador.

Download:

 
Gerenciador de download para o XOOPS Cube em Português


Marcadores: ,



2007-11-11  

Fórum Internacional de Software Livre 2008

De 17 a 19 de abril de 2008, será realizado em Porto Alegre, RS a nona edição do Fórum Internacional de Software Livre.A programação deste ano aborda os seguintes temas (chamados de "trilhas", pelos organizadores):

  • Admin (Seguranca/Redes/Telecom)
  • Casos/Soluções
  • Desenvolvimento: Banco de Dados
  • Desenvolvimento: Ferramentas e Metodologias
  • Desenvolvimento: Java
  • Desenvolvimento: PHP
  • Desenvolvimento: Perl
  • Desenvolvimento: Python
  • Desenvolvimento: Ruby
  • Desktop
  • Ecossistema do Software Livre: Comunidade, Filosofia, Aspectos Sociais, Cultura Livre.
  • Educação e Inclusão Digital, overno e Software Público
  • Hardware e Sistemas Embarcados
  • Jogos e Multimídia
  • Kernel
  • Negócios (Produtos e Servicos)
  • Tópicos Emergentes

Aproveite para realizar sua inscrição com descontos: de 2 de fevereiro até o dia 7 de março, o valor da inscrição INDIVIDUAL é de R$ 103,00; e de 8 de março a 11 de abril, R$ 123,00.

Maiores informações:



Marcadores:



 

Getting Lua in Apache

Used the few hours i had available this weekend trying to see what options are there to get Lua running as an Apache2 module. Shortly put, i knew about two routes: Kepler's mod2 and mod_wombat (which is supposed to be part of apache some day)

Asked about the source for mod_wombat and promptly got what i needed (thanks Brian!). looked around in the docs. looks really similar to mod_python (and i guess to mod_perl??), it can keep a pool of LuaStates, with some code preexecuted on each process, and call a specified function to process client requests. just what i hoped.

now the bad news... it says "You may user (and I encourage you to!) the threaded MPMs"; but PHP5 doesn't run in a threaded apache. ??? i had no idea it was so limited! so i guess the preforked MPM is the most used apache build. who runs apache without PHP?

then came Kepler's mod2 time. i didn't have high hopes on this because the "build everything from scratch for each request" architecture in Kepler was what motivated me to write what later became Xavante.

looking around in the mod2 launcher code confirmed it: there's a small Lua layer that is clearly called with a new, clean LuaState for each request. useless.

but i also found a nice preprocessor switch: some #if LUA_STATE_PER_REQUEST and #if LUA_STATE_PER_PROCESS to change where and when are the LuaStates created! could that be what i was looking for? of course, i was sure that code would be far less tested than the 'standard' LUA_STATE_PER_REQUEST; but still it would be easier to debug it with the kepler guy's help. but... no, it can pre-create the LuaState, but it doesn't execute _any_ code! still waits for the client's request to load, compile and execute the main Lua files. Ugh.

in conclusion: it will be mod_wombat (as i could have guessed from the start); but it's a pity not to use it how the author "encourages" to do.

Marcadores: , , , , ,