OLD | NEW |
(Empty) | |
| 1 [if-any cue] |
| 2 |
| 3 [# Do not show cue if there is an alert shown on the page.] |
| 4 [if-any alerts.show][else] |
| 5 |
| 6 |
| 7 [# Dialog box for privacy settings.] |
| 8 [is cue "privacy_click_through"] |
| 9 <div id="cue" class="scrim"> |
| 10 <div id="privacy_dialog"> |
| 11 <h2>Email display settings</h2> |
| 12 |
| 13 <p>There is a <a href="/hosting/settings" title="Settings" |
| 14 class="dismiss_cue">setting</a> to control how your email |
| 15 address appears on comments and issues that you post. |
| 16 |
| 17 [if-any is_privileged_domain_user] |
| 18 Since you are an integral part of this community, that setting |
| 19 defaults to showing your full email address.</p> |
| 20 |
| 21 <p>Also, you are being trusted to view email addresses of |
| 22 non-members who post comments in your projects. Please use |
| 23 those addresses only to request additional information about |
| 24 the posted comments, and do not share other users' email |
| 25 addresses beyond the site.</p> |
| 26 [else] |
| 27 Project members will always see your full email address. By |
| 28 default, other users who visit the site will see an |
| 29 abbreviated version of your email address.</p> |
| 30 |
| 31 <p>If you do not wish your email address to be shared, there |
| 32 are other ways to <a |
| 33 href="http://www.chromium.org/getting-involved">get |
| 34 involved</a> in the community. To report a problem when using |
| 35 the Chrome browser, you may use the "Report an issue..." item |
| 36 on the "Help" menu.</p> |
| 37 [end] |
| 38 |
| 39 <div class="actions"> |
| 40 <a href="#" title="Got it" class="dismiss_cue">GOT IT</a> |
| 41 </div> |
| 42 </div> |
| 43 </div> |
| 44 |
| 45 [else] |
| 46 |
| 47 <table align="center" border="0" cellspacing="0" cellpadding="0" id="cue"> |
| 48 <tr><td><span> |
| 49 [# Cue cards to teach users how to join a project.] |
| 50 [is cue "how_to_join_project"] |
| 51 <b>How-to:</b> |
| 52 Join this project by contacting the project owners. |
| 53 [end] |
| 54 |
| 55 [# Cue card to teach users how to search for numbers in the issue tracker.] |
| 56 [is cue "search_for_numbers"] |
| 57 [if-any jump_local_id] |
| 58 <b>Tip:</b> |
| 59 To find issues containing "[jump_local_id]", use quotes. |
| 60 [end] |
| 61 [end] |
| 62 |
| 63 [# Cue card to teach users how to search for numbers in the issue tracker.] |
| 64 [is cue "dit_keystrokes"] |
| 65 <b>Tip:</b> |
| 66 Type <b style="font-size:130%"><tt>?</tt></b> for keyboard shortcuts. |
| 67 [end] |
| 68 |
| 69 [# Cue card to teach users that italics mean derived values in the issue tra
cker.] |
| 70 [is cue "italics_mean_derived"] |
| 71 <b>Note:</b> |
| 72 <i>Italics</i> mean that a value was derived by a filter rule. |
| 73 <a href="http://code.google.com/p/monorail/wiki/FilterRules">Learn more</a
> |
| 74 [end] |
| 75 |
| 76 [# Cue card to teach users that full-text indexing takes time.] |
| 77 [is cue "stale_fulltext"] |
| 78 <b>Note:</b> |
| 79 Searching for text in issues may show results that are a few minutes out o
f date. |
| 80 [end] |
| 81 |
| 82 [# Cue cards to improve discoverability of people roles.] |
| 83 [is cue "document_team_duties"] |
| 84 [if-any read_only][else] |
| 85 <b>Tip:</b> |
| 86 Document <a href="people/list">each teammate's project duties</a>. |
| 87 [end] |
| 88 [end] |
| 89 |
| 90 [# Cue cards to explain grid mode.] |
| 91 [is cue "showing_ids_instead_of_tiles"] |
| 92 <b>Note:</b> |
| 93 Grid mode automatically switches to displaying IDs when there are many re
sults. |
| 94 [end] |
| 95 |
| 96 </span> |
| 97 [# Link to dismiss the cue card.] |
| 98 [if-any logged_in_user] |
| 99 [if-any read_only][else] |
| 100 <a href="#" title="Don't show this message again" style="margin-left:3em;v
ertical-align:middle;" class="dismiss_cue" |
| 101 ><img src="/static/images/close_icon.png" width="13" height="13"></a> |
| 102 [end] |
| 103 [end] |
| 104 </td></tr> |
| 105 </table> |
| 106 [end] |
| 107 |
| 108 |
| 109 |
| 110 <script type="text/javascript" nonce="[nonce]"> |
| 111 runOnLoad(function() { |
| 112 var dismissLinks = document.getElementsByClassName("dismiss_cue"); |
| 113 for (var i = 0; i < dismissLinks.length; ++i) { |
| 114 var dismissCue = dismissLinks[[]i]; |
| 115 dismissCue.addEventListener("click", function(event) { |
| 116 _CS_dismissCue("[format "js"][cue][end]"); |
| 117 if (dismissCue.href == "#") |
| 118 event.preventDefault(); |
| 119 }); |
| 120 } |
| 121 }); |
| 122 </script> |
| 123 |
| 124 [end] |
| 125 [end] |
OLD | NEW |