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
eal b823a130cb
the build was successful Details
updloading news item fundraising
5 years ago
..
2001 update urls to match correct address of mailman/pipermail 7 years ago
2002
2003
2004
2005
2006
2007
2008
2009 changed full qualified links to relative links for fsfeurope.org (redirecting to fsfe.org) and fsfe.org 6 years ago
2010 changed hyperlink from members.*.html to team.html 6 years ago
2011
2012 Lower-casing the names of days and months; typo fixing; cosmetic changes; consistency changes 5 years ago
2013 Lower-casing the names of days and months; typo fixing; cosmetic changes; consistency changes 5 years ago
2014 Lower-casing the names of days and months; typo fixing; cosmetic changes; consistency changes 5 years ago
2015 fix wrong date (#475) 5 years ago
2016 Merge branch 'sq-translation' of besnik/fsfe-website into master 5 years ago
2017 unify PMPC tags 5 years ago
2018 updloading news item fundraising 5 years ago
generated_xml
nl fixing url 5 years ago
.symlinks
Makefile restructured premake 6 years ago
README
fsfe-news.png
legal-news.el.xhtml
legal-news.en.xhtml
legal-news.sources
legal-news.sq.xhtml
legal-news.xsl
news.ca.xhtml adapted to new news archive style 5 years ago
news.cs.xhtml adapted to new news archive style 5 years ago
news.da.xhtml adapted to new news archive style 5 years ago
news.de.xhtml adapted to new news archive style 5 years ago
news.el.xhtml adapted to new news archive style 5 years ago
news.en.xhtml changed the style of the news archive and added author, tags and new sidebar style 5 years ago
news.es.xhtml adapted to new news archive style 5 years ago
news.et.xhtml adapted to new news archive style 5 years ago
news.fi.xhtml adapted to new news archive style 5 years ago
news.fr.xhtml adapted to new news archive style 5 years ago
news.hr.xhtml adapted to new news archive style 5 years ago
news.hu.xhtml adapted to new news archive style 5 years ago
news.it.xhtml adapted to new news archive style 5 years ago
news.nb.xhtml adapted to new news archive style 5 years ago
news.nl.xhtml adapted to new news archive style 5 years ago
news.pt.xhtml adapted to new news archive style 5 years ago
news.ro.xhtml adapted to new news archive style 5 years ago
news.rss.xsl
news.ru.xhtml adapted to new news archive style 5 years ago
news.sl.xhtml adapted to new news archive style 5 years ago
news.sources
news.sq.xhtml adapted to new news archive style 5 years ago
news.sr.xhtml adapted to new news archive style 5 years ago
news.sv.xhtml adapted to new news archive style 5 years ago
news.xsl changed the style of the news archive and added author, tags and new sidebar style 5 years ago
newsletter.ca.xhtml
newsletter.cs.xhtml
newsletter.da.xhtml
newsletter.de.xhtml seems up to date 7 years ago
newsletter.el.xhtml
newsletter.en.xhtml Clarify where the data is going when subscribing to mailing lists from fsfe.org 5 years ago
newsletter.es.xhtml
newsletter.fi.xhtml
newsletter.fr.xhtml Clarify where the data is going when subscribing to mailing lists from fsfe.org 5 years ago
newsletter.hr.xhtml
newsletter.hu.xhtml
newsletter.it.xhtml
newsletter.nb.xhtml
newsletter.nl.xhtml Dutch translation of the update, including translated meta info and sign up possibility 7 years ago
newsletter.pt.xhtml
newsletter.ru.xhtml
newsletter.sources
newsletter.sq.xhtml
newsletter.sv.xhtml
newsletter.xsl
xhtml2xml.xsl changed the style of the news archive and added author, tags and new sidebar style 5 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).