The requested changes are too big and content was truncated. Show full diff
@@ -46,7 +46,7 class AccountController < ApplicationController | |||
|
46 | 46 | self.logged_user = nil |
|
47 | 47 | else |
|
48 | 48 | # Authenticate user |
|
49 | if using_open_id? && Setting.openid? | |
|
49 | if Setting.openid? && using_open_id? | |
|
50 | 50 | open_id_authenticate(params[:openid_url]) |
|
51 | 51 | else |
|
52 | 52 | password_authentication |
@@ -140,6 +140,10 class Setting < ActiveRecord::Base | |||
|
140 | 140 | per_page_options.split(%r{[\s,]}).collect(&:to_i).select {|n| n > 0}.sort |
|
141 | 141 | end |
|
142 | 142 | |
|
143 | def self.openid? | |
|
144 | Object.const_defined?(:OpenID) && self['openid'].to_s == '1' | |
|
145 | end | |
|
146 | ||
|
143 | 147 | # Checks if settings have changed since the values were read |
|
144 | 148 | # and clears the cache hash if it's the case |
|
145 | 149 | # Called once per request |
@@ -19,7 +19,7 | |||
|
19 | 19 | <%= check_box_tag 'settings[lost_password]', 1, Setting.lost_password? %><%= hidden_field_tag 'settings[lost_password]', 0 %></p> |
|
20 | 20 | |
|
21 | 21 | <p><label><%= l(:setting_openid) %></label> |
|
22 | <%= check_box_tag 'settings[openid]', 1, Setting.openid? %><%= hidden_field_tag 'settings[openid]', 0 %></p> | |
|
22 | <%= check_box_tag 'settings[openid]', 1, Setting.openid?, :disabled => !Object.const_defined?(:OpenID) %><%= hidden_field_tag 'settings[openid]', 0 %></p> | |
|
23 | 23 | </div> |
|
24 | 24 | |
|
25 | 25 | <div style="float:right;"> |
@@ -64,6 +64,8 class AccountControllerTest < Test::Unit::TestCase | |||
|
64 | 64 | :content => /Invalid user or password/ |
|
65 | 65 | end |
|
66 | 66 | |
|
67 | if Object.const_defined?(:OpenID) | |
|
68 | ||
|
67 | 69 | def test_login_with_openid_for_existing_user |
|
68 | 70 | Setting.self_registration = '3' |
|
69 | 71 | Setting.openid = '1' |
@@ -134,6 +136,11 class AccountControllerTest < Test::Unit::TestCase | |||
|
134 | 136 | assert_equal 'http://openid.example.com/good_user', assigns(:user)[:identity_url] |
|
135 | 137 | end |
|
136 | 138 | |
|
139 | else | |
|
140 | puts "Skipping openid tests." | |
|
141 | end | |
|
142 | ||
|
143 | ||
|
137 | 144 | def test_autologin |
|
138 | 145 | Setting.autologin = "7" |
|
139 | 146 | Token.delete_all |
@@ -1,34 +1,34 | |||
|
1 | # redMine - project management software | |
|
2 | # Copyright (C) 2006 Jean-Philippe Lang | |
|
3 | # | |
|
4 | # This program is free software; you can redistribute it and/or | |
|
5 | # modify it under the terms of the GNU General Public License | |
|
6 | # as published by the Free Software Foundation; either version 2 | |
|
7 | # of the License, or (at your option) any later version. | |
|
8 | # | |
|
9 | # This program is distributed in the hope that it will be useful, | |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
12 | # GNU General Public License for more details. | |
|
13 | # | |
|
14 | # You should have received a copy of the GNU General Public License | |
|
15 | # along with this program; if not, write to the Free Software | |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
|
17 | ||
|
18 | require File.dirname(__FILE__) + '/../test_helper' | |
|
19 | ||
|
20 | class UserTest < Test::Unit::TestCase | |
|
21 | fixtures :users, :members, :projects | |
|
22 | ||
|
23 | def setup | |
|
24 | @admin = User.find(1) | |
|
25 | @jsmith = User.find(2) | |
|
26 | @dlopper = User.find(3) | |
|
27 | end | |
|
28 | ||
|
29 | def test_truth | |
|
30 | assert_kind_of User, @jsmith | |
|
31 | end | |
|
1 | # redMine - project management software | |
|
2 | # Copyright (C) 2006 Jean-Philippe Lang | |
|
3 | # | |
|
4 | # This program is free software; you can redistribute it and/or | |
|
5 | # modify it under the terms of the GNU General Public License | |
|
6 | # as published by the Free Software Foundation; either version 2 | |
|
7 | # of the License, or (at your option) any later version. | |
|
8 | # | |
|
9 | # This program is distributed in the hope that it will be useful, | |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
12 | # GNU General Public License for more details. | |
|
13 | # | |
|
14 | # You should have received a copy of the GNU General Public License | |
|
15 | # along with this program; if not, write to the Free Software | |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
|
17 | ||
|
18 | require File.dirname(__FILE__) + '/../test_helper' | |
|
19 | ||
|
20 | class UserTest < Test::Unit::TestCase | |
|
21 | fixtures :users, :members, :projects | |
|
22 | ||
|
23 | def setup | |
|
24 | @admin = User.find(1) | |
|
25 | @jsmith = User.find(2) | |
|
26 | @dlopper = User.find(3) | |
|
27 | end | |
|
28 | ||
|
29 | def test_truth | |
|
30 | assert_kind_of User, @jsmith | |
|
31 | end | |
|
32 | 32 | |
|
33 | 33 | def test_create |
|
34 | 34 | user = User.new(:firstname => "new", :lastname => "user", :mail => "newuser@somenet.foo") |
@@ -47,160 +47,166 class UserTest < Test::Unit::TestCase | |||
|
47 | 47 | |
|
48 | 48 | user.password, user.password_confirmation = "password", "password" |
|
49 | 49 | assert user.save |
|
50 | end | |
|
51 | ||
|
52 | def test_mail_uniqueness_should_not_be_case_sensitive | |
|
53 | u = User.new(:firstname => "new", :lastname => "user", :mail => "newuser@somenet.foo") | |
|
54 | u.login = 'newuser1' | |
|
55 | u.password, u.password_confirmation = "password", "password" | |
|
56 | assert u.save | |
|
57 | ||
|
58 | u = User.new(:firstname => "new", :lastname => "user", :mail => "newUser@Somenet.foo") | |
|
59 | u.login = 'newuser2' | |
|
60 | u.password, u.password_confirmation = "password", "password" | |
|
61 | assert !u.save | |
|
62 | assert_equal 'activerecord_error_taken', u.errors.on(:mail) | |
|
63 | end | |
|
64 | ||
|
65 | def test_update | |
|
66 | assert_equal "admin", @admin.login | |
|
67 | @admin.login = "john" | |
|
68 | assert @admin.save, @admin.errors.full_messages.join("; ") | |
|
69 | @admin.reload | |
|
70 | assert_equal "john", @admin.login | |
|
71 | end | |
|
72 | ||
|
73 | def test_destroy | |
|
74 | User.find(2).destroy | |
|
75 | assert_nil User.find_by_id(2) | |
|
76 | assert Member.find_all_by_user_id(2).empty? | |
|
77 | end | |
|
78 | ||
|
79 | def test_validate | |
|
80 | @admin.login = "" | |
|
81 | assert !@admin.save | |
|
82 | assert_equal 1, @admin.errors.count | |
|
83 | end | |
|
84 | ||
|
85 | def test_password | |
|
86 | user = User.try_to_login("admin", "admin") | |
|
87 | assert_kind_of User, user | |
|
88 | assert_equal "admin", user.login | |
|
89 | user.password = "hello" | |
|
90 | assert user.save | |
|
91 | ||
|
92 | user = User.try_to_login("admin", "hello") | |
|
93 | assert_kind_of User, user | |
|
94 | assert_equal "admin", user.login | |
|
95 | assert_equal User.hash_password("hello"), user.hashed_password | |
|
96 | end | |
|
97 | ||
|
98 | def test_name_format | |
|
99 | assert_equal 'Smith, John', @jsmith.name(:lastname_coma_firstname) | |
|
100 | Setting.user_format = :firstname_lastname | |
|
101 | assert_equal 'John Smith', @jsmith.reload.name | |
|
102 | Setting.user_format = :username | |
|
103 | assert_equal 'jsmith', @jsmith.reload.name | |
|
104 | end | |
|
105 | ||
|
106 | def test_lock | |
|
107 | user = User.try_to_login("jsmith", "jsmith") | |
|
108 | assert_equal @jsmith, user | |
|
109 | ||
|
110 | @jsmith.status = User::STATUS_LOCKED | |
|
111 | assert @jsmith.save | |
|
112 | ||
|
113 | user = User.try_to_login("jsmith", "jsmith") | |
|
114 | assert_equal nil, user | |
|
115 | end | |
|
116 | ||
|
117 | def test_create_anonymous | |
|
118 | AnonymousUser.delete_all | |
|
119 | anon = User.anonymous | |
|
120 | assert !anon.new_record? | |
|
121 | assert_kind_of AnonymousUser, anon | |
|
122 | end | |
|
123 | ||
|
124 | def test_rss_key | |
|
125 | assert_nil @jsmith.rss_token | |
|
126 | key = @jsmith.rss_key | |
|
127 | assert_equal 40, key.length | |
|
128 | ||
|
129 | @jsmith.reload | |
|
130 | assert_equal key, @jsmith.rss_key | |
|
131 | end | |
|
132 | ||
|
133 | def test_role_for_project | |
|
134 | # user with a role | |
|
135 | role = @jsmith.role_for_project(Project.find(1)) | |
|
136 | assert_kind_of Role, role | |
|
137 | assert_equal "Manager", role.name | |
|
138 | ||
|
139 | # user with no role | |
|
140 | assert !@dlopper.role_for_project(Project.find(2)).member? | |
|
141 | end | |
|
142 | ||
|
143 | def test_mail_notification_all | |
|
144 | @jsmith.mail_notification = true | |
|
145 | @jsmith.notified_project_ids = [] | |
|
146 | @jsmith.save | |
|
147 | @jsmith.reload | |
|
148 | assert @jsmith.projects.first.recipients.include?(@jsmith.mail) | |
|
149 | end | |
|
150 | ||
|
151 | def test_mail_notification_selected | |
|
152 | @jsmith.mail_notification = false | |
|
153 | @jsmith.notified_project_ids = [1] | |
|
154 | @jsmith.save | |
|
155 | @jsmith.reload | |
|
156 | assert Project.find(1).recipients.include?(@jsmith.mail) | |
|
157 | end | |
|
158 | ||
|
159 | def test_mail_notification_none | |
|
160 | @jsmith.mail_notification = false | |
|
161 | @jsmith.notified_project_ids = [] | |
|
162 | @jsmith.save | |
|
163 | @jsmith.reload | |
|
164 | assert !@jsmith.projects.first.recipients.include?(@jsmith.mail) | |
|
165 | end | |
|
166 | ||
|
167 | def test_comments_sorting_preference | |
|
168 | assert !@jsmith.wants_comments_in_reverse_order? | |
|
169 | @jsmith.pref.comments_sorting = 'asc' | |
|
170 | assert !@jsmith.wants_comments_in_reverse_order? | |
|
171 | @jsmith.pref.comments_sorting = 'desc' | |
|
172 | assert @jsmith.wants_comments_in_reverse_order? | |
|
173 | end | |
|
174 | ||
|
175 | def test_find_by_mail_should_be_case_insensitive | |
|
176 | u = User.find_by_mail('JSmith@somenet.foo') | |
|
177 | assert_not_nil u | |
|
178 | assert_equal 'jsmith@somenet.foo', u.mail | |
|
179 | end | |
|
180 | ||
|
181 | def test_random_password | |
|
182 | u = User.new | |
|
183 | u.random_password | |
|
184 | assert !u.password.blank? | |
|
185 | assert !u.password_confirmation.blank? | |
|
186 | end | |
|
187 | ||
|
188 | def test_setting_identity_url | |
|
189 | normalized_open_id_url = 'http://example.com/' | |
|
190 | u = User.new( :identity_url => 'http://example.com/' ) | |
|
191 | assert_equal normalized_open_id_url, u.identity_url | |
|
192 | end | |
|
193 | ||
|
194 | def test_setting_identity_url_without_trailing_slash | |
|
195 | normalized_open_id_url = 'http://example.com/' | |
|
196 | u = User.new( :identity_url => 'http://example.com' ) | |
|
197 | assert_equal normalized_open_id_url, u.identity_url | |
|
198 | end | |
|
199 | ||
|
200 | def test_setting_identity_url_without_protocol | |
|
201 | normalized_open_id_url = 'http://example.com/' | |
|
202 | u = User.new( :identity_url => 'example.com' ) | |
|
203 | assert_equal normalized_open_id_url, u.identity_url | |
|
204 | end | |
|
205 | ||
|
206 | end | |
|
50 | end | |
|
51 | ||
|
52 | def test_mail_uniqueness_should_not_be_case_sensitive | |
|
53 | u = User.new(:firstname => "new", :lastname => "user", :mail => "newuser@somenet.foo") | |
|
54 | u.login = 'newuser1' | |
|
55 | u.password, u.password_confirmation = "password", "password" | |
|
56 | assert u.save | |
|
57 | ||
|
58 | u = User.new(:firstname => "new", :lastname => "user", :mail => "newUser@Somenet.foo") | |
|
59 | u.login = 'newuser2' | |
|
60 | u.password, u.password_confirmation = "password", "password" | |
|
61 | assert !u.save | |
|
62 | assert_equal 'activerecord_error_taken', u.errors.on(:mail) | |
|
63 | end | |
|
64 | ||
|
65 | def test_update | |
|
66 | assert_equal "admin", @admin.login | |
|
67 | @admin.login = "john" | |
|
68 | assert @admin.save, @admin.errors.full_messages.join("; ") | |
|
69 | @admin.reload | |
|
70 | assert_equal "john", @admin.login | |
|
71 | end | |
|
72 | ||
|
73 | def test_destroy | |
|
74 | User.find(2).destroy | |
|
75 | assert_nil User.find_by_id(2) | |
|
76 | assert Member.find_all_by_user_id(2).empty? | |
|
77 | end | |
|
78 | ||
|
79 | def test_validate | |
|
80 | @admin.login = "" | |
|
81 | assert !@admin.save | |
|
82 | assert_equal 1, @admin.errors.count | |
|
83 | end | |
|
84 | ||
|
85 | def test_password | |
|
86 | user = User.try_to_login("admin", "admin") | |
|
87 | assert_kind_of User, user | |
|
88 | assert_equal "admin", user.login | |
|
89 | user.password = "hello" | |
|
90 | assert user.save | |
|
91 | ||
|
92 | user = User.try_to_login("admin", "hello") | |
|
93 | assert_kind_of User, user | |
|
94 | assert_equal "admin", user.login | |
|
95 | assert_equal User.hash_password("hello"), user.hashed_password | |
|
96 | end | |
|
97 | ||
|
98 | def test_name_format | |
|
99 | assert_equal 'Smith, John', @jsmith.name(:lastname_coma_firstname) | |
|
100 | Setting.user_format = :firstname_lastname | |
|
101 | assert_equal 'John Smith', @jsmith.reload.name | |
|
102 | Setting.user_format = :username | |
|
103 | assert_equal 'jsmith', @jsmith.reload.name | |
|
104 | end | |
|
105 | ||
|
106 | def test_lock | |
|
107 | user = User.try_to_login("jsmith", "jsmith") | |
|
108 | assert_equal @jsmith, user | |
|
109 | ||
|
110 | @jsmith.status = User::STATUS_LOCKED | |
|
111 | assert @jsmith.save | |
|
112 | ||
|
113 | user = User.try_to_login("jsmith", "jsmith") | |
|
114 | assert_equal nil, user | |
|
115 | end | |
|
116 | ||
|
117 | def test_create_anonymous | |
|
118 | AnonymousUser.delete_all | |
|
119 | anon = User.anonymous | |
|
120 | assert !anon.new_record? | |
|
121 | assert_kind_of AnonymousUser, anon | |
|
122 | end | |
|
123 | ||
|
124 | def test_rss_key | |
|
125 | assert_nil @jsmith.rss_token | |
|
126 | key = @jsmith.rss_key | |
|
127 | assert_equal 40, key.length | |
|
128 | ||
|
129 | @jsmith.reload | |
|
130 | assert_equal key, @jsmith.rss_key | |
|
131 | end | |
|
132 | ||
|
133 | def test_role_for_project | |
|
134 | # user with a role | |
|
135 | role = @jsmith.role_for_project(Project.find(1)) | |
|
136 | assert_kind_of Role, role | |
|
137 | assert_equal "Manager", role.name | |
|
138 | ||
|
139 | # user with no role | |
|
140 | assert !@dlopper.role_for_project(Project.find(2)).member? | |
|
141 | end | |
|
142 | ||
|
143 | def test_mail_notification_all | |
|
144 | @jsmith.mail_notification = true | |
|
145 | @jsmith.notified_project_ids = [] | |
|
146 | @jsmith.save | |
|
147 | @jsmith.reload | |
|
148 | assert @jsmith.projects.first.recipients.include?(@jsmith.mail) | |
|
149 | end | |
|
150 | ||
|
151 | def test_mail_notification_selected | |
|
152 | @jsmith.mail_notification = false | |
|
153 | @jsmith.notified_project_ids = [1] | |
|
154 | @jsmith.save | |
|
155 | @jsmith.reload | |
|
156 | assert Project.find(1).recipients.include?(@jsmith.mail) | |
|
157 | end | |
|
158 | ||
|
159 | def test_mail_notification_none | |
|
160 | @jsmith.mail_notification = false | |
|
161 | @jsmith.notified_project_ids = [] | |
|
162 | @jsmith.save | |
|
163 | @jsmith.reload | |
|
164 | assert !@jsmith.projects.first.recipients.include?(@jsmith.mail) | |
|
165 | end | |
|
166 | ||
|
167 | def test_comments_sorting_preference | |
|
168 | assert !@jsmith.wants_comments_in_reverse_order? | |
|
169 | @jsmith.pref.comments_sorting = 'asc' | |
|
170 | assert !@jsmith.wants_comments_in_reverse_order? | |
|
171 | @jsmith.pref.comments_sorting = 'desc' | |
|
172 | assert @jsmith.wants_comments_in_reverse_order? | |
|
173 | end | |
|
174 | ||
|
175 | def test_find_by_mail_should_be_case_insensitive | |
|
176 | u = User.find_by_mail('JSmith@somenet.foo') | |
|
177 | assert_not_nil u | |
|
178 | assert_equal 'jsmith@somenet.foo', u.mail | |
|
179 | end | |
|
180 | ||
|
181 | def test_random_password | |
|
182 | u = User.new | |
|
183 | u.random_password | |
|
184 | assert !u.password.blank? | |
|
185 | assert !u.password_confirmation.blank? | |
|
186 | end | |
|
187 | ||
|
188 | if Object.const_defined?(:OpenID) | |
|
189 | ||
|
190 | def test_setting_identity_url | |
|
191 | normalized_open_id_url = 'http://example.com/' | |
|
192 | u = User.new( :identity_url => 'http://example.com/' ) | |
|
193 | assert_equal normalized_open_id_url, u.identity_url | |
|
194 | end | |
|
195 | ||
|
196 | def test_setting_identity_url_without_trailing_slash | |
|
197 | normalized_open_id_url = 'http://example.com/' | |
|
198 | u = User.new( :identity_url => 'http://example.com' ) | |
|
199 | assert_equal normalized_open_id_url, u.identity_url | |
|
200 | end | |
|
201 | ||
|
202 | def test_setting_identity_url_without_protocol | |
|
203 | normalized_open_id_url = 'http://example.com/' | |
|
204 | u = User.new( :identity_url => 'example.com' ) | |
|
205 | assert_equal normalized_open_id_url, u.identity_url | |
|
206 | end | |
|
207 | ||
|
208 | else | |
|
209 | puts "Skipping openid tests." | |
|
210 | end | |
|
211 | ||
|
212 | end |
|
1 | NO CONTENT: modified file | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed, binary diff hidden |
|
1 | NO CONTENT: file was removed | |
This diff has been collapsed as it changes many lines, (750 lines changed) Show them Hide them |
|
1 | NO CONTENT: file was removed | |
This diff has been collapsed as it changes many lines, (584 lines changed) Show them Hide them |
|
1 | NO CONTENT: file was removed | |
This diff has been collapsed as it changes many lines, (854 lines changed) Show them Hide them |
|
1 | NO CONTENT: file was removed | |
This diff has been collapsed as it changes many lines, (1785 lines changed) Show them Hide them |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed | |
This diff has been collapsed as it changes many lines, (523 lines changed) Show them Hide them |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed | |
This diff has been collapsed as it changes many lines, (516 lines changed) Show them Hide them |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed | |
This diff has been collapsed as it changes many lines, (553 lines changed) Show them Hide them |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed | |
This diff has been collapsed as it changes many lines, (1544 lines changed) Show them Hide them |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: file was removed | |
The requested commit or file is too big and content was truncated. Show full diff |
General Comments 0
You need to be logged in to leave comments.
Login now