summaryrefslogtreecommitdiff
path: root/app/views/import/google_code/new_user_map.html.haml
blob: acde47405c5f4727275f171ce7bc689789d2cd10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
- page_title "用户映射", "Google 代码导入"
- header_title "项目", root_path
%h3.page-title
  %i.fa.fa-google
  从 Google 代码导入项目
%hr

= form_tag create_user_map_import_google_code_path, class: 'form-horizontal' do
  %p
    自定义 Google 代码电子邮箱地址和用户名导入到 GitLab。
    下一步,请先选择要导入的项目。
  %p
    The user map is a JSON document mapping the Google Code users that participated on your projects to the way their email addresses and usernames will be imported into GitLab. You can change this by changing the value on the right hand side of <code>:</code>. Be sure to preserve the surrounding double quotes, other punctuation and the email address or username on the left hand side.
  %ul
    %li
      %strong 默认:直接导入 Google 代码电子邮箱地址或用户名
      %p
        <code>"johnsmith@example.com": "johnsm...@example.com"</code>
        will add "By johnsm...@example.com" to all issues and comments originally created by johnsmith@example.com.
        The email address or username is masked to ensure the user's privacy.
    %li
      %strong 映射 Google 代码用户到 GitLab 用户
      %p
        <code>"johnsmith@example.com": "@johnsmith"</code>
        will add "By <a href="#">@johnsmith</a>" to all issues and comments originally created by johnsmith@example.com,
        and will set <a href="#">@johnsmith</a> as the assignee on all issues originally assigned to johnsmith@example.com.
    %li
      %strong 映射 Google 代码用户到完整姓名
      %p
        <code>"johnsmith@example.com": "John Smith"</code>
        will add "By John Smith" to all issues and comments originally created by johnsmith@example.com.
    %li
      %strong 映射 Google 代码用户到完整电子邮箱地址
      %p
        <code>"johnsmith@example.com": "johnsmith@example.com"</code>
        will add "By <a href="#">johnsmith@example.com</a>" to all issues and comments originally created by johnsmith@example.com.
        By default, the email address or username is masked to ensure the user's privacy. Use this option if you want to show the full email address.

  .form-group
    .col-sm-12
      = text_area_tag :user_map, JSON.pretty_generate(@user_map), class: 'form-control', rows: 15

  .form-actions
    = submit_tag '继续下一步', class: "btn btn-create"