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
Nico Rikken fa11becddb
continuous-integration/drone/pr Build is passing Details
chore: convert root links to relative
3 years ago
..
2001 fix: convert mailman links to lists.fsfe.org (#1425) 3 years ago
2002 chore: convert root links to relative 3 years ago
2003 fix: convert mailman links to lists.fsfe.org (#1425) 3 years ago
2004 chore: convert root links to relative 3 years ago
2005 fix: convert mailman links to lists.fsfe.org (#1425) 3 years ago
2006 fix: convert mailman links to lists.fsfe.org (#1425) 3 years ago
2007 fix: convert mailman links to lists.fsfe.org (#1425) 3 years ago
2008 chore: convert root links to relative 3 years ago
2009 chore: convert root links to relative 3 years ago
2010 chore: convert root links to relative 3 years ago
2011 chore: convert root links to relative 3 years ago
2012 chore: convert root links to relative 3 years ago
2013 chore: replace absolute links by relative ones 3 years ago
2014 chore: replace absolute links by relative ones 3 years ago
2015 chore: convert root links to relative 3 years ago
2016 chore: replace absolute links by relative ones 3 years ago
2017 fix: convert absolute links to relative links 3 years ago
2018 Reformat and occasionally fix <html> tag 3 years ago
2019 Reformat and occasionally fix <html> tag 3 years ago
2020 Italian translation for BEREC news item (#1423) 3 years ago
nl chore: convert root links to relative 3 years ago
podcast Reformat and occasionally fix <html> tag 3 years ago
Makefile Use default.xsl as the common XSL for all news and events lists 3 years ago
README Remove newsteaser attribute 3 years ago
archive-template.en.xhtml Refactor "<static-element>" system into "<mdoule>" 3 years ago
default.xsl Update news and event feeds 3 years ago
fsfe-news.png
news.ca.xhtml chore: replace absolute links by relative ones 3 years ago
news.cs.xhtml chore: replace absolute links by relative ones 3 years ago
news.da.xhtml chore: replace absolute links by relative ones 3 years ago
news.de.xhtml Refactor "<static-element>" system into "<mdoule>" 3 years ago
news.el.xhtml Remove timestamp at the bottom of each page 3 years ago
news.en.xhtml Refactor "<static-element>" system into "<mdoule>" 3 years ago
news.es.xhtml fix: convert mailman links to lists.fsfe.org (#1425) 3 years ago
news.et.xhtml chore: replace absolute links by relative ones 3 years ago
news.fi.xhtml chore: replace absolute links by relative ones 3 years ago
news.fr.xhtml Remove timestamp at the bottom of each page 3 years ago
news.hr.xhtml chore: replace absolute links by relative ones 3 years ago
news.hu.xhtml Remove timestamp at the bottom of each page 3 years ago
news.nb.xhtml chore: replace absolute links by relative ones 3 years ago
news.nl.xhtml Refactor "<static-element>" system into "<mdoule>" 3 years ago
news.pt.xhtml fix: convert mailman links to lists.fsfe.org (#1425) 3 years ago
news.ro.xhtml Remove timestamp at the bottom of each page 3 years ago
news.rss.xsl Add some fixes for RSS stylesheets 3 years ago
news.ru.xhtml Remove timestamp at the bottom of each page 3 years ago
news.sl.xhtml Remove timestamp at the bottom of each page 3 years ago
news.sources Refactor "<static-element>" system into "<mdoule>" 3 years ago
news.sq.xhtml Remove timestamp at the bottom of each page 3 years ago
news.sr.xhtml Reformat and occasionally fix <html> tag 3 years ago
news.sv.xhtml chore: replace absolute links by relative ones 3 years ago
newsletter.de.xhtml Remove timestamp at the bottom of each page 3 years ago
newsletter.en.xhtml Remove timestamp at the bottom of each page 3 years ago
newsletter.fr.xhtml Remove timestamp at the bottom of each page 3 years ago
newsletter.it.xhtml Remove timestamp at the bottom of each page 3 years ago
newsletter.nl.xhtml Remove timestamp at the bottom of each page 3 years ago
newsletter.sources Remove "implicit trailing *" feature for .sources 4 years ago
newsletter.xsl Clean up formatting of XSL files, no code change 3 years ago
podcast-opus.en.xhtml Remove timestamp at the bottom of each page 3 years ago
podcast-opus.rss.xsl Clean up formatting of XSL files, no code change 3 years ago
podcast-opus.sources Introduce Software Freedom Podcast: episodes as HTML and RSS (#1065) 4 years ago
podcast.en.xhtml Refactor "<static-element>" system into "<mdoule>" 3 years ago
podcast.nl.xhtml Refactor "<static-element>" system into "<mdoule>" 3 years ago
podcast.rss.xsl Remove timestamp at the bottom of each page 3 years ago
podcast.sources Refactor "<static-element>" system into "<mdoule>" 3 years ago
xhtml2xml.xsl Update news and event feeds 3 years 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).