Update news and event feeds
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
* All <body> elements in news and event xml files now consist of <p> elements. * XSL templates to display news and event feeds are further consolidated. * All verbose news and event listings now display a learn-more link.
This commit is contained in:
parent
eb7811876c
commit
95e69698c5
@ -104,6 +104,38 @@
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- Event information, with or without "read more" link -->
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="event-info">
|
||||
<xsl:variable name="link">
|
||||
<xsl:choose>
|
||||
<xsl:when test="link">
|
||||
<xsl:value-of select="link"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="page">
|
||||
<xsl:value-of select="page"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:for-each select="body/*">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@*|node()"/>
|
||||
<xsl:if test="position()=last() and $link">
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="class">learn-more</xsl:attribute>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$link"/>
|
||||
</xsl:attribute>
|
||||
</xsl:element><!-- a/learn-more -->
|
||||
</xsl:if>
|
||||
</xsl:copy>
|
||||
</xsl:for-each>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- List of events (as elements of an unsorted list) -->
|
||||
<!-- ==================================================================== -->
|
||||
@ -178,10 +210,7 @@
|
||||
</xsl:element>
|
||||
|
||||
<!-- Details -->
|
||||
<xsl:element name="div">
|
||||
<xsl:attribute name="class">text</xsl:attribute>
|
||||
<xsl:apply-templates select="body/node()"/>
|
||||
</xsl:element>
|
||||
<xsl:call-template name="event-info"/>
|
||||
|
||||
</xsl:element><!-- div/entry -->
|
||||
</xsl:if>
|
||||
|
@ -8,6 +8,37 @@
|
||||
<xsl:import href="../../tools/xsltsl/date-time.xsl"/>
|
||||
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- News image with or without link -->
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="news-image">
|
||||
<xsl:choose>
|
||||
<xsl:when test="link != ''">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="link"/>
|
||||
</xsl:attribute>
|
||||
<xsl:element name="img">
|
||||
<xsl:attribute name="src">
|
||||
<xsl:value-of select="image"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="alt"/>
|
||||
</xsl:element><!-- img -->
|
||||
</xsl:element><!-- a -->
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:element name="img">
|
||||
<xsl:attribute name="src">
|
||||
<xsl:value-of select="image"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="alt"/>
|
||||
</xsl:element><!-- img -->
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- News title with or without link -->
|
||||
<!-- ==================================================================== -->
|
||||
@ -44,6 +75,29 @@
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- Newsteaser text, with or without "read more" link -->
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="news-teaser">
|
||||
<xsl:variable name="link" select="link"/>
|
||||
<xsl:for-each select="body/*">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@*|node()"/>
|
||||
<xsl:if test="position()=last() and $link">
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="class">learn-more</xsl:attribute>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$link"/>
|
||||
</xsl:attribute>
|
||||
</xsl:element><!-- a/learn-more -->
|
||||
</xsl:if>
|
||||
</xsl:copy>
|
||||
</xsl:for-each>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- List of news items (as elements of an unsorted list) -->
|
||||
<!-- ==================================================================== -->
|
||||
@ -120,10 +174,7 @@
|
||||
</xsl:element>
|
||||
|
||||
<!-- Text -->
|
||||
<xsl:element name="div">
|
||||
<xsl:attribute name="class">text</xsl:attribute>
|
||||
<xsl:apply-templates select="body/node()"/>
|
||||
</xsl:element>
|
||||
<xsl:call-template name="news-teaser"/>
|
||||
|
||||
</xsl:element><!-- div/entry -->
|
||||
</xsl:if>
|
||||
|
@ -6,8 +6,10 @@
|
||||
<event date="2004-05-15">
|
||||
<title>Picnic in Slottsskogen, Gothenburg, Sweden</title>
|
||||
<body>
|
||||
<p>
|
||||
On the 15th of may, the Free Software Foundation Europe invites you to
|
||||
a picnic in Slottsskogen, Gothenburg, Sweden. We will gather at Linnéplatsen at 18.30 and then walk into Slottsskogen.
|
||||
</p>
|
||||
</body>
|
||||
<link>/events/2004/picnic.xhtml</link>
|
||||
</event>
|
||||
|
@ -6,9 +6,11 @@
|
||||
<event date="2004-05-15">
|
||||
<title>Picknick i Slottsskogen, Göteborg</title>
|
||||
<body>
|
||||
<p>
|
||||
Den 15e maj inbjuder Free Software Foundation Europe till picknick i
|
||||
Slottsskogen i Göteborg. Vi samlas klockan 18.30 vid Linnéplatsen för
|
||||
att sedan vandra in i Slottsskogen.
|
||||
</p>
|
||||
</body>
|
||||
<link>/events/2004/picnic.xhtml</link>
|
||||
</event>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2004-05-20" end="2004-06-10">
|
||||
<title>Georg Greve in Südamerika</title>
|
||||
<body>
|
||||
<p>
|
||||
Vom 20. Mai 2004 bis zum 10. Juni 2004 besuchte Georg Greve Südamerika.
|
||||
Er traf sich mit der ansässigen Freien-Software-Community in Argentinien,
|
||||
Uruguay und Brasilien, um sie in ihren Bemühungen für Freiheit zu
|
||||
unterstützen und Erfahrungen aus der Arbeit der FSFE weiterzugeben.
|
||||
</p>
|
||||
</body>
|
||||
<link>/events/2004/FISL/fisl.html</link>
|
||||
</event>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2004-05-20" end="2004-06-10">
|
||||
<title>Georg Greve in South America</title>
|
||||
<body>
|
||||
<p>
|
||||
From May 20th, 2004 until June 10th, 2004, Georg Greve was touring
|
||||
South America, visiting the local Free Software community in
|
||||
Argentina, Uruguay and Brazil to support them in their struggle for
|
||||
freedom and share experiences collected in the work of the FSFE.
|
||||
</p>
|
||||
</body>
|
||||
<link>/events/2004/FISL/fisl.html</link>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-05-20" end="2004-06-10">
|
||||
<title>Georg Greve in Sud America</title>
|
||||
<body>
|
||||
<p>
|
||||
Dal 20 maggio al 10 giugno 2004, Georg Greve ha girato per il
|
||||
Sud America, visitando le comunità del Software Libero in
|
||||
Argentina, Uruguay e Brasile per supportarle nella loro battaglia
|
||||
per la libertà e per condividere l'esperienza maturata con il lavoro
|
||||
della FSFE.
|
||||
</p>
|
||||
</body>
|
||||
<link>/events/2004/FISL/fisl.html</link>
|
||||
</event>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-05-29" end="2004-05-29">
|
||||
<title>La giornata del software libero in Irpinia</title>
|
||||
<body>
|
||||
<p>
|
||||
L'Irlug (Irpinia GNU/Linux User Group), gruppo di appassionati del
|
||||
sistema operativo GNU/Linux e del software libero, in collaborazione
|
||||
con AbelLinux, XED.IT, è lieta di presentare, per il giorno 29 maggio
|
||||
@ -13,6 +14,7 @@ con AbelLinux, XED.IT, è lieta di presentare, per il giorno 29 maggio
|
||||
Tale manifestazione si articolerà in una serie di eventi che avranno
|
||||
luogo ad Avellino e Montella, e che ruoteranno attorno al mondo del
|
||||
Software Libero. Sono invitati tutti i simpatizzanti e curiosi.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.irlug.org/modules.php?name=News&file=article&sid=18</page>
|
||||
</event>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2004-06-07" end="2004-06-07">
|
||||
<title>EuroPython: Panel discussion</title>
|
||||
<body>
|
||||
<p>
|
||||
Jonas Öberg and Henrik Sandklef will participate in a panel discussion
|
||||
on "Licensing your Python Applications" during the EuroPython 2004
|
||||
conference. The discussion will take place in Room 3 at 16:00 on the
|
||||
7th of june.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2004-06-07" end="2004-06-07">
|
||||
<title>EuroPython: tavola rotonda</title>
|
||||
<body>
|
||||
<p>
|
||||
Jonas Öberg e Henrik Sandklef participeranno a una tavola rotonda
|
||||
su "Licenziare le proprie applicazioni Python" durante la conferenza
|
||||
EuroPython 2004. La discussione avrà luogo nella Sala 3 alle 16:00 il
|
||||
7 giugno.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,9 +6,11 @@
|
||||
<event start="2004-06-08" end="2004-06-08">
|
||||
<title>EuroPython: Free Software in the Public Interest</title>
|
||||
<body>
|
||||
<p>
|
||||
Henrik Sandklef will hold a 30 minute talk on Free Software in the
|
||||
Public Interest during the EuroPython 2004 conference. The talk will
|
||||
be held in Room 1 at 09:30 on the 8th of june.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,9 +6,11 @@
|
||||
<event start="2004-06-08" end="2004-06-08">
|
||||
<title>EuroPython: Software Libero nell'interesse pubblico</title>
|
||||
<body>
|
||||
<p>
|
||||
Henrik Sandklef terrà un intervento di 30 minuti sul Software Libero
|
||||
nell'interesse pubblico durante la conferenza EuroPython 2004. L'intervento
|
||||
avrà luogo nella Sala 1 alle 09:30 il 9 giugno.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-06-13" end="2004-06-13">
|
||||
<title>Where next for copyright in Europe?</title>
|
||||
<body>
|
||||
<p>
|
||||
Im Rahmen der "Wizards of OS 2004" wird ein Workshop unter dem Titel
|
||||
"Where next for copyright in Europe?" (Wohin geht das Copyright in
|
||||
Europa?) abgehalten. Auf der Liste der Vortragenden scheint auch
|
||||
FSFE-Mitglied Georg Jakob auf, der über die Gewinner und Verlierer der
|
||||
"Intellectual Property Rights Enforcement Directive" sprechen wird.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://wizards-of-os.org/index.php?1441&L=3</page>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-06-13" end="2004-06-13">
|
||||
<title>Where next for copyright in Europe?</title>
|
||||
<body>
|
||||
<p>
|
||||
Within the "Wizards of OS 2004", a workshop with the title "Where next
|
||||
for copyright in Europe?" will be held. The list of speakers also
|
||||
includes Georg Jakob, Member of the FSF Europe, who will talk about
|
||||
winners and losers from the "Intellectual Proprerty Rights Enforcement
|
||||
Directive".
|
||||
</p>
|
||||
</body>
|
||||
<page>http://wizards-of-os.org/index.php?1441&L=3</page>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-06-13" end="2004-06-13">
|
||||
<title>Dove va il diritto d'autore in Europa?</title>
|
||||
<body>
|
||||
<p>
|
||||
All'interno di "Wizards of OS 2004" si terrà un workshop dal titolo
|
||||
"Where next for copyright in Europe?". La lista dei relatori include
|
||||
anche Georg Jakob, Membro della FSF Europe, che parlerà dei vincitori
|
||||
e vinti nella direttiva IPRED ("Intellectual Proprerty Rights Enforcement
|
||||
Directive").
|
||||
</p>
|
||||
</body>
|
||||
<page>http://wizards-of-os.org/index.php?1441&L=3</page>
|
||||
</event>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-06-23" end="2004-06-26">
|
||||
<title>GNU/LinuxTag in Karlsruhe, Deutschland</title>
|
||||
<body>
|
||||
<p>
|
||||
Der GNU/LinuxTag ist eine der größten Veranstaltungen rund um Freie
|
||||
Software. Auch dieses Jahr ist die FSF Europe dort mit einem Stand
|
||||
vertreten. Mehrere Mitglieder unseres Teams stehen für die Beantwortung
|
||||
@ -14,6 +15,7 @@
|
||||
Software zum Kauf an. Bernhard Reiter und Georg Greve werden am Mittwoch
|
||||
um 16:00 Uhr, am Donnerstag um 14:00 Uhr und am Samstag um 13:00 Uhr
|
||||
Vorträge über Freie Software und ihre Lizenzen halten.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.linuxtag.org/2004/index.html</page>
|
||||
</event>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-06-23" end="2004-06-26">
|
||||
<title>GNU/LinuxTag in Karlsruhe, Germany</title>
|
||||
<body>
|
||||
<p>
|
||||
GNU/LinuxTag is one of the major Free Software events. Like every year,
|
||||
the FSF Europe will man a booth. Several of our team members will be
|
||||
there to answer questions about our activities, and we will sell
|
||||
@ -13,6 +14,7 @@
|
||||
Software. Bernhard Reiter and Georg Greve will hold talks about Free
|
||||
Software and its licenses Wednesday, 16:00, Thursday, 14:00, and
|
||||
Saturday, 13:00.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.linuxtag.org/2004/index.html</page>
|
||||
</event>
|
||||
|
@ -6,12 +6,14 @@
|
||||
<event start="2004-06-23" end="2004-06-26">
|
||||
<title>GNU/LinuxTag a Karlsruhe, Germania</title>
|
||||
<body>
|
||||
<p>
|
||||
GNU/LinuxTag è uno dei principali eventi riguardanti il Software Libero.
|
||||
Come ogni anno, ci sarà una postazione della FSF Europe: vari membri del
|
||||
nostro team parleranno delle nostre attività, venderemo gadget, magliette
|
||||
e spille per finanziare il nostro lavoro per il Software Libero.
|
||||
Bernhard Reiter e Georg Greve terranno interventi sul Software Libero e le
|
||||
sue licenze mercoledì alle 16.00, giovedì alle 14.00 e sabato alle 13.00.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.linuxtag.org/2004/index.html</page>
|
||||
</event>
|
||||
|
@ -6,12 +6,14 @@
|
||||
<event start="2004-06-23" end="2004-06-26">
|
||||
<title>GNU/LinuxTag in Karlsruhe, Duitsland</title>
|
||||
<body>
|
||||
<p>
|
||||
GNU/LinuxTag is één van de belangrijkste Vrije Software
|
||||
evenementen. Ook dit jaar zal de FSF Europe weer een stand
|
||||
hebben. Meerdere leden van ons team zullen er zijn om vragen
|
||||
over onze activiteiten te beantwoorden, en we zullen merchandise
|
||||
zoals t-shirts en pins verkopen ten gunste van ons werk voor
|
||||
Vrije Software.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.linuxtag.org/2004/index.html</page>
|
||||
</event>
|
||||
|
@ -8,10 +8,12 @@
|
||||
Vortragsabend: "Gedanken sind frei, Software auch", Dornbirn, Österreich
|
||||
</title>
|
||||
<body>
|
||||
<p>
|
||||
Am 8. Juli 2004 von 17:00 bis 19:30 werden mehrere Vorträge zum Thema
|
||||
"Freie Software" im Competence Center Dornbirn stattfinden.
|
||||
Unter anderem wird Reinhard Müller über die Grundkonzepte Freier Software
|
||||
sprechen. Der Eintritt ist frei.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -8,10 +8,12 @@
|
||||
Conference: "Thoughts are free, and so is software", Dornbirn, Austria
|
||||
</title>
|
||||
<body>
|
||||
<p>
|
||||
On July 8, 2004, from 17:00 until 19:30, several speeches on Free
|
||||
Software topics will be held in the Competence Center Dornbirn (Austria).
|
||||
Among others, Reinhard Müller will talk about basic concepts of Free
|
||||
Software. Admission is free.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,12 +6,14 @@
|
||||
<event start="2004-07-18" end="2004-07-22">
|
||||
<title>Free Software Summer Event in Caceres, Spain</title>
|
||||
<body>
|
||||
<p>
|
||||
On Monday, July 22 at 10:00 Georg Greve holds a speech about the
|
||||
Free Software Foundation Europe. He also participates at round table
|
||||
discussions on the topic "Must governments support Free Software?" on
|
||||
Wednesday, July 21 from 12:30 to 13:30 and from 13:30 to 14:30 and on the
|
||||
topic "Software Patents in Europe" on Thursday, July 22 at the same time.
|
||||
The speeches will be delivered in English.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,12 +6,14 @@
|
||||
<event start="2004-07-18" end="2004-07-22">
|
||||
<title>Free Software Summer Event in Caceres, Spain</title>
|
||||
<body>
|
||||
<p>
|
||||
Lunedì, 22 luglio alle ore 10:00 Georg Greve terrà una conferenza sulla
|
||||
Free Software Foundation Europe. Parteciperà anche ad una tavola rotonda
|
||||
discutendo sul tema "I governi debbono supportare il Software Libero?"
|
||||
mercoledì 21 luglio dalle 12:30 alle 13:30 e dalle 13:30 alle 14:30 e sul tema
|
||||
"I brevetti software in Europa" giovedì 22 luglio negli stessi orari.
|
||||
Le conferenze saranno tenute in lingua Inglese.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,8 +6,10 @@
|
||||
<event start="2004-07-15" end="2004-07-15">
|
||||
<title>Business evolution through IT revolution</title>
|
||||
<body>
|
||||
<p>
|
||||
Una tavola rotonda in inglese, organizzata dalla SDA Bocconi di Milano. Dalle 17.00 in poi presso SDA Bocconi - Divisione Master, Via Balilla 18 Milano. Saranno presenti, oltre al presidente della sezione italiana della FSF Europe (Stefano Maffulli), rappresentanti del mondo corporate come IBM, RedHat, Mandrake, Banca Popolare di Milano e del mondo della Pubblica Amministrazione.
|
||||
L'obiettivo dell'evento è portare a conoscenza di manager e futuri manager dei corsi master il fenomeno OpenSource, riguardo al quale in futuro, anche se non si occuperanno di IT, e anche se non lavoreranno in aziende del settore, si troveranno a dover fare delle scelte, come clienti o come investitori.
|
||||
</p>
|
||||
</body>
|
||||
<page></page>
|
||||
</event>
|
||||
|
@ -6,7 +6,9 @@
|
||||
<event start="2004-09-02" end="2004-09-07">
|
||||
<title>Ars Electronica 2004, Linz, Austria</title>
|
||||
<body>
|
||||
<p>
|
||||
On Monday, Sept 6 2004, Georg Greve will participate in a discussion round "digital commons" among Lawrence Lessig, the initiator of the prizewinning project "Creative Commons". Questions of the discussion will be: To whom does knowledge belong and how free are Free Software, content and infrastructure?
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.aec.at</page>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-09-02" end="2004-09-07">
|
||||
<title>Ars Electronica 2004, Linz, Austria</title>
|
||||
<body>
|
||||
<p>
|
||||
Lunedì 6 Settembre 2004, Georg Greve parteciperà a un dibattito attorno ai
|
||||
"digital commons" insieme a Lawrence Lessig, fondatore del pluripremiato
|
||||
progetto "Creative Commons". L'argomento della discussione sarà il seguente:
|
||||
"A chi appartiene la conoscenza e quanto sono liberi il software, i contenuti
|
||||
e le infrastrutture?
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.aec.at</page>
|
||||
</event>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-09-22" end="2004-09-24">
|
||||
<title>GNU/Linux World Expo</title>
|
||||
<body>
|
||||
<p>
|
||||
I rappresentanti della sezione italiana della Free Software Foundation
|
||||
Europe saranno presenti al GNU/Linux World Expo, in programma a Milano
|
||||
dal 22 al 24 settembre prossimo. All'interno dello spazio .Org Pavillion,
|
||||
@ -16,6 +17,7 @@ presidente della sezione italiana, presenterà i lavori e i progetti
|
||||
di FSFE il 22 settembre dalle 15 alle 16 sempre all'interno dell'area
|
||||
destinata alle associazioni. Presso lo stand, i responsabili di FSF
|
||||
Europe saranno a disposizione della stampa.
|
||||
</p>
|
||||
</body>
|
||||
<page></page>
|
||||
</event>
|
||||
|
@ -6,7 +6,9 @@
|
||||
<event start="2004-09-22" end="2004-09-24">
|
||||
<title>United Nations Conference on Trade and Development (UNCTAD), Geneva, Switzerland</title>
|
||||
<body>
|
||||
<p>
|
||||
On September 23rd Georg Greve will participate to the Expert Meeting on Free Software. He will speak about Free Software and its role in advancing the information society, in particular developing countries.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.unctad.org/ecommerce/</page>
|
||||
</event>
|
||||
|
@ -6,9 +6,11 @@
|
||||
<event start="2004-09-22" end="2004-09-24">
|
||||
<title>United Nations Conference on Trade and Development (UNCTAD), Ginevra, Svizzera</title>
|
||||
<body>
|
||||
<p>
|
||||
Il 23 Settembre Georg Greve parteciperà all'Expert Meeting
|
||||
on Free Software. Parlerà del Software Libero e del suo ruolo nel progresso
|
||||
della società dell'informazione, in particolare nei paesi in via di sviluppo.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.unctad.org/ecommerce/</page>
|
||||
</event>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-10-01" end="2004-10-01">
|
||||
<title>E-Südtirol auf Schloss Haslburg, Bozen, Italien</title>
|
||||
<body>
|
||||
<p>
|
||||
Am Freitag, dem 1. Oktober 2004, wird Georg Greve an der Veranstaltung
|
||||
zum Thema "Autonomie und Freiheit des Wissens in der
|
||||
Informationsgesellschaft. Politische, wirtschaftliche und kulturelle
|
||||
@ -16,7 +17,8 @@
|
||||
Vereinigungen und Bürger. Die Teilnahe an der Veranstaltung ist
|
||||
kostenlos. Es ist jedoch eine Registrierung auf der Webseite des
|
||||
Veranstalters bis zum 30. September erforderlich.
|
||||
</body>
|
||||
</p>
|
||||
</body>
|
||||
<page>http://sblog.ines.org/</page>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-10-01" end="2004-10-01">
|
||||
<title>E-Südtirol at castle Haslburg, Bolzano, Italy</title>
|
||||
<body>
|
||||
<p>
|
||||
On Friday, Oct 1st 2004, Georg Greve will participate at the event about
|
||||
"autonomy and freedom of knowledge in the information society. Political,
|
||||
economical, and cultural consequences". The conference will start at 9:00
|
||||
@ -14,7 +15,8 @@
|
||||
as business people, interested organisations, and citizens. The event
|
||||
is public with no admission fee, but registration is required
|
||||
until Sep 30th on the events web site.
|
||||
</body>
|
||||
</p>
|
||||
</body>
|
||||
<page>http://sblog.ines.org/</page>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-10-01" end="2004-10-01">
|
||||
<title>E-Altoadige a Castel Flavon, Bolzano.</title>
|
||||
<body>
|
||||
<p>
|
||||
Venerdì 1 Ottobre 2004, Georg Greve parteciperà a un evento dal
|
||||
titolo "Autonomia e libertà del sapere nella società
|
||||
dell'informazione. Implicazioni politiche, economiche e
|
||||
@ -16,7 +17,8 @@
|
||||
alle associazioni che si occupano della tematica e ai cittadini
|
||||
interessati. L'evento è pubblico e a partecipazione gratuita, ma
|
||||
è richiesta la registrazione entro il 30 Settembre sul sito web.
|
||||
</body>
|
||||
</p>
|
||||
</body>
|
||||
<page>http://sblog.ines.org/</page>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,8 +6,10 @@
|
||||
<event start="2004-10-04" end="2004-10-06">
|
||||
<title>7th "Handelsblatt Jahrestagung", Ritz-Carlton Hotel, Berlin, Germany</title>
|
||||
<body>
|
||||
<p>
|
||||
On Tuesday, Oct 5 2004, at 14:00 Georg Greve will speak about visions for
|
||||
Free Software. The speech will be delivered in German.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,9 +6,11 @@
|
||||
<event start="2004-10-04" end="2004-10-06">
|
||||
<title>7° "Handelsblatt Jahrestagung", Hotel Ritz-Carlton, Berlino, Germania</title>
|
||||
<body>
|
||||
<p>
|
||||
Martedì 5 ottobre 2004 alle ore 14:00 George Greve parlerà delle prospettive del
|
||||
Software Libero. La conferenza sarà tenuta in lingua Tedesca.
|
||||
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-10-07" end="2004-10-09">
|
||||
<title>aLANtejo Party 2004, Lisbon, Portugal</title>
|
||||
<body>
|
||||
<p>
|
||||
Am Samstag dem 9. Oktober 2004 um 16:00 Uhr wird Georg Greve an einer
|
||||
Diskussion zum Thema Freie Software auf dem aLANtejo teilnehmen. Die
|
||||
Veranstaltung ist öffentlich, eine Registrierung auf der Webseite des
|
||||
Veranstalters (nur in Portugiesisch verfügbar) ist jedoch notwendig.
|
||||
</body>
|
||||
</p>
|
||||
</body>
|
||||
<page>http://alantejo.uevora.pt//</page>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2004-10-07" end="2004-10-09">
|
||||
<title>aLANtejo Party 2004, Lisbon, Portugal</title>
|
||||
<body>
|
||||
<p>
|
||||
On Saturday, Oct 9th 2004 16:00 pm, Georg Greve will participate at a
|
||||
round-table about Free Software at aLANtejo. The event is public,
|
||||
registration is required on the events website (only in Portuguese).
|
||||
</body>
|
||||
</p>
|
||||
</body>
|
||||
<page>http://alantejo.uevora.pt//</page>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-10-07" end="2004-10-09">
|
||||
<title>aLANtejo Party 2004, Lisbona, Portogallo</title>
|
||||
<body>
|
||||
<p>
|
||||
Sabato 9 Ottobre 2004 alle 16:00, Georg Greve parteciperà a
|
||||
una tavola rotonda sul Software Libero al aLANtejo. L'evento
|
||||
è pubblico, ma è richiesta la registrazione sul sito (solo in
|
||||
portoghese).
|
||||
</body>
|
||||
</p>
|
||||
</body>
|
||||
<page>http://alantejo.uevora.pt//</page>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-10-22" end="2004-10-23">
|
||||
<title>Berlinux 2004, Technische Universität Berlin, Germany</title>
|
||||
<body>
|
||||
<p>
|
||||
Am 22. und 23. Oktober 2004 startet in der Technischen Universität zu
|
||||
Berlin der erste Berlinux - Kongress und Ausstellung zum Thema Freie
|
||||
Software. Georg Greve wird dazu am 22. Oktober um 10:00 Uhr die
|
||||
@ -13,6 +14,7 @@
|
||||
GNU/Linux-Nutzer, Unternehmen, Behörden und Privatanwender. Der Einlass
|
||||
ist jeweils um 9:00 Uhr. Es ist keine Vorregistrierung nötig und der
|
||||
Eintritt ist kostenlos.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.berlinux.de</page>
|
||||
</event>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-10-30" end="2004-10-30">
|
||||
<title>Valtellinux Meeting a Caiolo (SO)</title>
|
||||
<body>
|
||||
<p>
|
||||
I rappresentanti della sezione italiana della Free Software
|
||||
Foundation Europe saranno presenti al Valtellinux Meeting, Sabato 30
|
||||
ottobre 2004 a Caiolo (SO). Sarà una giornata dedicata al Software
|
||||
@ -14,6 +15,7 @@ pubblico e privato. L'annuale appuntamento valtellinese è ormai un
|
||||
punto di ritrovo importante per la Comunità GNU/Linux, raccoglie
|
||||
infatti sia professionisti ed aziende del settore che numerosi
|
||||
visitatori interessati o semplici curiosi.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.valtellinux.it/meeting/</page>
|
||||
</event>
|
||||
|
@ -6,12 +6,14 @@
|
||||
<event start="2004-11-04" end="2004-11-07">
|
||||
<title>Congresso Internacional de Software Livre (CONISLI)</title>
|
||||
<body>
|
||||
<p>
|
||||
The Congresso Internacional de Software Livre (CONISLI) -- a Free Software
|
||||
conference organized entirely by the Free Software community in Brazil -- will
|
||||
take place in the Anhembi
|
||||
Convention Center, Sao Paulo, Brazil. Georg Greve will open the
|
||||
congress with
|
||||
a keynote on Thursday.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.conisli.org.br</page>
|
||||
</event>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2004-11-04" end="2004-11-07">
|
||||
<title>Congresso Internazionale del Software Libero (CONISLI)</title>
|
||||
<body>
|
||||
<p>
|
||||
Questo congresso sul Software Libero, organizzato interamente dalla
|
||||
comunità del Software Libero brasiliana, si terrà nel "Anhembi Convention
|
||||
Center", San Paolo in Brasile. Georg Greve aprirà il congresso con
|
||||
un intervento nella giornata di giovedì.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.conisli.org.br</page>
|
||||
</event>
|
||||
|
@ -5,7 +5,9 @@
|
||||
|
||||
<event start="2004-11-15" end="2004-11-15">
|
||||
<title>La FSFE: attività e struttura</title>
|
||||
<body>Nell'ambito dei seminari mensili sul Software Libero, organizzati dal GULP di Pisa, il 15 Novembre Stefano Maffulli presenterà la Free Software Foundation Europe. I seminari si tengono al Polo Fibonacci in via Buonarroti n.4 Pisa.
|
||||
<body>
|
||||
<p>Nell'ambito dei seminari mensili sul Software Libero, organizzati dal GULP di Pisa, il 15 Novembre Stefano Maffulli presenterà la Free Software Foundation Europe. I seminari si tengono al Polo Fibonacci in via Buonarroti n.4 Pisa.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.gulp.linux.it/programma</page>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-11-26" end="2004-11-28">
|
||||
<title>First South Tyrolean Free Software Conference, Bolzano, Italy</title>
|
||||
<body>
|
||||
<p>
|
||||
From November 26th until November 28th, 2004, the SFScon will take place
|
||||
in Bolzano, Italy. Two members of the Free Software Foundation Europe
|
||||
will give three different lectures: Werner Koch will speak about "Privacy
|
||||
and encryption techniques", Alessandro Rubini will present "Free Software
|
||||
in teaching" and gives an "Introduction to kernel programming".
|
||||
</p>
|
||||
</body>
|
||||
<link>http://mailman.fsfeurope.org/pipermail/press-release/2004q4/000082.html</link>
|
||||
<page>http://www.sfscon.it/</page>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2004-11-26" end="2004-11-28">
|
||||
<title>Prima Conferenza sul Software Libero in Alto Adige</title>
|
||||
<body>
|
||||
<p>
|
||||
Dal 26 al 28 novembre 2004 si terrà a Bolzano la SFScon.
|
||||
Due membri della Free Software Foundation Europe terranno tre interventi:
|
||||
Werner Koch parlerà a proposito di "Privacy e tecniche di crittografia",
|
||||
Alessandro Rubini presenterà il "Software Libero nella scuola" e darà
|
||||
un'"Introduzione alla programmazione del kernel".
|
||||
</p>
|
||||
</body>
|
||||
<link>http://mailman.fsfeurope.org/pipermail/press-release-it/2004q4/000064.html</link>
|
||||
<page>http://www.sfscon.it/</page>
|
||||
|
@ -8,6 +8,7 @@
|
||||
Freie Software -- Regeln einer digitalen Gesellschaft, an der Universität Lüneburg, Germany
|
||||
</title>
|
||||
<body>
|
||||
<p>
|
||||
Am 7. Dezember 2004 von 18:30 bis 19:15 wird Georg Greve, an der
|
||||
Universität Lüneburg, eine Einführung in Freie Software geben. Besonderer
|
||||
Schwerpunkt liegt dabei auf einer allgemein verständlichen Erklärung der
|
||||
@ -16,7 +17,8 @@
|
||||
Struktur und Arbeit vorgestellt werden. Der Vortrag ist Teil der Reihe
|
||||
"Download Culture? Die neuen Regeln des Netzes". Gerichtet ist der
|
||||
Vortrag an die gesamte Hochschulöffentlichkeit.
|
||||
</body>
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.download-culture.org/</page>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -5,9 +5,11 @@
|
||||
|
||||
<event start="2004-12-10" end="2004-12-10">
|
||||
<title>Comunicazione Aperta e Innovazione: "Valore e valori del software libero commerciale"</title>
|
||||
<body>Stefano Maffulli terrà una presentazione su "Valore e valori del software libero commerciale"
|
||||
<body>
|
||||
<p>Stefano Maffulli terrà una presentazione su "Valore e valori del software libero commerciale"
|
||||
durante il convegno "Comunicazione Aperta e Innovazione", che si terrà il 10 dicembre a Faenza (RA),
|
||||
presso la sala conferenze del Credito Cooperativo in Via Laghi 81.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.aproposito.org/</page>
|
||||
</event>
|
||||
|
@ -6,6 +6,7 @@
|
||||
<event start="2004-12-13" end="2004-12-13">
|
||||
<title>Programmierer und andere Gesetzgeber, Universität Hamburg, Germany</title>
|
||||
<body>
|
||||
<p>
|
||||
Am 13. Dezember 2004 von 17:15 bis 18:45 wird Georg Greve,
|
||||
Präsident der Free Software Foundation Europe, in seinem
|
||||
Vortrag eine Einführung in Freie Software geben. Ein
|
||||
@ -20,6 +21,7 @@
|
||||
Freier Software eingehen wird. Die Teilnahme an der Veranstaltung ist
|
||||
kostenlos und erfordert keine Registrierung. Ort: Konrad-Zuse-Hoersaal, Informatik Uni-Hamburg,
|
||||
Vogt-Koelln-Str. 30, Hamburg
|
||||
</body>
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -7,11 +7,13 @@
|
||||
<title>"Il valore del software libero. Una prospettiva di crescita ed
|
||||
innovazione per le imprese e la pubblica amministrazione" - Dibattito a Trieste</title>
|
||||
<body>
|
||||
<p>
|
||||
A partire dalle 11, presso il Caffè San Marco in via Cesare Battisti 18, Trieste,
|
||||
Stefano Maffulli, presidente della sezione italiana di FSFE, parteciperà
|
||||
a un dibattito organizzato in collaborazione con i Linux Users Group del Friuli
|
||||
Venezia Giulia, con un intervento su "La scommessa di FSFE e lo
|
||||
stato dell'arte della legislazione in Italia".
|
||||
</p>
|
||||
</body>
|
||||
<page>http://trieste.linux.it/eventi/valoredelsl/index.php</page>
|
||||
</event>
|
||||
|
@ -8,9 +8,11 @@
|
||||
"Il lancio delle licenze Creative Commons Italiane" - Presentazione a Torino
|
||||
</title>
|
||||
<body>
|
||||
<p>
|
||||
A partire alle 14.30, presso la Fondazione Agnelli, Murazzi, via Giacosa
|
||||
38, Torino, Alessandro Rubini, socio fondatore di FSFE, terrà un
|
||||
intervento dal titolo "GPL e CCPL: confronto e considerazioni".
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.creativecommons.it/</page>
|
||||
</event>
|
||||
|
@ -5,11 +5,13 @@
|
||||
|
||||
<event start="2004-12-17" end="2004-12-17">
|
||||
<title>"Quanto conta la libertà nella tua vita?" - Conferenza stampa e dibattito pubblico a Bologna</title>
|
||||
<body>Il team italiano di FSFE organizza una conferenza stampa con
|
||||
<body>
|
||||
<p>Il team italiano di FSFE organizza una conferenza stampa con
|
||||
dibattito pubblico sull'importanza del software libero nell'amministrazione
|
||||
locale, a cui parteciperà per FSFE Lele Rozza. L'appuntamento è per
|
||||
venerdì 17 dicembre dalle 10.00 alle 14.00, presso il Caffè La Linea, in
|
||||
Piazza Re Enzo 1/4 a Bologna.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -8,11 +8,13 @@
|
||||
"Condividi la conoscenza: nuovi Commons, nuovi diritti" - Convegno a Milano
|
||||
</title>
|
||||
<body>
|
||||
<p>
|
||||
A partire dalle 9.30, presso lo IULM, in Via Carlo Bo 1, a Milano.
|
||||
FSFE consegnerà un riconoscimento pubblico a personaggio che si è distinto,
|
||||
nel corso dell'anno, per il suo impegno alla realizzazione di una "free
|
||||
society" e delle libertà individuali rispettando e promuovendo principi di
|
||||
democrazia, trasparenza, pluralità con coerenza e costanza.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.quintostato.it/archives/000995.html</page>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2005-01-14" end="2005-01-14">
|
||||
<title>Free Software - challenges in the digital age, Dublin, Ireland</title>
|
||||
<body>
|
||||
<p>
|
||||
On Friday, Jan 14th 2005 at 19:30, Georg Greve will hold a talk
|
||||
about the challenges of Free Software in the digital age and
|
||||
about the work of the Free Software Foundation Europe. The talk
|
||||
will be held in Theatre Q, Arts Block on the UCD campus on
|
||||
January 14th and will be open to the public.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2005-01-14" end="2005-01-14">
|
||||
<title>Software Libero - sfide nell'era digitale, Dublino, Irlanda</title>
|
||||
<body>
|
||||
<p>
|
||||
Venerdì 14 gennaio 2005 alle 19:30, Georg Greve terrà un intervento
|
||||
sulle sfide del software libero nell'era digitale e sul lavoro della
|
||||
Free Software Foundation Europe. La conferenza, aperta al pubblico,
|
||||
si terrà nel Theatre Q, Arts Block del UCD campus.
|
||||
</p>
|
||||
</body>
|
||||
</event>
|
||||
</eventset>
|
||||
|
@ -6,12 +6,14 @@
|
||||
<event start="2005-01-26" end="2005-01-31">
|
||||
<title>World Social Forum, Porto Alegre, Brazil</title>
|
||||
<body>
|
||||
<p>
|
||||
FSFE is going to participate in the World Social Forum from 26th to
|
||||
31st January 2005 in Porto Alegre, Brazil. On 26th January, Georg
|
||||
Greve will participate at an event with the topic "Digital
|
||||
Revolution: Knowledge Sharing x Impresionment on Information
|
||||
Society". The event will take place in Room A105 from 15:30 am to
|
||||
18:30 am.
|
||||
</p>
|
||||
</body>
|
||||
<link>/events/2005/wsf-brazil/wsf-brazil.html</link>
|
||||
</event>
|
||||
|
@ -6,12 +6,14 @@
|
||||
<event start="2005-01-26" end="2005-01-31">
|
||||
<title>World Social Forum, Porto Alegre, Brazil</title>
|
||||
<body>
|
||||
<p>
|
||||
FSFE parteciperà al World Social Forum che si terrà a Porto Alegre,
|
||||
in Brasile dal ventisei al trentun gennaio 2005. Il 26 gennaio Georg
|
||||
Greve parteciperà ad un evento dal titolo "Digital
|
||||
Revolution: Knowledge Sharing x Impresionment on Information
|
||||
Society". L'evento avrà luogo nella stanza A105 dalle 15:30 alle
|
||||
18:30.
|
||||
</p>
|
||||
</body>
|
||||
<link>/events/2005/wsf-brazil/wsf-brazil.html</link>
|
||||
</event>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2005-02-17" end="2005-02-25">
|
||||
<title>World Summit on the Information Society -- PrepCom-2, Geneva, Switzerland</title>
|
||||
<body>
|
||||
<p>
|
||||
FSFE is planning to participate in the Preparatory Committee (2. PrepCom)
|
||||
meeting of the second phase of the World Summit on the Information
|
||||
Society (WSIS). Georg Greve intends to be in Geneva, Switzerland from 17.
|
||||
- 25. February 2005.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.itu.int/wsis/</page>
|
||||
</event>
|
||||
|
@ -6,9 +6,11 @@
|
||||
<event start="2005-02-17" end="2005-02-25">
|
||||
<title>World Summit on the Information Society -- PrepCom-2, Ginevra, Svizzera</title>
|
||||
<body>
|
||||
<p>
|
||||
La FSFE si sta preparando a partecipare alla riunione del Comitato Preparatorio (2. PrepCom)
|
||||
della seconda fase del "World Summit on the Information Society" (WSIS). Georg Greve sarà
|
||||
a Ginevra dal 17 al 25 Febbraio 2005.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.itu.int/wsis/</page>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2005-02-17" end="2005-02-19">
|
||||
<title>LOTS, University of Bern, Switzerland</title>
|
||||
<body>
|
||||
<p>
|
||||
On Friday, 18th February, Georg Greve will give a talk at LOTS at
|
||||
the University of Bern, Switzerland. In his lecture, he will
|
||||
talk about the origins and the advantages of Free Software.
|
||||
Gratis admission for people who have registered until 31th of
|
||||
January, else you have to pay CHF 10.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.lots.ch</page>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2005-02-17" end="2005-02-19">
|
||||
<title>LOTS, Università di Berna, Svizzera</title>
|
||||
<body>
|
||||
<p>
|
||||
Venerdì 18 febbraio, Georg Greve terrà un intervento al LOTS,
|
||||
all'Università di Berna, Svizzera. Durante la sua lezione
|
||||
parlerà delle origini e dei vantaggi del software libero.
|
||||
L'entrata è libera per chi si sarà registrato entro il 31
|
||||
gennaio, altrimenti costa 10F.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.lots.ch</page>
|
||||
</event>
|
||||
|
@ -8,11 +8,13 @@
|
||||
Radiolinux: software libero e digital divide
|
||||
</title>
|
||||
<body>
|
||||
<p>
|
||||
Antonella Beccaria, coordinatrice dell'ufficio stampa della sezione
|
||||
italiana di FSFE, interverrà alla trasmissione radiofonica Radiolinux,
|
||||
ascoltabile a partire dalle 21.00 sulle frequenze di MEP Radio
|
||||
Organizzazione o in streaming via internet e successivamente disponibile
|
||||
sul sito della trasmissione: http://www.radiolinux.info.
|
||||
</p>
|
||||
</body>
|
||||
<link>http://www.radiolinux.info/</link>
|
||||
</event>
|
||||
|
@ -6,10 +6,12 @@
|
||||
<event start="2005-02-26" end="2005-02-27">
|
||||
<title>FOSDEM 2005, Brussels, Belgium</title>
|
||||
<body>
|
||||
<p>
|
||||
Between the 26th and 27th of February, this years installment
|
||||
of FOSDEM will take place in Brussels. The FSF Europe will
|
||||
be represented by several members and volunteers, and will
|
||||
also sell t-shirts and other merchandise.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.fosdem.org</page>
|
||||
</event>
|
||||
|
@ -6,9 +6,11 @@
|
||||
<event start="2005-02-26" end="2005-02-27">
|
||||
<title>FOSDEM 2005, Bruxelles, Belgio</title>
|
||||
<body>
|
||||
<p>
|
||||
Tra il 26 e il 27 febbraio a Bruxelles si terrà l'edizione di
|
||||
quest'anno del FOSDEM. La FSF Europe sarà presente con vari
|
||||
membri, volontari, magliette e altro merchandising.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://www.fosdem.org</page>
|
||||
</event>
|
||||
|
@ -8,12 +8,14 @@
|
||||
Conferenza stampa sui lavori della commissione e-content
|
||||
</title>
|
||||
<body>
|
||||
<p>
|
||||
L'Associazione Software Libero, la sezione italiana di Free Software
|
||||
Foundation Europe e l'Italian Linux Society
|
||||
indicono per martedi 1 marzo a Bologna una conferenza stampa durante la
|
||||
quale verrà presentata una proposta unitaria di emendamento del testo
|
||||
elaborato dalla "Commissione interministeriale sui contenuti digitali
|
||||
nell'era di Internet", presieduta Paolo Vigevano.
|
||||
</p>
|
||||
</body>
|
||||
<link>http://mail.fsfeurope.org/pipermail/press-release-it/2005q1/000080.html</link>
|
||||
</event>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2005-03-02" end="2005-03-04">
|
||||
<title>Free Software Workshop, Damascus, Syria</title>
|
||||
<body>
|
||||
<p>
|
||||
Between the 2nd and 4th of March, Karin Kosina and Jonas Öberg
|
||||
will give talks at the Free and Open Source Software Workshop in
|
||||
Damascus. Karin will talk about the economic aspects of Free
|
||||
Software and Jonas will talk about formal education on Free
|
||||
Software on a university level.
|
||||
</p>
|
||||
</body>
|
||||
|
||||
<tags>
|
||||
|
@ -6,12 +6,14 @@
|
||||
<event start="2005-03-02" end="2005-03-04">
|
||||
<title>Workshop sul software libero a Damasco, Siria</title>
|
||||
<body>
|
||||
<p>
|
||||
Tra il 2 e il 4 marzo, Karin Kosina e Jonas Öberg terranno alcuni
|
||||
interventi al "Free and Open Source Software Workshop" di Damasco.
|
||||
Karin parlerà degli aspetti economici del software libero e Jonas
|
||||
parlerà dell'educazione al software libero a livello
|
||||
universitario.
|
||||
|
||||
</p>
|
||||
</body>
|
||||
|
||||
<tags>
|
||||
|
@ -6,11 +6,13 @@
|
||||
<event start="2005-03-04" end="2005-03-05">
|
||||
<title>Conference on Free Software, Istanbul, Turkey</title>
|
||||
<body>
|
||||
<p>
|
||||
A conference on Free Software will be held at Istanbul Bilgi
|
||||
University on March 4th and 5th 2005. The focus will be on the opportunities
|
||||
Free Software offers for the Turkish economy. On March 4th, Georg Greve will
|
||||
deliver a speech on commercial, practical and sociological aspects of Free
|
||||
Software and the GNU Project.
|
||||
</p>
|
||||
</body>
|
||||
<page>http://open.bilgi.edu.tr/freedays</page>
|
||||
</event>
|
||||
|