Extend Hungarian main web page translation by the following items:
- Project news entries, from 2009 (HTML, RSS, RDF) - Press releases, from 2008 (HTML, RSS) - Events, from 2009 (HTML, RSS) - Security advisories (HTML, RSS) - Standardize translation of "More" on the front page - Fix a link for the errata RSS Feed image Obtained from: The FreeBSD Hungarian Documentation Project
This commit is contained in:
parent
2aa89600cc
commit
4d6a97bc06
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=34054
27 changed files with 6081 additions and 28 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# $FreeBSD: www/hu/Makefile,v 1.6 2007/11/06 12:44:24 gabor Exp $
|
||||
# $FreeBSD: www/hu/Makefile,v 1.7 2008/05/02 08:56:08 pgj Exp $
|
||||
|
||||
###################################################
|
||||
# The FreeBSD Hungarian Documentation Project #
|
||||
|
|
@ -34,10 +34,12 @@ SUBDIR+= copyright
|
|||
SUBDIR+= developers
|
||||
SUBDIR+= docproj
|
||||
SUBDIR+= docs
|
||||
SUBDIR+= events
|
||||
SUBDIR+= news
|
||||
SUBDIR+= platforms
|
||||
SUBDIR+= search
|
||||
SUBDIR+= projects
|
||||
SUBDIR+= search
|
||||
SUBDIR+= security
|
||||
SUBDIR+= support
|
||||
.if !defined(WEB_ONLY) || empty(WEB_ONLY)
|
||||
SUBDIR+= doc
|
||||
|
|
|
|||
41
hu/events/Makefile
Normal file
41
hu/events/Makefile
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# $FreeBSD$
|
||||
|
||||
###################################################
|
||||
# The FreeBSD Hungarian Documentation Project #
|
||||
###################################################
|
||||
# %SOURCE% en/events/Makefile
|
||||
# %SRCID% 1.17
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
.endif
|
||||
.if exists(../Makefile.inc)
|
||||
.include "../Makefile.inc"
|
||||
.endif
|
||||
|
||||
# The year the top level events.html file starts from:
|
||||
YEARSTART= 2009
|
||||
# Years to generate past events pages for and link from top level:
|
||||
PASTYEARS= 2008 2007 2006 2005 2004 2003
|
||||
|
||||
DATA= events.css
|
||||
INDEXLINK= events.html
|
||||
|
||||
XMLDOCS+= events:../share/sgml/templates.events.xsl:${XML_EVENTS_EVENTS}:
|
||||
PARAMS.events= --param startyear ${YEARSTART}
|
||||
PARAMS.events+= --stringparam pastyears '${PASTYEARS}'
|
||||
DEPENDSET.events= events
|
||||
|
||||
.for year in ${PASTYEARS}
|
||||
XMLDOCS+= events${year}:${XSL_EVENTS_PAST}:${XML_EVENTS_EVENTS}:
|
||||
PARAMS.events${year}= --param year ${year}
|
||||
PARAMS.events${year}+= --stringparam pastyears '${PASTYEARS}'
|
||||
DEPENDSET.events${year}= events${year}
|
||||
.endfor
|
||||
|
||||
XMLDOCS+= events_ics:${XSL_EVENTS_ICS}:${XML_EVENTS_EVENTS}:events.ics
|
||||
DEPENDSET.events_ics= events
|
||||
|
||||
XMLDOCS+= events_rss:rss.xsl:${XML_EVENTS_EVENTS}:rss.xml
|
||||
|
||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
||||
10
hu/events/Makefile.inc
Normal file
10
hu/events/Makefile.inc
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# $FreeBSD$
|
||||
|
||||
###################################################
|
||||
# The FreeBSD Hungarian Documentation Project #
|
||||
###################################################
|
||||
# %SOURCE% en/events/Makefile.inc
|
||||
# %SRCID% 1.2
|
||||
|
||||
WEB_PREFIX?= ${.CURDIR}/../../..
|
||||
WEBBASE?= /data/events
|
||||
24
hu/events/events.css
Normal file
24
hu/events/events.css
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/* $FreeBSD$ */
|
||||
|
||||
/*
|
||||
* The FreeBSD Hungarian Documentation Project
|
||||
* %SOURCE% en/events/events.css
|
||||
* %SRCID% 1.2
|
||||
*/
|
||||
|
||||
div.topic {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
div.discussion {
|
||||
margin-left: 1cm;
|
||||
}
|
||||
|
||||
strong.speaker {
|
||||
color: #660000;
|
||||
}
|
||||
|
||||
strong.action {
|
||||
color: red;
|
||||
}
|
||||
158
hu/events/rss.xsl
Normal file
158
hu/events/rss.xsl
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "&os; központú események">
|
||||
<!ENTITY email "freebsd-www">
|
||||
<!ENTITY % navinclude.about "INCLUDE">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- Copyright (c) 2008 Murray Stokely <murray@FreeBSD.org>
|
||||
Copyright (c) 2003 Simon L. Nielsen <simon@FreeBSD.org>
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
-->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% en/events/rss.xsl
|
||||
%SRCID% 1.1
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
xmlns:date="http://exslt.org/dates-and-times"
|
||||
extension-element-prefixes="date"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:key name="event-by-month" match="event"
|
||||
use="concat(startdate/year, format-number(startdate/month, '00'))"/>
|
||||
|
||||
<!-- Template: events -->
|
||||
<xsl:template match="events">
|
||||
<xsl:variable name="title">A &os; Projekttel kapcsolatos közelgõ
|
||||
események</xsl:variable>
|
||||
<xsl:variable name="link">http://www.FreeBSD.org/hu/events/</xsl:variable>
|
||||
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title><xsl:value-of select="$title" /></title>
|
||||
<link><xsl:value-of select="$link" /></link>
|
||||
<description>A közeljövõben megrendezésre
|
||||
kerülõ, különbözõ &os;
|
||||
témájú konferenciák,
|
||||
gyûlések, kurzusok és egyéb fontos
|
||||
események.</description>
|
||||
<language>hu-hu</language>
|
||||
<webMaster>freebsd-www@FreeBSD.org (Webmesterek)</webMaster>
|
||||
<managingEditor>freebsd-www@FreeBSD.org (Webmesterek)</managingEditor>
|
||||
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
||||
<ttl>120</ttl>
|
||||
<image>
|
||||
<url>http://www.FreeBSD.org/logo/logo-full.png</url>
|
||||
<title><xsl:value-of select="$title" /></title>
|
||||
<link><xsl:value-of select="$link" /></link>
|
||||
</image>
|
||||
<atom:link rel="self" type="application/rss+xml">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$link" /><xsl:text>rss.xml</xsl:text>
|
||||
</xsl:attribute>
|
||||
</atom:link>
|
||||
|
||||
<xsl:for-each select="event[generate-id() =
|
||||
generate-id(key('event-by-month',
|
||||
concat(startdate/year, format-number(startdate/month, '00')))[1])
|
||||
and ((number(enddate/year) > number($curdate.year)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) > number($curdate.month)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) = number($curdate.month) and
|
||||
enddate/day >= $curdate.day))]">
|
||||
|
||||
<xsl:sort select="startdate/year" order="ascending"/>
|
||||
<xsl:sort select="format-number(startdate/month, '00')" order="ascending"/>
|
||||
<xsl:sort select="format-number(startdate/day, '00')" order="ascending"/>
|
||||
|
||||
<xsl:variable name="guid"><xsl:value-of select="url"/></xsl:variable>
|
||||
|
||||
<item>
|
||||
<title><xsl:value-of select="name"/></title>
|
||||
<description>
|
||||
<xsl:value-of select="name"/>
|
||||
<xsl:if test="url">
|
||||
<xsl:text> (</xsl:text>
|
||||
<xsl:value-of select="url"/>
|
||||
<xsl:text>)</xsl:text>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="location/site!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/site"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/city!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/city"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/state!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/state"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/country!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/country"/>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:text> </xsl:text>
|
||||
|
||||
<xsl:call-template name="gen-date-interval">
|
||||
<xsl:with-param name="startdate" select="startdate" />
|
||||
<xsl:with-param name="enddate" select="enddate" />
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:text>. </xsl:text>
|
||||
|
||||
<xsl:apply-templates select="description"/>
|
||||
|
||||
</description>
|
||||
|
||||
<link><xsl:value-of select="$guid" /></link>
|
||||
<guid><xsl:value-of select="$guid" /></guid>
|
||||
</item>
|
||||
</xsl:for-each>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
27
hu/index.xsl
27
hu/index.xsl
|
|
@ -4,7 +4,7 @@
|
|||
<!ENTITY title "A &os; Projekt">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD: www/hu/index.xsl,v 1.14 2008/12/22 15:42:11 pgj Exp $ -->
|
||||
<!-- $FreeBSD: www/hu/index.xsl,v 1.15 2009/01/10 19:39:41 pgj Exp $ -->
|
||||
|
||||
<!-- FreeBSD Hungarian Documentation Project
|
||||
Translated by: Gabor Kovesdan <gabor@FreeBSD.org>
|
||||
|
|
@ -44,9 +44,9 @@
|
|||
<link rel="alternate stylesheet" media="screen" href="&enbase;/layout/css/fixed_large.css" type="text/css" title="Large Text" />
|
||||
<script type="text/javascript" src="&enbase;/layout/js/styleswitcher.js"></script>
|
||||
<link rel="alternate" type="application/rss+xml"
|
||||
title="FreeBSD Projekt Hírek" href="&base;/news/rss.xml" />
|
||||
title="A &os; Projekt hírei" href="&base;/news/rss.xml" />
|
||||
<link rel="alternate" type="application/rss+xml"
|
||||
title="FreeBSD Biztonsági Bejelentések" href="&enbase;/security/rss.xml" />
|
||||
title="A &os; Projekt biztonsági figyelmeztetései" href="&base;/security/rss.xml" />
|
||||
|
||||
<!-- Formatted to be easy to spam harvest, please do not reformat. -->
|
||||
<xsl:comment>
|
||||
|
|
@ -98,7 +98,7 @@
|
|||
használ.</p>
|
||||
|
||||
<div id="TXTFRONTFEATURELINK"> »
|
||||
<a href="&base;/about.html" title="Bõvebben">Bõvebben</a>
|
||||
<a href="&base;/about.html" title="Tovább">Tovább</a>
|
||||
</div> <!-- TXTFRONTFEATURELINK -->
|
||||
</div> <!-- FRONTFEATURECONTENT -->
|
||||
</div> <!-- FRONTFEATURELEFT -->
|
||||
|
|
@ -122,7 +122,7 @@
|
|||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="&u.rel2.announce;">Stabil (hagyományos) kiadás: &rel2.current;</a>
|
||||
href="&u.rel2.announce;">Stabil (kifutó) kiadás: &rel2.current;</a>
|
||||
</li>
|
||||
<xsl:if test="'&beta.testing;' != 'IGNORE'">
|
||||
<li>
|
||||
|
|
@ -246,11 +246,11 @@
|
|||
<ul class="newseventslist">
|
||||
<li class="first-child">
|
||||
<a
|
||||
href="&enbase;/news/newsflash.html" title="További hírek">További hírek</a>
|
||||
href="&base;/news/newsflash.html" title="További hírek">További hírek</a>
|
||||
</li>
|
||||
<li class="last-child">
|
||||
<a
|
||||
href="&enbase;/news/rss.xml" title="Hírek RSS Feed"><img class="rssimage" src="&enbase;/layout/images/ico_rss.png" width="27" height="12" alt="Hírek RSS Feed" /></a>
|
||||
href="&base;/news/rss.xml" title="Hírek RSS Feed"><img class="rssimage" src="&enbase;/layout/images/ico_rss.png" width="27" height="12" alt="Hírek RSS feedben" /></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- unnamed -->
|
||||
|
|
@ -274,7 +274,7 @@
|
|||
<ul class="newseventslist">
|
||||
<li class="only-child">
|
||||
<a
|
||||
href="&enbase;/events/" title="További események">További események</a>
|
||||
href="&base;/events/" title="További események">További események</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- unnamed -->
|
||||
|
|
@ -298,7 +298,7 @@
|
|||
<ul class="newseventslist">
|
||||
<li class="only-child">
|
||||
<a
|
||||
href="&enbase;/news/press.html" title="Tovább események a médiában">Tovább</a>
|
||||
href="&base;/news/press.html" title="Tovább események a médiában">Tovább</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- unnamed -->
|
||||
|
|
@ -323,11 +323,11 @@
|
|||
<ul class="newseventslist">
|
||||
<li class="first-child">
|
||||
<a
|
||||
href="&enbase;/security/advisories.html" title="További biztonsági figyelmeztetések">Tovább</a>
|
||||
href="&base;/security/advisories.html" title="További biztonsági figyelmeztetések">Tovább</a>
|
||||
</li>
|
||||
<li class="last-child">
|
||||
<a
|
||||
href="&enbase;/security/rss.xml" title="Biztonsági figyelmeztetések RSS Feed"><img class="rssimage" src="&enbase;/layout/images/ico_rss.png" width="27" height="12" alt="Biztonsági figyelmeztetések RSS Feed" /></a>
|
||||
href="&base;/security/rss.xml" title="Biztonsági figyelmeztetések RSS Feed"><img class="rssimage" src="&enbase;/layout/images/ico_rss.png" width="27" height="12" alt="Biztonsági figyelmeztetések RSS feedben" /></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- unnamed -->
|
||||
|
|
@ -346,10 +346,11 @@
|
|||
<ul class="newseventslist">
|
||||
<li class="first-child">
|
||||
<a
|
||||
href="&base;/security/" title="Még több sajtóhiba mutatása">Bõvebben</a>
|
||||
href="&base;/security/" title="Még több sajtóhiba mutatása">Tovább</a>
|
||||
</li>
|
||||
<li class="last-child">
|
||||
<a href="&base;/security/errata.xml" title="Sajtóhibák RSS feedben"><img class="rssimage" src="&base;/layout/images/ico_rss.png" width="27" height="12" alt="Sajtóhibák RSS feedben"/></a>
|
||||
<a
|
||||
href="&base;/security/errata.xml" title="Sajtóhibák RSS Feed"><img class="rssimage" src="&enbase;/layout/images/ico_rss.png" width="27" height="12" alt="Sajtóhibák RSS feedben"/></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- unnamed -->
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# $FreeBSD$
|
||||
# $FreeBSD: www/hu/news/Makefile,v 1.1 2007/09/10 21:43:27 gabor Exp $
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
|
|
@ -14,8 +14,10 @@ INDEXLINK= news.html
|
|||
|
||||
DEPENDSET.DEFAULT= transtable news press
|
||||
|
||||
XMLDOCS= newsflash:${XSL_NEWS_NEWSFLASH}:${XML_NEWS_NEWS_MASTER}:
|
||||
XMLDOCS+= news-rdf:${XSL_NEWS_NEWS_RDF}:${XML_NEWS_NEWS_MASTER}:news.rdf
|
||||
XMLDOCS+= press:${XSL_NEWS_PRESS}:${XML_NEWS_PRESS_MASTER}:
|
||||
XMLDOCS= newsflash:../share/sgml/templates.newsflash.xsl:${XML_NEWS_NEWS}:
|
||||
XMLDOCS+= news-rdf:../share/sgml/templates.news-rdf.xsl:${XML_NEWS_NEWS}:news.rdf
|
||||
XMLDOCS+= news-rss:../share/sgml/templates.news-rss.xsl:${XML_NEWS_NEWS}:rss.xml
|
||||
XMLDOCS+= press:../share/sgml/templates.press.xsl:${XML_NEWS_PRESS}:
|
||||
XMLDOCS+= press-rss:../share/sgml/templates.press-rss.xsl:${XML_NEWS_PRESS}:press-rss.xml
|
||||
|
||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
||||
|
|
|
|||
35
hu/security/Makefile
Normal file
35
hu/security/Makefile
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
#
|
||||
# %SOURCE% en/security/Makefile
|
||||
# %SRCID% 1.17
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
.endif
|
||||
.if exists(../Makefile.inc)
|
||||
.include "../Makefile.inc"
|
||||
.endif
|
||||
|
||||
DOCS = security.sgml
|
||||
DOCS+= advisories.sgml
|
||||
|
||||
advisories.sgml: advisories.html.inc
|
||||
|
||||
INDEXLINK= security.html
|
||||
|
||||
security.html: advisories.html.inc advisories.rdf
|
||||
|
||||
DEPENDSET.DEFAULT= advisories
|
||||
DEPENDSET.errata-rss= notices
|
||||
XML.DEFAULT= ${XML_ADVISORIES}
|
||||
|
||||
XMLDOCS= advisories:mkindex.xsl::advisories.html.inc
|
||||
NO_DATA.advisories= yes
|
||||
NO_TIDY.advisories= yes
|
||||
|
||||
XMLDOCS+= advisories-rdf:security-rdf.xsl::advisories.rdf
|
||||
XMLDOCS+= advisories-rss:security-rss.xsl::rss.xml
|
||||
XMLDOCS+= errata-rss:errata-rss.xsl::errata.xml
|
||||
|
||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
||||
36
hu/security/advisories.sgml
Normal file
36
hu/security/advisories.sgml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//FreeBSD//DTD HTML 4.01 Transitional-Based Extension//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$FreeBSD$">
|
||||
<!ENTITY title "A &os; Projekt biztonsági figyelmeztetései">
|
||||
<!ENTITY % navinclude.support "INCLUDE">
|
||||
<!ENTITY % developers SYSTEM "../../en/developers.sgml"> %developers;
|
||||
<!ENTITY advisories.html.inc SYSTEM "advisories.html.inc">
|
||||
]>
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% en/security/advisories.sgml
|
||||
%SRCID% 1.1
|
||||
-->
|
||||
|
||||
<html>
|
||||
&header;
|
||||
|
||||
<p>Ezen az oldalon találhatjuk a &os; Projekt
|
||||
részérõl kiadott biztonsági
|
||||
figyelmeztetéseket. Az általános
|
||||
biztonsággal kapcsolatos tudnivalókat a <a
|
||||
href="security.html">&os; Projekt biztonsági
|
||||
információs oldalán</a> találhatjuk
|
||||
meg.</p>
|
||||
|
||||
<p>A &os; Portgyûjteményére vonatkozó
|
||||
biztonsági problémákat <a
|
||||
href="http://vuxml.FreeBSD.org/">a &os; Projekt VuXML
|
||||
dokumentumában</a> olvashatjuk.</p>
|
||||
|
||||
&advisories.html.inc;
|
||||
|
||||
&footer;
|
||||
</body>
|
||||
</html>
|
||||
32
hu/security/errata-rss.xsl
Normal file
32
hu/security/errata-rss.xsl
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY base ".">
|
||||
<!ENTITY title "">
|
||||
]>
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% en/security/errata-rss.xsl
|
||||
%SRCID% 1.1
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:template match="/">
|
||||
<xsl:call-template name="rss-errata-notices">
|
||||
<xsl:with-param name="notices.xml" select="$notices.xml" />
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
32
hu/security/errata.rss
Normal file
32
hu/security/errata.rss
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY base ".">
|
||||
<!ENTITY title "">
|
||||
]>
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% en/security/errata.rss
|
||||
%SRCID% 1.1
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:template match="/">
|
||||
<xsl:call-template name="rss-errata-notices">
|
||||
<xsl:with-param name="notices.xml" select="$notices.xml" />
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
27
hu/security/mkindex.xsl
Normal file
27
hu/security/mkindex.xsl
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY base ".">
|
||||
<!ENTITY title "">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% en/security/mkindex.xsl
|
||||
%SRCID% 1.6
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:output type="xml" encoding="iso-8859-2"
|
||||
omit-xml-declaration="yes" />
|
||||
|
||||
<xsl:template match="/">
|
||||
<xsl:call-template name="html-list-advisories">
|
||||
<xsl:with-param name="advisories.xml" select="$advisories.xml" />
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
25
hu/security/security-rdf.xsl
Normal file
25
hu/security/security-rdf.xsl
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY base ".">
|
||||
<!ENTITY title "">
|
||||
]>
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% en/security/security-rdf.xsl
|
||||
%SRCID% 1.2
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:template match="/">
|
||||
<xsl:call-template name="rdf-security-advisories">
|
||||
<xsl:with-param name="advisories.xml" select="$advisories.xml" />
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
32
hu/security/security-rss.xsl
Normal file
32
hu/security/security-rss.xsl
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY base ".">
|
||||
<!ENTITY title "">
|
||||
]>
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% en/security/security-rss.xsl
|
||||
%SRCID% 1.1
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:template match="/">
|
||||
<xsl:call-template name="rss-security-advisories">
|
||||
<xsl:with-param name="advisories.xml" select="$advisories.xml" />
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
416
hu/security/security.sgml
Normal file
416
hu/security/security.sgml
Normal file
|
|
@ -0,0 +1,416 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//FreeBSD//DTD HTML 4.01 Transitional-Based Extension//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$FreeBSD$">
|
||||
<!ENTITY title "&os; biztonsági információk">
|
||||
<!ENTITY % navinclude.support "INCLUDE">
|
||||
<!ENTITY % developers SYSTEM "../../en/developers.sgml"> %developers;
|
||||
<!ENTITY advisories.html.inc SYSTEM "advisories.html.inc">
|
||||
]>
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% en/security/security.sgml
|
||||
%SRCID% 1.205
|
||||
-->
|
||||
|
||||
<html>
|
||||
&header;
|
||||
|
||||
<h2>Bevezetés</h2>
|
||||
|
||||
<p>Ezt az oldalt azért hoztuk létre, hogy a &os;
|
||||
biztonsági problémáival kapcsolatban
|
||||
segítséget nyújtsunk az új és
|
||||
tapasztalt felhasználóknak egyaránt. A &os;
|
||||
Projekt tagjai nagyon komolyan veszik a biztonsági
|
||||
hibákat és folyamatosan azon dolgoznak, hogy az
|
||||
operációs rendszert a lehetõ
|
||||
legbiztonságosabbá tegyék.</p>
|
||||
|
||||
<h2>Tartalomjegyzék</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="#how">Hogyan és kinek jelentsük a &os;
|
||||
biztonsági hibáit</a></li>
|
||||
<li><a href="#sec">Röviden a &os; Security Officer
|
||||
feladatáról</a></li>
|
||||
<li><a href="#pol">Adatkezelési házirend</a></li>
|
||||
<li><a href="#sup">Támogatott &os; kiadások</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Egyéb biztonsággal kapcsolatos linkek</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="charter.html">A Security Officer és
|
||||
csapatának szabadalomlevele</a></li>
|
||||
<li><a href="advisories.html">A &os; biztonsági
|
||||
figyelmeztetéseinek listája</a></li>
|
||||
<li><a href="&base;/doc/hu/books/handbook/security-advisories.html">
|
||||
A &os; biztonsági figyelmeztetései</a></li>
|
||||
</ul>
|
||||
|
||||
<a name="how"></a>
|
||||
<h2>Hogyan és kinek jelentsük a &os; biztonsági
|
||||
hibáit</h2>
|
||||
|
||||
<p>A &os; biztonsági hibáit közvetlenül a <a
|
||||
href="mailto:secteam@FreeBSD.org">&os; Security Team</a>
|
||||
részére kell küldeni, illetve bizalmas
|
||||
információk esetén a <a
|
||||
href="../../../en/security/so_public_key.asc">Security Officer
|
||||
PGP-kulcsával</a> írhatunk egy PGP
|
||||
titkosítású levelet a <a
|
||||
href="mailto:security-officer@FreeBSD.org">Security Officer
|
||||
Team</a> címére. A jelentéseknek minden
|
||||
esetben tartalmazniuk kell a következõ adatokat:</p>
|
||||
|
||||
<ul>
|
||||
<li>A sebezhetõség leírása.</li>
|
||||
<li>Amennyiben lehetséges, a hiba által
|
||||
érintett összes &os; verzió
|
||||
megjelölése.</li>
|
||||
<li>Bármilyen kézenfekvõ megoldás.</li>
|
||||
<li>Amennyiben lehetséges, példakód a hiba
|
||||
kihasználhatóságának
|
||||
bemutatására.</li>
|
||||
</ul>
|
||||
|
||||
<p>A megadott információk közlése
|
||||
után a Security Officer vagy a Security Team valamelyik
|
||||
képviselõje visszaigazolást fog küldeni.</p>
|
||||
|
||||
<h3>A levélszemét szûrése</h3>
|
||||
|
||||
<p>Mivel a biztonsági problémákkal kapcsolatos
|
||||
levelezési címekre tömegesen érkezik a
|
||||
kéretlen levélszemét, a forgalmukat
|
||||
folyamatosan szûrjük. Amennyiben vélthetõen
|
||||
emiatt nem sikerülne elérnünk a &os; Security vagy
|
||||
a &os; Security Officer csapatok tagjait, küldjünk egy
|
||||
levelet a <tt>security-officer-<em>XXX</em>@FreeBSD.org</tt>
|
||||
címre, ahol az <em>XXX</em> rész helyére a
|
||||
<tt>3432</tt> szöveget kell beírni. Ez a cím
|
||||
bizonyos idõszakonként változik, ezért a
|
||||
levél elküldése elõtt ezen az oldalon
|
||||
tájékozódni a legfrissebb
|
||||
állapotáról. Az ide elküldött
|
||||
levelek a &os; Security Officer Team tagjaihoz fognak befutni.</p>
|
||||
|
||||
<a name=sec></a>
|
||||
<h2>A &os; Security Officer Team és a &os; Security Team</h2>
|
||||
|
||||
<p>Annak érdekében, hogy a beküldött
|
||||
sebezhetõségekre a &os; Projekt idõben
|
||||
érdemben reagálni tudjon, három tag
|
||||
érhetõ el jelenleg a Security Officer
|
||||
címén: maga a Security Officer, a Security Officer
|
||||
helyettese és a Core Team egy tagja. Ennek megfelelõen
|
||||
a <a
|
||||
href="mailto:security-officer@FreeBSD.org"><security-officer@FreeBSD.org></a>
|
||||
címére küldött levelek a
|
||||
következõ személyeknek fognak
|
||||
továbbítódni:</p>
|
||||
|
||||
<table>
|
||||
<tr valign="top">
|
||||
<td>&a.cperciva; <a
|
||||
href="mailto:cperciva@FreeBSD.org"><cperciva@FreeBSD.org></a></td>
|
||||
<td>Security Officer</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>&a.simon; <a
|
||||
href="mailto:simon@FreeBSD.org"><simon@FreeBSD.org></a></td>
|
||||
<td>Security Officer-helyettes</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>&a.rwatson; <a
|
||||
href="mailto:rwatson@FreeBSD.org"><rwatson@FreeBSD.org></a></td>
|
||||
<td>A &os; Core Team kapcsolattartója, a Release
|
||||
Engineering kapcsolattartója, a TrustedBSD Projekt
|
||||
kapcsolattartója, valamint rendszerbiztonsági
|
||||
szakértõ<br></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>A Security Officer munkáját a <a
|
||||
href="&base;/administration.html#t-secteam" >&os; Security
|
||||
Team</a> <a
|
||||
href="mailto:secteam@FreeBSD.org"><secteam@FreeBSD.org></a>
|
||||
segíti, amely a Security Officer által felügyelt
|
||||
committerek egy kisebb csoportja.</p>
|
||||
|
||||
<a name="pol"></a>
|
||||
<h2>Adatkezelési házirend</h2>
|
||||
|
||||
<p>Miután a szóbanforgó
|
||||
sebezhetõséget sikerült megfelelõ módon
|
||||
elemezni és javítani, valamint a
|
||||
javítást tesztelni és szükség
|
||||
esetén egyeztetni további partnerekkel, a &os;
|
||||
Security Officer igyekszik a vele kapcsolatos
|
||||
információkat nyilvánosságra hozni.</p>
|
||||
|
||||
<p>A Security Officer értesíteni <em>fogja</em> a &os;
|
||||
klaszter rendszergazdáit minden olyan
|
||||
sebezhetõségrõl, amely a &os; Projekt
|
||||
erõforrásait közvetlenül
|
||||
veszélyezteti.</p>
|
||||
|
||||
<p>A Security Officer kérheti további &os;
|
||||
fejlesztõk vagy egyéb külsõs fejlesztõk
|
||||
segítségét, amennyiben az adott
|
||||
sebezhetõség pontos feltárásához
|
||||
szükséges a támogatásuk. Ebben az esetben
|
||||
a sebezhetõséggel kapcsolatos minden
|
||||
információ szigorúan bizalmasnak
|
||||
tekintendõ, ezzel igyekszünk elkerülni a hiba
|
||||
idõ elõtti elterjedését. Ezért
|
||||
minden, a témában érintett
|
||||
fejlesztõtõl elvárjuk, hogy a Security Officer
|
||||
házirendjének megfelelõen járjon el.
|
||||
Korábban már többször kértünk
|
||||
fel szakértõket az operációs rendszer
|
||||
különféle bonyolultabb elemeinek, többek
|
||||
közt az FFS, a virtuális memória vagy a
|
||||
hálózati protokollkészlet
|
||||
mûködésével kapcsolatban.</p>
|
||||
|
||||
<p>Ha a bejelentés idõpontjában éppen egy
|
||||
&os; kiadás elõkészítése zajlik,
|
||||
akkor a &os; Release Engineer is értesítést kap
|
||||
a sebezhetõség létezésérõl
|
||||
és annak súlyosságáról. A kapott
|
||||
információk birtokában így képes
|
||||
lesz mérlegelni, hogy az adott probléma milyen
|
||||
változtatásokat igényel a kiadási ciklus
|
||||
szervezésében, illetve a következõ
|
||||
kiadást milyen mértékben érinti.
|
||||
Szükség esetén a Security Officer a
|
||||
sebezhetõség jellegét már nem osztja meg a
|
||||
Release Engineer felé, ezzel is igyekszik csökkenteni az
|
||||
információ kiszivárgásának
|
||||
kockázatát.</p>
|
||||
|
||||
<p>A &os; Security Officer más szervezetekkel is szoros
|
||||
együttmûködésben dolgozik, többek
|
||||
közt olyan külsõ fejlesztõkkel, amelyekkel a
|
||||
&os; kódjának valamelyik részét
|
||||
közösen használják (az OpenBSD, NetBSD,
|
||||
DragonFlyBSD projektek, az Apple, valamint a &os; alapú
|
||||
rendszereket fejlesztõ cégek és linuxos
|
||||
biztonsági listák), illetve a
|
||||
különbözõ biztonsági
|
||||
sebezhetõségeket és incidenseket
|
||||
nyilvántartó szervezetekkel, mint
|
||||
például a CERT. Gyakran elõfordul, hogy a
|
||||
sebezhetõségek nem kizárólag csak a &os;
|
||||
implementációját érintik és
|
||||
(viszont már nem olyan gyakran) további
|
||||
kihatással vannak az egész világ
|
||||
hálózati forgalmára. Ilyen esetekben a
|
||||
Security Officer igyekszik megosztani a tudomására
|
||||
jutott adatokat az érintett szervezetekkel. Amennyiben ehhez
|
||||
nem járulunk hozzá, jelezzük már a
|
||||
jelentés beküldése során.</p>
|
||||
|
||||
<p>Amennyiben a bejelentõnek bármilyen konkrét
|
||||
adatkezelési megkötése van, kérjük,
|
||||
mindenképpen pontosan tájékoztassa róla
|
||||
a Security Officert.</p>
|
||||
|
||||
<p>Amennyiben a bejelentõ szeretne együttmûködni a
|
||||
sebezhetõség nyilvánosságra
|
||||
hozásában, esetleg más egyéb
|
||||
gyártókkal együtt, kérjük ilyen
|
||||
jellegû szándékát nyíltan
|
||||
elõre jelezni. Ennek hiányában a
|
||||
kérdéses sebezhetõség
|
||||
nyilvánosságra hozásával kapcsolatban a
|
||||
&os; Security Officer olyan ütemezést fog
|
||||
választani, amely lehetõvé teszi az idõben
|
||||
történõ értesítést és a
|
||||
javítások megfelelõ tesztelését. A
|
||||
bejelentõnek ezenkívül még tisztában
|
||||
kell lennie azzal is, hogy ha az adott sebezhetõség
|
||||
már kikerül valamilyen publikus helyre (mint
|
||||
például hibakövetõ rendszerekbe) és
|
||||
történnek vele kapcsolatban visszaélések,
|
||||
akkor a Security Officernek a felhasználói
|
||||
közösségék maximális védelme
|
||||
érdekében jogában áll eltérni az
|
||||
elõre egyeztetett menetrendektõl.</p>
|
||||
|
||||
<p>A bejelentéseket PGP titkosítással
|
||||
védhetõek. Amennyiben szükséges, a
|
||||
válaszokat is PGP titkosítással
|
||||
küldjük.</p>
|
||||
|
||||
<a name="sup"></a>
|
||||
<h2>Támogatott &os; kiadások</h2>
|
||||
|
||||
<p>A &os; Security Officer egyszerre a &os; több
|
||||
fejlesztési vonalához is bocsát ki
|
||||
biztonsági figyelmeztetéseket. Vannak <em>-STABLE
|
||||
ágak</em> és külön <em>biztonsági
|
||||
javításokat tartalmazó ágak</em>.
|
||||
(Biztonsági figyelmeztetések nem készülnek
|
||||
a <em>-CURRENT ághoz</em>.)</p>
|
||||
|
||||
<ul>
|
||||
<li><p>A -STABLE ágakat például
|
||||
<tt>RELENG_7</tt> címkével nevezik el. Az ennek
|
||||
megfelelõ változat neve pedig a <tt>&os;
|
||||
7.0-STABLE</tt>.</p></li>
|
||||
|
||||
<li><p>Minden &os; kiadáshoz tartozik egy
|
||||
kizárólag biztonsági javítások
|
||||
tartalmazó ág. A hozzájuk tartozó
|
||||
ágakat például a <tt>RELENG_7_0</tt>
|
||||
címkével azonosítják. A neki
|
||||
megfelelõ változat pedig a <tt>&os;
|
||||
7.0-RELEASE-p1</tt>.</p></li>
|
||||
</ul>
|
||||
|
||||
<p>A &os; Portgyûjteményt érintõ
|
||||
hibákat <a href="http://vuxml.FreeBSD.org/">a &os; VuXML
|
||||
dokumentumban</a> találhatjuk.</p>
|
||||
|
||||
<p>A Security Officer az egyes ágakhoz csak korlátozott
|
||||
ideig nyújt támogatást, ezek típusa lehet
|
||||
`<em>kipróbálásra</em>`,
|
||||
`<em>egyszerû</em>` vagy `<em>bõvített</em>`. Az
|
||||
egyes típusú ágak élettartamára
|
||||
vonatkozó útmutatások a
|
||||
következõek:</p>
|
||||
|
||||
<dl>
|
||||
<dt>Kipróbálásra</dt>
|
||||
|
||||
<dd>A -CURRENT ágból készült
|
||||
kiadásokat a Security Officer legalább 6
|
||||
hónapig támogatja.</dd>
|
||||
|
||||
<dt>Egyszerû</dt>
|
||||
|
||||
<dd>A -STABLE ágból készült
|
||||
kiadásokat a Security Officer legalább 12
|
||||
hónapig támogatja, illetve ezen túl
|
||||
még (szükség esetén) addig, amíg
|
||||
a soronkövetkezõ egyszerû
|
||||
támogatású kiadások közül a
|
||||
legfrissebb 3 hónapos el nem múlik.</dd>
|
||||
|
||||
<dt>Bõvített</dt>
|
||||
|
||||
<dd>Különbözõ válogatott kiadások
|
||||
(általában minden második kiadás,
|
||||
illetve az egyes -STABLE ágak legutolsó
|
||||
kiadása), amelyeket a Security Officer legalább 24
|
||||
hónapig támogat, illetve ezen túl még
|
||||
(szükség esetén) addig, amíg a
|
||||
soronkövetkezõ bõvített
|
||||
támogatású kiadások közül a
|
||||
legfrissebb 3 hónapos el nem múlik.</dd>
|
||||
</dl>
|
||||
|
||||
<a name="supported-branches"></a>
|
||||
|
||||
<p>A jelenleg támogatott ágak pillanatnyi
|
||||
besorolását és támogatásuk
|
||||
becsült idejét az alábbi
|
||||
táblázatban foglaltuk össze. Itt a
|
||||
<em>Támogatás várható vége</em>
|
||||
címû oszlopban tüntettük fel az adott
|
||||
ágak beszüntetésének
|
||||
valószínûsíthetõ
|
||||
idõpontját. Ezek a dátumok a jövõben
|
||||
azonban változhatnak, habár bizonyos
|
||||
enyhítõ körülmények mentén
|
||||
elõfordulhat, hogy egy adott ág támogatása
|
||||
a kiírtnál hamarabb befejezõdik.</p>
|
||||
|
||||
<table class="tblbasic">
|
||||
<tr>
|
||||
<th>Ág</th>
|
||||
<th>Kiadás</th>
|
||||
<th>Típus</th>
|
||||
<th>Megjelenés ideje</th>
|
||||
<th>Támogatás várható vége</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RELENG_6</td>
|
||||
<td>-</td>
|
||||
<td>-</td>
|
||||
<td>-</td>
|
||||
<td>2010. november 30.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RELENG_6_3</td>
|
||||
<td>6.3-RELEASE</td>
|
||||
<td>bõvített</td>
|
||||
<td>2008. január 18.</td>
|
||||
<td>2010. január 31.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RELENG_6_4</td>
|
||||
<td>6.4-RELEASE</td>
|
||||
<td>bõvített</td>
|
||||
<td>2008. november 28.</td>
|
||||
<td>2010. november 30.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RELENG_7</td>
|
||||
<td>-</td>
|
||||
<td>-</td>
|
||||
<td>-</td>
|
||||
<td>utolsó kiadás + 2 év</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RELENG_7_0</td>
|
||||
<td>7.0-RELEASE</td>
|
||||
<td>egyszerû</td>
|
||||
<td>2008. február 27.</td>
|
||||
<td>2009. április 30.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RELENG_7_1</td>
|
||||
<td>7.1-RELEASE</td>
|
||||
<td>bõvített</td>
|
||||
<td>2009. január 4.</td>
|
||||
<td>2011. január 31.</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>A felsorolásban nem szereplõ, régebbi
|
||||
kiadásokat már nem tartjuk karban. Ezért
|
||||
kérünk mindenkit, hogy lehetõleg frissítsen
|
||||
valamelyik támogatott változatra.</p>
|
||||
|
||||
<p>A biztonsági figyelmeztetéseket az alábbi &os;
|
||||
levelezési listákra szokták küldeni:</p>
|
||||
|
||||
<ul>
|
||||
<li>FreeBSD-security-notifications@FreeBSD.org</li>
|
||||
<li>FreeBSD-security@FreeBSD.org</li>
|
||||
<li>FreeBSD-announce@FreeBSD.org</li>
|
||||
</ul>
|
||||
|
||||
<p>Az eddig kiadott figyelmeztetések
|
||||
megtalálhatóak a <a href="advisories.html">&os;
|
||||
bizonsági figyelmeztetések</a> oldalán.</p>
|
||||
|
||||
<p>A figyelmeztetéseket mindig a &os; Security Officer <a
|
||||
href="../../../en/security/so_public_key.asc">PGP-kulcsával</a>
|
||||
írják alá, majd <a
|
||||
href="http://security.FreeBSD.org/">http://security.FreeBSD.org/</a>
|
||||
honlapon a hozzátartozó javításokkal
|
||||
együtt feltöltik az <a
|
||||
href="http://security.FreeBSD.org/advisories/">advisories</a>
|
||||
(<q>figyelmeztetések</q>) és <a
|
||||
href="http://security.FreeBSD.org/patches/">patches</a>
|
||||
(<q>javítások</q>) könyvtárakba.</p>
|
||||
|
||||
&footer;
|
||||
</body>
|
||||
</html>
|
||||
3020
hu/share/sgml/events.xml
Normal file
3020
hu/share/sgml/events.xml
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,15 +1,458 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-2" ?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd">
|
||||
<!-- $FreeBSD: www/hu/share/sgml/libcommon.xsl,v 1.2 2008/06/25 11:31:19 gabor Exp $ -->
|
||||
<!-- $FreeBSD: www/hu/share/sgml/libcommon.xsl,v 1.3 2008/08/12 05:07:13 pgj Exp $ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: Gabor Kovesdan <gabor@FreeBSD.org>
|
||||
%SOURCE% en/share/sgml/libcommon.xsl
|
||||
%SRCID% 1.1
|
||||
%SOURCE% share/sgml/libcommon.xsl
|
||||
%SRCID% 1.28
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:param name="param-l10n-date-format-YMD"
|
||||
select="'%Y-%M-%D'" />
|
||||
<xsl:param name="param-l10n-date-format-YM"
|
||||
select="'%Y %M'" />
|
||||
<xsl:param name="param-l10n-date-format-MD"
|
||||
select="'%M %D'" />
|
||||
<xsl:param name="param-l10n-date-format-rfc822"
|
||||
select="'%Y %m %D 00:00:00 CET, %W'" />
|
||||
|
||||
<xsl:template name="html-usergroups-list-header">
|
||||
<p>A &os; népszerûsége nyomán a
|
||||
világban létrejött számos
|
||||
felhasználói csoport.</p>
|
||||
|
||||
<p>Ha tudomásunk van olyan további &os;
|
||||
felhasználói csoportokról, amelyek az
|
||||
alábbi felsorolásban még nem szerepelnek,
|
||||
küldjünk egy <a
|
||||
href="http://www.freebsd.org/hu/send-pr.html">hibajelentést</a>
|
||||
a <q>www</q> kategóriában a következõ
|
||||
adatok megadásával:</p>
|
||||
|
||||
<ol>
|
||||
<li>A felhasználói csoport honlapjának
|
||||
címe.</li>
|
||||
|
||||
<li>Egy kapcsolattartó személy e-mail címe a
|
||||
látogatóink és a honlapunk
|
||||
karbantartóinak számára.</li>
|
||||
|
||||
<li>A felhasználói csoport tömör (egy
|
||||
bekezdésnyi) bemutatása.</li>
|
||||
</ol>
|
||||
|
||||
<p>Az elõbb felsorolt információkat
|
||||
kérjük HTML formátumban beküldeni. A &os;
|
||||
lendületének megõrzésének
|
||||
szellemében elsõsorban olyan
|
||||
felhasználói csoportok jelentkezését
|
||||
várjuk, amelyek aktívak és
|
||||
tevékenységük nyilvános. Ha még
|
||||
nem lenne a környékünkön ilyen csoport,
|
||||
akkor javasoljuk, hogy kutassunk fel és vegyünk fel
|
||||
kapcsolatot a közelünkben élõ
|
||||
érdeklõdõkkel, például a <a
|
||||
href="http://bsd.meetup.com/"></a> oldalon keresztül,
|
||||
és alapítsunk egy saját
|
||||
felhasználói csoportot.</p>
|
||||
|
||||
<h3>Régiók:</h3>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-news-list-newsflash-preface">
|
||||
<img src="&enbase;/gifs/news.jpg" align="right" border="0" width="193"
|
||||
height="144" alt="&os; hírek"/>
|
||||
|
||||
<p>A &os; operációs rendszer dinamikusan és
|
||||
gyorsan fejlõdik, ezért a legfrissebb
|
||||
fejlesztések nyomonkövetése nem mindig
|
||||
könnyû feladat. Ha kíváncsiak vagyunk a
|
||||
rendszerrel kapcsolatos legújabb
|
||||
információkra, térjünk vissza erre az
|
||||
oldalra gyakran. Emellett érdemes lehet még
|
||||
feliratkoznunk a <a
|
||||
href="&base;/doc/hu/books/handbook/eresources.html#ERESOURCES-MAIL">freebsd-announce
|
||||
levelezési listára</a>, vagy a
|
||||
hozzátartozó <a href="rss.xml">RSS feed</a>re.</p>
|
||||
|
||||
<p>Továbbá az alábbi projektek rendelkeznek
|
||||
saját külön híroldallal, amelyek figyelemmel
|
||||
kísérésével pedig az adott projektben
|
||||
végzett munkáról tudhatunk meg
|
||||
többet.</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="&enbase;/java/newsflash.html">&os; &java;</a></li>
|
||||
|
||||
<li><a href="http://freebsd.kde.org/">&os; KDE</a></li>
|
||||
|
||||
<li><a href="&enbase;/gnome/newsflash.html">&os; GNOME</a></li>
|
||||
</ul>
|
||||
|
||||
<p>A korábbi, a jelenlegi és a jövõbeni
|
||||
kiadásokról bõvebben a <strong><a
|
||||
href="&enbase;/releases/index.html">kiadások
|
||||
információs oldalán</a></strong>
|
||||
olvashatunk.</p>
|
||||
|
||||
<p>A &os; Projekt biztonsági figyelmeztetéseit a <a
|
||||
href="&enbase;/security/#adv">biztonsági
|
||||
információs oldalon</a> találjuk meg.</p>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-news-make-olditems-list">
|
||||
<p>A korábbi évek hírei:
|
||||
<a href="&enbase;/news/2008/index.html">2008</a>,
|
||||
<a href="&enbase;/news/2007/index.html">2007</a>,
|
||||
<a href="&enbase;/news/2006/index.html">2006</a>,
|
||||
<a href="&enbase;/news/2005/index.html">2005</a>,
|
||||
<a href="&enbase;/news/2004/index.html">2004</a>,
|
||||
<a href="&enbase;/news/2003/index.html">2003</a>,
|
||||
<a href="&enbase;/news/2002/index.html">2002</a>,
|
||||
<a href="&enbase;/news/2001/index.html">2001</a>,
|
||||
<a href="&enbase;/news/2000/index.html">2000</a>,
|
||||
<a href="&enbase;/news/1999/index.html">1999</a>,
|
||||
<a href="&enbase;/news/1998/index.html">1998</a>,
|
||||
<a href="&enbase;/news/1997/index.html">1997</a>,
|
||||
<a href="&enbase;/news/1996/index.html">1996</a></p>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-news-list-newsflash-homelink">
|
||||
<a href="&base;/news/news.html">Hírek fõoldal</a>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-press-make-olditems-list">
|
||||
<p>A korábbi évek sajtókiadványai:
|
||||
<a href="&enbase;/news/2007/press.html">2007</a>,
|
||||
<a href="&enbase;/news/2006/press.html">2006</a>,
|
||||
<a href="&enbase;/news/2005/press.html">2005</a>,
|
||||
<a href="&enbase;/news/2004/press.html">2004</a>,
|
||||
<a href="&enbase;/news/2003/press.html">2003</a>,
|
||||
<a href="&enbase;/news/2002/press.html">2002</a>,
|
||||
<a href="&enbase;/news/2001/press.html">2001</a>,
|
||||
<a href="&enbase;/news/2000/press.html">2000</a>,
|
||||
<a href="&enbase;/news/1999/press.html">1999</a>,
|
||||
<a href="&enbase;/news/1998/press.html">1998-1996</a></p>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-news-list-press-preface">
|
||||
<p>Ha tudunk bármilyen olyan &os; témájú
|
||||
hírrõl vagy egyéb írásról,
|
||||
amely nem szerepel az itteniek között, írjunk egy
|
||||
levelet a <a href="mailto:www@FreeBSD.org">www@FreeBSD.org</a>
|
||||
címre, hogy fel tudjuk ide is tenni.</p>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-events-map">
|
||||
<xsl:param name="mapurl" select="'none'" />
|
||||
|
||||
<p>A lentebb látható térképen
|
||||
sötét pirossal jelöltük azokat az
|
||||
országokat és régiókat, ahol a
|
||||
közeljövõben valamilyen nagyobb &os;
|
||||
témájú esemény várható.
|
||||
Sárgával és narancssárgával
|
||||
jelöltük azokat az országokat, ahol
|
||||
korábban már lezajlott valamilyen &os;
|
||||
témájú esemény. Itt a színek
|
||||
az események számával egyre
|
||||
sötétednek.</p>
|
||||
|
||||
<img>
|
||||
<xsl:attribute name="src">
|
||||
<xsl:value-of select="$mapurl" />
|
||||
</xsl:attribute>
|
||||
</img>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-events-list-preface">
|
||||
<p>Ha tudunk valamilyen olyan &os; témájú
|
||||
eseményrõl vagy eseményekrõl, amelyek a
|
||||
többi &os; felhasználó számára is
|
||||
érdekesek lehetnek, de még nem szerepelnek az
|
||||
oldalon található listában, írjuk meg
|
||||
a <a href="mailto:www@FreeBSD.org">www@FreeBSD.org</a>
|
||||
címre, hogy fel tudjuk tenni.</p>
|
||||
|
||||
<p>Az iCalendar formátumot ismerõ programokkal
|
||||
dolgozó felhasználók az oldalon szereplõ
|
||||
összes eseményt elérhetik a <a
|
||||
href="&base;/events/events.ics">kalendáriumként</a>
|
||||
is.</p>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-events-list-upcoming-heading">
|
||||
<h2 id="upcoming">Aktuális/közelgõ
|
||||
események:</h2>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-events-list-past-heading">
|
||||
<h2 id="past">Korábbi események:</h2>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-list-advisories-release-label">
|
||||
<xsl:param name="relname" select="'none'" />
|
||||
|
||||
<p>Megjelent a <xsl:value-of select="$relname" />.</p>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="rdf-security-advisories-title"
|
||||
xmlns="http://my.netscape.com/rdf/simple/0.9/">
|
||||
<channel>
|
||||
<title>&os; biztonsági figyelmeztetések</title>
|
||||
<link>http://www.FreeBSD.org/security/</link>
|
||||
<description>A &os; Projekt által megjelentetett
|
||||
biztonsági figyelmeztetések</description>
|
||||
</channel>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="rss-security-advisories-title"
|
||||
xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<xsl:param name="advisories.xml" select="''" />
|
||||
|
||||
<xsl:variable name="title">&os; biztonsági figyelmeztetések</xsl:variable>
|
||||
<xsl:variable name="link">http://www.FreeBSD.org/security/</xsl:variable>
|
||||
|
||||
<title><xsl:value-of select="$title" /></title>
|
||||
<link><xsl:value-of select="$link" /></link>
|
||||
<description>A &os; Projekt által megjelentetett
|
||||
biztonsági figyelmeztetések</description>
|
||||
<language>en-us</language>
|
||||
<webMaster>secteam@FreeBSD.org (&os; Security Team)</webMaster>
|
||||
<managingEditor>secteam@FreeBSD.org (&os; Security Team)</managingEditor>
|
||||
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
||||
<ttl>120</ttl>
|
||||
<image>
|
||||
<url>http://www.FreeBSD.org/logo/logo-full.png</url>
|
||||
<title><xsl:value-of select="$title" /></title>
|
||||
<link><xsl:value-of select="$link" /></link>
|
||||
</image>
|
||||
<atom:link rel="self" type="application/rss+xml">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$link" /><xsl:text>rss.xml</xsl:text>
|
||||
</xsl:attribute>
|
||||
</atom:link>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="rss-errata-notices-title"
|
||||
xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<xsl:param name="notices.xml" select="''" />
|
||||
|
||||
<xsl:variable name="title">&os; sajtóhibák</xsl:variable>
|
||||
<xsl:variable name="link">http://www.FreeBSD.org/security/</xsl:variable>
|
||||
|
||||
<title><xsl:value-of select="$title" /></title>
|
||||
<link><xsl:value-of select="$link" /></link>
|
||||
<description>A &os; Projekt által megjelentetett
|
||||
sajtóhibák</description>
|
||||
<language>en-us</language>
|
||||
<webMaster>secteam@FreeBSD.org (FreeBSD Security Team)</webMaster>
|
||||
<managingEditor>secteam@FreeBSD.org (FreeBSD Security Team)</managingEditor>
|
||||
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
||||
<ttl>120</ttl>
|
||||
<image>
|
||||
<url>http://www.FreeBSD.org/logo/logo-full.png</url>
|
||||
<title><xsl:value-of select="$title" /></title>
|
||||
<link><xsl:value-of select="$link" /></link>
|
||||
</image>
|
||||
<atom:link rel="self" type="application/rss+xml">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$link" /><xsl:text>rss.xml</xsl:text>
|
||||
</xsl:attribute>
|
||||
</atom:link>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-index-advisories-items-lastmodified">
|
||||
<xsl:param name="advisories.xml" select="''" />
|
||||
<xsl:param name="type" select="'advisory'" />
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$type = 'advisory'">
|
||||
<xsl:call-template name="misc-format-date-string">
|
||||
<xsl:with-param name="year"
|
||||
select="document($advisories.xml)/descendant::year[month/day/advisory[position() = 1]]/name" />
|
||||
<xsl:with-param name="month"
|
||||
select="document($advisories.xml)/descendant::month[day/advisory[position() = 1]]/name"/>
|
||||
<xsl:with-param name="day"
|
||||
select="document($advisories.xml)/descendant::day[advisory[position() = 1]]/name" />
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$type = 'notice'">
|
||||
<xsl:call-template name="misc-format-date-string">
|
||||
<xsl:with-param name="year"
|
||||
select="document($advisories.xml)/descendant::year[month/day/notice[position() = 1]]/name" />
|
||||
<xsl:with-param name="month"
|
||||
select="document($advisories.xml)/descendant::month[day/notice[position() = 1]]/name" />
|
||||
<xsl:with-param name="day"
|
||||
select="document($advisories.xml)/descendant::day[notice[position() = 1]]/name" />
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-index-news-project-items-lastmodified">
|
||||
<xsl:param name="news.project.xml-master" select="''" />
|
||||
|
||||
<xsl:call-template name="misc-format-date-string">
|
||||
<xsl:with-param name="year"
|
||||
select="document($news.project.xml-master)/descendant::year[position() = 1]/name" />
|
||||
<xsl:with-param name="month"
|
||||
select="document($news.project.xml-master)/descendant::month[position() = 1]/name" />
|
||||
<xsl:with-param name="day"
|
||||
select="document($news.project.xml-master)/descendant::day[position() = 1]/name" />
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="html-index-news-press-items-lastmodified">
|
||||
<xsl:param name="news.press.xml-master" select="''" />
|
||||
|
||||
<xsl:call-template name="misc-format-date-string">
|
||||
<xsl:with-param name="year"
|
||||
select="document($news.press.xml-master)/descendant::year[position() = 1]/name" />
|
||||
<xsl:with-param name="month"
|
||||
select="document($news.press.xml-master)/descendant::month[position() = 1]/name" />
|
||||
<xsl:with-param name="date-format"
|
||||
select="$param-l10n-date-format-YM" />
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Convert a month number to the corresponding long English name. -->
|
||||
<xsl:template name="gen-long-en-month">
|
||||
<xsl:param name="nummonth"/>
|
||||
<xsl:variable name="month" select="number($nummonth)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$month=1">január</xsl:when>
|
||||
<xsl:when test="$month=2">február</xsl:when>
|
||||
<xsl:when test="$month=3">március</xsl:when>
|
||||
<xsl:when test="$month=4">április</xsl:when>
|
||||
<xsl:when test="$month=5">május</xsl:when>
|
||||
<xsl:when test="$month=6">június</xsl:when>
|
||||
<xsl:when test="$month=7">július</xsl:when>
|
||||
<xsl:when test="$month=8">augusztus</xsl:when>
|
||||
<xsl:when test="$month=9">szeptember</xsl:when>
|
||||
<xsl:when test="$month=10">október</xsl:when>
|
||||
<xsl:when test="$month=11">november</xsl:when>
|
||||
<xsl:when test="$month=12">december</xsl:when>
|
||||
<xsl:otherwise>érvénytelen hónap</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Convert a month number to the corresponding short English name. -->
|
||||
<xsl:template name="gen-short-en-month">
|
||||
<xsl:param name="nummonth"/>
|
||||
<xsl:variable name="month" select="number($nummonth)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$month=1">jan</xsl:when>
|
||||
<xsl:when test="$month=2">feb</xsl:when>
|
||||
<xsl:when test="$month=3">már</xsl:when>
|
||||
<xsl:when test="$month=4">ápr</xsl:when>
|
||||
<xsl:when test="$month=5">máj</xsl:when>
|
||||
<xsl:when test="$month=6">jún</xsl:when>
|
||||
<xsl:when test="$month=7">júl</xsl:when>
|
||||
<xsl:when test="$month=8">aug</xsl:when>
|
||||
<xsl:when test="$month=9">szep</xsl:when>
|
||||
<xsl:when test="$month=10">okt</xsl:when>
|
||||
<xsl:when test="$month=11">nov</xsl:when>
|
||||
<xsl:when test="$month=12">dec</xsl:when>
|
||||
<xsl:otherwise>érvénytelen hónap</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Generate a date interval. -->
|
||||
<!-- Sample: 2002. november 27 - 2003. december 29. -->
|
||||
<xsl:template name="gen-date-interval">
|
||||
<xsl:param name="startdate"/>
|
||||
<xsl:param name="enddate"/>
|
||||
|
||||
<xsl:value-of select="startdate/year"/>
|
||||
|
||||
<xsl:text>. </xsl:text>
|
||||
<xsl:call-template name="gen-long-en-month">
|
||||
<xsl:with-param name="nummonth" select="startdate/month"/>
|
||||
</xsl:call-template>
|
||||
<xsl:text> </xsl:text>
|
||||
|
||||
<xsl:if test="number(startdate/month) != number(enddate/month) or
|
||||
number(startdate/day) != number(enddate/day) or
|
||||
number(startdate/year) != number(enddate/year)">
|
||||
|
||||
<xsl:value-of select="startdate/day"/>
|
||||
|
||||
<xsl:text> - </xsl:text>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="number(startdate/year) != number(enddate/year)">
|
||||
<xsl:value-of select="enddate/year"/>
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="number(startdate/month) != number(enddate/month) or
|
||||
number(startdate/year) != number(enddate/year)">
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:call-template name="gen-long-en-month">
|
||||
<xsl:with-param name="nummonth" select="enddate/month"/>
|
||||
</xsl:call-template>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:value-of select="enddate/day"/>
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<!-- template: "html-index-events-items"
|
||||
pulls in the 5 most recent events items -->
|
||||
|
||||
<xsl:template name="html-index-events-items">
|
||||
<xsl:param name="events.xml-master" select="'none'" />
|
||||
<xsl:param name="events.xml" select="''" />
|
||||
|
||||
<xsl:for-each select="document($events.xml)/descendant::event[
|
||||
((number(enddate/year) > number($curdate.year)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) > number($curdate.month)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) = number($curdate.month) and
|
||||
enddate/day >= $curdate.day))]">
|
||||
<xsl:sort select="startdate/year" order="ascending"/>
|
||||
<xsl:sort select="format-number(startdate/month, '00')" order="ascending"/>
|
||||
<xsl:sort select="format-number(startdate/day, '00')" order="ascending"/>
|
||||
|
||||
<xsl:if test="position() <= 5">
|
||||
|
||||
<p>
|
||||
<span class="txtdate">
|
||||
<xsl:value-of select='
|
||||
concat(format-number(startdate/year, "####"), "-",
|
||||
format-number(startdate/month, "00"), "-",
|
||||
format-number(startdate/day, "00"), " - ",
|
||||
format-number(enddate/year, "####"), "-",
|
||||
format-number(enddate/month, "00"), "-",
|
||||
format-number(enddate/day, "00"))' />
|
||||
</span><br />
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$events.xml-master = 'none'">&enbase;/</xsl:when>
|
||||
<xsl:otherwise>&base;/</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:text>events/#</xsl:text>
|
||||
<xsl:call-template name="generate-event-anchor"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:value-of select="name"/>
|
||||
|
||||
<br />
|
||||
<xsl:if test="location/city!='' and location/country!=''">
|
||||
(<xsl:value-of select='location/city' />, <xsl:value-of select='location/country' />)
|
||||
</xsl:if>
|
||||
</a></p>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version='1.0' encoding='iso-8859-2'?>
|
||||
<!-- $FreeBSD: www/hu/share/sgml/navibar.l10n.ent,v 1.14 2009/01/10 19:39:42 pgj Exp $ -->
|
||||
<!-- $FreeBSD: www/hu/share/sgml/navibar.l10n.ent,v 1.15 2009/01/17 01:49:38 pgj Exp $ -->
|
||||
|
||||
<!-- FreeBSD Hungarian Documentation Project
|
||||
Translated by: Gabor Kovesdan <gabor@FreeBSD.org>
|
||||
|
|
@ -21,9 +21,9 @@
|
|||
<li><a href="&base;/advocacy/">Képviselet</a></li>
|
||||
<li><a href="&enbase;/marketing/">Marketing</a></li>
|
||||
<li><a href="&base;/administration.html">Szervezeti felépítés</a></li>
|
||||
<li><a href="&enbase;/news/newsflash.html">Hírek</a></li>
|
||||
<li><a href="&enbase;/events/events.html">Események</a></li>
|
||||
<li><a href="&enbase;/news/press.html">Sajtó</a></li>
|
||||
<li><a href="&base;/news/newsflash.html">Hírek</a></li>
|
||||
<li><a href="&base;/events/events.html">Események</a></li>
|
||||
<li><a href="&base;/news/press.html">Sajtó</a></li>
|
||||
<li><a href="&enbase;/multimedia/multimedia.html">Multimédia anyagok</a></li>
|
||||
<li><a href="&base;/art.html">Illusztrációk</a></li>
|
||||
<li><a href="&base;/logo.html">Logó</a></li>
|
||||
|
|
@ -186,10 +186,10 @@
|
|||
<li><a href="&enbase;/commercial/misc.html">Egyéb</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="&enbase;/security/index.html">Biztonsági tudnivalók</a></li>
|
||||
<li><a href="&base;/security/index.html">Biztonsági tudnivalók</a></li>
|
||||
<li>
|
||||
<ul>
|
||||
<li><a href="&enbase;/security/advisories.html">Biztonsági figyelmeztetések</a></li>
|
||||
<li><a href="&base;/security/advisories.html">Biztonsági figyelmeztetések</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="&base;/support/bugreports.html">Hibajelentések</a>
|
||||
|
|
|
|||
279
hu/share/sgml/news.xml
Normal file
279
hu/share/sgml/news.xml
Normal file
|
|
@ -0,0 +1,279 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE news PUBLIC "-//FreeBSD//DTD FreeBSD XML Database for News//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/news.dtd">
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/news.xml
|
||||
%SRCID% 1.239
|
||||
-->
|
||||
|
||||
<news>
|
||||
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
|
||||
<cvs:keyword name="freebsd">
|
||||
$FreeBSD$
|
||||
</cvs:keyword>
|
||||
</cvs:keywords>
|
||||
|
||||
<year>
|
||||
<name>2009</name>
|
||||
|
||||
<month>
|
||||
<name>4</name>
|
||||
|
||||
<day>
|
||||
<name>6</name>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:rmacklem@FreeBSD.org">Rick
|
||||
Macklem</a> (src)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>3</name>
|
||||
|
||||
<event>
|
||||
<title>Megjelent a &os; 7.2-BETA1!</title>
|
||||
|
||||
<p>Az elsõ béta változat
|
||||
megjelentetésével megkezdõdött a
|
||||
&os; 7.2-RELEASE kiadás ciklusánák
|
||||
utolsó szakasza. Mostantól már a
|
||||
legtöbb <a
|
||||
href="&url.doc.base-en;/books/handbook/mirrors-ftp.html">tükrözésen</a>
|
||||
<a
|
||||
href="http://lists.freebsd.org/pipermail/freebsd-stable/2009-April/049233.html">elérhetõek</a>
|
||||
lemezképek az összes Tier 1
|
||||
architektúrához.</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>3</name>
|
||||
|
||||
<day>
|
||||
<name>25</name>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:skreuzer@FreeBSD.org">Steven
|
||||
Kreuzer</a> (ports)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>22</name>
|
||||
|
||||
<event>
|
||||
<title>A &os; Projekt is résztvesz a Google Summer of
|
||||
Code 2009 programjában</title>
|
||||
|
||||
<p>Örömmel jelentjük be, hogy a &os; Projekt
|
||||
meghívást nyert a Google Summer of Code 2009
|
||||
programjába, amelynek köszönhetõen
|
||||
ösztöndíjat tudunk adni a &os;
|
||||
forráskódjával dolgozó
|
||||
hallgatóinknak. Szeretettel várunk minden
|
||||
érdeklõdõt, és javasoljuk, hogy
|
||||
minél hamarabb adják be a
|
||||
jelentkezésünket!</p>
|
||||
|
||||
<p>További információkért
|
||||
lásd a <a
|
||||
href="&enbase;/projects/summerofcode.html">&os;
|
||||
nyári projektötleteit</a>, illetve a <a
|
||||
href="http://lists.freebsd.org/pipermail/freebsd-announce/2009-March/001242.html">hivatalos
|
||||
bejelentést</a>.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>16</name>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:fabient@FreeBSD.org">Fabien
|
||||
Thomas</a> (src)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>12</name>
|
||||
|
||||
<event>
|
||||
<title>&os; Twitteren is</title>
|
||||
|
||||
<p>Mostantól számos félhivatalos Twitter
|
||||
stream is elérhetõ a &os; Projekt legfrissebb
|
||||
híreivel! A <a
|
||||
href="http://twitter.com/freebsdannounce">@freebsdannounce</a>
|
||||
stream a &os; híreit foglalja össze
|
||||
röviden és linkeli be. A <a
|
||||
href="http://twitter.com/freebsdblogs">@freebsdblogs</a> a
|
||||
&os; fejlesztõk legfrissebb blogbejegyzéseit
|
||||
közli közvetlenül a <a
|
||||
href="http://planet.freebsdish.org">Planet
|
||||
&os;</a> oldalról. A <a
|
||||
href="http://twitter.com/freebsd">@freebsd</a> ez
|
||||
elõbbi két forrásból és
|
||||
más egyéb helyekrõl vesz át
|
||||
híreket. Végezetül a nemrég
|
||||
elindult <a
|
||||
href="http://twitter.com/bsdevents">@bsdevents</a> stream
|
||||
a Projekttel kapcsolatos <a
|
||||
href="http://www.FreeBSD.org/events">eseményeket</a>,
|
||||
illetve egyéb BSD témájú
|
||||
összejövetelekrõl szóló
|
||||
további emlékeztetõket és
|
||||
felhívásokat közvetít.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>3</name>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:dhn@FreeBSD.org">Dennis
|
||||
Herrmann</a> (ports)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>1</name>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:dchagin@FreeBSD.org">Dmitry
|
||||
Chagin</a> (src)</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>2</name>
|
||||
|
||||
<day>
|
||||
<name>19</name>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:mva@FreeBSD.org">Marcus von
|
||||
Appen</a> (ports)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>18</name>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:avg@FreeBSD.org">Andriy
|
||||
Gapon</a> (src)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>14</name>
|
||||
|
||||
<event>
|
||||
<title>Megjelent a KDE 4.2.0 &os; változata!</title>
|
||||
|
||||
<p>A KDE 4.2.0 beolvasztásra került a
|
||||
portfába. A vele kapcsolatos
|
||||
újításokról a <a
|
||||
href="http://kde.org/announcements/4.2/index.php">hivatalos
|
||||
bejelentésben</a> olvashatunk részletesebben.
|
||||
A KDE &os; alatti használatáról
|
||||
további információkat pedig a <a
|
||||
href="http://freebsd.kde.org">&os; KDE</a> projekt
|
||||
honlapján találhatunk.</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>1</name>
|
||||
|
||||
<day>
|
||||
<name>28</name>
|
||||
|
||||
<event>
|
||||
<title>2008 negyedik negyedéves (október -
|
||||
december) helyzetjelentések</title>
|
||||
|
||||
<p>A 2008 októbere és decembere közt eltelt
|
||||
idõszakról tudósító 19
|
||||
helyzetjelentés <a
|
||||
href="&enbase;/news/status/report-2008-10-2008-12.html">mostantól
|
||||
elérhetõ</a>.</p>
|
||||
</event>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:beat@FreeBSD.org">Beat
|
||||
Gätzi</a> (ports)</p>
|
||||
</event>
|
||||
|
||||
<event>
|
||||
<p>Új tag: <a href="mailto:jamie@FreeBSD.org">Jamie
|
||||
Gritton</a> (src)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>17</name>
|
||||
|
||||
<event>
|
||||
<title>Felkerült egy &os; rendszermagról
|
||||
szóló elõadás</title>
|
||||
|
||||
<p>Kirk McKusick a <a
|
||||
href="http://www.youtube.com/watch?v=nwbqBdghh6E">&os;
|
||||
rendszermag belsõ
|
||||
mûködését</a> bemutató
|
||||
elõadásainak elsõ része teljes
|
||||
hosszában felkerült a <a
|
||||
href="http://www.youtube.com">YouTube</a> <a
|
||||
href="http://www.youtube.com/bsdconferences">BSD
|
||||
konferenciákkal</a> foglalkozó
|
||||
csatornájára.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>9</name>
|
||||
|
||||
<event>
|
||||
<title>Megjelent a GNOME 2.24.2 &os;
|
||||
változata!</title>
|
||||
|
||||
<p>A &os; GNOME csapata örömmel jelenti be a GNOME
|
||||
2.24.2 verziójának &os;
|
||||
változatát. A kiadásról
|
||||
bõvebben a <a href="&enbase;/gnome/index.html">&os;
|
||||
GNOME</a> projekt honlapján
|
||||
tájékozódhatunk.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>5</name>
|
||||
|
||||
<event>
|
||||
<title>Megjelent a &os; 7.1-RELEASE!</title>
|
||||
|
||||
<p>Megjelent a <a
|
||||
href="&enbase;/releases/7.1R/announce.html">&os;
|
||||
7.1-RELEASE</a>! A 7.1 legfrissebb híreivel
|
||||
és/vagy
|
||||
kisebb problémáival kapcsolatban a
|
||||
kiadás telepítése elõtt
|
||||
feltétlenül olvassuk át a <a
|
||||
href="&enbase;/releases/7.1R/relnotes.html">kiadási
|
||||
jegyzeteket</a> és a hozzátartozó <a
|
||||
href="&enbase;/releases/7.1R/errata.html">hibajegyzéket</a>.
|
||||
A &os; kiadásairól részletesebben a <a
|
||||
href="&enbase;/releases/index.html">kiadási
|
||||
információkat</a>
|
||||
tartalmazó oldalon olvashatunk.</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
</year>
|
||||
</news>
|
||||
237
hu/share/sgml/press.xml
Normal file
237
hu/share/sgml/press.xml
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE press PUBLIC "-//FreeBSD//DTD FreeBSD XML Database for Press//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/press.dtd">
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/press.xml
|
||||
%SRCID% 1.76
|
||||
-->
|
||||
|
||||
<press>
|
||||
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
|
||||
<cvs:keyword name="freebsd">
|
||||
$FreeBSD$
|
||||
</cvs:keyword>
|
||||
</cvs:keywords>
|
||||
|
||||
<year>
|
||||
<name>2009</name>
|
||||
|
||||
<month>
|
||||
<name>3</name>
|
||||
|
||||
<story>
|
||||
<name>A Tomahawk Desktop Linuxról BSD rendszerre
|
||||
vált</name>
|
||||
<url>http://www.tomahawkcomputers.com/fund-raising/phase-one.html</url>
|
||||
<site-name>Tomahawk Computers</site-name>
|
||||
<site-url>http://www.tomahawkcomputers.com</site-url>
|
||||
<date>2009. március 10.</date>
|
||||
<author>Sagara Wijetunga</author>
|
||||
<p>A Tomahawk Desktop operációs rendszer új
|
||||
változatának
|
||||
elkészítéséhez a Tomahawk
|
||||
Computers Pte Ltd. Linuxról a &os; rendszerére
|
||||
váltott.</p>
|
||||
</story>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>1</name>
|
||||
|
||||
<story>
|
||||
<name>A Coyote Point a &os; segítségével
|
||||
gyorsít be</name>
|
||||
<url>http://www.internetnews.com/infra/article.php/3795791</url>
|
||||
<site-name>Internet News</site-name>
|
||||
<site-url>http://www.internetnews.com/</site-url>
|
||||
<date>2009. január 13.</date>
|
||||
<author>Sean Michael Kerner</author>
|
||||
<p>&os; a Coyote Point eszközeinek lelke.</p>
|
||||
</story>
|
||||
|
||||
<story>
|
||||
<name>A Sun egyengeti a &os; 7.1 útját</name>
|
||||
<url>http://www.internetnews.com/dev-news/article.php/3794561</url>
|
||||
<site-name>Internet News</site-name>
|
||||
<site-url>http://www.internetnews.com/</site-url>
|
||||
<date>2009. január 6.</date>
|
||||
<author>Sean Michael Kerner</author>
|
||||
<p>Ebbõl a cikkbõl megtudhatjuk, milyen
|
||||
technológiákat oszt meg egymást közt a
|
||||
Sun és a &os; Projekt, illetve milyen
|
||||
újításokat tartogat a &os; 7.1
|
||||
kiadása.</p>
|
||||
</story>
|
||||
</month>
|
||||
</year>
|
||||
|
||||
<year>
|
||||
<name>2008</name>
|
||||
|
||||
<month>
|
||||
<name>10</name>
|
||||
|
||||
<story>
|
||||
<name>Célpontban a PC-BSD 7</name>
|
||||
<url>http://www.osnews.com/story/20351/Review_PC-BSD_7</url>
|
||||
<site-name>OS News</site-name>
|
||||
<site-url>http://www.osnews.com/</site-url>
|
||||
<date>2008. október 2.</date>
|
||||
<author>Amjith Ramanujam</author>
|
||||
<p>A PC-BSD 7 bemutatása.</p>
|
||||
</story>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>8</name>
|
||||
|
||||
<story>
|
||||
<name>Olcsó hálózati
|
||||
tárolók</name>
|
||||
<url>http://www.washingtonpost.com/wp-dyn/content/article/2008/08/26/AR2008082600237.html</url>
|
||||
<site-name>Washington Post</site-name>
|
||||
<site-url>http://www.washingtonpost.com/</site-url>
|
||||
<date>2008. augusztus 27.</date>
|
||||
<author>Tom Mainelli</author>
|
||||
<p>Hogyan változtassuk át kiöregedett
|
||||
számítógépünket
|
||||
hálózati tárolóvá a &os;
|
||||
alapú FreeNAS segítségével.</p>
|
||||
</story>
|
||||
|
||||
<story>
|
||||
<name>A különbözõ nyílt
|
||||
forráskódú rendszerek
|
||||
eloszlása</name>
|
||||
<url>https://www.osscensus.org/newsletter/Census-News-August-2008.html</url>
|
||||
<site-name>The Open-Source Census</site-name>
|
||||
<site-url>http://www.osscensus.org</site-url>
|
||||
<date>2008 augusztus</date>
|
||||
<author>Stormy Peters</author>
|
||||
<p>A &os; felhasználók becsült
|
||||
számáról készült friss
|
||||
kimutatás.</p>
|
||||
</story>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>7</name>
|
||||
|
||||
<story>
|
||||
<name>Könyvismertetõ: Building a Server with &os; 7</name>
|
||||
<url>http://www.freesoftwaremagazine.com/articles/book_review_building_server_freebsd_7</url>
|
||||
<site-name>Free Software Magazine</site-name>
|
||||
<site-url>http://www.freesoftwaremagazine.com/</site-url>
|
||||
<date>2008. július 7.</date>
|
||||
<author>Ken Leyba</author>
|
||||
<p>Rövid kedvcsináló Bryan J. Hong
|
||||
<q>Building a Server with &os; 7</q> címû
|
||||
könyvéhez.</p>
|
||||
</story>
|
||||
|
||||
<story>
|
||||
<name>Könyvismertetõ: The Best of &os; Basics</name>
|
||||
<url>http://www.osnews.com/story/19947/Book_Review:_The_Best_of_FreeBSD_Basics</url>
|
||||
<site-name>OS News</site-name>
|
||||
<site-url>http://www.osnews.com/</site-url>
|
||||
<date>2008. július 2.</date>
|
||||
<author>Peter Hummers</author>
|
||||
<p>A <q>The Best of &os; Basics</q> címû könyv rövid
|
||||
ismertetése.</p>
|
||||
</story>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>6</name>
|
||||
|
||||
<story>
|
||||
<name>A &os; válasza a sebezhetõségek
|
||||
egyszerû felülvizsgálatára: a
|
||||
portaudit</name>
|
||||
<url>http://blogs.techrepublic.com.com/security/?p=477</url>
|
||||
<site-name>Tech Republic</site-name>
|
||||
<site-url>http://www.techrepublic.com.com/</site-url>
|
||||
<date>2008. június 24.</date>
|
||||
<author>Chad Perrin</author>
|
||||
<p>Ebbõl a cikkbõl megismerhetjük, hogy &os;
|
||||
rendszerünk sebezhetõségeihez miként
|
||||
tudjuk gyorsan és könnyedén
|
||||
javításokat letölteni.</p>
|
||||
</story>
|
||||
|
||||
<story>
|
||||
<name>Kernelmodulok írása &os; 7
|
||||
rendszerekre</name>
|
||||
<url>http://www.freesoftwaremagazine.com/articles/writing_a_kernel_module_for_freebsd</url>
|
||||
<site-name>Free Software Magazine</site-name>
|
||||
<site-url>http://www.freesoftwaremagazine.com/</site-url>
|
||||
<date>2008. június 18.</date>
|
||||
<author>Yousef Ourabi</author>
|
||||
<p>Egy rövid ismertetõ a kernelmodulok
|
||||
fejlesztésének mikéntjérõl
|
||||
&os; 7 rendszerekre.</p>
|
||||
</story>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>3</name>
|
||||
|
||||
<story>
|
||||
<name>Bemutatkozik a &os; 7</name>
|
||||
<url>http://www.freesoftwaremagazine.com/articles/review_of_freebsd_7</url>
|
||||
<site-name>Free Software Magazine</site-name>
|
||||
<site-url>http://www.freesoftwaremagazine.com/</site-url>
|
||||
<date>2008. március 5.</date>
|
||||
<author>Yousef Ourabi</author>
|
||||
<p>A &os; 7.0 harmadik béta kiadásának
|
||||
ismertetése.</p>
|
||||
</story>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>2</name>
|
||||
|
||||
<story>
|
||||
<name>Nagyobb teljesítmény, kevesebb
|
||||
gép?</name>
|
||||
<url>http://www.internetnews.com/dev-news/article.php/3731386/Faster+Performance+Fewer+Machines+For+FreeBSD.htm</url>
|
||||
<site-name>InternetNews.com</site-name>
|
||||
<site-url>http://www.internetnews.com/</site-url>
|
||||
<date>2008. február 29.</date>
|
||||
<author>Sean Michael Kerner</author>
|
||||
<p>A &os; 7.0 rövid áttekintése.</p>
|
||||
</story>
|
||||
|
||||
<story>
|
||||
<name>A &os; 7.0 újdonságai</name>
|
||||
<url>http://www.onlamp.com/pub/a/bsd/2008/02/26/whats-new-in-freebsd-70.html</url>
|
||||
<site-name>ONLamp.com</site-name>
|
||||
<site-url>http://www.onlamp.com/</site-url>
|
||||
<date>2008. február 26.</date>
|
||||
<author>Federico Biancuzzi</author>
|
||||
<p>Megkérdeztünk néhány &os;
|
||||
fejlesztõt a &os; 7.0-RELEASE várható
|
||||
újdonságairól.</p>
|
||||
</story>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>1</name>
|
||||
|
||||
<story>
|
||||
<name>Megjelent a DesktopBSD 1.6!</name>
|
||||
<url>http://www.osnews.com/story/19134/DesktopBSD_1.6_Released</url>
|
||||
<site-name>OSNews</site-name>
|
||||
<site-url>http://www.osnews.com/</site-url>
|
||||
<date>2008. január 9.</date>
|
||||
<author>Thom Holwerda</author>
|
||||
<p>Megjelent a DesktopBSD 1.6 kiadása! A <a
|
||||
href="http://www.desktopbsd.net/">DesktopBSD</a> egy
|
||||
&os; alapokon nyugvó, asztali gépekre
|
||||
szánt operációs rendszer.</p>
|
||||
</story>
|
||||
</month>
|
||||
</year>
|
||||
</press>
|
||||
378
hu/share/sgml/templates.events.xsl
Normal file
378
hu/share/sgml/templates.events.xsl
Normal file
|
|
@ -0,0 +1,378 @@
|
|||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "&os; témájú események">
|
||||
<!ENTITY email "freebsd-www">
|
||||
<!ENTITY rsslink "&base;/events/rss.xml">
|
||||
<!ENTITY rsstitle "Közelgõ &os; témájú események">
|
||||
<!ENTITY % navinclude.community "INCLUDE">
|
||||
<!ENTITY % header.rss "INCLUDE">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD: www/share/sgml/templates.events.xsl,v 1.12 2008/12/28 10:59:06 murray Exp $ -->
|
||||
|
||||
<!-- Copyright (c) 2003 Simon L. Nielsen <simon@FreeBSD.org>
|
||||
Copyright (c) 2008 Murray M Stokely <murray@FreeBSD.org>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
-->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/templates.events.xsl
|
||||
%SRCID% 1.12
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
xmlns:date="http://exslt.org/dates-and-times"
|
||||
extension-element-prefixes="date"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:output method="xml" encoding="&xml.encoding;"
|
||||
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
||||
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
|
||||
|
||||
<xsl:param name="startyear">2009</xsl:param>
|
||||
<xsl:param name="pastyears">2008 2007 2006 2005 2004 2003</xsl:param>
|
||||
|
||||
<xsl:key name="event-by-month" match="event"
|
||||
use="concat(startdate/year, format-number(startdate/month, '00'))"/>
|
||||
|
||||
<xsl:key name="event-by-country" match="event"
|
||||
use="location/country" />
|
||||
|
||||
<xsl:key name="upcoming-event-by-country" match="event[((number(enddate/year) > number($curdate.year)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) > number($curdate.month)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) = number($curdate.month) and
|
||||
enddate/day >= $curdate.day))]"
|
||||
use="location/country" />
|
||||
|
||||
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&chs=400x200&chtm=world&chco=ffffff,ffbe38,600000&chf=bg,s,4D89F9'" />
|
||||
|
||||
<!-- Template: events -->
|
||||
<xsl:template match="events">
|
||||
<xsl:variable name="chart-countries">
|
||||
<xsl:for-each select="event[
|
||||
generate-id() =
|
||||
generate-id(key('event-by-country', location/country)[1])]">
|
||||
<xsl:sort select="format-number(count(key('event-by-country', location/country)), '000')" order="descending"/>
|
||||
<xsl:value-of select="location/country/@code" />
|
||||
</xsl:for-each>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="chart-country-counts">
|
||||
<xsl:for-each select="event[
|
||||
generate-id() =
|
||||
generate-id(key('event-by-country', location/country)[1])]">
|
||||
<xsl:sort select="format-number(count(key('event-by-country', location/country)), '000')" order="descending"/>
|
||||
<xsl:if test="count(key('upcoming-event-by-country', location/country)) != 0">100.0</xsl:if>
|
||||
<xsl:if test="count(key('upcoming-event-by-country', location/country)) = 0"><xsl:value-of select="count(key('event-by-country', location/country))" />.0</xsl:if>
|
||||
<xsl:if test="position()!=last()">,</xsl:if></xsl:for-each>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&chd=t:<xsl:value-of select="$chart-country-counts"/>&chld=<xsl:value-of select="$chart-countries"/></xsl:variable>
|
||||
|
||||
<html>
|
||||
&header1;
|
||||
|
||||
<body>
|
||||
|
||||
<div id="containerwrap">
|
||||
<div id="container">
|
||||
&header2;
|
||||
|
||||
<div id="content">
|
||||
<div id="SIDEWRAP">
|
||||
&nav;
|
||||
<div id="FEEDLINKS">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="&rsslink;" title="&rsstitle;">
|
||||
RSS 2.0 Feed
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- FEEDLINKS -->
|
||||
</div> <!-- SIDEWRAP -->
|
||||
|
||||
<div id="contentwrap">
|
||||
&header3;
|
||||
<!--
|
||||
Note the current date to have a reference, if the
|
||||
upcoming/past events are split incorrectly.
|
||||
-->
|
||||
<xsl:comment>
|
||||
<xsl:text>A generálás dátuma: </xsl:text>
|
||||
<xsl:value-of select="concat($curdate.year,
|
||||
format-number($curdate.month, '00'),
|
||||
format-number($curdate.day, '00'))"/>
|
||||
</xsl:comment>
|
||||
|
||||
<xsl:call-template name="html-events-list-preface" />
|
||||
|
||||
<xsl:call-template name="html-events-map">
|
||||
<xsl:with-param name="mapurl" select="$imageurl" />
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:call-template name="html-events-list-upcoming-heading" />
|
||||
|
||||
<xsl:for-each select="event[generate-id() =
|
||||
generate-id(key('event-by-month',
|
||||
concat(startdate/year, format-number(startdate/month, '00')))[1])
|
||||
and ((number(enddate/year) > number($curdate.year)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) > number($curdate.month)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) = number($curdate.month) and
|
||||
enddate/day >= $curdate.day))]">
|
||||
|
||||
<xsl:sort select="startdate/year" order="ascending"/>
|
||||
<xsl:sort select="format-number(startdate/month, '00')" order="ascending"/>
|
||||
<xsl:sort select="format-number(startdate/day, '00')" order="ascending"/>
|
||||
|
||||
<h3>
|
||||
<xsl:attribute name="id">
|
||||
<xsl:text>dátum:</xsl:text>
|
||||
<xsl:value-of select="concat(startdate/year,
|
||||
format-number(startdate/month, '00'))"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="startdate/year"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:call-template name="gen-long-en-month">
|
||||
<xsl:with-param name="nummonth" select="startdate/month"/>
|
||||
</xsl:call-template>
|
||||
</h3>
|
||||
|
||||
<ul>
|
||||
<xsl:for-each select="key('event-by-month',
|
||||
concat(startdate/year, format-number(startdate/month, '00')))">
|
||||
|
||||
<xsl:sort select="format-number(startdate/day, '00')" order="ascending"/>
|
||||
<xsl:apply-templates select="." mode="upcoming"/>
|
||||
</xsl:for-each>
|
||||
</ul>
|
||||
</xsl:for-each>
|
||||
|
||||
<xsl:call-template name="html-events-list-past-heading" />
|
||||
|
||||
<xsl:for-each select="event[generate-id() =
|
||||
generate-id(key('event-by-month', concat(startdate/year,
|
||||
format-number(startdate/month, '00')))[1])
|
||||
and ((number(enddate/year) >= $startyear)) and
|
||||
((number(enddate/year) < number($curdate.year)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) < number($curdate.month)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) = number($curdate.month) and
|
||||
number(enddate/day) < number($curdate.day)))]">
|
||||
|
||||
<xsl:sort select="number(startdate/year)" order="descending"/>
|
||||
<xsl:sort select="format-number(startdate/month, '00')" order="descending"/>
|
||||
<xsl:sort select="format-number(startdate/day, '00')" order="descending"/>
|
||||
|
||||
<h3>
|
||||
<xsl:attribute name="id">
|
||||
<xsl:text>month:</xsl:text>
|
||||
<xsl:value-of select="concat(startdate/year,
|
||||
format-number(startdate/month, '00'))"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="startdate/year"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:call-template name="gen-long-en-month">
|
||||
<xsl:with-param name="nummonth" select="startdate/month"/>
|
||||
</xsl:call-template >
|
||||
</h3>
|
||||
|
||||
<ul>
|
||||
<xsl:for-each select="key('event-by-month',
|
||||
concat(startdate/year, format-number(startdate/month, '00')))">
|
||||
|
||||
<xsl:sort select="format-number(startdate/day, '00')" order="descending"/>
|
||||
<xsl:apply-templates select="."/>
|
||||
</xsl:for-each>
|
||||
</ul>
|
||||
</xsl:for-each>
|
||||
|
||||
<p>A korábbi évek eseményei:</p>
|
||||
|
||||
<ul id="events-past-years">
|
||||
<xsl:call-template name="split-string">
|
||||
<xsl:with-param name="seperator" select="' '"/>
|
||||
<xsl:with-param name="text" select="$pastyears"/>
|
||||
</xsl:call-template>
|
||||
</ul>
|
||||
</div> <!-- contentwrap -->
|
||||
|
||||
<br class="clearboth" />
|
||||
</div> <!-- content -->
|
||||
|
||||
<div id="FOOTER">
|
||||
©right;<br />
|
||||
&date;
|
||||
</div> <!-- FOOTER -->
|
||||
</div> <!-- container -->
|
||||
</div> <!-- containerwrap -->
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: event -->
|
||||
<xsl:template name="eventbody">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:call-template name="generate-event-anchor"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<p>
|
||||
<b>
|
||||
<xsl:if test="url">
|
||||
<xsl:apply-templates select="url"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="not(url)">
|
||||
<xsl:value-of select="name"/>
|
||||
</xsl:if>
|
||||
</b>
|
||||
<xsl:if test="location/site!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/site"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/city!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/city"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/state!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/state"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/country!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/country"/>
|
||||
</xsl:if>
|
||||
<br/>
|
||||
<em>
|
||||
<xsl:call-template name="gen-date-interval">
|
||||
<xsl:with-param name="startdate" select="startdate" />
|
||||
<xsl:with-param name="enddate" select="enddate" />
|
||||
</xsl:call-template>
|
||||
</em><br/>
|
||||
<xsl:copy-of select="description/child::node()"/>
|
||||
</p>
|
||||
<xsl:if test="link">
|
||||
<p><xsl:apply-templates select="link"/></p>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: event -->
|
||||
<xsl:template match="event" mode="upcoming">
|
||||
<li>
|
||||
<xsl:call-template name="eventbody"/>
|
||||
<p>Közösségi linkek: <a rel="nofollow">
|
||||
<xsl:if test="upcomingurl">
|
||||
<xsl:attribute name="href"><xsl:value-of select="upcomingurl" /></xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:if test="not(upcomingurl)">
|
||||
<xsl:attribute name="href">http://upcoming.yahoo.com/search?type=Events&q=<xsl:value-of select="name" />&Search=GO</xsl:attribute>
|
||||
</xsl:if>
|
||||
upcoming</a></p>
|
||||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: event -->
|
||||
<xsl:template match="event">
|
||||
<xsl:variable name="lower">abcdefghijklmnopqrstuvwxyz</xsl:variable>
|
||||
<xsl:variable name="upper">ABCDEFGHIJKLMNOPQRSTUVWXYZ</xsl:variable>
|
||||
<xsl:variable name="name" select="name" />
|
||||
<xsl:variable name="lcname" select="translate($name, $upper, $lower)" />
|
||||
|
||||
<!-- Note that only MeetBSD and NYCBSDCon have a significant number of
|
||||
videos on YouTube so we hard code them for now. When we have a
|
||||
better track record of getting videos from our conferences posted
|
||||
to YouTube then we can implement a more generic solution here,
|
||||
but for now we don't want to add the link to youtube when we know
|
||||
in most cases there is no content there. -->
|
||||
|
||||
<li>
|
||||
<xsl:call-template name="eventbody"/>
|
||||
<p>Közösségi linkek: <a rel="nofollow">
|
||||
<xsl:attribute name="href">http://www.flickr.com/search/?w=all&q=<xsl:value-of select="name" />&m=text</xsl:attribute>
|
||||
Flickr</a>, <a rel="nofollow">
|
||||
<xsl:attribute name="href">http://blogsearch.google.com/blogsearch?q=<xsl:value-of select="name" /></xsl:attribute>Blog Search</a><xsl:if test="contains($lcname, 'meetbsd') or contains($lcname, 'nycbsdcon')">,
|
||||
<a rel="nofollow">
|
||||
<xsl:attribute name="href">http://www.youtube.com/results?search_query=bsdconferences+<xsl:value-of select="name" /></xsl:attribute>YouTube</a></xsl:if>.</p>
|
||||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: link -->
|
||||
<xsl:template match="link">
|
||||
<xsl:apply-templates select="url"/>
|
||||
<xsl:if test="not(position()=last())">
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: url -->
|
||||
<xsl:template match="url">
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:if test="@type='freebsd-website'">&base;</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="../name"/>
|
||||
</a>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="split-string">
|
||||
<xsl:param name="seperator"/>
|
||||
<xsl:param name="text"/>
|
||||
<xsl:variable name="first" select="substring-before($text, $seperator)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$first or substring-after($text,$seperator)">
|
||||
<xsl:if test="$first">
|
||||
<li><a>
|
||||
<xsl:attribute name="href">events<xsl:value-of select="$first"/>.html</xsl:attribute>
|
||||
<xsl:value-of select="$first" />
|
||||
</a></li>
|
||||
</xsl:if>
|
||||
<xsl:call-template name="split-string">
|
||||
<xsl:with-param name="text" select="substring-after($text,$seperator)"/>
|
||||
<xsl:with-param name="seperator" select="$seperator"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<li><a>
|
||||
<xsl:attribute name="href">events<xsl:value-of select="$text"/>.html</xsl:attribute>
|
||||
<xsl:value-of select="$text" />
|
||||
</a></li>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
81
hu/share/sgml/templates.news-rdf.xsl
Normal file
81
hu/share/sgml/templates.news-rdf.xsl
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "RDF &os; hírek">
|
||||
<!ENTITY email "freebsd-www">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/templates.news-rdf.xsl
|
||||
%SRCID% 1.2
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- Generate the main body of the RDF file -->
|
||||
<xsl:template match="news">
|
||||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://my.netscape.com/rdf/simple/0.9/">
|
||||
|
||||
<channel>
|
||||
<title>A &os; Projekt hírei</title>
|
||||
<link>http://www.FreeBSD.org/hu/news/</link>
|
||||
<description>Hírek a &os; Projektrõl</description>
|
||||
</channel>
|
||||
|
||||
<!-- Only include the last 10 events -->
|
||||
<xsl:apply-templates select="descendant::event[position() <= 10]"/>
|
||||
|
||||
</rdf:RDF>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Generate the <item> elements and their content -->
|
||||
<xsl:template match="event" xmlns="http://my.netscape.com/rdf/simple/0.9/">
|
||||
<xsl:param name="year" select="../../../name" />
|
||||
<xsl:param name="month" select="../../name" />
|
||||
<xsl:param name="day" select="../name" />
|
||||
<xsl:param name="this" select="." />
|
||||
<xsl:param name="pos">
|
||||
<xsl:for-each select="../event">
|
||||
<xsl:if test=". = $this">
|
||||
<xsl:value-of select="position()" />
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:param>
|
||||
|
||||
<item>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count(child::title)">
|
||||
<title><xsl:value-of select="normalize-space(title)"/></title>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<title><xsl:value-of select="normalize-space(p)"/></title>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<link>
|
||||
<xsl:text>http://www.FreeBSD.org/news/newsflash.html#</xsl:text>
|
||||
<xsl:call-template name="html-news-generate-anchor">
|
||||
<xsl:with-param name="label" select="'event'" />
|
||||
<xsl:with-param name="year" select="$year" />
|
||||
<xsl:with-param name="month" select="$month" />
|
||||
<xsl:with-param name="day" select="$day" />
|
||||
<xsl:with-param name="pos" select="$pos" />
|
||||
</xsl:call-template>
|
||||
</link>
|
||||
</item>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="name | date"/>
|
||||
</xsl:stylesheet>
|
||||
107
hu/share/sgml/templates.news-rss.xsl
Normal file
107
hu/share/sgml/templates.news-rss.xsl
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "&os; hírek">
|
||||
<!ENTITY link "http://www.FreeBSD.org/hu/news/">
|
||||
<!ENTITY email "freebsd-www">
|
||||
<!ENTITY realname "Webmesterek">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/templates.news-rss.xsl
|
||||
%SRCID% 1.2
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- Generate the main body of the RDF file -->
|
||||
<xsl:template match="news">
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
|
||||
<channel>
|
||||
<title>&title;</title>
|
||||
<link>&link;</link>
|
||||
<description>Hírek a &os; Projektrõl</description>
|
||||
<language>hu-hu</language>
|
||||
<webMaster>&email;@FreeBSD.org (&realname;)</webMaster>
|
||||
<managingEditor>&email;@FreeBSD.org (&realname;)</managingEditor>
|
||||
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
||||
<ttl>120</ttl>
|
||||
<image>
|
||||
<url>http://www.FreeBSD.org/logo/logo-full.png</url>
|
||||
<title>&title;</title>
|
||||
<link>&link;</link>
|
||||
</image>
|
||||
<atom:link href="&link;rss.xml" rel="self" type="application/rss+xml" />
|
||||
<!-- Only include the last 10 events -->
|
||||
<xsl:apply-templates select="descendant::event[position() <= 10]"/>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Generate the <item> elements and their content -->
|
||||
<xsl:template match="event">
|
||||
<xsl:param name="year" select="../../../name" />
|
||||
<xsl:param name="month" select="../../name" />
|
||||
<xsl:param name="day" select="../name" />
|
||||
<xsl:param name="this" select="." />
|
||||
<xsl:param name="pos">
|
||||
<xsl:for-each select="../event">
|
||||
<xsl:if test=". = $this">
|
||||
<xsl:value-of select="position()" />
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="link">
|
||||
<xsl:text>http://www.FreeBSD.org/hu/news/newsflash.html#</xsl:text>
|
||||
<xsl:call-template name="html-news-generate-anchor">
|
||||
<xsl:with-param name="label" select="'event'" />
|
||||
<xsl:with-param name="year" select="$year" />
|
||||
<xsl:with-param name="month" select="$month" />
|
||||
<xsl:with-param name="day" select="$day" />
|
||||
<xsl:with-param name="pos" select="$pos" />
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<item>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count(child::title)">
|
||||
<title><xsl:value-of select="normalize-space(title)"/></title>
|
||||
<description><xsl:value-of select="normalize-space(p)"/></description>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<title><xsl:value-of select="normalize-space(p)"/></title>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<link><xsl:value-of select="normalize-space($link)"/></link>
|
||||
<guid><xsl:value-of select="normalize-space($link)"/></guid>
|
||||
|
||||
<pubDate>
|
||||
<xsl:call-template name="misc-format-date-string">
|
||||
<xsl:with-param name="year" select="$year" />
|
||||
<xsl:with-param name="month" select="$month" />
|
||||
<xsl:with-param name="day" select="$day" />
|
||||
<xsl:with-param name="date-format" select="$param-l10n-date-format-rfc822" />
|
||||
</xsl:call-template>
|
||||
</pubDate>
|
||||
</item>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="name | date"/>
|
||||
|
||||
</xsl:stylesheet>
|
||||
89
hu/share/sgml/templates.newsflash.xsl
Normal file
89
hu/share/sgml/templates.newsflash.xsl
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "&os; hírek">
|
||||
<!ENTITY email "freebsd-www">
|
||||
<!ENTITY rsslink "rss.xml">
|
||||
<!ENTITY rsstitle "&title;">
|
||||
<!ENTITY % navinclude.about "INCLUDE">
|
||||
<!ENTITY % header.rss "INCLUDE">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD: www/share/sgml/templates.newsflash.xsl,v 1.4 2008/01/16 02:57:37 murray Exp $ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/templates.newsflash.xsl
|
||||
%SRCID% 1.4
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:param name="news.project.xml-master" select="'none'" />
|
||||
<xsl:param name="news.project.xml" select="'none'" />
|
||||
|
||||
<xsl:output type="html" encoding="&xml.encoding;"/>
|
||||
|
||||
<xsl:template match="news">
|
||||
<html>
|
||||
&header1;
|
||||
<body>
|
||||
|
||||
<div id="CONTAINERWRAP">
|
||||
<div id="CONTAINER">
|
||||
&header2;
|
||||
|
||||
<div id="CONTENT">
|
||||
<div id="SIDEWRAP">
|
||||
&nav;
|
||||
<div id="FEEDLINKS">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="rss.xml" title="RSS 2.0 Feed">
|
||||
RSS 2.0 Feed
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="news.rdf" title="RDF/RSS 0.9 Feed">
|
||||
RSS 0.9 Feed
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- FEEDLINKS -->
|
||||
</div> <!-- SIDEWRAP -->
|
||||
|
||||
<div id="CONTENTWRAP">
|
||||
&header3;
|
||||
|
||||
<xsl:call-template name="html-news-list-newsflash-preface" />
|
||||
|
||||
<xsl:call-template name="html-news-list-newsflash">
|
||||
<xsl:with-param name="news.project.xml-master" select="$news.project.xml-master" />
|
||||
<xsl:with-param name="news.project.xml" select="$news.project.xml" />
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:call-template name="html-news-make-olditems-list" />
|
||||
|
||||
<xsl:call-template name="html-news-list-newsflash-homelink" />
|
||||
|
||||
</div> <!-- CONTENTWRAP -->
|
||||
<br class="clearboth" />
|
||||
</div> <!-- CONTENT -->
|
||||
|
||||
<div id="FOOTER">
|
||||
©right;<br />
|
||||
&date;
|
||||
</div> <!-- FOOTER -->
|
||||
</div> <!-- CONTAINER -->
|
||||
</div> <!-- CONTAINERWRAP -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
323
hu/share/sgml/templates.pastevents.xsl
Normal file
323
hu/share/sgml/templates.pastevents.xsl
Normal file
|
|
@ -0,0 +1,323 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD Fragment//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "Korábbi események">
|
||||
<!ENTITY email "freebsd-www">
|
||||
<!ENTITY rsslink "&base;/events/rss.xml">
|
||||
<!ENTITY rsstitle "Közelgõ események">
|
||||
<!ENTITY % navinclude.community "INCLUDE">
|
||||
<!ENTITY % header.rss "INCLUDE">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- Copyright (c) 2003 Simon L. Nielsen <simon@FreeBSD.org>
|
||||
Copyright (c) 2008 Murray M Stokely <murray@FreeBSD.org>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
-->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/templates.pastevents.xsl
|
||||
%SRCID% 1.4
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
xmlns:date="http://exslt.org/dates-and-times"
|
||||
extension-element-prefixes="date"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:output method="xml" encoding="&xml.encoding;"
|
||||
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
||||
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
|
||||
|
||||
<xsl:param name="pastyears">2008 2007 2006 2005 2004 2003</xsl:param>
|
||||
|
||||
<xsl:key name="event-by-month" match="event"
|
||||
use="concat(startdate/year, format-number(startdate/month, '00'))"/>
|
||||
|
||||
<xsl:key name="event-by-country" match="event"
|
||||
use="location/country" />
|
||||
|
||||
<xsl:key name="upcoming-event-by-country" match="event[((number(enddate/year) > number($curdate.year)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) > number($curdate.month)) or
|
||||
(number(enddate/year) = number($curdate.year) and
|
||||
number(enddate/month) = number($curdate.month) and
|
||||
enddate/day >= $curdate.day))]"
|
||||
use="location/country" />
|
||||
|
||||
<xsl:variable name="charturl" select="'http://chart.apis.google.com/chart?cht=t&chs=400x200&chtm=world&chco=ffffff,ffbe38,600000&chf=bg,s,4D89F9'" />
|
||||
|
||||
<!-- Template: events -->
|
||||
<xsl:template match="events">
|
||||
<xsl:variable name="chart-countries">
|
||||
<xsl:for-each select="event[
|
||||
generate-id() =
|
||||
generate-id(key('event-by-country', location/country)[1])]">
|
||||
<xsl:sort select="format-number(count(key('event-by-country', location/country)), '000')" order="descending"/>
|
||||
<xsl:value-of select="location/country/@code" />
|
||||
</xsl:for-each>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="chart-country-counts">
|
||||
<xsl:for-each select="event[
|
||||
generate-id() =
|
||||
generate-id(key('event-by-country', location/country)[1])]">
|
||||
<xsl:sort select="format-number(count(key('event-by-country', location/country)), '000')" order="descending"/>
|
||||
<xsl:if test="count(key('upcoming-event-by-country', location/country)) != 0">100.0</xsl:if>
|
||||
<xsl:if test="count(key('upcoming-event-by-country', location/country)) = 0"><xsl:value-of select="count(key('event-by-country', location/country))" />.0</xsl:if>
|
||||
<xsl:if test="position()!=last()">,</xsl:if></xsl:for-each>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="imageurl"><xsl:value-of select="$charturl"/>&chd=t:<xsl:value-of select="$chart-country-counts"/>&chld=<xsl:value-of select="$chart-countries"/></xsl:variable>
|
||||
|
||||
<html>
|
||||
&header1;
|
||||
|
||||
<body>
|
||||
|
||||
<div id="containerwrap">
|
||||
<div id="container">
|
||||
&header2;
|
||||
|
||||
<div id="content">
|
||||
<div id="SIDEWRAP">
|
||||
&nav;
|
||||
<div id="FEEDLINKS">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="&rsslink;" title="&rsstitle;">
|
||||
RSS 2.0 Feed
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- FEEDLINKS -->
|
||||
</div> <!-- SIDEWRAP -->
|
||||
|
||||
<div id="contentwrap">
|
||||
&header3;
|
||||
<!--
|
||||
Note the current date to have a reference, if the
|
||||
upcoming/past events are split incorrectly.
|
||||
-->
|
||||
<xsl:comment>
|
||||
<xsl:text>Generated on: </xsl:text>
|
||||
<xsl:value-of select="concat($curdate.year,
|
||||
format-number($curdate.month, '00'),
|
||||
format-number($curdate.day, '00'))"/>
|
||||
</xsl:comment>
|
||||
|
||||
<xsl:call-template name="html-events-list-preface" />
|
||||
|
||||
<xsl:call-template name="html-events-map">
|
||||
<xsl:with-param name="mapurl" select="$imageurl" />
|
||||
</xsl:call-template>
|
||||
|
||||
<!-- with parameter $year here? -->
|
||||
<xsl:call-template name="html-events-list-past-heading" />
|
||||
|
||||
<xsl:for-each select="event[generate-id() =
|
||||
generate-id(key('event-by-month', concat(startdate/year,
|
||||
format-number(startdate/month, '00')))[1])
|
||||
and ((number(enddate/year) = $year))]">
|
||||
|
||||
<xsl:sort select="number(startdate/year)" order="descending"/>
|
||||
<xsl:sort select="format-number(startdate/month, '00')" order="descending"/>
|
||||
<xsl:sort select="format-number(startdate/day, '00')" order="descending"/>
|
||||
|
||||
<h3>
|
||||
<xsl:attribute name="id">
|
||||
<xsl:text>month:</xsl:text>
|
||||
<xsl:value-of select="concat(startdate/year,
|
||||
format-number(startdate/month, '00'))"/>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="gen-long-en-month">
|
||||
<xsl:with-param name="nummonth" select="startdate/month"/>
|
||||
</xsl:call-template >
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="startdate/year"/>
|
||||
</h3>
|
||||
|
||||
<ul>
|
||||
<xsl:for-each select="key('event-by-month',
|
||||
concat(startdate/year, format-number(startdate/month, '00')))">
|
||||
|
||||
<xsl:sort select="format-number(startdate/day, '00')" order="descending"/>
|
||||
<xsl:apply-templates select="."/>
|
||||
</xsl:for-each>
|
||||
</ul>
|
||||
</xsl:for-each>
|
||||
|
||||
<p><a href="events.html">Aktuális események</a></p>
|
||||
|
||||
<p>Az elmúlt évek eseményei:</p>
|
||||
|
||||
<ul id="events-past-years">
|
||||
<xsl:call-template name="split-string">
|
||||
<xsl:with-param name="seperator" select="' '"/>
|
||||
<xsl:with-param name="text" select="$pastyears"/>
|
||||
</xsl:call-template>
|
||||
</ul>
|
||||
|
||||
</div> <!-- contentwrap -->
|
||||
|
||||
<br class="clearboth" />
|
||||
</div> <!-- content -->
|
||||
|
||||
<div id="FOOTER">
|
||||
©right;<br />
|
||||
&date;
|
||||
</div> <!-- FOOTER -->
|
||||
</div> <!-- container -->
|
||||
</div> <!-- containerwrap -->
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: event -->
|
||||
<xsl:template name="eventbody">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:call-template name="generate-event-anchor"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<p>
|
||||
<b>
|
||||
<xsl:if test="url">
|
||||
<xsl:apply-templates select="url"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="not(url)">
|
||||
<xsl:value-of select="name"/>
|
||||
</xsl:if>
|
||||
</b>
|
||||
<xsl:if test="location/site!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/site"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/city!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/city"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/state!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/state"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="location/country!=''">
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="location/country"/>
|
||||
</xsl:if>
|
||||
<br/>
|
||||
<em>
|
||||
<xsl:call-template name="gen-date-interval">
|
||||
<xsl:with-param name="startdate" select="startdate" />
|
||||
<xsl:with-param name="enddate" select="enddate" />
|
||||
</xsl:call-template>
|
||||
</em><br/>
|
||||
<xsl:copy-of select="description/child::node()"/>
|
||||
</p>
|
||||
<xsl:if test="link">
|
||||
<p><xsl:apply-templates select="link"/></p>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: event -->
|
||||
<xsl:template match="event" mode="upcoming">
|
||||
<li>
|
||||
<xsl:call-template name="eventbody"/>
|
||||
<p>Közösségi linkek: <a rel="nofollow">
|
||||
<xsl:attribute name="href">http://upcoming.yahoo.com/search?type=Events&q=<xsl:value-of select="name" />&Search=GO</xsl:attribute>
|
||||
upcoming</a></p>
|
||||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: event -->
|
||||
<xsl:template match="event">
|
||||
<xsl:variable name="lower">abcdefghijklmnopqrstuvwxyz</xsl:variable>
|
||||
<xsl:variable name="upper">ABCDEFGHIJKLMNOPQRSTUVWXYZ</xsl:variable>
|
||||
<xsl:variable name="name" select="name" />
|
||||
<xsl:variable name="lcname" select="translate($name, $upper, $lower)" />
|
||||
|
||||
<li>
|
||||
<xsl:call-template name="eventbody"/>
|
||||
<p>Közösségi linkek: <a rel="nofollow">
|
||||
<xsl:attribute name="href">http://www.flickr.com/search/?w=all&q=<xsl:value-of select="name" />&m=text</xsl:attribute>
|
||||
Flickr</a>, <a rel="nofollow">
|
||||
<xsl:attribute name="href">http://blogsearch.google.com/blogsearch?q=<xsl:value-of select="name" /></xsl:attribute>Blog Search</a><xsl:if test="contains($lcname, 'meetbsd') or contains($lcname, 'nycbsdcon')">,
|
||||
<a rel="nofollow">
|
||||
<xsl:attribute name="href">http://www.youtube.com/results?search_query=bsdconferences+<xsl:value-of select="name" /></xsl:attribute>YouTube</a></xsl:if>.</p>
|
||||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: link -->
|
||||
<xsl:template match="link">
|
||||
<xsl:apply-templates select="url"/>
|
||||
<xsl:if test="not(position()=last())">
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Template: url -->
|
||||
<xsl:template match="url">
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:if test="@type='freebsd-website'">&base;</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="../name"/>
|
||||
</a>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="split-string">
|
||||
<xsl:param name="seperator"/>
|
||||
<xsl:param name="text"/>
|
||||
<xsl:variable name="first" select="substring-before($text, $seperator)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$first or substring-after($text,$seperator)">
|
||||
<xsl:if test="$first">
|
||||
<li><a>
|
||||
<xsl:attribute name="href">events<xsl:value-of select="$first"/>.html</xsl:attribute>
|
||||
<xsl:value-of select="$first" />
|
||||
</a></li>
|
||||
</xsl:if>
|
||||
<xsl:call-template name="split-string">
|
||||
<xsl:with-param name="text" select="substring-after($text,$seperator)"/>
|
||||
<xsl:with-param name="seperator" select="$seperator"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<li><a>
|
||||
<xsl:attribute name="href">events<xsl:value-of select="$text"/>.html</xsl:attribute>
|
||||
<xsl:value-of select="$text" />
|
||||
</a></li>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
134
hu/share/sgml/templates.press-rss.xsl
Normal file
134
hu/share/sgml/templates.press-rss.xsl
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "&os; a sajtóban">
|
||||
<!ENTITY link "http://www.FreeBSD.org/hu/news/press.html">
|
||||
<!ENTITY email "freebsd-www">
|
||||
<!ENTITY realname "Webmesterek">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!-- Copyright (c) 2008 Murray Stokely <murray@FreeBSD.org>
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
-->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/templates.press-rss.xsl
|
||||
%SRCID% 1.1
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:output method="xml" indent="yes"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- Generate the main body of the RSS file -->
|
||||
<xsl:template match="press">
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
|
||||
<channel>
|
||||
<title>&title;</title>
|
||||
<link>&link;</link>
|
||||
<description>&os; témájú
|
||||
sajtókiadványok</description>
|
||||
<language>hu-hu</language>
|
||||
<webMaster>&email;@FreeBSD.org (&realname;)</webMaster>
|
||||
<managingEditor>&email;@FreeBSD.org (&realname;)</managingEditor>
|
||||
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
||||
<ttl>120</ttl>
|
||||
<image>
|
||||
<url>http://www.FreeBSD.org/logo/logo-full.png</url>
|
||||
<title>&title;</title>
|
||||
<link>&link;</link>
|
||||
</image>
|
||||
<atom:link href="http://www.FreeBSD.org/hu/news/press-rss.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<!-- Only include the last 10 stories -->
|
||||
<xsl:apply-templates select="descendant::story[position() <= 10]"/>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Generate the <item> elements and their content -->
|
||||
<xsl:template match="story">
|
||||
<xsl:param name="year" select="../../name" />
|
||||
<xsl:param name="month" select="../name" />
|
||||
<xsl:param name="this" select="." />
|
||||
<xsl:param name="pos">
|
||||
<xsl:for-each select="../story">
|
||||
<xsl:if test=". = $this">
|
||||
<xsl:value-of select="position()" />
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="link">
|
||||
<xsl:text>http://www.FreeBSD.org/hu/news/press.html#</xsl:text>
|
||||
<xsl:call-template name="html-news-generate-anchor">
|
||||
<xsl:with-param name="label" select="'story'" />
|
||||
<xsl:with-param name="year" select="$year" />
|
||||
<xsl:with-param name="month" select="$month" />
|
||||
<xsl:with-param name="pos" select="$pos" />
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<item>
|
||||
<title>
|
||||
<xsl:value-of select="name" />
|
||||
<xsl:if test="site-name"><xsl:text>, </xsl:text></xsl:if>
|
||||
<xsl:value-of select="site-name" />
|
||||
<xsl:if test="author"><xsl:text>, </xsl:text></xsl:if>
|
||||
<xsl:value-of select="author" />
|
||||
</title>
|
||||
|
||||
<description><xsl:value-of select="normalize-space(p)"/></description>
|
||||
|
||||
<link><xsl:value-of select="normalize-space($link)"/></link>
|
||||
<guid><xsl:value-of select="normalize-space($link)"/></guid>
|
||||
|
||||
<pubDate>
|
||||
<xsl:call-template name="misc-format-date-string">
|
||||
<xsl:with-param name="year" select="$year" />
|
||||
<xsl:with-param name="month" select="$month" />
|
||||
<xsl:with-param name="day" select="number(substring(date,0,3))" />
|
||||
<xsl:with-param name="date-format" select="$param-l10n-date-format-rfc822" />
|
||||
</xsl:call-template>
|
||||
</pubDate>
|
||||
</item>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="name | date"/>
|
||||
|
||||
</xsl:stylesheet>
|
||||
89
hu/share/sgml/templates.press.xsl
Normal file
89
hu/share/sgml/templates.press.xsl
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "&os; a sajtóban">
|
||||
<!ENTITY email "freebsd-www">
|
||||
<!ENTITY rsslink "press-rss.xml">
|
||||
<!ENTITY rsstitle "&title;">
|
||||
<!ENTITY % navinclude.about "INCLUDE">
|
||||
<!ENTITY % header.rss "INCLUDE">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD: www/share/sgml/templates.press.xsl,v 1.5 2008/01/18 03:06:05 murray Exp $ -->
|
||||
|
||||
<!-- The FreeBSD Hungarian Documentation Project
|
||||
Translated by: PALI, Gabor <pgj@FreeBSD.org>
|
||||
%SOURCE% share/sgml/templates.press.xsl
|
||||
%SRCID% 1.5
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
|
||||
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:param name="news.press.xml-master" select="'none'" />
|
||||
<xsl:param name="news.press.xml" select="'none'" />
|
||||
|
||||
<xsl:output type="html" encoding="&xml.encoding;"/>
|
||||
|
||||
<xsl:template match="press">
|
||||
<html>
|
||||
&header1;
|
||||
<body>
|
||||
|
||||
<div id="CONTAINERWRAP">
|
||||
<div id="CONTAINER">
|
||||
|
||||
&header2;
|
||||
|
||||
<div id="CONTENT">
|
||||
<div id="SIDEWRAP">
|
||||
&nav;
|
||||
<div id="FEEDLINKS">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="&rsslink;" title="RSS 2.0 Feed">
|
||||
RSS 2.0 Feed
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div> <!-- FEEDLINKS -->
|
||||
</div> <!-- SIDEWRAP -->
|
||||
|
||||
<div id="CONTENTWRAP">
|
||||
|
||||
&header3;
|
||||
|
||||
<xsl:call-template name="html-news-list-press-preface" />
|
||||
|
||||
<xsl:call-template name="html-news-list-press">
|
||||
<xsl:with-param name="news.press.xml-master" select="$news.press.xml-master" />
|
||||
<xsl:with-param name="news.press.xml" select="$news.press.xml" />
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:call-template name="html-press-make-olditems-list" />
|
||||
|
||||
<xsl:call-template name="html-news-list-newsflash-homelink" />
|
||||
|
||||
</div> <!-- CONTENTWRAP -->
|
||||
<br class="clearboth" />
|
||||
|
||||
</div> <!-- CONTENT -->
|
||||
|
||||
<div id="FOOTER">
|
||||
©right;<br />
|
||||
&date;
|
||||
</div> <!-- FOOTER -->
|
||||
|
||||
</div> <!-- CONTAINER -->
|
||||
</div> <!-- CONTAINERWRAP -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
Loading…
Add table
Add a link
Reference in a new issue