source: cats/ISOcat/trunk/mod-ISOcat-access-system/config/set.acc @ 4036

Last change on this file since 4036 was 4036, checked in by mwindhouwer, 11 years ago

M mod-ISOcat-access-system/config/set.acc
M mod-ISOcat-access-system/config/shibboleth.acc
M mod-ISOcat-access-system/etc/ISOcatConfig.xml
M mod-ISOcat-manage-system/module.xml
M mod-ISOcat-manage-system/plugin/configure.xsl
M mod-ISOcat-control-access/control/credentials.js

  • now the Shibboleth HTTP header fallbackchain is configurable instead of hardcoded

M mod-ISOcat-interface-gi/index.acc

  • upgraded to GI 3.9.2 nightly build 1199
  • added IE 9 compatibility directive

M mod-ISOcat-manage-dm/module.xml
A + mod-ISOcat-access-data/access/recommenders.acc
M mod-ISOcat-access-data/module.xml
A mod-ISOcat-access-data/dbx/recommenders.xml
M mod-ISOcat-interface-rest/etc/XRLLinks.xml

  • working on recommenders

M mod-ISOcat-site/site/index_files/relpubs.html
M mod-ISOcat-site/site/index_files/news.html
M mod-ISOcat-site/pub/isocat.pub

  • keep track of revision info and pubs

M mod-ISOcat-site/site/2013-SR/meeting/index.html

  • updated agenda
File size: 3.0 KB
Line 
1<accessor>
2        <name>ISOcat.access.system.config.save</name>
3        <descr>Save the ISOcat settings.</descr>
4        <params/>
5        <idoc>
6                <instr>
7                        <type>xslt2</type>
8                        <operand>var:params</operand>
9                        <operator>
10                                <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
11                                        <xsl:output method="xml" encoding="UTF-8"/>
12                                        <xsl:template match="/nvp">
13                                                <config>
14                                                        <admin>
15                                                                <site>
16                                                                        <xsl:value-of select="admin_site"/>
17                                                                </site>
18                                                                <static>
19                                                                        <xsl:value-of select="admin_static"/>
20                                                                </static>
21                                                                <email>
22                                                                        <xsl:value-of select="admin_email"/>
23                                                                </email>
24                                                                <pid>
25                                                                        <xsl:value-of select="admin_pid"/>
26                                                                </pid>
27                                                        </admin>
28                                                        <database>
29                                                                <name>
30                                                                        <xsl:value-of select="database_name"/>
31                                                                </name>
32                                                                <user>
33                                                                        <xsl:value-of select="database_user"/>
34                                                                </user>
35                                                                <password>
36                                                                        <xsl:value-of select="database_password"/>
37                                                                </password>
38                                                                <pool>
39                                                                        <xsl:value-of select="database_pool"/>
40                                                                </pool>
41                                                                <concurrency>
42                                                                        <xsl:value-of select="database_concurrency"/>
43                                                                </concurrency>
44                                                        </database>
45                                                        <email>
46                                                                <server>
47                                                                        <xsl:value-of select="email_server"/>
48                                                                </server>
49                                                                <user>
50                                                                        <xsl:value-of select="email_user"/>
51                                                                </user>
52                                                                <password>
53                                                                        <xsl:value-of select="email_password"/>
54                                                                </password>
55                                                        </email>
56                                                        <forum>
57                                                                <site>
58                                                                        <xsl:value-of select="forum_site"/>
59                                                                </site>
60                                                                <dir>
61                                                                        <xsl:value-of select="forum_dir"/>
62                                                                </dir>
63                                                                <user>
64                                                                        <xsl:value-of select="forum_user"/>
65                                                                </user>
66                                                                <password>
67                                                                        <xsl:value-of select="forum_password"/>
68                                                                </password>
69                                                        </forum>
70                                                        <authentication>
71                                                                <xsl:if test="normalize-space(basic_priority)!=''">
72                                                                        <basic priority="{basic_priority}"/>
73                                                                </xsl:if>
74                                                                <xsl:if test="normalize-space(shib_priority)!=''">
75                                                                        <shibboleth priority="{shib_priority}">
76                                                                                <sso>
77                                                                                        <xsl:value-of select="shib_sso"/>
78                                                                                </sso>
79                                                                                <slo>
80                                                                                        <xsl:value-of select="shib_slo"/>
81                                                                                </slo>
82                                                                                <token>
83                                                                                        <xsl:value-of select="shib_token"/>
84                                                                                </token>
85                                                                                <header>
86                                                                                        <xsl:value-of select="shib_header"/>
87                                                                                </header>
88                                                                        </shibboleth>
89                                                                </xsl:if>
90                                                        </authentication>
91                                                </config>
92                                        </xsl:template>
93                                </xsl:stylesheet>
94                        </operator>
95                        <target>ffcpl:/etc/ISOcatConfig.xml</target>
96                </instr>
97                <instr>
98                        <type>copy</type>
99                        <operand>
100                                <html>
101                                        <head>
102                                                <title>Manage ISOcat: saved settings</title>
103                                                <meta http-equiv="refresh" content="1;URL=/introspect/pluginpanel+plugin@ep:mod_ISOcat_manage_system_plugin"/>
104                                        </head>
105                                        <body>
106                                                <p>Saved the ISOcat settings!</p>
107                                        </body>
108                                </html>
109                        </operand>
110                        <target>this:response</target>
111                </instr>
112        </idoc>
113        <response>
114                <mime>text/html</mime>
115        </response>
116</accessor>
Note: See TracBrowser for help on using the repository browser.