fsfe-website/pdfreaders
paul 8633735bdf fix link
svn path=/branches/test/; revision=29176
2014-09-06 03:05:37 +00:00
..
graphics upload graphics, update style for graphics page 2014-09-06 02:46:37 +00:00
logos refined data structures for readers, added lots of examples for testing 2014-06-12 15:29:48 +00:00
readers style experiments, renamed xml tags for readers 2014-08-28 15:01:50 +00:00
.symlinks forked pdrfreaders sub page from news section (due to some technical similarities) 2014-03-31 14:34:01 +00:00
Makefile updated some file paths 2014-04-17 14:54:38 +00:00
README forked pdrfreaders sub page from news section (due to some technical similarities) 2014-03-31 14:34:01 +00:00
about.en.xhtml fix link 2014-09-06 03:05:37 +00:00
default.xsl make custom xsl cover entire subdirectory (hopefully) 2014-09-06 02:04:18 +00:00
fsfe-news.png forked pdrfreaders sub page from news section (due to some technical similarities) 2014-03-31 14:34:01 +00:00
graphics.en.xhtml fix graphic urls 2014-09-06 03:02:56 +00:00
openstandards.en.xhtml add content from pdfreaders site 2014-09-06 01:51:40 +00:00
pdfreaders.css upload graphics, update style for graphics page 2014-09-06 02:46:37 +00:00
pdfreaders.en.xhtml nesting of readerlist 2014-09-04 22:13:37 +00:00
pdfreaders.sources read reader information from dedicated directory 2014-06-05 13:38:06 +00:00
pdfreaders_body.xsl remove wrong xml output declarations 2014-09-04 23:44:19 +00:00
pdfreaders_head.xsl remove wrong xml output declarations 2014-09-04 23:44:19 +00:00
pdfreaders_list.xsl contain readersin div, remove invalid alt tags 2014-09-05 00:42:21 +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).