~launchpad-pqm/launchpad/devel

4939.2.5 by Curtis Hovey
Added namespaces to cve and code of conduct templates and fixed markup.
1
<html
2
  xmlns="http://www.w3.org/1999/xhtml"
3
  xmlns:tal="http://xml.zope.org/namespaces/tal"
4
  xmlns:metal="http://xml.zope.org/namespaces/metal"
5
  xmlns:i18n="http://xml.zope.org/namespaces/i18n"
9140.3.1 by Guilherme Salgado
Convert a couple remaining CoC pages to 3.0
6
  metal:use-macro="view/macro:page/locationless"
4939.2.5 by Curtis Hovey
Added namespaces to cve and code of conduct templates and fixed markup.
7
  i18n:domain="launchpad"
3119.1.2 by Matthew Paul Thomas
finish headings; fix pagetests
8
>
9
  <body>
2119 by Canonical.com Patch Queue Manager
[trivial] fix presentation details for coc pages, pagetest added.
10
8926.2.1 by Barry Warsaw
Remove all occurrences of the term "Ubuntero" from the Launchpad site and
11
<div metal:fill-slot="main"
9140.3.1 by Guilherme Salgado
Convert a couple remaining CoC pages to 3.0
12
     tal:define="user view/user;
8926.2.2 by Barry Warsaw
signee -> signer
13
                 is_ubuntu_coc_signer user/is_ubuntu_coc_signer|nothing;
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
14
                 gpg_keys user/gpg_keys|nothing">
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
15
9140.3.1 by Guilherme Salgado
Convert a couple remaining CoC pages to 3.0
16
      <h1>Ubuntu Codes of Conduct</h1>
17
      <p>
18
        The <a tal:attributes="href context/current_code_of_conduct/fmt:url">
19
          current version</a> is
20
        <tal:version replace="context/current_code_of_conduct/version" />,
21
        released
22
        <tal:date replace="context/current_code_of_conduct/datereleased/fmt:date" />
23
      </p>
3691.62.6 by kiko
Further but minor improvements to code of conduct workflow UI
24
8926.2.2 by Barry Warsaw
signee -> signer
25
      <div tal:condition="not: is_ubuntu_coc_signer">
8926.2.1 by Barry Warsaw
Remove all occurrences of the term "Ubuntero" from the Launchpad site and
26
8926.2.2 by Barry Warsaw
signee -> signer
27
        <h2>Sign the Ubuntu Code of Conduct</h2>
8926.2.1 by Barry Warsaw
Remove all occurrences of the term "Ubuntero" from the Launchpad site and
28
29
        Ubuntu community members may commit to observing the Ubuntu Code of
30
        Conduct by signing it online:
3691.62.6 by kiko
Further but minor improvements to code of conduct workflow UI
31
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
32
        <ol style="margin-left: 4em">
33
            <li>
3691.62.6 by kiko
Further but minor improvements to code of conduct workflow UI
34
              <tal:logged_in condition="user">
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
35
                 <a tal:attributes="href string:${user/fmt:url}/+editpgpkeys">
36
                 Register an OpenPGP key</a>.</tal:logged_in>
3691.62.6 by kiko
Further but minor improvements to code of conduct workflow UI
37
              <tal:not_logged_in tal:condition="not: user">
38
                <a href="+login">Log in</a> and register an OpenPGP key.
39
              </tal:not_logged_in>
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
40
              <p tal:condition="gpg_keys"
41
                 class="informational message"
42
                 style="margin-top: 20px">
43
                It appears you have already done this.
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
44
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
45
                <tal:multiple_keys condition="python: gpg_keys.count() > 1">
46
                <span tal:replace="gpg_keys/count" /> keys are
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
47
                </tal:multiple_keys>
48
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
49
                <tal:single_key condition="python: gpg_keys.count() == 1">
50
                The key <code tal:content="python: gpg_keys[0].keyid" /> is
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
51
                </tal:single_key>
52
53
                registered on your account. You can skip to the next step if
54
                you are not intending on signing with a different
55
                key.
56
              </p>
57
            </li>
3691.62.6 by kiko
Further but minor improvements to code of conduct workflow UI
58
            <li><a tal:attributes="href
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
59
                string:${context/current_code_of_conduct/fmt:url}/+download">
60
                Download</a> the current Code of Conduct.</li>
3691.62.6 by kiko
Further but minor improvements to code of conduct workflow UI
61
            <li><a tal:attributes="href
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
62
                string:${context/current_code_of_conduct/fmt:url}/+sign">
63
                Sign it!</a></li>
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
64
        </ol>
65
      </div>
66
9140.3.1 by Guilherme Salgado
Convert a couple remaining CoC pages to 3.0
67
      <p tal:condition="is_ubuntu_coc_signer">
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
68
        Congratulations, you have already <a tal:attributes="href
3691.62.6 by kiko
Further but minor improvements to code of conduct workflow UI
69
        string:${user/fmt:url}/+codesofconduct">signed</a> the Ubuntu Code
70
        of Conduct.
9140.3.1 by Guilherme Salgado
Convert a couple remaining CoC pages to 3.0
71
      </p>
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
72
2903.1.221 by Matthew Paul Thomas
Updates fake portlets to use the same heading markup as real portlets.
73
      <h2>Older (obsolete) versions of the Code of Conduct</h2>
2085 by Canonical.com Patch Queue Manager
[r=salgado] clean up templates with names starting with 'c'
74
75
      <ul class="document">
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
76
         <tal:codes tal:repeat="code context"> 
77
            <tal:not_current condition="not: code/current">
78
              <li><a tal:content="code/title" 
4939.2.5 by Curtis Hovey
Added namespaces to cve and code of conduct templates and fixed markup.
79
                     tal:attributes="href code/fmt:url" /></li>
3504.1.60 by kiko
Attempt to better describe what Ubuntero is, and how you get register as one. Improve the display of information in the Person details portlet, clarifying it for people who have not yet activated accounts in Launchpad. Don't offer the +sign CoC link if the person has already signed the CoC. Include a way of easily grabbing the current code of conduct. Modify xx-person-home to be testbrowser compliant. And, as a bonus, fix #54818:
80
            </tal:not_current>
81
         </tal:codes>
1360 by Canonical.com Patch Queue Manager
CodeOfConduct Spec Implementation, CoC storage done
82
      </ul>
10657.2.1 by Edwin Grubbs
Fix bug where templates tries to access user/gpg_keys attribute as user/gpgkeys.
83
9140.3.1 by Guilherme Salgado
Convert a couple remaining CoC pages to 3.0
84
      <br />
85
      <p>
86
        <a tal:replace="structure context/menu:overview/admin/render" />
87
      </p>
1360 by Canonical.com Patch Queue Manager
CodeOfConduct Spec Implementation, CoC storage done
88
89
</div>
90
91
</body>
92
</html>