]> git.openstreetmap.org Git - rails.git/commitdiff
Merge branch 'master' into openid
authorTom Hughes <tom@compton.nu>
Sun, 22 May 2011 17:01:15 +0000 (18:01 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 22 May 2011 17:01:15 +0000 (18:01 +0100)
Conflicts:
app/views/user/login.html.erb

1  2 
app/views/user/login.html.erb
app/views/user/terms.html.erb
config/locales/en.yml
public/stylesheets/common.css

index 4515f412ddec810c95c296d0413573a173fb06a0,7cc4b6f24ad455c960ab175ec263de289789dcff..3d30d9d6915850d20fa6eb52fc30d4d0d7ea7a06
@@@ -1,80 -1,25 +1,80 @@@
  <div id="login_wrapper">
 +
    <div id="login_login">
      <h1><%= t 'user.login.heading' %></h1>
  
 -    <p><%= t 'user.login.already have' %></p>
 -
 -    <% form_tag :action => 'login' do %>
 +    <% form_tag({ :action => "login" }, { :id => "login_form" }) do %>
        <%= hidden_field_tag('referer', h(params[:referer])) %>
 +
 +      <p><%= t 'user.login.with username' %></p>
 +
        <table id="loginForm">
          <tr><td class="fieldName"><%= t 'user.login.email or username' %></td><td><%= text_field('user', 'email',{:value => "", :size => 28, :maxlength => 255, :tabindex => 1}) %></td></tr>
          <tr><td class="fieldName"><%= t 'user.login.password' %></td><td><%= password_field('user', 'password',{:value => "", :size => 28, :maxlength => 255, :tabindex => 2}) %> <span class="minorNote">(<%= link_to t('user.login.lost password link'), :controller => 'user', :action => 'lost_password' %>)</span></td></tr>
          <tr><td class="fieldName"><label for="remember_me"><%= t 'user.login.remember' %></label></td><td><%= check_box_tag "remember_me", "yes", false, :tabindex => 3 %></td></tr>
        </table>
        <%= submit_tag t('user.login.login_button'), :tabindex => 3 %>
 +
 +      <p><%= t 'user.login.with openid' %></p>
 +
 +      <table id="login_openid_buttons">
 +        <tr>
 +          <td>
 +            <%=
 +              link_to_function(image_tag("openid_large.png", :alt => t("user.login.openid_providers.openid.title")), nil, :title => t("user.login.openid_providers.openid.title")) do |page|
 +                page[:login_form][:openid_url].value = "http://"
 +                page[:login_openid_buttons].hide
 +                page[:login_openid_url].show
 +                page[:login_openid_submit].show
 +              end
 +            %>
 +          </td>
 +          <td><%= openid_button "yahoo", "me.yahoo.com" %></td>
 +          <td><%= openid_button "google", "gmail.com" %></td>
 +        </tr>
 +        <tr>
 +          <td><%= openid_button "myopenid", "myopenid.com" %></td>
 +          <td><%= openid_button "wordpress", "wordpress.com" %></td>
 +          <td><%= openid_button "myspace", "myspace.com" %></td>
 +        </tr>
 +      </table>
 +
 +      <table>
 +        <tr id="login_openid_url">
 +          <td class="fieldName nowrap">
 +            <%= t 'user.login.openid', :logo => openid_logo %>
 +          </td>
 +          <td>
 +            <%= text_field_tag("openid_url", "", { :size => 28, :maxlength => 255, :tabindex => 3, :class => "openid_url" }) %>
 +            <span class="minorNote">(<a href="<%= t 'user.account.openid.link' %>" target="_new"><%= t 'user.account.openid.link text' %></a>)</span>
 +          </td>
 +        </tr>
 +        <tr>
 +          <td class="fieldName nowrap" id="remember_me_label"><label for="remember_me"><%= t 'user.login.remember' %></label></td>
 +          <td width="100%"><%= check_box_tag "remember_me", "yes", false, :tabindex => 5 %></td>
 +        </tr>
 +      </table>
 +
 +      <%= submit_tag t('user.login.login_button'), :tabindex => 6, :id => "login_openid_submit" %>
      <% end %>
-     <br clear="both">
 +
+     <br clear="all" />
    </div>
 +
    <div id="login_signup">
      <h2><%= t 'user.login.new to osm' %></h2>
      <p><%= t 'user.login.to make changes' %></p>
-     <p><%= t 'user.login.create account minute' %></p></p>
+     <p><%= t 'user.login.create account minute' %></p>
      <p><%= button_to t('user.login.register now'), :action => :new, :referer => params[:referer] %></p>
 -    <br clear="all" />
 +
 +    <br clear="both">
    </div>
 +
  </div>
 +
 +<%=
 +  update_page_tag do |page|
 +    page[:login_openid_url].hide
 +    page[:login_openid_submit].hide
 +  end
 +%>
index ded9b4db681edde57f9fcf9c868fdb13466c781a,cd352ab6fde9af90e80c5b9f68e17ae6535fc14f..e4644e8151758a6180acc98d07ced0db70d0863f
    </p>
    <p>
      <%= hidden_field_tag('referer', h(params[:referer])) unless params[:referer].nil? %>
 -    <% if params[:user] %>
 +    <% if @user.new_record? %>
        <%= hidden_field('user', 'email') %>
        <%= hidden_field('user', 'email_confirmation') %>
        <%= hidden_field('user', 'display_name') %>
        <%= hidden_field('user', 'pass_crypt') %>
        <%= hidden_field('user', 'pass_crypt_confirmation') %>
 +      <%= hidden_field('user', 'openid_url') %>
      <% end %>
      <div id="buttons">
        <%= submit_tag(t('user.terms.decline'), :name => "decline", :id => "decline") %>
        <%= submit_tag(t('user.terms.agree'), :name => "agree", :id => "agree") %>
      </div>
    </p>
+   <br clear="all" />
+   <p id="contributorGuidance"><%= t 'user.terms.guidance', :summary => 'http://www.osmfoundation.org/wiki/License/Contributor_Terms_Summary', :translations => 'http://www.osmfoundation.org/wiki/License/Contributor_Terms/Informal_Translations' %></p>
  <% end %>
diff --combined config/locales/en.yml
index 1509ba91733bde6c21dd2b85b20536f6822d8af2,d8d7c13b32ae3538944b4eaa717eb935afe759c1..a955440179bf4b9b9c863ae6cf603ff8513dbafe
      login:
        title: "Login"
        heading: "Login"
 -      please login: "Please login or {{create_user_link}}."
 -      create_account: "create an account"
        email or username: "Email Address or Username:"
        password: "Password:"
 +      openid: "{{logo}} OpenID:"
        remember: "Remember me:"
        lost password link: "Lost your password?"
        login_button: "Login"
        register now: Register now
 -      already have: Already have an OpenStreetMap account? Please login.
 +      with username: "Already have an OpenStreetMap account? Please login with your username and password:"
 +      with openid: "Alternatively please use your OpenID to login:"
        new to osm: New to OpenStreetMap?
        to make changes: To make changes to the OpenStreetMap data, you must have an account.
        create account minute: Create an account. It only takes a minute.
        webmaster: webmaster
        auth failure: "Sorry, could not log in with those details."
        notice: "<a href=\"http://www.osmfoundation.org/wiki/License/We_Are_Changing_The_License\">Find out more about OpenStreetMap's upcoming license change</a> (<a href=\"http://wiki.openstreetmap.org/wiki/ODbL/We_Are_Changing_The_License\">translations</a>) (<a href=\"http://wiki.openstreetmap.org/wiki/Talk:ODbL/Upcoming\">discussion</a>)"
 +      openid missing provider: "Sorry, could not contact your OpenID provider"
 +      openid invalid: "Sorry, your OpenID seems to be malformed"
 +      openid_logo_alt: "Log in with an OpenID"
 +      openid_providers:
 +        openid:
 +          title: Login with an OpenID URL
 +          alt: Login with an OpenID URL
 +        yahoo:
 +          title: Login with a Yahoo! OpenID
 +          alt: Login with a Yahoo! OpenID
 +        google:
 +          title: Login with a Google OpenID
 +          alt: Login with a Google OpenID
 +        myopenid:
 +          title: Login with a myOpenID OpenID
 +          alt: Login with a myOpenID OpenID
 +        wordpress:
 +          title: Login with a Wordpress.com OpenID
 +          alt: Login with a Wordpress.com OpenID
 +        myspace:
 +          title: Login with a MySpace OpenID
 +          alt: Login with a MySpace OpenID
      logout:
        title: "Logout"
        heading: "Logout from OpenStreetMap"
        not displayed publicly: 'Not displayed publicly (see <a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="wiki privacy policy including section on email addresses">privacy policy</a>)'
        display name: "Display Name:"
        display name description: "Your publicly displayed username. You can change this later in the preferences."
 +      openid: "{{logo}} OpenID:"
        password: "Password:"
        confirm password: "Confirm Password:"
 +      use openid: "Alternatively, use {{logo}} OpenID to login"
 +      openid no password: "With OpenID a password is not required, but some extra tools or server may still need one."
 +      openid association: |
 +        <p>Your OpenID is not associated with a OpenStreetMap account yet.</p>
 +        <ul>
 +          <li>If you are new to OpenStreetMap, please create a new account using the form below.</li>
 +          <li>
 +            If you already have an account, you can login to your account
 +            using your username and password and then associate the account
 +            with your OpenID in your user settings.
 +          </li>
 +        </ul> 
        continue: Continue
        flash create success message: "Thanks for signing up. We've sent a confirmation note to {{email}} and as soon as you confirm your account you'll be able to get mapping.<br /><br />If you use an antispam system which sends confirmation requests then please make sure you whitelist webmaster@openstreetmap.org as we are unable to reply to any confirmation requests."
        terms accepted: "Thanks for accepting the new contributor terms!"
        consider_pd: "In addition to the above agreement, I consider my contributions to be in the Public Domain"
        consider_pd_why: "what's this?"
        consider_pd_why_url: http://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
+       guidance: 'Information to help understand these terms: a <a href="{{summary}}">human readable summary</a> and some <a href="{{translations}}">informal translations</a>'
        agree: Agree
        declined: "http://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined"
        decline: "Decline"
        current email address: "Current Email Address:"
        new email address: "New Email Address:"
        email never displayed publicly: "(never displayed publicly)"
 +      openid:
 +        openid: "OpenID:"
 +        link: "http://wiki.openstreetmap.org/wiki/OpenID"
 +        link text: "what is this?"
        public editing:
          heading: "Public editing:"
          enabled: "Enabled. Not anonymous and can edit data."
index 509fce0e81e1edfef4c551de87956c28c2035877,8b387e1d34dbc5b1555b24d5a28836e36e94b7a5..89fa39b31f59358d24247b552deaf27545f564c8
@@@ -222,7 -222,7 +222,7 @@@ hr 
    float: right;
  }
  
- .search_form {
+ .search_container {
    height: 16px;
    padding-bottom: 6px;
  }
@@@ -723,21 -723,6 +723,21 @@@ table.browse_details th 
    margin-top: 5px;
  }
  
 +table#login_openid_buttons {
 +  padding-bottom: 10px;
 +}
 +
 +#login_openid_buttons td {
 +  padding-left: 10px;
 +  padding-right: 10px;
 +  padding-top: 5px;
 +  padding-bottom: 5px;
 +}
 +
 +#login_openid_buttons img {
 +  border: 0;
 +}
 +
  #login_signup form.button-to div {
    margin: 0px;
    padding: 0px;
@@@ -749,7 -734,7 +749,7 @@@ div#contributorTerms 
    border: 1px solid black;
    padding: 4px;
    overflow: auto;
-   width: 80%;
+   width: 95%;
    height: 400px;
  }
  
@@@ -777,7 -762,7 +777,7 @@@ div#contributorTerms img 
  }
  
  form#termsForm {
-   width: 80%;
+   width: 95%;
    margin-bottom: 3em;
  }
  
@@@ -793,6 -778,14 +793,14 @@@ form#termsForm input#agree 
    margin-left: 50px;
  }
  
+ p#contributorGuidance {
+   background-color: #f5f5ff;
+   border: 1px solid #f3f3ff;
+   border-radius: 15px;
+   -moz-border-radius: 15px;
+   padding: 10px;
+ }
  /* Rules for the account settings page */
  
  #accountForm td {
@@@ -934,11 -927,6 +942,11 @@@ input[type="submit"] 
    border: 1px solid black;
  }
  
 +input.openid_url { 
 +  background: url('../images/openid_input.png') repeat-y left white;
 +  padding-left: 16px;
 +}
 +
  /* Rules for user images */
  
  img.user_image {
@@@ -981,10 -969,3 +989,10 @@@ abbr.geo 
  .table1 { 
    background: #fff;
  }
 +
 +/* Rules for OpenID logo */
 +
 +.openid_logo {
 +  vertical-align: text-bottom;
 +  border: 0;
 +}