mirror of https://github.com/BOINC/boinc.git
Update GuiUrls.md file
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
parent
666ce4889a
commit
863032de26
81
GuiUrls.md
81
GuiUrls.md
|
@ -1,7 +1,9 @@
|
||||||
*GUI URLs_' is a mechanism that projects to pass URLs to the client, for display as hyperlinks in the GUI. These links will be shown when the project is selected in the '_Projects* tab. To use this feature, include a file 'gui_urls.xml' in the project root directory, with the following form:
|
# GUI URLs
|
||||||
|
|
||||||
|
**GUI URLs** is a mechanism that projects to pass URLs to the client, for display as hyperlinks in the GUI. These links will be shown when the project is selected in the **Projects** tab. To use this feature, include a file 'gui_urls.xml' in the project root directory, with the following form:
|
||||||
|
|
||||||
<gui_urls>
|
```
|
||||||
|
<gui_urls>
|
||||||
<gui_url>
|
<gui_url>
|
||||||
<name>Your account</name>
|
<name>Your account</name>
|
||||||
<description>View your account information and credit totals</description>
|
<description>View your account information and credit totals</description>
|
||||||
|
@ -20,52 +22,55 @@
|
||||||
</gui_url>
|
</gui_url>
|
||||||
</ifteam>
|
</ifteam>
|
||||||
...
|
...
|
||||||
</gui_urls>
|
</gui_urls>
|
||||||
|
```
|
||||||
Each entry describes a GUI URL.
|
Each entry describes a GUI URL.
|
||||||
These URLs (macro-substituted as described below) will be sent to client hosts in the reply to scheduler RPCs.
|
These URLs (macro-substituted as described below) will be sent to client hosts in the reply to scheduler RPCs.
|
||||||
Team-specific entries should be enclosed in <ifteam>; they will be sent only if the user belongs to a team.
|
Team-specific entries should be enclosed in \<ifteam>; they will be sent only if the user belongs to a team.
|
||||||
|
|
||||||
Like with any XML file, all text (including URLs) must be entity-escaped:
|
Like with any XML file, all text (including URLs) must be entity-escaped:
|
||||||
|
|
||||||
|| || Character || Escape Code ||
|
|
||||||
|| Ampersand || & || & ||
|
| <!-- --> | <!-- --> | <!-- --> |
|
||||||
|| Single Quote || ' || ' ||
|
| --- | --- | --- |
|
||||||
|| Double Quote || " || "
|
| | Character | Escape Code |
|
||||||
|| Greater Than || > || >
|
| Ampersand | & | & |
|
||||||
|| Less Than || < || <
|
| Single Quote | ' | ' |
|
||||||
|
| Double Quote | " | "
|
||||||
|
| Greater Than | > | >
|
||||||
|
| Less Than | < | <
|
||||||
|
|
||||||
|
|
||||||
The components of a <gui_url> element are:
|
The components of a \<gui_url> element are:
|
||||||
|
|
||||||
|
|
||||||
*name*::
|
### **name**
|
||||||
A short name, used e.g. as a button name or menu item
|
A short name, used e.g. as a button name or menu item
|
||||||
*description*::
|
### **description**
|
||||||
An explanation, used e.g. as a rollover popup
|
An explanation, used e.g. as a rollover popup
|
||||||
*url*::
|
### **url**
|
||||||
The URL
|
The URL
|
||||||
|
|
||||||
All items are macro-substituted as follows:
|
All items are macro-substituted as follows:
|
||||||
|
|
||||||
*<authenticator/>*::
|
### **\<authenticator/>**
|
||||||
The user's account key
|
The user's account key
|
||||||
*<hostid/>*::
|
### **\<hostid/>**
|
||||||
The host ID
|
The host ID
|
||||||
*<master_url/>*::
|
### **\<master_url/>**
|
||||||
The project's master URL
|
The project's master URL
|
||||||
*<project_name/>*::
|
### **\<project_name/>**
|
||||||
The project name (from config.xml)
|
The project name (from config.xml)
|
||||||
*<rss_auth/>*:"
|
**\<rss_auth/>**:"
|
||||||
An authenticator used by notices.php
|
An authenticator used by notices.php
|
||||||
*<teamid/>*::
|
### **\<teamid/>**
|
||||||
The team ID
|
The team ID
|
||||||
*<team_name/>*::
|
### **\<team_name/>**
|
||||||
The team name
|
The team name
|
||||||
*<userid/>*::
|
### **\<userid/>**
|
||||||
The user ID
|
The user ID
|
||||||
*<user_name/>*::
|
### **\<user_name/>**
|
||||||
The user name
|
The user name
|
||||||
|
|
||||||
*<ifteam> ... </ifteam>*::
|
### **\<ifteam> ... \</ifteam>**
|
||||||
The enclosed items are included only if the user belongs to a team.
|
The enclosed items are included only if the user belongs to a team.
|
||||||
|
|
Loading…
Reference in New Issue