This repository has been archived by the owner on Jul 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
Load Base Components only once #233
Open
jayaike
wants to merge
13
commits into
Cloud-CV:master
Choose a base branch
from
jayaike:Base-Component-Features
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 9 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d9188da
Removed Base Components (Header and Footer)
jayaike e9e72de
Added Base Components (Header and Footer)
jayaike 6a3b32b
Merge branch 'master' into Base-Component-Features
jayaike 7476a5a
Formatted Code
jayaike 25ed8d2
Removed condition on Footer
jayaike 9d34916
Merge branch 'Base-Component-Features' of https://github.com/nsjcorps…
jayaike 9f17c42
Removed footer
jayaike 8165718
Removed Header
jayaike d7b5f33
Formatted Code
jayaike c91e800
Adjusted footer condition
jayaike 8424cc3
Fixed issues with auth routes
jayaike 8b3fb07
Fixed issues with auth routes
jayaike 421b295
Made authService public
jayaike File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,28 @@ | ||
<app-header-static></app-header-static> | ||
|
||
<div class="about-container"> | ||
<div class="row"> | ||
<div class="col-lg-7 col-md-7 col-sm-12 col-xs-12 about-content-column"> | ||
<h4 class="about-title">About Us</h4> | ||
<p class="about-content">EvalAI is built by a team of open source enthusiasts working at | ||
<a href="http://cloudcv.org" target="_blank" class="blue-text">CloudCV</a>. CloudCV aims to make AI research | ||
reproducible and easily accessible. We want to reduce the barrier to entry for doing research | ||
and make it easier for researchers, students and developers to develop and use state-of-the-art | ||
algorithms as a service.</p> | ||
<p class="about-content">With EvalAI, we want to standardize the process of | ||
evaluating different methods on a dataset and make it simple to host a competition. | ||
Comparing a new method with other existing approaches is an essential component of | ||
research and this process has traditionally been affected by difference in evaluation | ||
metric implementation, different splits of the dataset or minor modifications in the | ||
algorithm. This makes it extremely hard to reproduce numbers from published papers | ||
and reliably compare your method with other existing approaches. By building EvalAI, we | ||
hope to make this easier by standardizing the dataset splits, evaluation metrics and by | ||
maintaining a public leaderboard of hosted challenges.</p> | ||
</div> | ||
<div class="col-lg-5 col-md-5 col-sm-1 col-xs-1"> | ||
<div class="rocket-container"> | ||
<div class="spaceman"> | ||
<img src="assets/images/spaceman.png"> | ||
</div> | ||
<div class="about-container"> | ||
<div class="row"> | ||
<div class="col-lg-7 col-md-7 col-sm-12 col-xs-12 about-content-column"> | ||
<h4 class="about-title">About Us</h4> | ||
<p class="about-content">EvalAI is built by a team of open source enthusiasts working at | ||
<a href="http://cloudcv.org" class="blue-text">CloudCV</a>. CloudCV aims to make AI research | ||
reproducible and easily accessible. We want to reduce the barrier to entry for doing research | ||
and make it easier for researchers, students and developers to develop and use state-of-the-art | ||
algorithms as a service.</p> | ||
<p class="about-content">With EvalAI, we want to standardize the process of | ||
evaluating different methods on a dataset and make it simple to host a competition. | ||
Comparing a new method with other existing approaches is an essential component of | ||
research and this process has traditionally been affected by difference in evaluation | ||
metric implementation, different splits of the dataset or minor modifications in the | ||
algorithm. This makes it extremely hard to reproduce numbers from published papers | ||
and reliably compare your method with other existing approaches. By building EvalAI, we | ||
hope to make this easier by standardizing the dataset splits, evaluation metrics and by | ||
maintaining a public leaderboard of hosted challenges.</p> | ||
</div> | ||
<div class="col-lg-5 col-md-5 col-sm-1 col-xs-1"> | ||
<div class="rocket-container"> | ||
<div class="spaceman"> | ||
<img src="assets/images/spaceman.png"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<app-footer></app-footer> | ||
</div> | ||
</div> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There should only be 1-2 line changes. Other changes are due to spaces, indentation etc. Please remove unnecessary changes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reason for the line changes is I had to format the code after removing the footer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
<app-side-bar *ngIf="authService.isAuth"></app-side-bar> | ||
<app-header-static></app-header-static> | ||
<div class="web-container" [style.center]="!authService.isAuth"> | ||
<div class="dashboard-flex"> | ||
<div class="dashboard-content"> | ||
<router-outlet></router-outlet> | ||
</div> | ||
<app-footer [isDash]="true" *ngIf="authService.isAuth"></app-footer> | ||
</div> | ||
</div> | ||
<div class="clearfix"></div> | ||
|
||
<app-footer *ngIf="!authService.isAuth"></app-footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<app-side-bar *ngIf="authService.isAuth"></app-side-bar> | ||
<app-header-static></app-header-static> | ||
<div class="web-container" [style.center]="!authService.isAuth"> | ||
<div class="challenge-create-flex"> | ||
<div class="challenge-create-content"> | ||
|
@@ -47,8 +46,5 @@ | |
</section> | ||
|
||
</div> | ||
<app-footer [isDash]="true" *ngIf="authService.isAuth"></app-footer> | ||
</div> | ||
</div> | ||
|
||
<app-footer *ngIf="!authService.isAuth"></app-footer> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So now we do not need to check these conditions? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
<app-side-bar *ngIf="authService.isAuth"></app-side-bar> | ||
<app-header-static></app-header-static> | ||
<div class="web-container" [style.center]="!authService.isAuth"> | ||
<div class="dashboard-flex"> | ||
<div class="dashboard-content"> | ||
<app-dashboard-content></app-dashboard-content> | ||
</div> | ||
<!--Dashboard-Footer--> | ||
<app-footer [isDash]="true" *ngIf="authService.isAuth"></app-footer> | ||
</div> | ||
</div> | ||
<div class="clearfix"></div> | ||
|
||
<app-footer *ngIf="!authService.isAuth"></app-footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
<app-side-bar *ngIf="authService.isAuth"></app-side-bar> | ||
<app-header-static></app-header-static> | ||
<div class="web-container" [style.center]="!authService.isAuth"> | ||
<div class="dashboard-flex"> | ||
<div class="dashboard-content"> | ||
<router-outlet></router-outlet> | ||
</div> | ||
<app-footer [isDash]="true" *ngIf="authService.isAuth"></app-footer> | ||
</div> | ||
</div> | ||
<div class="clearfix"></div> | ||
|
||
<app-footer *ngIf="!authService.isAuth"></app-footer> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please format the file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The file is already formatted. See the screenshot below. I guess what you are seeing is the second to the last line.