fsfe-website/news
Ana Galan 93eaa6c6a3
continuous-integration/drone/pr Build is passing Details
translation NL article 5 reasons
2022-12-09 10:17:27 +01:00
..
2001
2002 replace email addresses with mailto 2022-04-28 14:48:11 +02:00
2003 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2004 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2005 move internship page 2021-07-01 15:20:34 +02:00
2006
2007
2008 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2009 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2010 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2011 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2012 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2013 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2014 fix parser error 2022-11-05 17:19:03 +01:00
2015 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2016 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2017 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2018 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2019 nieuws --> news 2022-11-07 11:05:41 +00:00
2020 Exclud old naming: RM absolute links to fsfe.org 2022-11-02 09:23:20 +00:00
2021 Update 'news/2021/news-20211015-01.nl.xhtml' 2022-11-07 11:40:15 +00:00
2022 translation NL article 5 reasons 2022-12-09 10:17:27 +01:00
nl Newsletter December 2022 2022-12-08 16:42:26 +01:00
podcast SPF 16 - Italian translation 2022-12-01 15:19:04 +01:00
Makefile use printf instead of echo 2022-03-18 13:06:31 +01:00
README
archive-template.en.xhtml generalise module wrapper class 2022-04-06 13:27:29 +02:00
default.xsl after every 5 news, show the subscribe/supporter banner 2022-04-06 13:27:29 +02:00
fsfe-news.png
news.ca.xhtml
news.cs.xhtml
news.da.xhtml
news.de.xhtml point to most recent archived year 2022-02-28 12:55:48 +01:00
news.el.xhtml
news.en.xhtml generalise module wrapper class 2022-04-06 13:27:29 +02:00
news.es.xhtml
news.et.xhtml
news.fi.xhtml
news.fr.xhtml
news.hr.xhtml
news.hu.xhtml
news.it.xhtml Updating news index Italian page to version 4 2022-05-10 06:56:20 +02:00
news.nb.xhtml
news.nl.xhtml NL translation, update of news page 2022-05-05 10:34:50 +02:00
news.pt.xhtml
news.ro.xhtml
news.rss.xsl
news.ru.xhtml
news.sl.xhtml
news.sources
news.sq.xhtml
news.sr.xhtml
news.sv.xhtml
newsletter.de.xhtml replace meta-description element with separate element 2021-06-23 15:32:30 +02:00
newsletter.en.xhtml replace meta-description element with separate element 2021-06-23 15:32:30 +02:00
newsletter.es.xhtml ES Typos and new ES pages (#2087) 2021-09-01 11:47:08 +00:00
newsletter.fr.xhtml replace meta-description element with separate element 2021-06-23 15:32:30 +02:00
newsletter.it.xhtml replace meta-description element with separate element 2021-06-23 15:32:30 +02:00
newsletter.nl.xhtml replace meta-description element with separate element 2021-06-23 15:32:30 +02:00
newsletter.sources
newsletter.xsl
podcast-opus.en.xhtml replace meta-description element with separate element 2021-06-23 15:32:30 +02:00
podcast-opus.rss.xsl
podcast-opus.sources
podcast.en.xhtml adapt new /news style for podcast 2022-04-06 13:27:29 +02:00
podcast.nl.xhtml NL translation of update of Software Freedom Podcast 2022-11-27 20:18:39 +01:00
podcast.rss.xsl
podcast.sources
xhtml2xml.xsl add alt attribute for preview images in XML version of news items 2022-03-09 16:15:07 +01:00

README

Adding news
===========

There are two ways to add news to the web pages:

**1**
Add an xml file with the following structure in the appropriate
directory.

<?xml version="1.0" encoding="UTF-8"?> (you can choose an other encoding)

<newsset>
  <news date="date">
    <title>Text</title>
    <body>
      Text
    </body>
    <link>link</link>
  </news>
</newsset>


Put this file in the directory /news/this_year/
There's a naming convention for these xml files:

  'news-'newsdate'-'counter'.'language_part'.xml'

(eg: the English version of the first news file on the 4th November of
2008 should be named news-20081104-01.en.xml and the file should go in
the /news/2008/ directory)

**2**
Add an xhtml file in the appropriate directory.

Write an ordinary xhtml file. Add the newsdate="date" attribute in the
xhtml tag. The first <p> element will be copied into the xml file.

(eg:

<?xml versio ...

<html newsdate="2008-10-07" link="link" >  (link attribute is optional)

<head>
	<title>This is the title of the news item</title>
</head>

<body>

<p>This is the paragraph that will be copied into the xml file. <p>

<p>This is a paragraph that will not be copied.</p>

....

</html>

The link in the generated xml file will default to the original
page. If you want it to link to another page then you can use the
link attribute in the html tag.


You can freely choose a name for this file and you should put it in the
/news/this_year/ directory or in the directory of the project it
belongs to (/projects/project_name/), so you can keep all pages of one
project together.

The xml files for these xhtml files are generated automatically.  The
xml file will exist as long as the xhtml file exists. If you want to
change the xhtml file but keep the xml file unchanged, just remove the
newsdate attribute from the xhtml file. (eg: this can be a way to
announce a new project, it will generate an xml file that links to the
index page of the project, and it leaves the option open to change the
page afterwards and keep the original announcement).