source: announcerplugin/trunk/announcer/templates/prefs_announcer_xmpp.html

Last change on this file was 9194, checked in by Robert Corsaro, 13 years ago

Merge branch 'jabber' into trunk

Conflicts:

announcer/pref.py
announcer/resolvers.py
announcer/subscribers/ticket_compat.py
setup.py

File size: 617 bytes
Line 
1<span xmlns="http://www.w3.org/1999/xhtml"
2     xmlns:py="http://genshi.edgewall.org/"
3     xmlns:xi="http://www.w3.org/2001/XInclude">
4  By default, the Announcer will deliver all notices to you in a plaintext format. You
5  may override this for each realm that may generate announcements.
6  <ul py:for="realm in realms">
7    <li> ${realm.capitalize()} announcements:
8      <select name="xmpp_format_${realm}">
9        <option py:for="format in realms[realm]" value="${format}" 
10         selected="${(preferences[realm] == format) or None}">${format}</option>
11      </select>
12    </li>       
13  </ul>
14   
15</span>
Note: See TracBrowser for help on using the repository browser.