You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fsfe-website/news
fani db33a1d238
continuous-integration/drone/pr Build is passing Details
February Newsletter
4 months ago
..
2001 remove fixed language from links 3 years ago
2002 replace email addresses with mailto 1 year ago
2003 moved links from /associates to /about/associates 5 months ago
2004 Exclud old naming: RM absolute links to fsfe.org 7 months ago
2005 moved links from /associates to /about/associates 5 months ago
2006 rename all news files missing -01/-02 extension, and replace links 3 years ago
2007 moved links from /associates to /about/associates 5 months ago
2008 Exclud old naming: RM absolute links to fsfe.org 7 months ago
2009 updated links from about/team.html to about/people/index.html 5 months ago
2010 updated links from about/team.html to about/people/index.html 5 months ago
2011 updated links from about/team.html to about/people/index.html 5 months ago
2012 updated links from about/team.html to about/people/index.html 5 months ago
2013 moved links from /associates to /about/associates 5 months ago
2014 fixed links in old news items 5 months ago
2015 Exclud old naming: RM absolute links to fsfe.org 7 months ago
2016 adopted links to the new Summit 2016 pages 5 months ago
2017 use the image from the 33c3 from pics.fsfe.org 5 months ago
2018 replaced links to about/team#interns with about/people/index.html#interns 5 months ago
2019 updated links from about/team.html to about/people/index.html 5 months ago
2020 adopt links pointing to the project-calls 4 months ago
2021 adopt links pointing to the project-calls 4 months ago
2022 News items: updated and fixed mistakes (#3126) 5 months ago
2023 Fixing typo in news-20230126-01.it.xhtml 4 months ago
nl February Newsletter 4 months ago
podcast Added lastest news Italian translation 5 months ago
Makefile use printf instead of echo 1 year ago
README
archive-template.en.xhtml generalise module wrapper class 1 year ago
default.xsl after every 5 news, show the subscribe/supporter banner 1 year ago
fsfe-news.png
news.ca.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.cs.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.da.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.de.xhtml (2023) Update the Archive link for News and Events 5 months ago
news.el.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.en.xhtml (2023) Update the Archive link for News and Events 5 months ago
news.es.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.et.xhtml
news.fi.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.fr.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.hr.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.hu.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.it.xhtml (2023) Update the Archive link for News and Events 5 months ago
news.nb.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.nl.xhtml (2023) Update the Archive link for News and Events 5 months ago
news.pt.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.ro.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.rss.xsl
news.ru.xhtml
news.sl.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.sources
news.sq.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.sr.xhtml
news.sv.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
newsletter.de.xhtml replace meta-description element with separate element 2 years ago
newsletter.en.xhtml replace meta-description element with separate element 2 years ago
newsletter.es.xhtml ES Typos and new ES pages (#2087) 2 years ago
newsletter.fr.xhtml replace meta-description element with separate element 2 years ago
newsletter.it.xhtml replace meta-description element with separate element 2 years ago
newsletter.nl.xhtml replace meta-description element with separate element 2 years ago
newsletter.sources
newsletter.xsl
podcast-opus.en.xhtml replace meta-description element with separate element 2 years ago
podcast-opus.rss.xsl
podcast-opus.sources
podcast.en.xhtml adapt new /news style for podcast 1 year ago
podcast.nl.xhtml NL translation of update of Software Freedom Podcast 6 months ago
podcast.rss.xsl
podcast.sources
xhtml2xml.xsl add alt attribute for preview images in XML version of news items 1 year ago

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).