Remove deprecation warnings for #with

This commit is contained in:
Piotr Sarnacki 2014-12-23 12:12:22 +01:00
parent b771f79587
commit 345dacff29
2 changed files with 26 additions and 23 deletions

View File

@ -7,27 +7,32 @@
<div class="tab">
{{#if isLoaded}}
{{#collection 'repos-list' content=this}}
{{#with view.repo}}
{{#with view.repo as repo}}
<div class="slug-and-status">
<span class="status"></span>
{{#if slug}}
{{#link-to "repo" this class="slug"}}{{slug}}{{/link-to}}
{{#if repo.slug}}
{{#link-to "repo" repo class="slug"}}{{repo.slug}}{{/link-to}}
{{/if}}
</div>
{{#with lastBuildHash}}
{{#with repo.lastBuildHash as lastBuild}}
{{#if repo.slug}}
{{#link-to "build" repo id class="last_build"}}{{number}}{{/link-to}}
{{#link-to "build" repo lastBuild.id
class="last_build"}}{{lastBuild.number}}{{/link-to}}
{{/if}}
{{/with}}
{{#if lastBuildHash.number }}
{{#if repo.lastBuildHash.number }}
<p class="summary">
<span class="duration_label">Duration:</span>
<abbr class="duration" {{bind-attr title="lastBuildStartedAt"}}>{{formatDuration lastBuildDuration}}</abbr>
<abbr class="duration" {{bind-attr title="lastBuildStartedAt"}}>
{{formatDuration repo.lastBuildDuration}}
</abbr>
</p>
<p class="summary">
<span class="finished-icon"></span><span class="finished_at_label">Finished:</span>
<abbr class="finished_at timeago" {{bind-attr title="lastBuildFinishedAt"}}>{{formatTime lastBuildFinishedAt}}</abbr>
<abbr class="finished_at timeago" {{bind-attr title="lastBuildFinishedAt"}}>
{{formatTime repo.lastBuildFinishedAt}}
</abbr>
</p>
{{/if}}

View File

@ -3,24 +3,22 @@
{{view Travis.ReposEmptyView}}
{{else}}
{{#if repo.isLoaded}}
{{#with repo}}
<div id="repo-header">
<h3>{{#link-to "repo" this}}{{slug}}{{/link-to}}</h3>
<div class="github-icon"><a {{bind-attr href="controller.urlGithub"}}><img src="/images/icons/github.svg" width="21" height="21"/></a></div>
<div class="status-image">
<a href="#" id="status-image-popup" name="status-images" class="open-popup" {{action "statusImages" target="view"}}>
<img {{bind-attr src="view.statusImageUrl"}} title="Build Status Images"/>
</a>
</div>
{{view 'repo-show-tools'}}
<div id="repo-header">
<h3>{{#link-to "repo" repo}}{{repo.slug}}{{/link-to}}</h3>
<div class="github-icon"><a {{bind-attr href="controller.urlGithub"}}><img src="/images/icons/github.svg" width="21" height="21"/></a></div>
<div class="status-image">
<a href="#" id="status-image-popup" name="status-images" class="open-popup" {{action "statusImages" target="view"}}>
<img {{bind-attr src="view.statusImageUrl"}} title="Build Status Images"/>
</a>
</div>
<p class="description">{{description}}</p>
{{view 'repo-show-tools'}}
</div>
{{view 'repo-show-tabs'}}
{{view 'repo-actions'}}
{{/with}}
<p class="description">{{description}}</p>
{{view 'repo-show-tabs'}}
{{view 'repo-actions'}}
<div class="tab">
{{outlet}}