You can not 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
Reinhard Müller 402dca0d63
Reset to my version of the file which appearantly was overwritten by an older
14 years ago
..
2001 Fixed UTF-8 encoding 14 years ago
2002 Removed outdated contact information. 16 years ago
2003 Enconding matters definitely solved ! (Well I hope so) 19 years ago
2004 updated 14 years ago
2005 Initial Spanish translation 18 years ago
2006 Bacula PR (Catalan) 17 years ago
2007 Committing in . 14 years ago
2008 Committing in . 14 years ago
2009 Reset to my version of the file which appearantly was overwritten by an older 14 years ago
generated_xml Added .cvsignore. 15 years ago
nl typo 14 years ago
.cvsignore Corrected bug on the detection of translations system that wouldn't recognize a new translation. Added *.lang to all .cvsignore files. 21 years ago
.symlinks Added back an article hat has a lot of external links. 17 years ago
Makefile Another fix to link generation. 15 years ago
README Info about adding news 15 years ago
date-time.xsl I hate XSLT 1.0. 14 years ago
fsfe-news.png Changed RSS generation to be as standards conformant as possible. 15 years ago
news.ca.xhtml Updated 15 years ago
news.cs.xhtml Random series of Czech translation 15 years ago
news.da.xhtml Sync with English version; converted to UTF-8 14 years ago
news.de.xhtml updated to English orginal. 15 years ago
news.el.xhtml Committing in . 15 years ago
news.en.xhtml corrected grammar on news page header 15 years ago
news.es.xhtml Updated 15 years ago
news.et.xhtml Oops - I messed up the encoding. 15 years ago
news.fi.xhtml Add Finnish translation of News and Newsletter pages. 15 years ago
news.fr.xhtml *** empty log message *** 15 years ago
news.hr.xhtml 2009-09-02 Martin Gollowitzer <gollo@fsfe.org> 14 years ago
news.hu.xhtml Added some more Hungarian translations. 18 years ago
news.it.xhtml Re-committed for grammar correction in the English text 15 years ago
news.nb.xhtml Renamed the largest bunch of no → nb. 14 years ago
news.nl.xhtml Just touched it. 15 years ago
news.ro.xhtml corrected the project.ro , and move the translator tag out of the body tag 18 years ago
news.rss.xsl rss feed should validate now on feedvalidator.org 14 years ago
news.sl.xhtml Updated/added Slowenian translation. Thanks to Luka Goltnik. 15 years ago
news.sources Added generated_xml directory 15 years ago
news.sq.xhtml Added lots of Albanian translations, thanks to Besnik Bleta. 18 years ago
news.sv.xhtml Another typo 15 years ago
news.xsl Attempt to fix news listing without newsletters. 17 years ago
newsletter.ca.xhtml Added navigation bar 15 years ago
newsletter.cs.xhtml typos fixed 15 years ago
newsletter.da.xhtml Sync with original 15 years ago
newsletter.de.xhtml added submenu, so we can remove the subitem in the main navigation. 15 years ago
newsletter.el.xhtml Committing in . 15 years ago
newsletter.en.xhtml added submenu, so we can remove the subitem in the main navigation. 15 years ago
newsletter.es.xhtml Added navigation menu 15 years ago
newsletter.fi.xhtml Add Finnish translation of News and Newsletter pages. 15 years ago
newsletter.fr.xhtml Updated translation (to newsletter.en 1.3 ; news.en 1.10) 15 years ago
newsletter.hr.xhtml 2009-09-02 Martin Gollowitzer <gollo@fsfe.org> 14 years ago
newsletter.hu.xhtml Added some more Hungarian translations. 18 years ago
newsletter.it.xhtml Updated 15 years ago
newsletter.nb.xhtml Renamed the largest bunch of no → nb. 14 years ago
newsletter.nl.xhtml Added menu 15 years ago
newsletter.sources Added line to look for newsletter xml files in generated_xml 15 years ago
newsletter.sv.xhtml Updatated swedish translation 15 years ago
newsletter.xsl Fixed xsl. 19 years ago
xhtml2xml.xsl file can now handle newsletter.xhtml files 15 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).