Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CSAN
Csan
Commits
b9c8fe51
Commit
b9c8fe51
authored
Apr 13, 2017
by
wy65701436
Browse files
replace header of ts files
parent
baf5dd1f
Changes
133
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
260 additions
and
0 deletions
+260
-0
src/ui_ng/e2e/app.e2e-spec.ts
src/ui_ng/e2e/app.e2e-spec.ts
+13
-0
src/ui_ng/e2e/app.po.ts
src/ui_ng/e2e/app.po.ts
+13
-0
src/ui_ng/src/app/account/account-settings/account-settings-modal.component.ts
...ount/account-settings/account-settings-modal.component.ts
+13
-0
src/ui_ng/src/app/account/account.module.ts
src/ui_ng/src/app/account/account.module.ts
+13
-0
src/ui_ng/src/app/account/password/forgot-password.component.ts
..._ng/src/app/account/password/forgot-password.component.ts
+13
-0
src/ui_ng/src/app/account/password/password-setting.component.ts
...ng/src/app/account/password/password-setting.component.ts
+13
-0
src/ui_ng/src/app/account/password/password-setting.service.ts
...i_ng/src/app/account/password/password-setting.service.ts
+13
-0
src/ui_ng/src/app/account/password/password-setting.ts
src/ui_ng/src/app/account/password/password-setting.ts
+13
-0
src/ui_ng/src/app/account/password/reset-password.component.ts
...i_ng/src/app/account/password/reset-password.component.ts
+13
-0
src/ui_ng/src/app/account/sign-in/sign-in.component.ts
src/ui_ng/src/app/account/sign-in/sign-in.component.ts
+13
-0
src/ui_ng/src/app/account/sign-in/sign-in.service.ts
src/ui_ng/src/app/account/sign-in/sign-in.service.ts
+13
-0
src/ui_ng/src/app/account/sign-up/sign-up-page.component.ts
src/ui_ng/src/app/account/sign-up/sign-up-page.component.ts
+13
-0
src/ui_ng/src/app/account/sign-up/sign-up.component.ts
src/ui_ng/src/app/account/sign-up/sign-up.component.ts
+13
-0
src/ui_ng/src/app/app-config.service.ts
src/ui_ng/src/app/app-config.service.ts
+13
-0
src/ui_ng/src/app/app-config.ts
src/ui_ng/src/app/app-config.ts
+13
-0
src/ui_ng/src/app/app.component.spec.ts
src/ui_ng/src/app/app.component.spec.ts
+13
-0
src/ui_ng/src/app/app.component.ts
src/ui_ng/src/app/app.component.ts
+13
-0
src/ui_ng/src/app/app.module.ts
src/ui_ng/src/app/app.module.ts
+13
-0
src/ui_ng/src/app/base/base.module.ts
src/ui_ng/src/app/base/base.module.ts
+13
-0
src/ui_ng/src/app/base/footer/footer.component.ts
src/ui_ng/src/app/base/footer/footer.component.ts
+13
-0
No files found.
src/ui_ng/e2e/app.e2e-spec.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
ClaritySeedAppHome
}
from
'
./app.po
'
;
fdescribe
(
'
clarity-seed app
'
,
function
()
{
...
...
src/ui_ng/e2e/app.po.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
browser
,
element
,
by
}
from
'
protractor
'
;
...
...
src/ui_ng/src/app/account/account-settings/account-settings-modal.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
,
OnInit
,
ViewChild
,
AfterViewChecked
}
from
'
@angular/core
'
;
import
{
NgForm
}
from
'
@angular/forms
'
;
...
...
src/ui_ng/src/app/account/account.module.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
NgModule
}
from
'
@angular/core
'
;
import
{
RouterModule
}
from
'
@angular/router
'
;
import
{
CoreModule
}
from
'
../core/core.module
'
;
...
...
src/ui_ng/src/app/account/password/forgot-password.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
,
ViewChild
}
from
'
@angular/core
'
;
import
{
Router
}
from
'
@angular/router
'
;
import
{
NgForm
}
from
'
@angular/forms
'
;
...
...
src/ui_ng/src/app/account/password/password-setting.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
,
ViewChild
,
AfterViewChecked
}
from
'
@angular/core
'
;
import
{
Router
}
from
'
@angular/router
'
;
import
{
NgForm
}
from
'
@angular/forms
'
;
...
...
src/ui_ng/src/app/account/password/password-setting.service.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Injectable
}
from
'
@angular/core
'
;
import
{
Headers
,
Http
,
RequestOptions
,
URLSearchParams
}
from
'
@angular/http
'
;
import
'
rxjs/add/operator/toPromise
'
;
...
...
src/ui_ng/src/app/account/password/password-setting.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
*
* Struct for password change
...
...
src/ui_ng/src/app/account/password/reset-password.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
,
ViewChild
,
OnInit
}
from
'
@angular/core
'
;
import
{
Router
,
ActivatedRoute
}
from
'
@angular/router
'
;
import
{
NgForm
}
from
'
@angular/forms
'
;
...
...
src/ui_ng/src/app/account/sign-in/sign-in.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
,
OnInit
}
from
'
@angular/core
'
;
import
{
Router
,
ActivatedRoute
}
from
'
@angular/router
'
;
import
{
Input
,
ViewChild
,
AfterViewChecked
}
from
'
@angular/core
'
;
...
...
src/ui_ng/src/app/account/sign-in/sign-in.service.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Injectable
}
from
'
@angular/core
'
;
import
{
Headers
,
Http
,
URLSearchParams
}
from
'
@angular/http
'
;
import
'
rxjs/add/operator/toPromise
'
;
...
...
src/ui_ng/src/app/account/sign-up/sign-up-page.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
,
Output
,
ViewChild
,
OnInit
}
from
'
@angular/core
'
;
import
{
NgForm
}
from
'
@angular/forms
'
;
import
{
Router
}
from
'
@angular/router
'
;
...
...
src/ui_ng/src/app/account/sign-up/sign-up.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
,
Output
,
ViewChild
,
EventEmitter
}
from
'
@angular/core
'
;
import
{
NgForm
}
from
'
@angular/forms
'
;
...
...
src/ui_ng/src/app/app-config.service.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Injectable
}
from
'
@angular/core
'
;
import
{
Headers
,
Http
,
RequestOptions
}
from
'
@angular/http
'
;
import
'
rxjs/add/operator/toPromise
'
;
...
...
src/ui_ng/src/app/app-config.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
export
class
AppConfig
{
constructor
(){
//Set default value
...
...
src/ui_ng/src/app/app.component.spec.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/* tslint:disable:no-unused-variable */
// import { TestBed, async, ComponentFixture } from '@angular/core/testing';
...
...
src/ui_ng/src/app/app.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
,
ReflectiveInjector
,
LOCALE_ID
}
from
'
@angular/core
'
;
import
{
TranslateService
}
from
'
@ngx-translate/core
'
;
import
{
CookieService
}
from
'
angular2-cookie/core
'
;
...
...
src/ui_ng/src/app/app.module.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
BrowserModule
}
from
'
@angular/platform-browser
'
;
import
{
NgModule
,
APP_INITIALIZER
,
LOCALE_ID
}
from
'
@angular/core
'
;
import
{
FormsModule
}
from
'
@angular/forms
'
;
...
...
src/ui_ng/src/app/base/base.module.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
NgModule
}
from
'
@angular/core
'
;
import
{
SharedModule
}
from
'
../shared/shared.module
'
;
import
{
RouterModule
}
from
'
@angular/router
'
;
...
...
src/ui_ng/src/app/base/footer/footer.component.ts
View file @
b9c8fe51
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import
{
Component
}
from
'
@angular/core
'
;
import
{
Router
}
from
'
@angular/router
'
;
...
...
Prev
1
2
3
4
5
…
7
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment