fsfe-website/news
Max Mehl 1a04f1b81f publish PR
svn path=/trunk/; revision=33172
2016-04-11 06:11:34 +00:00
..
2001
2002
2003
2004
2005 Typo fixing 2014-11-09 16:31:54 +00:00
2006
2007
2008
2009 Adding policy tag for policy section overhaul 2015-05-13 08:28:57 +00:00
2010 Fixing news tags 2015-11-23 10:24:06 +00:00
2011 Adding policy tag for policy section overhaul 2015-05-12 13:36:22 +00:00
2012 Update 2016-01-22 22:00:46 +00:00
2013 Update 2016-01-22 22:00:46 +00:00
2014 Update 2016-01-22 22:00:46 +00:00
2015 micro modifications 2016-03-14 20:05:39 +00:00
2016 publish PR 2016-04-11 06:11:34 +00:00
generated_xml
nl mini modif suite a typo trouvées par Stéphane 2016-04-02 17:58:55 +00:00
.symlinks
Makefile merge: do not update genrated_xml files unnecessarily 2015-10-01 15:33:30 +00:00
README
fsfe-news.png
legal-news.el.xhtml
legal-news.en.xhtml
legal-news.sources updated sources format to work with tagging 2015-09-17 15:30:44 +00:00
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 2014-12-07 23:23:49 +00:00
legal-news.xsl externalise gettext functions, remove unnessesary import rules 2015-03-26 16:48:20 +00:00
news.ca.xhtml
news.cs.xhtml
news.da.xhtml
news.de.xhtml
news.el.xhtml update news.el 2015-12-16 21:41:38 +00:00
news.en.xhtml
news.es.xhtml
news.et.xhtml
news.fi.xhtml Update various Finnish pages to match the latest en changes. 2016-03-18 12:47:21 +00:00
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" 2015-10-31 09:30:57 +00:00
news.pt.xhtml
news.ro.xhtml
news.rss.xsl reintegrate cleanup work from testing branch 2014-07-21 13:57:47 +00:00
news.ru.xhtml
news.sl.xhtml
news.sources updated sources format to work with tagging 2015-09-17 15:30:44 +00:00
news.sq.xhtml Fixing a white space 2015-10-11 19:11:42 +00:00
news.sr.xhtml improving mail-text that is send 2015-10-05 15:14:03 +00:00
news.sv.xhtml
news.xsl merge together difference between test and trunk 2014-09-15 11:23:33 +00:00
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 2015-09-17 15:30:44 +00:00
newsletter.sq.xhtml Update 2015-06-11 09:04:37 +00:00
newsletter.sv.xhtml
newsletter.xsl externalise gettext functions, remove unnessesary import rules 2015-03-26 16:48:20 +00:00
xhtml2xml.xsl merge together difference between test and trunk 2014-09-15 11:23:33 +00: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>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).