-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrssmaker.xml
More file actions
66 lines (63 loc) · 3.01 KB
/
rssmaker.xml
File metadata and controls
66 lines (63 loc) · 3.01 KB
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
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.2" method="upgrade">
<name>RSSMaker</name>
<!-- The following elements are optional and free of formatting constraints -->
<creationDate>August 2014</creationDate>
<author>Jack</author>
<authorEmail>jack@jacks-it-lab.de</authorEmail>
<authorUrl>http://www.jacks-it-lab.de</authorUrl>
<copyright></copyright>
<license>Beerware License</license>
<!-- The version string is recorded in the components table -->
<version>0.0.5</version>
<!-- The description is optional and defaults to the name -->
<description>Simpe Creation of RSSFeed for a joomla article category
based on https://github.com/ajaxray/FeedWriter and validated with
http://validator.w3.org/feed/check.cgi
</description>
<install> <!-- Runs on install -->
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
</sql>
</install>
<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
</sql>
</uninstall>
<update> <!-- Runs on update; New since J2.5 -->
<schemas>
<schemapath type="mysql">sql/updates/mysql/</schemapath>
</schemas>
</update>
<!-- Site Main File Copy Section -->
<!-- Note the folder attribute: This attribute describes the folder
to copy FROM in the package to install therefore files copied
in this section are copied from /site/ in the package -->
<files folder="site">
<filename>index.html</filename>
<filename>rssmaker.php</filename>
<filename>controller.php</filename>
</files>
<administration>
<!-- Administration Menu Section -->
<menu>RSSMaker</menu>
<!-- Administration Main File Copy Section -->
<!-- Note the folder attribute: This attribute describes the folder
to copy FROM in the package to install therefore files copied
in this section are copied from /admin/ in the package -->
<files folder="admin">
<!-- Admin Main File Copy Section -->
<filename>index.html</filename>
<filename>rssmaker.php</filename>
<filename>controller.php</filename>
<folder>classes</folder>
<folder>controllers</folder>
<folder>models</folder>
<folder>sql</folder>
<folder>tables</folder>
<!-- views files section -->
<folder>views</folder>
</files>
</administration>
</extension>