User:Vincent

From Free Pascal wiki
Revision as of 15:24, 18 March 2018 by Maxgomesrj (talk | contribs)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Nome completo: Vincent Snijders

E-mail: vsnijders em vodafonevast.nl

IRC usuario: fpcfan, você pode usar seu navegador como IRC client.

Meu objetivo e tornar o lazarus tão bom nas telas comno esta no linux (ou melhor ainda).


E criado instantâneos diários da fonte e instaladores do lazarus para win32, linux e Mac OSX. Para mais informações veja Lazarus Snapshots Downloads. Estou pensando mover estas instruções para Jenkins. Estou guardando algumas anotações em Usuario:Vincent/fpcbuildserver.


75/5000 Alguns links para me ajudar a criar páginas do wiki (talvez seja movido para uma página de ajuda):

Syntax highlighting

Modelos para novas páginas (páginas de lançamento de componentes): http://mail.wikipedia.org/pipermail/mediawiki-l/2005-October/007985.html


Traduções

Meu estilo: Usuario:Vincent/monobook.css

Meu pessoal lazarus todo list.

Usuario:Vincent/Mediawiki customizations

Criando SID Chroot

Criando um Chroot Fedora

Exim

exim help

Mantis

consulta problemas resolvidos.

SELECT count(*) FROM `mantis_bug_table`  
where (fixed_in_version='0.9.28' or 
fixed_in_version='0.9.27 (SVN)' or 
fixed_in_version='0.9.26.1 (SVN)' or 
fixed_in_version='0.9.26.2' )
and status>=80

query copy versions from lazarus project (id=1) to packages (3) and patches (7)

insert into `mantis_project_version_table` 
(`project_id`, `version`, `date_order`, `description`, `released`)
select 3, version, date_order, '' as description, released
from `mantis_project_version_table` vp1
where project_id=1 and date_order > '2012-01-01'
        and not exists
        (select id
         from `mantis_project_version_table` vp3
         where vp3.project_id=3 and vp1.version=vp3.version)
;
insert into `mantis_project_version_table` 
(`project_id`, `version`, `date_order`, `description`, `released`)
select 7, version, date_order, '' as description, released
from `mantis_project_version_table` vp1
where project_id=1 and date_order > '2012-01-01'
        and not exists
        (select id
         from `mantis_project_version_table` vp3
         where vp3.project_id=7 and vp1.version=vp3.version)