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
Max Mehl 2637ffb855
add alt attribute for preview images in XML version of news items
1 year ago
..
2001 remove fixed language from links 3 years ago
2002 remove fixed language from links 3 years ago
2003 back reference footnotes #1808 (#1809) 2 years ago
2004 remove fixed language from links 3 years ago
2005 move internship page 2 years ago
2006 rename all news files missing -01/-02 extension, and replace links 3 years ago
2007 remove fixed language from links 3 years ago
2008 replace old links: FTF 2 years ago
2009 replace old links: council 2 years ago
2010 replace old links: nanda 2 years ago
2011 remove outdated docu pages, newer ones are in the wiki 1 year ago
2012 move internship page 2 years ago
2013 Clean up ILoveFS folder (#1844) 2 years ago
2014 adopt to refactored quotes CSS 2 years ago
2015 replace old links: fla-bacula 2 years ago
2016 adopt to refactored quotes CSS 2 years ago
2017 fixing link in old news item 1 year ago
2018 A few typos (#2088) 2 years ago
2019 replace first batch peertube.social links with those from media.fsfe.org 2 years ago
2020 Replace peertube.social with media.fsfe.org 2 years ago
2021 replace image to use correct aspect ratio 1 year ago
2022 Merge pull request 'Updating Italian translation of Upcycling Android' (#2469) from lucabon/fsfe-website:upcycling_IT2 into master 1 year ago
nl Merge pull request 'Adding missing supporter link to nl-202203' (#2491) from lucabon/fsfe-website:add_supporter_link_to_nl202203 into master 1 year ago
podcast add missing space 1 year 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 Remove "FSFE" when used as prefix or suffix 3 years ago
default.xsl Update news and event feeds 3 years 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 point to most recent archived year 1 year ago
news.el.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.en.xhtml point to most recent archived year 1 year ago
news.es.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.et.xhtml chore: replace absolute links by relative ones 3 years ago
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 point to most recent archived year 1 year ago
news.nb.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.nl.xhtml point to most recent archived year 1 year 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 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 "FSFE" when used as prefix or suffix 3 years ago
news.sources Refactor "<static-element>" system into "<mdoule>" 3 years ago
news.sq.xhtml Remove "FSFE" when used as prefix or suffix 3 years ago
news.sr.xhtml Reformat and occasionally fix <html> tag 3 years ago
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 Clean up formatting of XSL files, no code change 3 years ago
podcast-opus.en.xhtml replace meta-description element with separate element 2 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 replace meta-description element with separate element 2 years ago
podcast.nl.xhtml replace meta-description element with separate element 2 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 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).