forked from silentsakky/zarafa-webapp-passwd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.xml
47 lines (44 loc) · 1.61 KB
/
manifest.xml
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
<?xml version="1.0"?>
<!DOCTYPE plugin SYSTEM "manifest.dtd">
<plugin version="2">
<info>
<version>1.2</version>
<name>Passwd</name>
<title>Password Change Plugin</title>
<author>Saket Patel</author>
<authorURL>https://github.com/silentsakky</authorURL>
<description>Change your password from zarafa webapp</description>
</info>
<config>
<configfile>config.php</configfile>
</config>
<translations>
<translationsdir>language</translationsdir>
</translations>
<components>
<component>
<files>
<server>
<serverfile>php/plugin.passwd.php</serverfile>
<serverfile type="module" module="passwdmodule">php/class.passwdmodule.php</serverfile>
</server>
<client>
<clientfile load="release">js/passwd.js</clientfile>
<clientfile load="debug">js/passwd-debug.js</clientfile>
<clientfile load="source">js/PasswdPlugin.js</clientfile>
<clientfile load="source">js/settings/SettingsPasswdCategory.js</clientfile>
<clientfile load="source">js/settings/SettingsPasswdWidget.js</clientfile>
<clientfile load="source">js/settings/PasswdPanel.js</clientfile>
<clientfile load="source">js/data/PasswdResponseHandler.js</clientfile>
<clientfile load="source">js/ABOUT.js</clientfile>
<clientfile load="source">js/external/PasswordMeter.js</clientfile>
</client>
<resources>
<resourcefile load="release">resources/css/passwd.css</resourcefile>
<resourcefile load="debug">resources/css/passwd.css</resourcefile>
<resourcefile load="source">resources/css/passwd-main.css</resourcefile>
</resources>
</files>
</component>
</components>
</plugin>