|
Revision 394, 0.9 kB
(checked in by djchall, 2 years ago)
|
|
First release of MTFogger, MT plugin that provides template tags for printing lists of Fogbugz cases in MT templates.
|
| Line | |
|---|
| 1 | <mtapp:setting |
|---|
| 2 | id="FbzLogin" |
|---|
| 3 | label_class="top-label" |
|---|
| 4 | label="<__trans phrase="FogBugz Login">" |
|---|
| 5 | hint="Most likely your email address" |
|---|
| 6 | show_hint="1"> |
|---|
| 7 | <input type="text" name="FbzLogin" value="<mt:var name="FbzLogin">"/> |
|---|
| 8 | </mtapp:setting> |
|---|
| 9 | |
|---|
| 10 | <mtapp:setting |
|---|
| 11 | id="FbzPassword" |
|---|
| 12 | label_class="top-label" |
|---|
| 13 | label="<__trans phrase="Fogbugz Password">" |
|---|
| 14 | hint="Probably need a better way to store this." |
|---|
| 15 | show_hint="1"> |
|---|
| 16 | <input type="password" name="FbzPassword" value="<mt:var name="FbzPassword">"/> |
|---|
| 17 | </mtapp:setting> |
|---|
| 18 | |
|---|
| 19 | <mtapp:setting |
|---|
| 20 | id="FbzBaseurl" |
|---|
| 21 | label_class="top-label" |
|---|
| 22 | label="<__trans phrase="API URL of your Fogbugz installation">" |
|---|
| 23 | hint="Probably looks like this: http://yourserver.com/fbz_dir/api.asp." |
|---|
| 24 | show_hint="1"> |
|---|
| 25 | <input type="text" size="40" name="FbzBaseurl" value="<mt:var name="FbzBaseurl">"/> |
|---|
| 26 | </mtapp:setting> |
|---|