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
polina 1431f8f8f0 adding french nl translation
svn path=/trunk/; revision=33256
7 years ago
..
2001
2002
2003
2004
2005 Typo fixing 9 years ago
2006
2007
2008
2009 Adding policy tag for policy section overhaul 8 years ago
2010 Fixing news tags 8 years ago
2011 Adding policy tag for policy section overhaul 8 years ago
2012 Update 7 years ago
2013 Update 7 years ago
2014 Update 7 years ago
2015 micro modifications 7 years ago
2016 election results going live 7 years ago
generated_xml
nl adding french nl translation 7 years ago
.symlinks
Makefile merge: do not update genrated_xml files unnecessarily 8 years ago
README
fsfe-news.png
legal-news.el.xhtml
legal-news.en.xhtml
legal-news.sources updated sources format to work with tagging 8 years ago
legal-news.sq.xhtml Clearing translations of 'website' and similar from 'web' word, as 'sajt' in Albanian does not have any other meaning than as a 'web' one 9 years ago
legal-news.xsl externalise gettext functions, remove unnessesary import rules 8 years ago
news.ca.xhtml
news.cs.xhtml
news.da.xhtml
news.de.xhtml
news.el.xhtml update news.el 8 years ago
news.en.xhtml
news.es.xhtml
news.et.xhtml
news.fi.xhtml Update various Finnish pages to match the latest en changes. 7 years ago
news.fr.xhtml
news.hr.xhtml
news.hu.xhtml
news.it.xhtml
news.nb.xhtml
news.nl.xhtml Dutch translation of the update of "News" 8 years ago
news.pt.xhtml
news.ro.xhtml
news.rss.xsl reintegrate cleanup work from testing branch 9 years ago
news.ru.xhtml
news.sl.xhtml
news.sources updated sources format to work with tagging 8 years ago
news.sq.xhtml Fixing a white space 8 years ago
news.sr.xhtml improving mail-text that is send 8 years ago
news.sv.xhtml
news.xsl merge together difference between test and trunk 9 years ago
newsletter.ca.xhtml
newsletter.cs.xhtml
newsletter.da.xhtml
newsletter.de.xhtml
newsletter.el.xhtml
newsletter.en.xhtml
newsletter.es.xhtml
newsletter.fi.xhtml
newsletter.fr.xhtml
newsletter.hr.xhtml
newsletter.hu.xhtml
newsletter.it.xhtml
newsletter.nb.xhtml
newsletter.nl.xhtml
newsletter.pt.xhtml
newsletter.ru.xhtml
newsletter.sources updated sources format to work with tagging 8 years ago
newsletter.sq.xhtml Update 8 years ago
newsletter.sv.xhtml
newsletter.xsl externalise gettext functions, remove unnessesary import rules 8 years ago
xhtml2xml.xsl merge together difference between test and trunk 9 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>Tekst</title>
    <body>
      Tekst
    </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 paragraph that has to be copied into the xml file
should be marked with the newsteaser="yes" attribute.

(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 newsteaser="yes">this is the paragraph that will be copied into the
xml file. <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).