summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/htmlexport/THEME_HOWTO
blob: f5b439e401739f22906c6d178ecb51efffd54512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
# HTML Export Plugin Theme Howto

The HTML export plugin can easily be themed to produce very different sites.
This document explains how to create themes.

*This document can be converted to HTML using
[Markdown](http://www.daringfireball.net/projects/markdown).*

## Getting started

A theme is a folder which contains at least two files: a desktop file describing
the theme and a template.xsl file to generate the HTML files.

When the plugin is run it does the following:

- Create an output folder
- For each image collection:
 - Create a folder
 - Generate square thumbnails
 - Generate full images
 - Optionally copy original images
- Copy the theme folder to the output folder
- Generate an XML file describing the image collections: gallery.xml
- Generate the HTML files by applying template.xsl to gallery.xml

## Presentation of the desktop file

The desktop file describes the theme. The information it contains is used in the
theme selection page of the plugin.

It's a .ini-style file and looks like this:

	[Desktop Entry]
	Name=Hello World
	Comment=A demonstration theme

	[X-HTMLExport Author]
	Name=The Author
	Url=http://example.com/themes/helloworld

We use a desktop file format so that entries can be translated. If you look at
the desktop file for one of the themes shipped with the plugin, you will find
something like this:

	[Desktop Entry]
	Name=Simple
	Name[br]=Eeun
	Name[cs]=Jednoduchý
	Name[cy]=Syml
	Name[da]=Simpel
	...

The nice thing is that when your theme get integrated into HTML export default
themes, KDE translators will translate the desktop file for you.

## Getting started: creating one theme from another

The easiest way to get started is to copy one theme and modify it. Theme folders
can be found in $KDEDIR/share/apps/kipiplugin_htmlexport/themes/, where $KDEDIR
is the install folder of KDE on your machine (usually /usr or /opt/trinity).
Writing in this folder requires root access, so we will not create our theme
there, instead do the following:

Create a theme folder in your home:

	mkdir -p ~/.kde/share/apps/kipiplugin_htmlexport/themes/

Cd to it:

	cd ~/.kde/share/apps/kipiplugin_htmlexport/themes/
	
Copy the "snow" theme to this folder, under a new name: "snow2":

	cp -r $KDEDIR/share/apps/kipiplugin_htmlexport/themes/snow snow2
	
Rename the desktop file accordingly:

	cd snow2
	mv snow.desktop snow2.desktop

Edit "snow2.desktop": Remove all the `Name[...]` entries and replace `Name=Snow`
with `Name=Snow 2`.

You are done, you can now open your favorite KIPI enabled application and start the
HTML Export plugin, the "Snow 2" theme should appear in the theme list.

## Generating HTML files, template.xsl

The template.xsl file is responsible for generating the HTML files from the 
gallery.xml file.

gallery.xml looks like this:

	<?xml version="1.0" encoding="UTF-8"?>
	<collections>
	 <collection>
	  <name>Name of first collection</name>
	  <fileName>collection_folder</fileName>
	  <image>
	   <title>Image Title</title>
	   <description>Image Description</description>
	   <full fileName="pict1279.jpeg" height="450" width="600"/>
	   <thumbnail fileName="thumb_pict1279.jpeg" height="80" width="80"/>
	   <!-- If there is an original image, you will get the 'original' tag -->
	   <original fileName="original_pict1279.jpeg" height="3000" width="4000"/>
	
	  </image>
	  <image>
	   <title>Image Title</title>
	   <description>Image Description</description>
	   <full fileName="pict1280.jpeg" height="450" width="600"/>
	   <thumbnail fileName="thumb_pict1280.jpeg" height="80" width="80"/>
	   <original fileName="original_pict1279.jpeg" height="3000" width="4000"/>
	  </image>
	  ...
	 </collection>

	 <collection>
	  <name>Name of second collection</name>
	  ...
	 </collection>
	</collections>

I won't explain XSLT here, you should be able to find the documentation you
need on the web. I personally learned XSLT with the [XSLT tutorial from
w3schools.com][1].

It's worth noting nevertheless that you can make use of [EXSLT][2], a set of
extensions to XSLT. In particular, the [`exslt:document` element][3] is
extremely useful because it allows you to generate multiple documents from the
same file.

HTML Export Plugin imposes no constraint on the organisation of HTML files: you
can generate one file per image, or only one per collection. One could imagine
a theme which would only contains one HTML file and uses Javascript to show the
different images, there is already one theme using frames, you can even
generate CSS files on the fly if you want to.

[1]: http://www.w3schools/xsl
[2]: http://www.exslt.org
[3]: http://www.exslt.org/exsl/elements/document

### About translations

You should not "hardcode" any text in the template, instead you should use the
"i18n parameters". For example instead of using this:

	<a href="previous">Previous</a>
	| <a href="next">Next</a>

Do this:

	<a href="previous"><xsl:value-of select="$i18nPrevious"/></a> 
	| <a href="next"><xsl:value-of select="$i18nNext"/></a>

It's quite a lot more verbose, but this way your user will get localized HTML
output.

If you want to use "i18n parameters" in attributes, do it like this:

	<a href="previous" title="{$i18nPrevious}"><img src="previous.png"/></a>
	| <a href="next" title="{$i18nNext}"><img src="next.png"/></a>

For now, the available "i18n parameters" are:

- i18nPrevious
- i18nNext
- i18nCollectionList
- i18nOriginalImage
- i18nUp

*generated from 'grep \"i18n generator.cpp'*

If you need other i18n parameters, let us know.

## Images, CSS files and others

You are free to use images, CSS files or other files in your theme: just put
them in the theme folder and the plugin will copy them in the output folder.

## Original images

As explained before, if the user selects the option "include original images",
the gallery.xml file will contain `<original />` tags. If this tag is present,
the image page should contain a link to download the original image. 

Here is an example:

	<xsl:if test="original/@fileName != ''">
		<p>
			<a href="{original/@fileName}"><xsl:value-of select="$i18nOriginalImage"/></a>
		</p>
	</xsl:if>

## Going further, theme parameters

You might want to provide a way for your user to customize your theme, for
example you could provide a few alternative CSS files, or let the user
customize the background color. This is easy to do.

### Declaring a parameter

First, you need to declare your parameter. Edit your desktop file and add
something like this:

	[X-HTMLExport Parameter bgColor]
	Name=Background Color
	Type=color
	Default=#123456

Now start the plugin and select your theme, after pressing next, you should
see an option page with a color button initialized to the #123456 color.

### Using the value of a parameter

In template.xsl, you can get the value of your parameter like this:

	<xsl:value-of select="$bgColor"/>

To change the background color of the "body" tag, you would write something
like this:

	<body bgcolor="{$bgColor}">
	...
	</body>

### Parameter reference
Here is a more complete description of the way to declare parameters:

A parameter is declared by a section named "X-HTMLExport Parameter someName".
`someName` should be replaced with the name you want to use in template.xsl.

- The `Name` key defines the text which will be shown in the option page. Since
this is a desktop file, it can be translated like the other keys.
- The `Type` key defines the type of the parameter. At the time
of this writing it can be one of:
 - string
 - color
 - list
 - int
- The `Default` key defines the default value of the
parameter.

#### List parameter keys

A list parameter lets the user select an item from a list. To declare the
available items, you must use two sets of keys: `Value_N` and `Caption_N`,
where N is the position of the item, starting from 0.

`Value_N` is the internal value of the item. This is the value which will be
set to the parameter.

`Caption_N` is the displayed value of the item. This is the text which will
be shown in the list.

Here is an example: the "style" parameter from the "Simple" theme:

	[X-HTMLExport Parameter style]
	Name=Style
	Type=list
	Default=natural.css
	Value_0=natural.css
	Caption_0=Natural
	Value_1=dark.css
	Caption_1=Dark

As you can see, the user will be able to choose either "Natural" or "Dark".
Depending on the user choice, `<xsl:value-of select='$style'/>` will expand to
either "natural.css" or "dark.css".

#### Int parameter keys

An int parameter lets the user select an integer using a spinbox. In addition
to the default value, you can define the minimum and maximum values, using the
`Min` and `Max` keys.

Here is an example:

	[X-HTMLExport Parameter size]
	Name=Size
	Type=int
	Default=12
	Min=4
	Max=28

## Final words

This is the end of this howto, now is the time for you to get creative and
design awesome themes!

When you are done, do not hesitate to contact the kde-imaging mailing
list (<kde-imaging@kde.org>). If you want to get your theme included in the
official theme list, we need more themes!