Difference between revisions of "User:Vincent"

From Free Pascal wiki
Jump to navigationJump to search
m (Reverted edits by Maxgomesrj (talk) to last revision by Vincent)
 
(36 intermediate revisions by 6 users not shown)
Line 1: Line 1:
<div>[[Image:Slovakia_small.png]]</div>
 
 
Full name: Vincent Snijders
 
Full name: Vincent Snijders
  
IRC nick: fpcfan
+
Email: vsnijders at vodafonevast.nl
  
My goal is to make lazarus as good on windows as it is on linux.
+
IRC nick: fpcfan, you can use your [http://www.lazarus.freepascal.org/index.php/page,9.html browser as IRC client].
  
I build daily snapshots of the lazarus installer for win32. You can download it from
+
My goal is to make lazarus as good on windows as it is on linux (or even better).
[http://www.ca.lazarus.freepascal.org/Lazarus/ the Canadian FreePascal mirror].
+
 
 +
I build daily snapshots of the lazarus source and installers for win32, linux and Mac OSX. For more information see
 +
[[Lazarus Snapshots Downloads]]. I am considering moving those builds into [[Jenkins]]. I am keeping some notes at [[User:Vincent/fpcbuildserver]].
  
  
Line 18: Line 19:
 
* http://meta.wikimedia.org/wiki/User:Coffman/Syntax_Highlight
 
* http://meta.wikimedia.org/wiki/User:Coffman/Syntax_Highlight
 
* http://meta.wikimedia.org/wiki/User:Coffman/Geshi_Syntax_Highlight_extension  
 
* http://meta.wikimedia.org/wiki/User:Coffman/Geshi_Syntax_Highlight_extension  
 +
 +
Templates for new pages (component release pages): http://mail.wikipedia.org/pipermail/mediawiki-l/2005-October/007985.html
  
  
 
;Translations
 
;Translations
 
* http://meta.wikimedia.org/wiki/User:Fxparlant/BrowserDetection
 
* http://meta.wikimedia.org/wiki/User:Fxparlant/BrowserDetection
 +
* http://www.mediawiki.org/wiki/Help:Interwiki_linking#Interwiki_links_to_other_languages
 +
 
My stylesheet: [[User:Vincent/monobook.css]]
 
My stylesheet: [[User:Vincent/monobook.css]]
  
Line 27: Line 32:
  
 
[[User:Vincent/Mediawiki customizations]]
 
[[User:Vincent/Mediawiki customizations]]
 +
 +
===Creating SID Chroot===
 +
* https://trac.parrot.org/parrot/wiki/ChrootSetup
 +
 +
===Creating a Fedora Chroot===
 +
* http://gr8can8dian.wordpress.com/2011/01/22/building-a-fedora-rpm-with-mock/
 +
 +
=== Exim ===
 +
[http://www.exim.org/exim-html-4.69/doc/html/spec_html/ch04.html#SECID34 exim help]
 +
 +
=== Mantis ===
 +
query resolved issues.
 +
<pre>
 +
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
 +
</pre>
 +
query copy versions from lazarus project (id=1) to packages (3) and patches (7)
 +
<pre>
 +
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)
 +
 +
</pre>

Latest revision as of 20:33, 18 March 2018

Full name: Vincent Snijders

Email: vsnijders at vodafonevast.nl

IRC nick: fpcfan, you can use your browser as IRC client.

My goal is to make lazarus as good on windows as it is on linux (or even better).

I build daily snapshots of the lazarus source and installers for win32, linux and Mac OSX. For more information see Lazarus Snapshots Downloads. I am considering moving those builds into Jenkins. I am keeping some notes at User:Vincent/fpcbuildserver.


Some links to help me create wiki pages (maybe to be moved to a help page):

Syntax highlighting

Templates for new pages (component release pages): http://mail.wikipedia.org/pipermail/mediawiki-l/2005-October/007985.html


Translations

My stylesheet: User:Vincent/monobook.css

My personal lazarus todo list.

User:Vincent/Mediawiki customizations

Creating SID Chroot

Creating a Fedora Chroot

Exim

exim help

Mantis

query resolved issues.

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)