commit stringlengths 40 40 | old_file stringlengths 7 120 | new_file stringlengths 7 120 | old_contents stringlengths 0 1.87k | new_contents stringlengths 33 2.34k | subject stringlengths 20 137 | message stringlengths 21 1.97k | lang stringclasses 1
value | license stringclasses 9
values | repos stringlengths 10 20k |
|---|---|---|---|---|---|---|---|---|---|
8d6d5d430ece851b1d527577a86247407d9bb902 | app/views/adminUsers.hbs | app/views/adminUsers.hbs | <section class="ui raised segment">
<h2>Administrate Users</h2>
<form class="ui form" action="/admin/users/delete" method="POST">
<div class="fields">
<table class="ui celled padded table">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Description</th>
<th>
<button class="ui negative button" type="submit">Delete Selected</button>
</th>
</tr>
</thead>
<tbody>
{{#each users}}
<tr>
<td>{{firstName}}</td>
<td>{{lastName}}</td>
<td>{{email}}</td>
<td>{{description}}</td>
<td>
<div class="inline field">
<div class="ui checkbox">
<input type="checkbox" class="hidden" value="{{_id}}" name="selectedUsers[]">
</div>
</div>
</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</form>
</section>
| <section class="ui raised segment">
<h2>Administrate Users</h2>
<form class="ui form" action="/admin/users/delete" method="POST">
<div class="fields">
<table class="ui celled padded table">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Description</th>
<th>
<button class="ui negative button" type="submit">Delete Selected</button>
</th>
<th>
Actions
</th>
</tr>
</thead>
<tbody>
{{#each users}}
<tr>
<td>{{firstName}}</td>
<td>{{lastName}}</td>
<td>{{email}}</td>
<td>{{description}}</td>
<td>
<div class="inline field">
<div class="ui checkbox">
<input type="checkbox" class="hidden" value="{{_id}}" name="selectedUsers[]">
</div>
</div>
</td>
<td>
<a class="ui button" href="/users/{{_id}}">View Profile</a>
</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</form>
</section>
| Add ability to view each profile in dashboard | Add ability to view each profile in dashboard
| Handlebars | mit | FritzFlorian/true-parrot,FritzFlorian/true-parrot |
1a6dc7edebbcf694b1705fe9f107e9797b618147 | src/partials/manchester/big-change-promo.hbs | src/partials/manchester/big-change-promo.hbs | {{>divider class="is-hidden--smallscreen"}}
<div class="block__section">
<p>Donate to a central funds supporting people experiencing homelessness in Manchester</p>
<div class="block__cta block__cta--incopy block__cta--2">
{{>cta brand="d" icon="big-change" link="http://campaign.justgiving.com/charity/forevermanchester/bigchangemcr" name="Big Change - to support individuals"}}
{{>cta brand="d" icon="money" link="https://www.gofundme.com/GM-Mayoral-Fund" name="GM Mayor's Fund - to support projects"}}
</div>
<a href="http://campaign.justgiving.com/charity/forevermanchester/bigchangemcr" class="display-block">
<figure class="logo">
<img src="../../assets/img/justgiving.png" alt="Just Giving" />
</figure>
</a>
<p>Donating to the Big Change Fund is an effective way to support people who are homeless in Manchester. Donations pay for practical items that individuals need to build new lives off the streets, such as rent deposits and training courses. If everyone who lives, works or visits Manchester donates, together we can make Big Changes in our city!</p>
<a href="/manchester/bigchangemcr" class="btn btn--brand-e btn--full">
<span class="btn__text">Read more about Big Change</span>
</a>
</div>
{{>divider class="is-hidden--smallscreen"}}
| {{>divider class="is-hidden--smallscreen"}}
<div class="block__section">
<p>Donate to one of the central funds supporting people experiencing homelessness in Manchester...</p>
<div class="block__cta block__cta--incopy block__cta--2">
{{>cta brand="d" icon="big-change" link="/manchester/bigchangemcr" name="Big Change - to support individuals"}}
{{>cta brand="d" icon="money" link="https://www.gofundme.com/GM-Mayoral-Fund" name="GM Mayor's Fund - to support projects"}}
</div>
</div>
{{>divider class="is-hidden--smallscreen"}}
| Update so big change and mayor fund are single buttons, no extra copy. | Update so big change and mayor fund are single buttons, no extra copy.
| Handlebars | mit | StreetSupport/streetsupport-web,StreetSupport/streetsupport-web,StreetSupport/streetsupport-web |
d33aac8a2d7c89066818c6fab33be43111ee2b8c | src/export/review.html.hbs | src/export/review.html.hbs | <html>
<head>
<title>Subtitles from {{filename}}</title>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet" type="text/css">
<style >
</style>
</head>
<body>
<h1>Subtitles from {{filename}}</h1>
{{#each subtitles}}
<div class="subtitle">
<img class="thumbnail" src="{{image_path}}">
<img class="play-button" src="play.svg"
onclick="document.getElementById('audio-{{index}}').play()">
<audio id="audio-{{index}}" src="{{audio_path}}"></audio>
<div class="text">
<p class="foreign">{{foreign_text}}</p>
{{#if native_text}}
<p class="native">{{native_text}}</p>
{{/if}}
</div>
</div>
{{/each}}
</body>
</html>
| <html>
<head>
<title>Subtitles from {{filename}}</title>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Subtitles from {{filename}}</h1>
{{#each subtitles}}
<div class="subtitle">
<img class="thumbnail" src="{{image_path}}">
<img class="play-button" src="play.svg"
onclick="document.getElementById('audio-{{index}}').play()">
<audio id="audio-{{index}}" src="{{audio_path}}"></audio>
<div class="text">
<p class="foreign">{{foreign_text}}</p>
{{#if native_text}}
<p class="native">{{native_text}}</p>
{{/if}}
</div>
</div>
{{/each}}
</body>
</html>
| Remove leftover tags from HTML template | Remove leftover tags from HTML template
| Handlebars | cc0-1.0 | emk/substudy,emk/substudy,emk/substudy,emk/substudy,emk/substudy |
88fea83bc1c4b2dd31b9c22d7a5df8bab4c2f42b | ui/app/templates/application.hbs | ui/app/templates/application.hbs | {{partial "svg-patterns"}}
{{#unless error}}
{{outlet}}
{{else}}
<div class="error-container">
<div class="error-message">
{{#if is500}}
<h1 class="title is-spaced">Server Error</h1>
<p class="subtitle">A server error prevented data from being sent to the client.</p>
{{else if is404}}
<h1 class="title is-spaced">Not Found</h1>
<p class="subtitle">What you're looking for couldn't be found. It either doesn't exist or you are not authorized to see it.</p>
{{/if}}
{{#if (eq config.environment "development")}}
<pre class="error-stack-trace"><code>{{errorStr}}</code></pre>
{{/if}}
</div>
</div>
{{/unless}}
| {{partial "svg-patterns"}}
{{#unless error}}
{{outlet}}
{{else}}
<div class="error-container">
<div class="error-message">
{{#if is500}}
<h1 class="title is-spaced">Server Error</h1>
<p class="subtitle">A server error prevented data from being sent to the client.</p>
{{else if is404}}
<h1 class="title is-spaced">Not Found</h1>
<p class="subtitle">What you're looking for couldn't be found. It either doesn't exist or you are not authorized to see it.</p>
{{else}}
<h1 class="title is-spaced">Error</h1>
<p class="subtitle">Something went wrong.</p>
{{/if}}
{{#if (eq config.environment "development")}}
<pre class="error-stack-trace"><code>{{errorStr}}</code></pre>
{{/if}}
</div>
</div>
{{/unless}}
| Add a generic catch-all error message | Add a generic catch-all error message
| Handlebars | mpl-2.0 | burdandrei/nomad,hashicorp/nomad,dvusboy/nomad,hashicorp/nomad,burdandrei/nomad,nak3/nomad,burdandrei/nomad,burdandrei/nomad,hashicorp/nomad,hashicorp/nomad,Ashald/nomad,Ashald/nomad,dvusboy/nomad,dvusboy/nomad,Ashald/nomad,hashicorp/nomad,hashicorp/nomad,burdandrei/nomad,nak3/nomad,Ashald/nomad,nak3/nomad,burdandrei/nomad,nak3/nomad,dvusboy/nomad,burdandrei/nomad,nak3/nomad,Ashald/nomad,dvusboy/nomad,dvusboy/nomad,nak3/nomad,dvusboy/nomad,nak3/nomad,Ashald/nomad,Ashald/nomad |
c8970d9d16234cdadca19eb0976300c7548180c2 | addon/templates/components/goal/goal-overview.hbs | addon/templates/components/goal/goal-overview.hbs | <div class="mdl-card__title">
<h2 class="mdl-card__title-text">{{model.title}}</h2>
</div>
{{#if showAll}}
<div class="mdl-card__supporting-text">
{{model.description}}
{{component 'bepstore-goals@goal/core-team' team=model}}
</div>
<div class="mdl-card__actions mdl-card--border">
{{mdl-button isRaised=true text='Go to goal' action="open"}}
</div>
{{/if}}
<div class="mdl-card__menu">
{{mdl-icon badge=model.contributors.length icon='group' class='mdl-badge--overlap vbottom '}}
{{component 'bepstore-goals@badge/status-badge' status=model.status size='small' class='inline-block'}}
{{#if showAll}}
{{mdl-button icon='expand_less' isColored=false action='showDescr'}}
{{else}}
{{mdl-button icon='expand_more' isColored=false action='showDescr'}}
{{/if}}
</div>
| <div class="mdl-card__title" {{action 'open'}}>
<h2 class="mdl-card__title-text">{{model.title}}</h2>
</div>
{{#if showAll}}
<div class="mdl-card__supporting-text">
{{model.description}}
{{component 'bepstore-goals@goal/core-team' team=model}}
</div>
<div class="mdl-card__actions mdl-card--border">
{{mdl-button isRaised=true text='Go to goal' action="open"}}
</div>
{{/if}}
<div class="mdl-card__menu">
{{mdl-icon badge=model.contributors.length icon='group' class='mdl-badge--overlap vbottom '}}
{{component 'bepstore-goals@badge/status-badge' status=model.status size='small' class='inline-block'}}
{{#if showAll}}
{{mdl-button icon='expand_less' isColored=false action='showDescr'}}
{{else}}
{{mdl-button icon='expand_more' isColored=false action='showDescr'}}
{{/if}}
</div>
| Add possibility to directly go to a goal. | Add possibility to directly go to a goal.
| Handlebars | mit | feedbackfruits/bepstore-ui-goals,feedbackfruits/bepstore-ui-goals |
9e1fd2cde34de895f0427809f38caa393c687ffc | app/templates/components/spendings-meter.hbs | app/templates/components/spendings-meter.hbs | <div class="text-right spendings-cont">
<div class="current-spendings">
<div class="spendings-currency">{{currency}}</div>
<div class="spendings-value">{{data}}</div>
</div>
<div class="today-date-display">
{{#if isInPast}}
<div class="isInPast-warning mdl-shadow--2dp">
<p>
<strong>Previous time period selected!</strong>
<small>All new expenses will be saved into the selected time period.</small>
</p>
</div>
{{else}}
<span>{{todaysDate.dayName}}</span>
<em>{{todaysDate.date}}</em>
{{/if}}
</div>
</div>
| <div class="text-right spendings-cont">
<div class="current-spendings">
<div class="spendings-currency">{{currency}}</div>
<div class="spendings-value">{{data}}</div>
</div>
<div class="today-date-display">
{{#if isInPast}}
<div class="isInPast-warning mdl-shadow--2dp">
<p>
<strong>Previous time period selected!</strong>
<small>All new expenses will be saved into the selected time period.</small>
</p>
</div>
{{else}}
<div class="date-cont">
<span class="date-day">{{todaysDate.dayName}}</span>
<em class="date-date">{{todaysDate.date}}</em>
</div>
{{/if}}
</div>
</div>
| Add classes for elements in spendings meter element | refactor: Add classes for elements in spendings meter element
| Handlebars | mit | pe1te3son/spendings-tracker,pe1te3son/spendings-tracker |
309281e1136a82ccf768c5a841ed7fbd8ae223fe | frontend/app/templates/components/intranet-sidebar.hbs | frontend/app/templates/components/intranet-sidebar.hbs | <div class="col-sm-3 col-md-2 sidebar">
{{#if session.isAuthenticated }}
<h4><span class="glyphicon glyphicon-music"></span> Catalogue</h4>
<ul class="nav nav-sidebar">
<li>{{#link-to 'catalogue.search'}}Quick Search{{/link-to}}</li>
<li><a href="#">Advanced Search</a></li>
<li>{{#link-to 'catalogue.latest'}}New Releases{{/link-to}}</li>
<li><a href="#">Create Entry</a></li>
<li><a href="#">Statistics</a></li>
</ul>
{{/if}}
<h4><span class="glyphicon glyphicon-list-alt"></span> Playlists</h4>
<ul class="nav nav-sidebar">
<li>{{#link-to 'playlists.new'}}New Playlists{{/link-to}}</li>
<li>{{#link-to 'playlists'}}Recent Playlists{{/link-to}}</li>
</ul>
{{#if session.isAuthenticated }}
<h4><span class="glyphicon glyphicon-bullhorn"></span> Show Downloads</h4>
<ul class="nav nav-sidebar">
<li><a href="">Voice Logger Files</a></li>
<li><a href="">Show Logger Files</a></li>
</ul>
{{/if}}
</div>
| <div class="col-sm-3 col-md-2 sidebar">
{{#if session.isAuthenticated }}
<h4><span class="glyphicon glyphicon-music"></span> Catalogue</h4>
<ul class="nav nav-sidebar">
<li>{{#link-to 'catalogue.search'}}Quick Search{{/link-to}}</li>
<li><a href="#">Advanced Search</a></li>
<li>{{#link-to 'catalogue.latest' (query-params page=1)}}New Releases{{/link-to}}</li>
<li><a href="#">Create Entry</a></li>
<li><a href="#">Statistics</a></li>
</ul>
{{/if}}
<h4><span class="glyphicon glyphicon-list-alt"></span> Playlists</h4>
<ul class="nav nav-sidebar">
<li>{{#link-to 'playlists.new'}}New Playlists{{/link-to}}</li>
<li>{{#link-to 'playlists'}}Recent Playlists{{/link-to}}</li>
</ul>
{{#if session.isAuthenticated }}
<h4><span class="glyphicon glyphicon-bullhorn"></span> Show Downloads</h4>
<ul class="nav nav-sidebar">
<li><a href="">Voice Logger Files</a></li>
<li><a href="">Show Logger Files</a></li>
</ul>
{{/if}}
</div>
| Reset page number on linkto new releases on sidebar. | Reset page number on linkto new releases on sidebar.
| Handlebars | mit | ThreeDRadio/playlists,ThreeDRadio/playlists,ThreeDRadio/playlists |
faab32a8e7b6f8004a76da1c65dc3cc365428eb4 | app/public-board/templates/board-detail.hbs | app/public-board/templates/board-detail.hbs | <button type="button" class="navbar-toggle pull-left" data-action="toggleSidebar">
{{icon-sidebar-close}} {{! TODO: toggle this icon with icon-sidebar-open }}
</button> {{! [data-action="toggleSidebar"] }}
<div class="board-detail-info">
<span class="board-thumbnail-partial">
{{partial "account/templates/board-preview" this}}
</span> {{! .board-thumbnail-partial }}
<strong class="board-name">{{name}}</strong>
</div> {{! .board-detail-info }}
| <button type="button" class="navbar-toggle pull-left" data-action="toggleSidebar">
{{icon-sidebar-close}}
{{icon-sidebar-open}}
</button> {{! [data-action="toggleSidebar"] }}
<div class="board-detail-info">
<span class="board-thumbnail-partial">
{{partial "account/templates/board-preview" this}}
</span> {{! .board-thumbnail-partial }}
<strong class="board-name">{{name}}</strong>
</div> {{! .board-detail-info }}
| Add missing sidebar toggle icon on activity page. | Add missing sidebar toggle icon on activity page.
| Handlebars | agpl-3.0 | GetBlimp/boards-web,jessamynsmith/boards-web,jessamynsmith/boards-web |
5a2a19c6189ae486538529187a0e17f45b9b78a8 | app/templates/components/nypr-brick-item.hbs | app/templates/components/nypr-brick-item.hbs | <div class="brick__item {{item.attributes.template}} item--trending"
style="{{backgroundImage}}">
<div class="item__icons">
<div class="item__icons__trending icon--with-text icon--with-text--top">
{{nypr-svg className="icon" icon="trending"}} Trending
</div>
<div class="item__icons__video">
{{nypr-svg className="icon" icon="video"}}
</div>
</div>
{{#if vertical}}
<div class="item__img" style="{{backgroundImage}}">
</div>
{{/if}}
<div class="item__head">
<a class="item__head__brand" href="{{item.attributes.headers.brand.url}}">
{{item.attributes.headers.brand.title}}
</a>
<h2 class="item__head__headline">{{#link-to 'story' item.attributes.slug}}
{{nypr-svg className="icon" icon="video"}}
{{item.attributes.title}}
{{/link-to}}</h2>
{{#if item.attributes.audio}}
{{#listen-button
audio=audio
type='blue-boss'
state=(if (eq pk audio.currentAudio.id) audio.playState)
itemPK=item.id
itemTitle=item.attributes.title}}
Play {{item.attributes.audioDurationReadable}}
{{/listen-button}}
{{/if}}
</div>
{{#link-to 'story' item.attributes.slug class="item__link--hidden"}}{{item.attributes.title}}{{/link-to}}
</div>
| <div class="brick__item {{item.attributes.template}} item--trending"
style={{backgroundImage}}>
<div class="item__icons">
<div class="item__icons__trending icon--with-text icon--with-text--top">
{{nypr-svg className="icon" icon="trending"}} Trending
</div>
<div class="item__icons__video">
{{nypr-svg className="icon" icon="video"}}
</div>
</div>
{{#if vertical}}
<div class="item__img" style={{backgroundImage}}>
</div>
{{/if}}
<div class="item__head">
<a class="item__head__brand" href="{{item.attributes.headers.brand.url}}">
{{item.attributes.headers.brand.title}}
</a>
<h2 class="item__head__headline">{{#link-to 'story' item.attributes.slug}}
{{nypr-svg className="icon" icon="video"}}
{{item.attributes.title}}
{{/link-to}}</h2>
{{#if item.attributes.audio}}
{{#listen-button
audio=audio
type='blue-boss'
state=(if (eq pk audio.currentAudio.id) audio.playState)
itemPK=item.id
itemTitle=item.attributes.title}}
Play {{item.attributes.audioDurationReadable}}
{{/listen-button}}
{{/if}}
</div>
{{#link-to 'story' item.attributes.slug class="item__link--hidden"}}{{item.attributes.title}}{{/link-to}}
</div>
| Remove the extra quotes on the style tag, fixes binding attribute issue | Remove the extra quotes on the style tag, fixes binding attribute issue
| Handlebars | mit | nypublicradio/nypr-ui,nypublicradio/nypr-ui |
638dac08e1c7928e6c43ec9f6feeef876ae3f582 | app/scripts/timetable/templates/exam.hbs | app/scripts/timetable/templates/exam.hbs | <td>{{id}}
<td>{{ModuleTitle}}
<td>{{examStr}}
<td class="nm-timetable-action">
<a href="#" class="plain show-hide icon" title="Show/Hide">
<i class="fa fa-eye{{#unless display}}-slash{{/unless}} fa-lg"></i>
</a>
<a href="/modules/{{id}}" class="plain icon" title="Details">
<i class="fa fa-info-circle fa-lg"></i>
</a>
<a href="#" class="plain remove icon" title="Remove">
<i class="fa fa-times-circle fa-lg"></i>
</a>
| <td>{{id}}
<td>{{ModuleTitle}}
<td>{{examStr}}
<td class="nm-timetable-action">
<!--<a href="#" class="plain show-hide icon" title="Show/Hide">-->
<!--<i class="fa fa-eye{{#unless display}}-slash{{/unless}} fa-lg"></i>-->
<!--</a>-->
<a href="/modules/{{id}}" class="plain icon" title="Details">
<i class="fa fa-info-circle fa-lg"></i>
</a>
<a href="#" class="plain remove icon" title="Remove">
<i class="fa fa-times-circle fa-lg"></i>
</a>
| Disable broken show/hide module button. To be replaced by individual lesson hiding | Disable broken show/hide module button. To be replaced by individual lesson hiding
| Handlebars | mit | nathanajah/nusmods,Yunheng/nusmods,mauris/nusmods,nusmodifications/nusmods,nusmodifications/nusmods,chunqi/nusmods,chunqi/nusmods,mauris/nusmods,nathanajah/nusmods,nusmodifications/nusmods,zhouyichen/nusmods,nusmodifications/nusmods,nathanajah/nusmods,nathanajah/nusmods,Yunheng/nusmods,mauris/nusmods,zhouyichen/nusmods,mauris/nusmods,zhouyichen/nusmods,zhouyichen/nusmods,Yunheng/nusmods,Yunheng/nusmods,chunqi/nusmods,chunqi/nusmods,Yunheng/nusmods |
183f3886cd10460bc8a44de63bf183e466799c61 | public/js/app/templates/footerTemplate.handlebars | public/js/app/templates/footerTemplate.handlebars | <footer class="footer p-footer">
freefeed 0.1.1 © 2015 | Runs on <a href="https://github.com/pepyatka">Pepyatka</a> open-source engine v0.1.0 | <a href="http://about.freefeed.net">About</a>
</footer>
| <footer class="footer p-footer">
freefeed 0.1.2 (May 29, 2015) © 2015 | Runs on <a href="https://github.com/pepyatka">Pepyatka</a> open-source engine v0.1.0 | <a href="http://about.freefeed.net">About</a>
</footer>
| Bump FF version to 0.1.2 | Bump FF version to 0.1.2
| Handlebars | mit | FreeFeed/freefeed-html,FreeFeed/freefeed-html,dsumin/freefeed-html,dsumin/freefeed-html,davidmz/pepyatka-html,davidmz/pepyatka-html |
36ee4c183cdba1c04d42efaff5e165410460c650 | assets/scripts/app/templates/layouts/profile.hbs | assets/scripts/app/templates/layouts/profile.hbs | <div id="top">
{{outlet top}}
</div>
<div id="left">
{{outlet left}}
</div>
<div id="main">
{{outlet flash}}
{{outlet main}}
</div>
<div id="right">
<div id="slider" {{action "toggle" target="Travis.slider"}}>
<div class='icon'></div>
</div>
<div class="box">
<h4>Getting started?</h4>
<p>
Please read our <a href="http://about.travis-ci.org/docs/user/getting-started">guide</a>.
It will only take a few minutes :)
</p>
<p>
You can find detailed docs on our <a href="http://about.travis-ci.org/">about</a> site.
</p>
<p>
If you need help please don’t hesitate to join
<a href="irc://irc.freenode.net#travis">#travis</a> on irc.freenode.net
or our <a href="http://groups.google.com/group/travis-ci">mailing list</a>.
</p>
</div>
</div>
| <div id="top">
{{outlet top}}
</div>
<div id="left">
{{outlet left}}
</div>
<div id="main">
{{outlet flash}}
{{outlet main}}
</div>
<div id="right">
<div id="slider" {{action "toggle" target="Travis.slider"}}>
<div class='icon'></div>
</div>
<div class="box">
<h4>Getting started?</h4>
<p>
Please read our <a href="http://docs.travis-ci.com/user/getting-started">guide</a>.
You'll be up and running in no time!
</p>
<p>
You can find detailed docs on our <a href="http://docs.travis-ci.com">documentation</a> site.
</p>
<p>
If you need help please don’t hesitate to join
<a href="irc://irc.freenode.net#travis">#travis</a> on irc.freenode.net
or our <a href="http://groups.google.com/group/travis-ci">mailing list</a>.
</p>
</div>
</div>
| Fix links to point to new documentation site. | Fix links to point to new documentation site.
| Handlebars | mit | Tiger66639/travis-web,2947721120/travis-web,fotinakis/travis-web,fauxton/travis-web,jlrigau/travis-web,Tiger66639/travis-web,travis-ci/travis-web,fotinakis/travis-web,2947721120/travis-web,jlrigau/travis-web,mjlambert/travis-web,fotinakis/travis-web,travis-ci/travis-web,2947721120/travis-web,travis-ci/travis-web,2947721120/travis-web,mjlambert/travis-web,jlrigau/travis-web,mjlambert/travis-web,fauxton/travis-web,jlrigau/travis-web,fotinakis/travis-web,Tiger66639/travis-web,mjlambert/travis-web,Tiger66639/travis-web,fauxton/travis-web,fauxton/travis-web,travis-ci/travis-web |
d8c094bef28242d010a62250c5342080f5a8ed5a | app/templates/events/GollumEvent-template.handlebars | app/templates/events/GollumEvent-template.handlebars | {{#view view.ActorView}}
modified the <a target="_blank" href="{{unbound event.repo.html_url}}/wiki">wiki</a>
{{/view}}
<div class="additional-info" >
{{#each event.payload.pages }}
<span>{{echo "action"}} <a target="_blank" {{bindAttr href="html_url"}}>{{page_name}}</a></span>
{{/each}}
</div>
| {{#view view.ActorView}}
modified the <a target="_blank" href="https://github.com/{{unbound event.repo.name}}/wiki">wiki</a>
{{/view}}
<div class="additional-info" >
{{#each event.payload.pages }}
<span>{{echo "action"}} <a target="_blank" {{bindAttr href="html_url"}}>{{page_name}}</a></span>
{{/each}}
</div>
| Fix broken link to the wiki in template for GollumEvent | Fix broken link to the wiki in template for GollumEvent
| Handlebars | isc | pangratz/dashboard,greyhwndz/dashboard,greyhwndz/dashboard,greyhwndz/dashboard,pangratz/dashboard |
e3d05f09026136cbe63be897c96150e435be2a37 | app/components/c3-chart/template.hbs | app/components/c3-chart/template.hbs | <div class="widget-body clearfix">
<div class="renderChart"></div>
{{#if widgetSettings.viewAllRoute}}
{{#unless item.hideViewAll}}
<div class="text-right m-t-md">
<button class="btn btn-link text-bigger" {{action 'transitionToFacet' null 'providers'}}>View all</button>
</div>
{{/unless}}
{{/if}}
</div>
| <div class="widget-body clearfix">
<div class="renderChart"></div>
{{#if data.length}}
{{#if widgetSettings.viewAllRoute}}
{{#unless item.hideViewAll}}
<div class="text-right m-t-md">
<button class="btn btn-link text-bigger" {{action 'transitionToFacet' null 'providers'}}>View all</button>
</div>
{{/unless}}
{{/if}}
{{else}}
<p class="text-center">No data providers</p>
{{/if}}
</div>
| Fix c3 widget view when there is no chart data | Fix c3 widget view when there is no chart data
| Handlebars | apache-2.0 | caneruguz/share-analytics,caneruguz/share-analytics,caneruguz/share-analytics |
5e299d9b7750060c7fc8c26a3705929515da1032 | addon/components/old-file-browser/template.hbs | addon/components/old-file-browser/template.hbs | <ol class='breadcrumb'>
{{#each breadcrumbs as |item|}}
<li>
<a {{action 'navigateToItem' item}} role="link">
{{file-browser-icon item=item}}
{{item.itemName}}
</a>
</li>
{{/each}}
</ol>
{{#if selectedItems}}
{{! TODO: show available actions for selected files }}
{{/if}}
<div class='old-file-browser-list file-browser-list'>
{{#ember-collection
items=items
cell-layout=(fixed-grid-layout itemWidth itemHeight)
as |item|
}}
{{old-file-browser-item
item=item
navigateToItem=(action 'navigateToItem')
selectItem=(action 'selectItem')
openItem=(action 'openItem')
}}
{{/ember-collection}}
{{#unless itemsLoaded}}
{{fa-icon 'spinner' size=3 pulse=true}}
{{/unless}}
</div>
| <ol class='breadcrumb'>
{{#each breadcrumbs as |item|}}
<li>
<a {{action 'navigateToItem' item}} role="link">
{{file-browser-icon item=item}}
{{item.itemName}}
</a>
</li>
{{/each}}
</ol>
{{#if selectedItems}}
{{! TODO: show available actions for selected files }}
{{/if}}
<div class='old-file-browser-list file-browser-list'>
{{#if itemsLoaded}}
{{#if items}}
{{#ember-collection
items=items
cell-layout=(fixed-grid-layout itemWidth itemHeight)
as |item|
}}
{{old-file-browser-item
item=item
navigateToItem=(action 'navigateToItem')
selectItem=(action 'selectItem')
openItem=(action 'openItem')
}}
{{/ember-collection}}
{{else}}
<p class='p-l-md p-t-xs text-muted'><em> No files found </em></p>
{{/if}}
{{else}}
<p class='p-l-md p-t-xs'> {{fa-icon 'spinner' size=3 pulse=true}} </p>
{{/if}}
</div>
| Add no files found if no files returned in old-file-browser component. | Add no files found if no files returned in old-file-browser component.
| Handlebars | apache-2.0 | baylee-d/ember-osf,CenterForOpenScience/ember-osf,jamescdavis/ember-osf,CenterForOpenScience/ember-osf,jamescdavis/ember-osf,baylee-d/ember-osf |
3bee1c7d09464ef109305ce7c8c12fed613105a4 | client/app/templates/components/f-checkout.hbs | client/app/templates/components/f-checkout.hbs | <form class="f-default f-checkout">
<h2 class="f-default__title">Оформление заказа</h2>
<div class="f-checkout__order-info">
{{pr-order order=model.order}}
</div>
<div class="f-default__row">
<div class="portion-list">
{{#each model.portions as |portion|}}
<div class="portion-list__item">
<div class="portion-list__row">
<span class="portion-list__member">Вася</span>
<span class="portion-list__cost">{{portion.cost}}</span>
<div class="portion-list__paid">
<label class="f-default__checkbox-label">
<input type="checkbox" class="f-default__checkbox"/>
<span class="f-default__checkbox-text"></span>
</label>
</div>
</div>
<div class="portion-list__row">
<div class="list-member__text">{{portion.text}}</div>
</div>
</div>
{{/each}}
</div>
<button {{action "submit"}} type="submit" class="button _submit">Сформировать</button>
</div>
<div class="f-default__row">
<textarea class="f-default__textarea" rows="4" required></textarea>
<button {{action "submit"}} type="submit" class="button _submit">Отправить уведомление</button>
</div>
</form>
| <form class="f-default f-checkout">
<h2 class="f-default__title">Оформление заказа</h2>
<div class="f-checkout__order-info">
{{pr-order order=model.order}}
</div>
<div class="f-default__row">
<div class="portion-list">
{{#each model.portions as |portion|}}
<div class="portion-list__item">
<div class="portion-list__row">
<span class="portion-list__member">Вася</span>
<span class="portion-list__cost">{{portion.cost}}</span>
<div class="portion-list__paid">
<label class="f-default__checkbox-label">
<input type="checkbox" class="f-default__checkbox"/>
<span class="f-default__checkbox-text"></span>
</label>
</div>
</div>
<div class="portion-list__row">
<div class="list-member__text">{{portion.text}}</div>
</div>
</div>
{{/each}}
</div>
<button {{action "submit"}} type="submit" class="button _submit">Сформировать</button>
</div>
<div class="f-default__row">
<textarea class="f-default__textarea" rows="4" required></textarea>
<button {{action "submit"}} type="submit" class="button _submit">Отправить уведомление</button>
</div>
</form>
| Fix indentation in checkout form template | Fix indentation in checkout form template
Closes #89.
| Handlebars | mit | yandex-shri-minsk-2016/yummy-time,yandex-shri-minsk-2016/yummy-time,yandex-shri-minsk-2016/yummy-time |
bf91dad438fd992d4b45117793a0de2950770dec | static/templates/tab_bar.hbs | static/templates/tab_bar.hbs | <span id="tab_list">
{{#if stream_settings_link}}
<a class="stream" href="{{stream_settings_link}}">
{{> navbar_icon_and_title }}
</a>
<a class="sub_count no-style" data-toggle="tooltip" title="{{sub_count_tooltip_text}}" href="{{stream_settings_link}}">
<i class="fa fa-user-o"></i>{{formatted_sub_count}}
</a>
{{#if rendered_narrow_description}}
<span class="narrow_description rendered_markdown" data-toggle="tooltip">{{rendered_markdown rendered_narrow_description}}</span>
{{else}}
<span class="narrow_description rendered_markdown" data-toggle="tooltip">{{t "(no description)"}}</span>
{{/if}}
{{else}}
<span>
{{> navbar_icon_and_title }}
</span>
{{/if}}
<span class="search_icon search_closed" ><i class="fa fa-search" aria-hidden="true"></i></span>
</span>
| <span id="tab_list">
{{#if stream_settings_link}}
<a class="stream" href="{{stream_settings_link}}">
{{> navbar_icon_and_title }}
</a>
<a class="sub_count no-style" data-toggle="tooltip" title="{{sub_count_tooltip_text}}" href="{{stream_settings_link}}">
<i class="fa fa-user-o"></i>{{formatted_sub_count}}
</a>
<span class="narrow_description rendered_markdown" data-toggle="tooltip">
{{#if rendered_narrow_description}}
{{rendered_markdown rendered_narrow_description}}
{{else}}
{{t "(no description)"}}
{{/if}}
</span>
{{else}}
<span>
{{> navbar_icon_and_title }}
</span>
{{/if}}
<span class="search_icon search_closed" ><i class="fa fa-search" aria-hidden="true"></i></span>
</span>
| Simplify narrow_description conditional in hbs template. | navbar: Simplify narrow_description conditional in hbs template.
Previously, we had the entire div within the conditional, instead of
just the contents, which were the only variable elements.
This change moves the conditional over just the contents of the div
and improves readability.
| Handlebars | apache-2.0 | punchagan/zulip,zulip/zulip,punchagan/zulip,showell/zulip,brainwane/zulip,eeshangarg/zulip,showell/zulip,punchagan/zulip,rht/zulip,hackerkid/zulip,kou/zulip,rht/zulip,rht/zulip,zulip/zulip,brainwane/zulip,rht/zulip,zulip/zulip,andersk/zulip,kou/zulip,kou/zulip,punchagan/zulip,brainwane/zulip,eeshangarg/zulip,kou/zulip,eeshangarg/zulip,andersk/zulip,zulip/zulip,zulip/zulip,hackerkid/zulip,brainwane/zulip,punchagan/zulip,showell/zulip,zulip/zulip,andersk/zulip,rht/zulip,hackerkid/zulip,brainwane/zulip,kou/zulip,brainwane/zulip,andersk/zulip,eeshangarg/zulip,rht/zulip,hackerkid/zulip,punchagan/zulip,brainwane/zulip,rht/zulip,andersk/zulip,kou/zulip,eeshangarg/zulip,showell/zulip,zulip/zulip,punchagan/zulip,andersk/zulip,kou/zulip,eeshangarg/zulip,showell/zulip,andersk/zulip,eeshangarg/zulip,hackerkid/zulip,showell/zulip,hackerkid/zulip,showell/zulip,hackerkid/zulip |
63291a435c2594e5b8b6944edae85e7e50b4c95d | app/assets/javascripts/templates/components/question/uploader_component.hbs | app/assets/javascripts/templates/components/question/uploader_component.hbs | <div class="question">
<div class="question-text">{{model.question}}</div>
<div class="additional-data">
<span class="button-secondary button--green fileinput-button">
{{#if model.questionAttachment}}
Replace File
{{else}}
Select & upload
{{/if}}
{{file-uploader accept=accept
start='uploadStarted'
progress='uploadProgress'
done='uploadFinished'
error='uploadError'
filePrefix='question_attachment'}}
</span>
{{#if fileUpload}}
<div id="paper-file-uploads">
{{upload-preview upload=fileUpload}}
</div>
{{/if}}
{{#if model.questionAttachment}}
{{question-attachment-thumbnail attachment=model.questionAttachment}}
{{/if}}
</div>
</div>
| <div class="question">
<div class="question-text">{{{model.question}}}</div>
<div class="additional-data">
<span class="button-secondary button--green fileinput-button">
{{#if model.questionAttachment}}
Replace File
{{else}}
Select & upload
{{/if}}
{{file-uploader accept=accept
start='uploadStarted'
progress='uploadProgress'
done='uploadFinished'
error='uploadError'
filePrefix='question_attachment'}}
</span>
{{#if fileUpload}}
<div id="paper-file-uploads">
{{upload-preview upload=fileUpload}}
</div>
{{/if}}
{{#if model.questionAttachment}}
{{question-attachment-thumbnail attachment=model.questionAttachment}}
{{/if}}
</div>
</div>
| Allow file uploader question to display html as part of the question | Allow file uploader question to display html as part of the question | Handlebars | mit | johan--/tahi,johan--/tahi,johan--/tahi,johan--/tahi |
677106323fbe06210a0845a46db38292c807fabd | app/components/canvas-title-actions/template.hbs | app/components/canvas-title-actions/template.hbs | {{#if isTemplate}}
<button {{action "onUseTemplate"}} local-class="template-badge">Use Template</button>
{{/if}}
<div local-class="actions">
{{#basic-dropdown horizontalPosition='right' as |dropdown|}}
{{#dropdown.trigger}}
<div local-class="trigger">
{{svg-jar "More" height="24" width="24"}}
</div>
{{/dropdown.trigger}}
{{#dropdown.content}}
<div local-class="menu">
<div local-class="menu-content">
<div onclick={{action (queue (action dropdown.actions.close) (action toggleShowFilter))}} local-class="menu-item">Filter</div>
<a href={{concat canvas.apiURL '.md'}} download="{{canvas.title}}.md" local-class="menu-item">View Markdown</a>
<a href={{concat canvas.apiURL '.canvas'}} download="{{canvas.title}}.canvas" local-class="menu-item">Download</a>
{{#if showDeleteCanvas}}<div onclick={{action 'deleteCanvas'}} local-class="menu-item">Delete</div>{{/if}}
</div>
</div>
{{/dropdown.content}}
{{/basic-dropdown}}
</div>
| {{#if isTemplate}}
<button {{action "onUseTemplate"}} local-class="template-badge">Use Template</button>
{{/if}}
<div local-class="actions">
{{#basic-dropdown horizontalPosition='right' as |dropdown|}}
{{#dropdown.trigger}}
<div local-class="trigger">
{{svg-jar "More" height="24" width="24"}}
</div>
{{/dropdown.trigger}}
{{#dropdown.content}}
<div local-class="menu">
<div local-class="menu-content">
<div onclick={{action (queue (action dropdown.actions.close) (action toggleShowFilter))}} local-class="menu-item">Filter</div>
<a href={{concat canvas.apiURL '.md'}} local-class="menu-item">View Markdown</a>
<a href={{concat canvas.apiURL '.canvas'}} download="{{canvas.title}}.canvas" local-class="menu-item">Download</a>
{{#if showDeleteCanvas}}<div onclick={{action 'deleteCanvas'}} local-class="menu-item">Delete</div>{{/if}}
</div>
</div>
{{/dropdown.content}}
{{/basic-dropdown}}
</div>
| Remove download attribute for markdown view | Remove download attribute for markdown view
| Handlebars | apache-2.0 | usecanvas/web-v2,usecanvas/web-v2,usecanvas/web-v2 |
afb15c9b0e2f9040f6dd0cab99f6c7e88c56ff1e | app/components/post-contribution-form/template.hbs | app/components/post-contribution-form/template.hbs | <h2>Contribution erfassen</h2>
{{#with (changeset contribution ContributionValidations) as |changeset|}}
{{#form-for
changeset
class="layout-column-flex"
submit=(action 'save')
as |f|}}
{{f.text-field "title" label="Titel" placeholder="Titel" required=true}}
{{f.url-field "link" label="Link" placeholder="https://www.…"}}
{{f.textarea-field "description" label="Beschreibung (in Markdown)"
placeholder="Beschreibe hier deinen Open Source Beitrag..."
required=true
}}
{{f.text-field "date" label="Datum" placeholder="2016-12-31" required=true}}
<div class="text-center">
{{f.button "Cancel" class="btn-link m-r-1" click=(action 'cancel')}}
{{f.submit disabled=(or changeset.isInvalid changeset.isPristine)}}
</div>
{{/form-for}}
{{/with}}
| <h2>Contribution erfassen</h2>
{{#with (changeset contribution ContributionValidations) as |changeset|}}
{{#form-for
changeset
class="layout-column-flex"
submit=(action 'save')
as |f|}}
{{f.text-field "title" label="Titel" placeholder="Titel" required=true}}
{{f.url-field "link" label="Link" placeholder="https://www.…"}}
{{f.textarea-field "description" label="Beschreibung (in Markdown)"
placeholder="Beschreibe hier deinen Open Source Beitrag..."
required=true
}}
{{f.text-field "date" label="Datum" placeholder="2016-12-31" required=true}}
<div class="text-center">
{{f.button "Cancel" class="btn-link m-r-1" click=(action 'cancel')}}
{{f.submit
disabled=(or changeset.isInvalid changeset.isPristine contribution.isSaving)}}
</div>
{{/form-for}}
{{/with}}
| Disable submit button when clicked | Disable submit button when clicked
to prevent submitting the form twice.
| Handlebars | mit | opensource-challenge/opensource-challenge-client,opensource-challenge/opensource-challenge-client |
9fa4c61890559643fe9001e0ddc2ce46e7fcd405 | app/assets/javascripts/templates/studentapp/create_response.hbs | app/assets/javascripts/templates/studentapp/create_response.hbs | <div data-alert class="alert-div"></div>
<h2 id="response-title">{{name}} <button class="submit-ws small" {{action "submitResponse"}}>Submit <i class="fa fa-upload"></i></button></h2>
<hr>
<div class="post_board">
<img {{bind-attr src="url"}}>
</div>
| <div data-alert class="alert-div"></div>
<h2 id="response-title">{{name}} <button class="submit-ws small" {{action "submitResponse"}}>Submit <i class="fa fa-upload"></i></button></h2>
<p>Fill in all of the blank fields, and press 'submit' to send your answers to your teacher.</p>
<hr>
<div class="post_board">
<img {{bind-attr src="url"}}>
</div>
| Add brief instructions for student worksheet submission | Add brief instructions for student worksheet submission
| Handlebars | mit | ImJoeWebb/Klassewerk,andrewjadams3/Klassewerk,andrewjadams3/Klassewerk,ImJoeWebb/Klassewerk |
085c9bb1f28faee65f7ef2796d1f9ea268e13fe0 | client/src/project/templates/project-sidebar.hbs | client/src/project/templates/project-sidebar.hbs | <a href="projects/{{slug}}" class="sidebar-menu--item project-special">
<i class="item-icon fa fa-rocket"></i>
<span class="item-name" id="project-title">
Project {{name}}
</span>
</a>
<a href="projects/{{slug}}" class="sidebar-menu--item" data-name="resources">
<i class="item-icon fa fa-file-text-o"></i>
<span class="item-name">
Resources
</span>
</a>
<a href="projects/{{slug}}/translate" class="sidebar-menu--item editor-special" data-name="translate">
<i class="item-icon fa fa-language"></i>
<span class="item-name">
Translate
</span>
</a>
{{!--
<a href="projects/{{slug}}/proofread" class="sidebar-menu--item editor-special" data-name="proofread">
<i class="item-icon fa fa-eye-slash"></i>
<span class="item-name">
Proofread
</span>
</a>
<a href="#" class="sidebar-menu--item">
<i class="item-icon fa fa-upload"></i>
<span class="item-name">
Releases
</span>
</a>
<a href="projects/{{slug}}/edit" class="sidebar-menu--item">
<i class="item-icon fa fa-wrench"></i>
<span class="item-name">
Settings
</span>
</a>
--}}
| <a href="projects/{{slug}}" class="sidebar-menu--item project-special">
<i class="item-icon fa fa-rocket"></i>
<span class="item-name" id="project-title">
{{name}}
</span>
</a>
<a href="projects/{{slug}}" class="sidebar-menu--item" data-name="resources">
<i class="item-icon fa fa-file-text-o"></i>
<span class="item-name">
Resources
</span>
</a>
<a href="projects/{{slug}}/translate" class="sidebar-menu--item editor-special" data-name="translate">
<i class="item-icon fa fa-language"></i>
<span class="item-name">
Translate
</span>
</a>
{{!--
<a href="projects/{{slug}}/proofread" class="sidebar-menu--item editor-special" data-name="proofread">
<i class="item-icon fa fa-eye-slash"></i>
<span class="item-name">
Proofread
</span>
</a>
<a href="#" class="sidebar-menu--item">
<i class="item-icon fa fa-upload"></i>
<span class="item-name">
Releases
</span>
</a>
<a href="projects/{{slug}}/edit" class="sidebar-menu--item">
<i class="item-icon fa fa-wrench"></i>
<span class="item-name">
Settings
</span>
</a>
--}}
| Remove project name prefix from sidebar. | Remove project name prefix from sidebar.
| Handlebars | mit | openl10n/openl10n,joelwurtz/openl10n,Nedeas/openl10n,Nedeas/openl10n,rmoorman/openl10n,openl10n/openl10n,joelwurtz/openl10n,rmoorman/openl10n,Nedeas/openl10n,joelwurtz/openl10n,rmoorman/openl10n,openl10n/openl10n,Nedeas/openl10n,rmoorman/openl10n,joelwurtz/openl10n,openl10n/openl10n |
cacef8dce9acaf8ba733d17143027c79706641da | themes/MouseGuests/partials/loop.hbs | themes/MouseGuests/partials/loop.hbs | {{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
{{#if image}}
<img src="{{image}}" style="margin-right:15px;float:left;max-width:200px;"/>
{{/if}}
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
</section>
<footer class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}}
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
</footer>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}
| {{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
{{#if image}}
<!-- {{@index}} -->
<img src="{{image}}" style="margin-right:15px;float:left;max-width:200px;"/>
{{/if}}
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
</section>
<footer class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}}
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
</footer>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}
| Add index comment for research purposes | Add index comment for research purposes
| Handlebars | mit | mouseguests/mouseguests.github.io,mouseguests/mouseguests.github.io,mouseguests/mouseguests.github.io |
b58c50688f628083e945da2913502764f689878b | content/themes/salmondesign/partials/header.hbs | content/themes/salmondesign/partials/header.hbs | <header class="header">
{{#if @blog.logo}}
<div class="blog-logo">
<a href="{{@blog.url}}">
<div class="blog-logo-inner" style="background-image: url({{@blog.logo}});"></div>
</a>
</div>
{{/if}}
<span class="blog-title">Salmon Design</span>
{{> static-pages}}
</header> | <header class="header">
{{#if @blog.logo}}
<div class="blog-logo">
<a href="{{@blog.url}}">
<div class="blog-logo-inner" style="background-image: url({{@blog.logo}});"></div>
</a>
</div>
{{/if}}
<span class="blog-title hide-for-small">Salmon Design</span>
{{> static-pages}}
</header> | Hide blog title on small devices | Hide blog title on small devices
| Handlebars | mit | davidblurton/salmondesign-old,davidblurton/salmondesign-old |
98d44945f5a0636ffa68c856c73edc9194394036 | app/templates/application.hbs | app/templates/application.hbs | <div class="alpha-alert">Thank you for using our prototype. Please keep in mind that some functionality may not be fully stable.</div>
{{outlet}}
| <div class="alpha-alert">Thank you for using our prototype. Please keep in mind that data added here may be public and your data may not be saved.</div>
{{outlet}}
| Change text of alert text | Change text of alert text
| Handlebars | apache-2.0 | Rytiggy/osfpages,Rytiggy/osfpages,caneruguz/osfpages,caneruguz/osfpages |
09bcef0130724204139649c5a77721cb32308d6d | app/assets/javascripts/templates/ingredients_show.hbs | app/assets/javascripts/templates/ingredients_show.hbs | <h1>{{name}}</h1>
<h3>({{kind}})</h3>
<br>
<p>
<strong>Origin:</strong> {{origin}}<br>
</p>
{{#if amount}}
<p>Each batch of <a href="/beers/{{beerID}}">{{beerName}}</a> requires <strong>{{amount}}kg</strong> of this ingredient.</p>
{{/if}}
<br><br>
<h4>
{{#if beerID}}
{{#if otherBeers}}
<h4>Also found in:</h4>
{{#otherBeers}}
<p><a href="/beers/{{id}}">{{name}}</p>
{{/otherBeers}}
{{else}}
<p>{{beerName}} is our only beer with this ingredient.</p>
{{/if}}
{{else}}
{{#if beers}}
Found in:
{{else}}
None of our current beers use this ingredient.
{{/if}}
{{/if}}
</h4>
{{#beers}}
<p><a href="/beers/{{id}}">{{name}}</p>
{{/beers}}
<br>
{{#if amount}}
<p><button type="button" method="get" action="/beers/{{beerID}}/ingredients">Go to {{beerName}} ingredients</button></p>
{{/if}}
<p><button type="button" onclick="window.history.back()">Back</button></p>
| <h1>{{name}}</h1>
<h3>({{kind}})</h3>
<br>
<p>
<strong>Origin:</strong> {{origin}}<br>
</p>
{{#if amount}}
<p>Each batch of <a href="/beers/{{beerID}}">{{beerName}}</a> requires <strong>{{amount}}kg</strong> of this ingredient.</p>
{{/if}}
<br><br>
<h4>
{{#if beerID}}
{{#if otherBeers}}
<h4>Also found in:</h4>
{{#otherBeers}}
<p><a href="/beers/{{id}}">{{name}}</p>
{{/otherBeers}}
{{else}}
<p>{{beerName}} is our only beer with this ingredient.</p>
{{/if}}
{{else}}
{{#if beers}}
Found in:
{{else}}
None of our current beers use this ingredient.
{{/if}}
{{/if}}
</h4>
{{#beers}}
<p><a href="/beers/{{id}}">{{name}}</p>
{{/beers}}
<br>
<p><button type="button" onclick="window.history.back()">Back</button></p>
| Remove beer ingredients button from js | Remove beer ingredients button from js
| Handlebars | mit | szeidman/brewery,szeidman/brewery,szeidman/brewery |
d38317270e99d60ce07b5523527fa4cf34261050 | sidebar.hbs | sidebar.hbs | A place to gather scores and stats from your Baylor Bears.
*****
**Listen Live on [Baylor Lariat Radio](http://mixlr.com/baylor-lariat-radio)**
**Today's Games:**
{{#each games}}
- {{ this.sport }} vs. **{{ this.opponent.full }}** (Baylor **{{ this.score.baylor }}**, **{{ this.opponent.short }}** **{{ this.score.opponent }}**) (**{{ this.status }}**)
{{/each}}
*****
Last Updated: {{ lastUpdated }}
| A place to gather scores and stats from your Baylor Bears.
*****
**Listen Live on [Baylor Lariat Radio](http://mixlr.com/baylor-lariat-radio)**
**Today's Games:**
{{#each games}}
- {{ this.sport }} vs. **{{ this.opponent.full }}** (Baylor **{{ this.score.baylor }}**, **{{ this.opponent.short }}** **{{ this.score.opponent }}**) (**{{ this.status }}**)
{{/each}}
*****
Last Updated: {{ lastUpdated }}
| Fix formatting bug in template | Fix formatting bug in template
| Handlebars | mit | MayorMonty/BaylorBot,MayorMonty/BaylorBot |
0e958200430287331517a7a670490cd50fb4bbac | src/main/resources/templates/greeting/new.html.hbs | src/main/resources/templates/greeting/new.html.hbs | {{#partial "content"}}
<p>New Greeting</p>
<form action="/greeting/" method="post">
<input type="text" name="template"></input>
<input type="submit"></input>
</form>
{{/partial}}
{{> layouts/base title="New greeting"}}
| {{#partial "content"}}
<p>New Greeting</p>
<form action="/greeting/" method="post">
<input type="text" name="template"></input>
<input type="submit"></input> <a href="/greeting">Cancel</a>
</form>
{{/partial}}
{{> layouts/base title="New greeting"}}
| Add a cancel option when adding a new greeting. | Add a cancel option when adding a new greeting.
| Handlebars | bsd-3-clause | hainesr/mvc-dev,hainesr/mvc-dev |
b2c4febbd01cc16d01567fa6175060a6b9316fd2 | app/templates/components/modals/cfs-proposal-modal.hbs | app/templates/components/modals/cfs-proposal-modal.hbs | <i class="black close icon"></i>
<div class="header">
{{t 'Submit Proposal'}}
</div>
<div class="content">
<h4 class="ui header">{{t 'Existing Sessions'}}</h4>
{{#if isNewSession}}
<p>{{t 'No existing sessions'}}</p>
{{/if}}
<div>
{{#link-to 'public.cfs.new-speaker' class='ui teal button' invokeAction=(action 'toggleView')}}
{{#if isNewSpeaker}}
{{t 'Add Speaker Details'}}
{{else}}
{{t 'Edit Speaker Details'}}
{{/if}}
{{/link-to}}
{{#link-to 'public.cfs.new-session' class='ui blue button' invokeAction=(action 'toggleView')}}
{{#if isNewSession}}
{{t 'Add Session Proposal'}}
{{else}}
{{t 'Edit Session Proposal'}}
{{/if}}
{{/link-to}}
</div>
</div>
| <i class="black close icon"></i>
<div class="header">
{{t 'Submit Proposal'}}
</div>
<div class="content">
<h4 class="ui header">{{t 'Existing Sessions'}}</h4>
{{#if isNewSession}}
<p>{{t 'No existing sessions'}}</p>
{{/if}}
<div>
{{#link-to 'public.cfs.new-speaker' class='ui teal button' invokeAction=(action 'toggleView')}}
{{#if isNewSpeaker}}
{{t 'Add Speaker Details'}}
{{else}}
{{t 'Edit Speaker Details'}}
{{/if}}
{{/link-to}}
{{#unless isNewSpeaker}}
{{#link-to 'public.cfs.new-session' class='ui blue button' invokeAction=(action 'toggleView')}}
{{#if isNewSession}}
{{t 'Add Session Proposal'}}
{{else}}
{{t 'Edit Session Proposal'}}
{{/if}}
{{/link-to}}
{{/unless}}
</div>
</div>
| Remove button Add/Edit Session Proposal from cfs modal till Speaker Details are added | Remove button Add/Edit Session Proposal from cfs modal till Speaker Details are added
| Handlebars | apache-2.0 | ritikamotwani/open-event-frontend,ritikamotwani/open-event-frontend,CosmicCoder96/open-event-frontend,ritikamotwani/open-event-frontend,CosmicCoder96/open-event-frontend,CosmicCoder96/open-event-frontend |
3f8d4397b09924a665cad3a2d278b0fdae4df995 | app/templates/components/notification-message.hbs | app/templates/components/notification-message.hbs | <div class="c-notification__icon">
<span>
<i {{bind-attr class=":fa notificationIcon"}}></i>
</span>
</div>
<div class="c-notification__content">
{{notification.message}}
</div>
{{#if notification.autoClear}}
<div class="c-notification__countdown" style={{notificationClearDuration}}></div>
{{/if}}
<span class="c-notification__close" {{action "removeNotification"}} title="Dismiss this notification">
<i class="fa fa-times"></i>
</span>
| <div class="c-notification__icon">
<span>
<i class="fa {{notificationIcon}}"></i>
</span>
</div>
<div class="c-notification__content">
{{notification.message}}
</div>
{{#if notification.autoClear}}
<div class="c-notification__countdown" style={{notificationClearDuration}}></div>
{{/if}}
<span class="c-notification__close" {{action "removeNotification"}} title="Dismiss this notification">
<i class="fa fa-times"></i>
</span>
| Replace bind-attr with new handlebars attribute syntax | Replace bind-attr with new handlebars attribute syntax
| Handlebars | mit | SirZach/ember-cli-notifications,stonecircle/ember-cli-notifications,Blooie/ember-cli-notifications,marcemira/ember-cli-notifications,aupac/ember-cli-notifications,aupac/ember-cli-notifications,cesarizu/ember-cli-notifications,marcemira/ember-cli-notifications,stonecircle/ember-cli-notifications,Blooie/ember-cli-notifications,cesarizu/ember-cli-notifications,SirZach/ember-cli-notifications |
c7b6ffb0834c85dceb295f744226040c89283406 | app/templates/components/visualizer-course-objectives.hbs | app/templates/components/visualizer-course-objectives.hbs | <h1>
{{course.title}}
</h1>
<section class='course-overview'>
{{#if (is-fulfilled objectiveData)}}
<div class='block'>
{{chart-pie data=(await objectiveData)
width=width
height=height
displayTooltip=(perform displayTooltip)
hideTooltip=(action 'hideTooltip')
}}
{{chart-donut
data=(await objectiveData)
width=width
height=height
displayTooltip=(perform displayTooltip)
hideTooltip=(action 'hideTooltip')
}}
</div>
<div class='block'>
{{#liquid-if tooltipValue}}
<div class='charts tooltip'>
<div class="tooltip-header">
<span class="tooltip-title">Objective ID</span>
<span class="tooltip-attr">Hours</span>
</div>
<div class="tooltip-content">{{{tooltipValue}}}</div>
<a href="#">Link to session</a>
</div>
{{/liquid-if}}
</div>
{{else}}
{{fa-icon 'spinner' spin=true}}
{{/if}}
</section>
| <h1>
{{course.title}}
</h1>
<section class='course-overview'>
{{#if (is-fulfilled objectiveData)}}
<div class='block'>
{{chart-pie data=(await objectiveData)
width=width
height=height
displayTooltip=(perform displayTooltip)
hideTooltip=(action 'hideTooltip')
}}
{{chart-donut
data=(await objectiveData)
width=width
height=height
displayTooltip=(perform displayTooltip)
hideTooltip=(action 'hideTooltip')
}}
</div>
<div class='block'>
{{#liquid-if tooltipValue}}
<div class='charts tooltip'>
<div class="tooltip-header">
<span class="tooltip-title"></span>
<span class="tooltip-attr"></span>
</div>
<div class="tooltip-content">{{{tooltipValue}}}</div>
<a href="#"></a>
</div>
{{/liquid-if}}
</div>
{{else}}
{{fa-icon 'spinner' spin=true}}
{{/if}}
</section>
| Fix issues for handlebars template | Fix issues for handlebars template
| Handlebars | mit | dartajax/frontend,thecoolestguy/frontend,ilios/frontend,gabycampagna/frontend,ilios/frontend,gboushey/frontend,djvoa12/frontend,gboushey/frontend,jrjohnson/frontend,gabycampagna/frontend,djvoa12/frontend,thecoolestguy/frontend,dartajax/frontend,jrjohnson/frontend |
8771964af50699d9e95b97462d99349c9699cd70 | app/assets/javascripts/templates/item_static.handlebars | app/assets/javascripts/templates/item_static.handlebars | {{#with listItem}}
<li {{bindAttr class=':entry-item isActive isHighlighted'}} {{bindAttr style='computedIndentionStyle'}}>
<span>{{{markedText}}}</span>
</li>
{{/with}}
| {{#with listItem}}
<li {{bindAttr class=':entry-item isActive isHighlighted'}} {{bindAttr style='computedIndentionStyle'}}>
{{! Doesn't show the span until text has been loaded }}
{{#if text}}
<span>{{{markedText}}}</span>
{{/if}}
</li>
{{/with}}
| Hide list items until markedText ready | Hide list items until markedText ready
| Handlebars | mit | thomasboyt/Noted-App,thomasboyt/Noted-App |
d23ba7e5c7948583c25d312eb454210908dcfb26 | app/templates/application.hbs | app/templates/application.hbs | <div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">select-2 for ember.js</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
{{#link-li}}
{{#link-to "index"}}Home{{/link-to}}
{{/link-li}}
{{#link-li}}
{{#link-to "examples"}}Examples{{/link-to}}
{{/link-li}}
{{#link-li}}
{{#link-to "docs"}}Docs{{/link-to}}
{{/link-li}}
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://github.com/istefo/select-2">Fork on Github.com</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
{{outlet}}
</div> | <div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">select-2 for ember.js</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
{{#link-li}}
{{#link-to "index"}}Home{{/link-to}}
{{/link-li}}
{{#link-li}}
{{#link-to "examples"}}Examples{{/link-to}}
{{/link-li}}
{{#link-li}}
{{#link-to "docs"}}Docs{{/link-to}}
{{/link-li}}
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://github.com/istefo/ember-select-2">Fork on Github.com</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
{{outlet}}
</div> | Fix link to repository on examples page | Fix link to repository on examples page
| Handlebars | mit | ivob-fut/ember-select-2,mirego/ember-select-2,ryanjm/ember-select-2,iStefo/ember-select-2,Kilowhisky/ember-select-2,AltSchool/ember-select-2,toranb/ember-select-2,fullofcaffeine/ember-select-2,ivob-fut/ember-select-2,mirego/ember-select-2,zenefits/ember-select-2,davidstevens37/ember-select-2,esbanarango/ember-select-2,slightlytyler/ember-select-2,Flightlogger/ember-select-2,ultimatemonty/ember-select-2,iStefo/ember-select-2,samdemaeyer/ember-select-2,zenefits/ember-select-2,AltSchool/ember-select-2,pitchtarget/ember-select-2,pitchtarget/ember-select-2,DVG/ember-select-2,cooperjbrandon/ember-select-2,cooperjbrandon/ember-select-2,slightlytyler/ember-select-2,toranb/ember-select-2,DVG/ember-select-2,blimmer/ember-select-2,esbanarango/ember-select-2,blimmer/ember-select-2,pitchtarget/ember-select-2,Kilowhisky/ember-select-2,ultimatemonty/ember-select-2,ultimatemonty/ember-select-2,blimmer/ember-select-2,slightlytyler/ember-select-2,Flightlogger/ember-select-2,fullofcaffeine/ember-select-2,samdemaeyer/ember-select-2,DVG/ember-select-2,Kilowhisky/ember-select-2,esbanarango/ember-select-2,shunchu/ember-select-2,Flightlogger/ember-select-2,matixmatix/ember-select-2,shunchu/ember-select-2,matixmatix/ember-select-2,toranb/ember-select-2,ivob-fut/ember-select-2,AltSchool/ember-select-2,davidstevens37/ember-select-2,zenefits/ember-select-2,cooperjbrandon/ember-select-2,davidstevens37/ember-select-2,shunchu/ember-select-2,iStefo/ember-select-2,ryanjm/ember-select-2,mirego/ember-select-2,matixmatix/ember-select-2,samdemaeyer/ember-select-2,fullofcaffeine/ember-select-2 |
0453f1b7f0867dd1dc85c690b4da52aa25035d3a | app/scripts/timetable_builder/templates/exams.hbs | app/scripts/timetable_builder/templates/exams.hbs | <thead>
<tr>
<th>Code</th>
<th>Title</th>
<th class="exam-time">Exam Time</th>
<th>View</th>
</tr>
</thead>
<tbody></tbody>
| <thead>
<tr>
<th>Code</th>
<th>Title</th>
<th class="exam-time">Exam Time</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
| Rename exam table View column to Actions | Rename exam table View column to Actions
| Handlebars | mit | zhouyichen/nusmods,chunqi/nusmods,mauris/nusmods,zhouyichen/nusmods,chunqi/nusmods,Yunheng/nusmods,mauris/nusmods,nathanajah/nusmods,nusmodifications/nusmods,nathanajah/nusmods,Yunheng/nusmods,mauris/nusmods,zhouyichen/nusmods,Yunheng/nusmods,mauris/nusmods,chunqi/nusmods,nathanajah/nusmods,nusmodifications/nusmods,nusmodifications/nusmods,chunqi/nusmods,Yunheng/nusmods,Yunheng/nusmods,nusmodifications/nusmods,nathanajah/nusmods,zhouyichen/nusmods |
2ce0140c00d7f489e9394955ecf4e2d08f8f5ece | views/gnome/auth/register.hbs | views/gnome/auth/register.hbs | You tried to visit a page that requires you to provide some additional information.
<form action="/authg/register" method="POST">
<input type="hidden" name="origin" value="{{ origin }}">
Please enter your full name: <input type="text" name="fullname"><br />
<input type="submit" value="Register">
</form>
| You need to provide some additional information to proceed.
<form action="/authg/register" method="POST">
<input type="hidden" name="origin" value="{{ origin }}">
Please enter your full name as it should appear on the schedule and badge: <input type="text" name="fullname"><br />
<input type="submit" value="Register">
</form>
| Improve wording for GNOME reg | Improve wording for GNOME reg | Handlebars | mit | benzea/regcfp,benzea/regcfp,thanostx/regcfp,thanostx/regcfp,thanostx/regcfp,benzea/regcfp |
34df871fb3bcc17884e9488781b7dfb8bc0e3079 | templates/strapdown.html.hbs | templates/strapdown.html.hbs | <!DOCTYPE html>
<html>
<body>
<xmp theme="cerulean" style="display:none;">
{{>markdown}}
</xmp>
<script src="http://strapdownjs.com/v/0.2/strapdown.js"></script>
</body>
</html> | <!DOCTYPE html>
<html>
<body>
<xmp theme="cerulean" style="display:none;">
{{>markdown}}
</xmp>
<script src="https://strapdownjs.com/v/0.2/strapdown.js"></script>
</body>
</html>
| Update template script url to https | Update template script url to https
pr-link: Alluxio/alluxio#9219
change-id: cid-cdd91e13d10d6449f7f8ee60bcaed58f48109e3d | Handlebars | apache-2.0 | madanadit/alluxio,wwjiang007/alluxio,madanadit/alluxio,EvilMcJerkface/alluxio,maobaolong/alluxio,calvinjia/tachyon,bf8086/alluxio,bf8086/alluxio,madanadit/alluxio,Alluxio/alluxio,EvilMcJerkface/alluxio,bf8086/alluxio,maobaolong/alluxio,Alluxio/alluxio,wwjiang007/alluxio,maobaolong/alluxio,EvilMcJerkface/alluxio,calvinjia/tachyon,wwjiang007/alluxio,maobaolong/alluxio,Alluxio/alluxio,maobaolong/alluxio,maobaolong/alluxio,bf8086/alluxio,Alluxio/alluxio,Alluxio/alluxio,Alluxio/alluxio,Alluxio/alluxio,calvinjia/tachyon,EvilMcJerkface/alluxio,madanadit/alluxio,maobaolong/alluxio,maobaolong/alluxio,calvinjia/tachyon,EvilMcJerkface/alluxio,wwjiang007/alluxio,wwjiang007/alluxio,maobaolong/alluxio,madanadit/alluxio,bf8086/alluxio,wwjiang007/alluxio,EvilMcJerkface/alluxio,Alluxio/alluxio,EvilMcJerkface/alluxio,madanadit/alluxio,wwjiang007/alluxio,calvinjia/tachyon,Alluxio/alluxio,bf8086/alluxio,madanadit/alluxio,calvinjia/tachyon,wwjiang007/alluxio,wwjiang007/alluxio,bf8086/alluxio,EvilMcJerkface/alluxio,calvinjia/tachyon,bf8086/alluxio,Alluxio/alluxio,maobaolong/alluxio,calvinjia/tachyon,madanadit/alluxio,wwjiang007/alluxio |
c4fea981a5bf1e3ec792d05fed1d2c0026714fb1 | addon/templates/components/power-select/trigger.hbs | addon/templates/components/power-select/trigger.hbs | {{#if selected}}
{{#if selectedItemComponent}}
{{component selectedItemComponent selected=selected lastSearchedText=lastSearchedText}}
{{else}}
<span class="ember-power-select-selected-item">{{yield selected lastSearchedText}}</span>
{{/if}}
{{#if allowClear}}
<span class="ember-power-select-clear-btn" onmousedown={{action select.actions.select null}}>×</span>
{{/if}}
{{else if placeholder}}
<span class="ember-power-select-placeholder">{{placeholder}}</span>
{{/if}}
<span class="ember-power-select-status-icon"></span> | {{#if selected}}
{{#if selectedItemComponent}}
{{component selectedItemComponent selected=selected lastSearchedText=lastSearchedText}}
{{else}}
<span class="ember-power-select-selected-item">{{yield selected lastSearchedText}}</span>
{{/if}}
{{#if allowClear}}
<span class="ember-power-select-clear-btn" onmousedown={{action select.actions.select null}}>×</span>
{{/if}}
{{else if placeholder}}
<div class="ember-power-select-placeholder">{{{placeholder}}}</div>
{{/if}}
<span class="ember-power-select-status-icon"></span> | Allow to have placeholders with html | Allow to have placeholders with html
| Handlebars | mit | esbanarango/ember-power-select,cibernox/ember-power-select,esbanarango/ember-power-select,cibernox/ember-power-select,cibernox/ember-power-select,cibernox/ember-power-select,esbanarango/ember-power-select |
b15cc520b10abe46d433d9337dd963780b32688f | app/templates/components/pending-updates-summary.hbs | app/templates/components/pending-updates-summary.hbs | {{#if schools.isFulfilled}}
<div id='schoolsfilter' class="filter">
<label class="inline-label">
{{fa-icon 'university'}}
</label>
<div id="school-selection" class="inline-data">
{{#if hasMoreThanOneSchool}}
<select onchange={{action "changeSelectedSchool" value="target.value"}}>
{{#each sortedSchools as |school|}}
<option value={{school.id}} selected={{is-equal school selectedSchool.content}}>
{{school.title}}
</option>
{{/each}}
</select>
{{else}}
{{selectedSchool.title}}
{{/if}}
</div>
</div>
{{/if}}
{{#if updates.isFulfilled}}
<p>{{t 'admin.pendingUpdatesSummary' count=updates.length}}</p>
{{#if updates.length}}
{{#link-to 'pending-user-updates'}}
<button>{{t 'general.manage'}}</button>
{{/link-to}}
{{/if}}
{{else}}
{{fa-icon 'spinner' spin = true}}
{{/if}}
| {{#if schools.isFulfilled}}
<div id='schoolsfilter' class="filter">
<label class="inline-label">
{{fa-icon 'university'}}
</label>
<div id="school-selection" class="inline-data">
{{#if hasMoreThanOneSchool}}
<select onchange={{action "changeSelectedSchool" value="target.value"}}>
{{#each sortedSchools as |school|}}
<option value={{school.id}} selected={{is-equal school selectedSchool.content}}>
{{school.title}}
</option>
{{/each}}
</select>
{{else}}
{{selectedSchool.title}}
{{/if}}
</div>
</div>
{{/if}}
{{#if updates.isFulfilled}}
<p>{{t 'admin.pendingUpdatesSummary' count=updates.length}}</p>
{{#if updates.length}}
{{#link-to 'pending-user-updates' (query-params school=selectedSchool.id)}}
<button>{{t 'general.manage'}}</button>
{{/link-to}}
{{/if}}
{{else}}
{{fa-icon 'spinner' spin = true}}
{{/if}}
| Maintain school selection when changing from update summary to update route | Maintain school selection when changing from update summary to update route
| Handlebars | mit | gboushey/frontend,gabycampagna/frontend,thecoolestguy/frontend,djvoa12/frontend,djvoa12/frontend,gabycampagna/frontend,thecoolestguy/frontend,stopfstedt/frontend,stopfstedt/frontend,jrjohnson/frontend,jrjohnson/frontend,dartajax/frontend,ilios/frontend,gboushey/frontend,dartajax/frontend,ilios/frontend |
c69bad020e0355b3f59b4e9b6679ace5da76a1fc | app/pods/contact/template.hbs | app/pods/contact/template.hbs | <div class="container">
{{nbd-header}}
<div class="row page-content">
<div class="twelve columns">
<section class="contact">
</section>
</div>
</div>
<footer class="row contact-footer">
<div class="twelve columns">
<nav>
<a href="https://soundcloud.com/nbdlabel" target="_blank">
{{fa-icon icon="soundcloud"}}
</a>
<a href="https://instagram.com/nbdlabel" target="_blank">
{{fa-icon icon="instagram"}}
</a>
<a href="https://www.facebook.com/nbdlabel" target="_blank">
{{fa-icon icon="facebook"}}
</a>
<a href="https://twitter.com/nbdlabel" target="_blank">
{{fa-icon icon="twitter"}}
</a>
</nav>
<p class="email"><a href="mailto:hello@nbdlabel.com?Subject=Hello%20nbd!" target="_blank">hello@nbdlabel.com</a></p>
<p>design by <a href="http://amandaanderson.xyz/" target="_blank">amanda anderson</a></p>
<p class="development-by">development by <a href="http://eubene.me/" target="_blank">eubene sa</a></p>
<p>© 2015 nbd label</p>
</div>
</footer>
</div>
| <div class="container">
{{nbd-header}}
<div class="row page-content">
<div class="twelve columns">
<section class="contact">
</section>
</div>
</div>
<footer class="row contact-footer">
<div class="twelve columns">
<nav>
<a href="https://soundcloud.com/nbdlabel" target="_blank">
{{fa-icon icon="soundcloud"}}
</a>
<a href="https://instagram.com/nbdlabel" target="_blank">
{{fa-icon icon="instagram"}}
</a>
<a href="https://www.facebook.com/nbdlabel" target="_blank">
{{fa-icon icon="facebook"}}
</a>
<a href="https://twitter.com/nbdlabel" target="_blank">
{{fa-icon icon="twitter"}}
</a>
</nav>
<p class="email"><a href="mailto:hello@nbdlabel.com?Subject=Hello%20nbd!" target="_blank">hello@nbdlabel.com</a></p>
<p>design by <a href="http://amandaanderson.xyz/" target="_blank">amanda anderson</a></p>
<p class="development-by">development by <a href="http://eubenesa.com/" target="_blank">eubene sa</a></p>
<p>© 2015 nbd label</p>
</div>
</footer>
</div>
| Update link to my personal blog/portfolio | Update link to my personal blog/portfolio
| Handlebars | cc0-1.0 | eubenesa/nbdlabel,eubenesa/nbdlabel |
ce336ed4ff9d97faa7b5f7dab3014c4cd8c1f40b | static/templates/settings/deactivation_stream_modal.hbs | static/templates/settings/deactivation_stream_modal.hbs | <div id="deactivation_stream_modal" class="modal modal-bg hide fade new-style" tabindex="-1" role="dialog" aria-labelledby="deactivation_stream_modal_label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close close-modal-btn" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
<h3 id="deactivation_stream_modal_label">{{t "Archive stream" }} <span class="stream_name">{{stream_name}}</span></h3>
</div>
<div class="modal-body">
Archiving stream <strong>{{stream_name}}</strong> <span>will immediately unsubscribe everyone. This action cannot be undone </span>
<p><strong>{{t "Are you sure you want to archieve this stream?" }}</strong></p>
</div>
<div class="modal-footer">
<button class="button rounded close-modal-btn" data-dismiss="modal">{{t "Cancel" }}</button>
<button class="button rounded btn-danger" id="do_deactivate_stream_button" data-stream-id="{{stream_id}}">{{t "Confirm" }}</button>
</div>
</div>
| <div id="deactivation_stream_modal" class="modal modal-bg hide fade new-style" tabindex="-1" role="dialog" aria-labelledby="deactivation_stream_modal_label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close close-modal-btn" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
<h3 id="deactivation_stream_modal_label">{{t "Archive stream" }} <span class="stream_name">{{stream_name}}</span></h3>
</div>
<div class="modal-body">
Archiving stream <strong>{{stream_name}}</strong> <span>will immediately unsubscribe everyone. This action cannot be undone </span>
<p><strong>{{t "Are you sure you want to archive this stream?" }}</strong></p>
</div>
<div class="modal-footer">
<button class="button rounded close-modal-btn" data-dismiss="modal">{{t "Cancel" }}</button>
<button class="button rounded btn-danger" id="do_deactivate_stream_button" data-stream-id="{{stream_id}}">{{t "Confirm" }}</button>
</div>
</div>
| Fix typo in stream deactivation modal. | streams: Fix typo in stream deactivation modal.
| Handlebars | apache-2.0 | eeshangarg/zulip,hackerkid/zulip,eeshangarg/zulip,zulip/zulip,rht/zulip,hackerkid/zulip,andersk/zulip,zulip/zulip,zulip/zulip,hackerkid/zulip,zulip/zulip,hackerkid/zulip,kou/zulip,zulip/zulip,kou/zulip,eeshangarg/zulip,rht/zulip,andersk/zulip,punchagan/zulip,hackerkid/zulip,kou/zulip,rht/zulip,hackerkid/zulip,punchagan/zulip,rht/zulip,eeshangarg/zulip,zulip/zulip,andersk/zulip,kou/zulip,eeshangarg/zulip,andersk/zulip,andersk/zulip,zulip/zulip,andersk/zulip,eeshangarg/zulip,kou/zulip,rht/zulip,punchagan/zulip,kou/zulip,punchagan/zulip,punchagan/zulip,rht/zulip,punchagan/zulip,kou/zulip,punchagan/zulip,hackerkid/zulip,rht/zulip,andersk/zulip,eeshangarg/zulip |
780ccf25645ffc0d09e77e811263df6c52586e89 | stickyFooter.hbs | stickyFooter.hbs | ---
title: Sticky footer example
template: default
stickyFooter: active
---
{{> navbar }}
<!-- begin: content container -->
<div class="container">
<!-- begin: content -->
<h1>Sticky footer with fixed navbar</h1>
<p class="lead">
Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added with <code>padding-top: 60px;</code>on the <code>body > .container</code>.
</p>
<p>
Adapted from the <a href="http://getbootstrap.com/examples/sticky-footer-navbar/">Bootstrap sticky footer example</a>.
</p>
<!-- end: content -->
</div>
<!-- end: content container -->
{{> footer }}
| ---
title: Sticky footer example
stickyFooter: active
---
{{> navbar }}
<!-- begin: content container -->
<div class="container">
<!-- begin: content -->
<h1>Sticky footer with fixed navbar</h1>
<p class="lead">
Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added with <code>padding-top: 60px;</code>on the <code>body > .container</code>.
</p>
<p>
Adapted from the <a href="http://getbootstrap.com/examples/sticky-footer-navbar/">Bootstrap sticky footer example</a>.
</p>
<!-- end: content -->
</div>
<!-- end: content container -->
{{> footer }}
| Remove unneeded `template: default` from Frontmatters | Remove unneeded `template: default` from Frontmatters
| Handlebars | mit | micromata/bootstrap-kickstart,micromata/bootstrap-kickstart |
593e379d82d891e046db70bb467050f079ef9fb0 | frontend/app/templates/components/task-notifications.hbs | frontend/app/templates/components/task-notifications.hbs | {{#if showForm}}
{{#bs-form class="task-notifications" formLayout="horizontal" horizontalLabelGridClass="col-md-2" action=onSave}}
{{bs-form-element label=(t 'tasks.notifications.to') value="@responsibles" disabled=true}}
{{bs-form-element label=(t 'tasks.notifications.cc') value=task.notificationEmail disabled=showing }}
{{bs-form-element label=(t 'tasks.notifications.subject') value=task.notificationSubject disabled=showing}}
{{bs-form-element label=(t 'tasks.notifications.body') controlType="textarea" value=task.notificationBody disabled=showing}}
{{#if editing }}
<div class="btn-toolbar">
{{bs-button defaultText=(t 'tasks.notifications.save.button') type="primary" buttonType="submit" class="pull-right"}}
{{bs-button defaultText=(t 'tasks.notifications.cancel.button') type="default" action=onCancel class="pull-right"}}
</div>
{{/if}}
{{/bs-form}}
{{/if}}
{{#unless showForm }}
{{#bs-alert type="info"}}
{{ t 'tasks.notifications.empty.message' }}
{{/bs-alert}}
{{#bs-button type="primary" action=onEdit}}
{{ t 'tasks.notifications.empty.button' }}
{{/bs-button}}
{{/unless}}
| {{#if showForm}}
{{#bs-form class="task-notifications" formLayout="horizontal" horizontalLabelGridClass="col-md-2" action=onSave}}
{{#if task.turns }}
{{bs-form-element label=(t 'tasks.notifications.to') value="@responsibles" disabled=true}}
{{/if}}
{{bs-form-element label=(t (concat 'tasks.notifications.' (if task.turns 'cc' 'to'))) value=task.notificationEmail disabled=showing }}
{{bs-form-element label=(t 'tasks.notifications.subject') value=task.notificationSubject disabled=showing}}
{{bs-form-element label=(t 'tasks.notifications.body') controlType="textarea" value=task.notificationBody disabled=showing}}
{{#if editing }}
<div class="btn-toolbar">
{{bs-button defaultText=(t 'tasks.notifications.save.button') type="primary" buttonType="submit" class="pull-right"}}
{{bs-button defaultText=(t 'tasks.notifications.cancel.button') type="default" action=onCancel class="pull-right"}}
</div>
{{/if}}
{{/bs-form}}
{{/if}}
{{#unless showForm }}
{{#bs-alert type="info"}}
{{ t 'tasks.notifications.empty.message' }}
{{/bs-alert}}
{{#bs-button type="primary" action=onEdit}}
{{ t 'tasks.notifications.empty.button' }}
{{/bs-button}}
{{/unless}}
| Change email_notification label when task has not turns | Change email_notification label when task has not turns
Closes #62
| Handlebars | agpl-3.0 | singularities/circular-works,singularities/circular-work,singularities/circular-works,singularities/circular-works,singularities/circular-work,singularities/circular-work |
ad2a224ca86b4de67172436625d915f337715d1b | views/layouts/main.handlebars | views/layouts/main.handlebars | <!doctype html>
<html lang="en">
<head>
{{> meta}}
{{> title}}
{{addLocalCSS "/css/main.css" prepend=true hasOldIE=true}}
{{addLocalCSS "/css/main-grid.css" prepend=true hasOldIE=true}}
{{addLocalCSS "/css/rainbow/baby-blue.css"}}
{{> styles}}
{{> html5shiv}}
{{> typekit}}
{{> analytics}}
</head>
<body>
<div id="layout">
{{> menu}}
<div id="main">
{{{body}}}
<div class="footer">
{{> legal}}
</div>
</div>
</div>
{{addLocalJS "/js/ui.js"}}
{{addLocalJS "/vendor/rainbow/js/rainbow.min.js"}}
{{addLocalJS "/vendor/rainbow/js/language/generic.js"}}
{{addLocalJS "/vendor/rainbow/js/language/html.js"}}
{{addLocalJS "/vendor/rainbow/js/language/css.js"}}
{{addLocalJS "/vendor/rainbow/js/language/javascript.js"}}
{{#localJS}}
<script src="{{{.}}}"></script>
{{/localJS}}
</body>
</html>
| <!doctype html>
<html lang="en">
<head>
{{> meta}}
{{> title}}
{{addLocalCSS "/css/main.css" prepend=true hasOldIE=true}}
{{addLocalCSS "/css/main-grid.css" prepend=true hasOldIE=true}}
{{addLocalCSS "/css/rainbow/baby-blue.css"}}
{{> styles}}
{{> html5shiv}}
{{> typekit}}
{{> analytics}}
</head>
<body>
<div id="layout">
{{> menu}}
<div id="main">
{{{body}}}
<div class="footer">
{{> legal}}
</div>
</div>
</div>
{{addLocalJS "/js/ui.js"}}
{{addLocalJS "/vendor/rainbow/js/rainbow.min.js"}}
{{addLocalJS "/vendor/rainbow/js/language/generic.js"}}
{{addLocalJS "/vendor/rainbow/js/language/html.js"}}
{{addLocalJS "/vendor/rainbow/js/language/css.js"}}
{{addLocalJS "/vendor/rainbow/js/language/javascript.js"}}
{{addLocalJS "/vendor/rainbow/js/language/shell.js"}}
{{#localJS}}
<script src="{{{.}}}"></script>
{{/localJS}}
</body>
</html>
| Load shell Rainbow language in client | Load shell Rainbow language in client
| Handlebars | bsd-3-clause | jamesalley/pure-site,weigang992003/pure-css-chinese,yahoo/pure-site,weigang992003/pure-css-chinese,jamesalley/pure-site,yahoo/pure-site |
63b50b0551a5d6bdb6e407e7a77fa6f5b2a7de6c | app/templates/components/doi-form.hbs | app/templates/components/doi-form.hbs | {{form.element controlType="text" label="DOI" property="doi" helpText="The globally unique string that identifies
the resource and can't be changed. DOIs with demo prefix 10.5072 will always remain in Draft state."
disabled=true}}
{{doi-state model=model form=form}}
{{doi-url model=model form=form}}
{{#if metadataFieldsDisabled}}
Wee woo disabled
{{/if}}
{{doi-creator model=model form=form disabled=metadataFieldsDisabled}}
{{doi-titles model=model form=form disabled=metadataFieldsDisabled}}
{{form.element controlType="text" label="Publisher" property="publisher" helpText="The name of the entity that
holds, archives, publishes prints, distributes, releases, issues, or produces the resource." required=false
disabled=metadataFieldsDisabled}}
{{form.element controlType="text" label="Publication Year" property="publicationYear" helpText="The year when the
resource was or will be made publicly available. Must be between 1450 and 2020." required=false
disabled=metadataFieldsDisabled}}
{{doi-types model=model form=form disabled=metadataFieldsDisabled}}
{{doi-descriptions model=model form=form disabled=metadataFieldsDisabled}}
{{model-validation-errors model=model form=form disabled=metadataFieldsDisabled}} | {{form.element controlType="text" label="DOI" property="doi" helpText="The globally unique string that identifies
the resource and can't be changed. DOIs with demo prefix 10.5072 will always remain in Draft state."
disabled=true}}
{{doi-state model=model form=form}}
{{doi-url model=model form=form}}
{{#if metadataFieldsDisabled}}
<div class="col-md-9 col-md-offset-3">
<div class="help-block">
You cannot edit the metadata in the form, if the DOI was not created via the form. If you did create this doi via
the form you should contact <a target="_blank" rel="noopener" href="mailto:">support@datacite.org</a>.
</div>
</div>
{{/if}}
{{doi-creator model=model form=form disabled=metadataFieldsDisabled}}
{{doi-titles model=model form=form disabled=metadataFieldsDisabled}}
{{form.element controlType="text" label="Publisher" property="publisher" helpText="The name of the entity that
holds, archives, publishes prints, distributes, releases, issues, or produces the resource." required=false
disabled=metadataFieldsDisabled}}
{{form.element controlType="text" label="Publication Year" property="publicationYear" helpText="The year when the
resource was or will be made publicly available. Must be between 1450 and 2020." required=false
disabled=metadataFieldsDisabled}}
{{doi-types model=model form=form disabled=metadataFieldsDisabled}}
{{doi-descriptions model=model form=form disabled=metadataFieldsDisabled}}
{{model-validation-errors model=model form=form disabled=metadataFieldsDisabled}} | Add help text mesage for when form disabled. | Add help text mesage for when form disabled.
| Handlebars | mit | datacite/bracco,datacite/bracco,datacite/bracco,datacite/bracco |
ef44ed8674c78efd4c3a8fd08a2eff069b7901fd | app/templates/add-preprint.hbs | app/templates/add-preprint.hbs | <div class="container"> <!--CONTAINER DIV-->
<div class="m-b-md p-md osf-box" id="main"> <!--MAIN DIV-->
<div class="row" id="addPreprint"> <!--ROW-->
<div class="col-md-12"> <!--COL-->
<h1>Add preprint</h1>
</div> <!--END COL-->
</div> <!--END ROW-->
<div class="row"> <!--FORM ROW DIV-->
<div class="col-md-7"> <!--COL 7 DIV-->
<span class="text-danger">*Accepted file types: .pdf, .doc, .docx</span>
<!--TODO: ADD EMBER OSF COMPONENT AND LOGIC FOR ROUTES-->
{{dropzone-widget preUpload=(action 'preUpload') success=(action 'success') error=(action 'error') buildUrl=(action 'buildUrl') options=dropzoneOptions}}
</div> <!--END COL 7 DIV-->
<div class="col-md-5"> <!--COL 5 DIV: FORM-->
{{preprint-form buttonAction=(action 'uploadNewPreprintToNewProject') actionName="createPreprint" buttonText="Add preprint"}}
<!--<button class="btn btn-primary" onclick={{action 'closeModal'}}>Add File</button>-->
</div> <!--END COL 5 DIV: FORM-->
</div> <!--END FORM ROW-->
</div> <!--END MAIN DIV-->
</div> <!--END CONTAINER DIV-->
<!--makePost=(action "makePost")-->
| <div class="container"> <!--CONTAINER DIV-->
<div class="m-b-md p-md osf-box" id="main"> <!--MAIN DIV-->
<div class="row" id="addPreprint"> <!--ROW-->
<div class="col-md-12"> <!--COL-->
<h1>Add preprint</h1>
</div> <!--END COL-->
</div> <!--END ROW-->
<div class="row"> <!--FORM ROW DIV-->
<div class="col-md-7"> <!--COL 7 DIV-->
<!--TODO: ADD EMBER OSF COMPONENT AND LOGIC FOR ROUTES-->
{{dropzone-widget preUpload=(action 'preUpload') success=(action 'success') error=(action 'error') buildUrl=(action 'buildUrl') options=dropzoneOptions}}
<span class="text-danger">*Accepted file types: .pdf, .doc, .docx</span>
</div> <!--END COL 7 DIV-->
<div class="col-md-5"> <!--COL 5 DIV: FORM-->
{{preprint-form buttonAction=(action 'uploadNewPreprintToNewProject') actionName="createPreprint" buttonText="Add preprint"}}
<!--<button class="btn btn-primary" onclick={{action 'closeModal'}}>Add File</button>-->
</div> <!--END COL 5 DIV: FORM-->
</div> <!--END FORM ROW-->
</div> <!--END MAIN DIV-->
</div> <!--END CONTAINER DIV-->
<!--makePost=(action "makePost")-->
| Move document types to under dropzone | Move document types to under dropzone | Handlebars | apache-2.0 | pattisdr/ember-preprints,CenterForOpenScience/ember-preprints,laurenrevere/ember-preprints,CenterForOpenScience/ember-preprints,baylee-d/ember-preprints,hmoco/ember-preprints,hmoco/ember-preprints,laurenrevere/ember-preprints,baylee-d/ember-preprints,caneruguz/ember-preprints,pattisdr/ember-preprints,caneruguz/ember-preprints |
5a254bf4956b10e30026d9df0aed6897315aa26a | static/templates/settings/deactivate_realm_modal.hbs | static/templates/settings/deactivate_realm_modal.hbs | <div id="deactivate-realm-modal" class="modal modal-bg hide fade" tabindex="-1" role="dialog" aria-labelledby="deactivate_realm_modal_label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
<h3 id="deactivate_realm_modal_label">{{t "Deactivate organization" }} <span class="realm_name"></span></h3>
</div>
<div class="modal-body">
<p>{{t "This action is permanent and cannot be undone. All users will permanently lose access to their Zulip accounts." }}</p>
<p>{{t "Are you sure you want to deactivate this organization?"}}</p>
</div>
<div class="modal-footer">
<button type="button" class="button rounded" data-dismiss="modal">{{t "Cancel" }}</button>
<button type="button" class="button rounded btn-danger" id="do_deactivate_realm_button">{{t "Confirm" }}</button>
</div>
</div>
| <div id="deactivate-realm-modal" class="modal modal-bg hide fade" tabindex="-1" role="dialog" aria-labelledby="deactivate_realm_modal_label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
<h3 id="deactivate_realm_modal_label">
{{t "Deactivate organization" }} <span class="realm_name"></span>
{{> ../help_link_widget link="/help/deactivate-your-organization" }}
</h3>
</div>
<div class="modal-body">
<p>{{t "This action is permanent and cannot be undone. All users will permanently lose access to their Zulip accounts." }}</p>
<p>{{t "Are you sure you want to deactivate this organization?"}}</p>
</div>
<div class="modal-footer">
<button type="button" class="button rounded" data-dismiss="modal">{{t "Cancel" }}</button>
<button type="button" class="button rounded btn-danger" id="do_deactivate_realm_button">{{t "Confirm" }}</button>
</div>
</div>
| Add Help link widget for UI modal. | deactivate_realm: Add Help link widget for UI modal.
Added Help link widget for deactivate_realm UI modal
which redirects to /help/deactivate-your-organization within
the user documentation.
| Handlebars | apache-2.0 | kou/zulip,rht/zulip,hackerkid/zulip,kou/zulip,andersk/zulip,eeshangarg/zulip,eeshangarg/zulip,andersk/zulip,kou/zulip,punchagan/zulip,hackerkid/zulip,zulip/zulip,punchagan/zulip,rht/zulip,andersk/zulip,punchagan/zulip,kou/zulip,zulip/zulip,kou/zulip,zulip/zulip,zulip/zulip,punchagan/zulip,eeshangarg/zulip,eeshangarg/zulip,andersk/zulip,rht/zulip,eeshangarg/zulip,kou/zulip,andersk/zulip,rht/zulip,kou/zulip,hackerkid/zulip,eeshangarg/zulip,hackerkid/zulip,rht/zulip,andersk/zulip,hackerkid/zulip,zulip/zulip,punchagan/zulip,andersk/zulip,zulip/zulip,punchagan/zulip,rht/zulip,punchagan/zulip,rht/zulip,hackerkid/zulip,eeshangarg/zulip,zulip/zulip,hackerkid/zulip |
507073a3f5cbfcc11947c7be218e4eeb0c911930 | src/main/web/templates/handlebars/partials/alert.handlebars | src/main/web/templates/handlebars/partials/alert.handlebars | {{#if_any description.latestRelease versions alerts}}
<div class="alert">
<div class="wrapper">
<div class="col-wrap">
<div class="col">
{{!-- Latest info --}}
{{> partials/latest-release}}
{{!-- Corrections & alerts --}}
{{#if_any versions alerts}}
<div class="show-hide js-show-hide">
<div class="js-show-hide__title">
<div class="show-hide--warning">!</div>
<h2 class="show-hide--warning__title inline-block">
{{#if_all versions alerts}}Corrections and notices{{else}}{{#if versions}}
Correction{{#if plural}}s{{/if}}{{else}}Notice{{#if plural}}
s{{/if}}{{/if}}{{/if_all}}
</h2>
</div>
<div class="js-show-hide__content">
{{> partials/correction}}
{{> partials/notice}}
</div>
</div>
{{/if_any}}
</div>
</div>
</div>
</div>
{{/if_any}} | {{#if_any description.latestRelease description.nextRelease versions alerts}}
<div class="alert">
<div class="wrapper">
<div class="col-wrap">
<div class="col">
{{!-- Latest info --}}
{{> partials/latest-release}}
{{!-- Corrections & alerts --}}
{{#if_any versions alerts}}
<div class="show-hide js-show-hide">
<div class="js-show-hide__title">
<div class="show-hide--warning">!</div>
<h2 class="show-hide--warning__title inline-block">
{{#if_all versions alerts}}Corrections and notices{{else}}{{#if versions}}
Correction{{#if plural}}s{{/if}}{{else}}Notice{{#if plural}}
s{{/if}}{{/if}}{{/if_all}}
</h2>
</div>
<div class="js-show-hide__content">
{{> partials/correction}}
{{> partials/notice}}
</div>
</div>
{{/if_any}}
</div>
</div>
</div>
</div>
{{/if_any}} | Fix 'this is not latest release' not showing | Fix 'this is not latest release' not showing
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
5f2451f9dc0cd9c391854aec7aadd2e14ac461aa | app/views/jst/courses/autocomplete_item.handlebars | app/views/jst/courses/autocomplete_item.handlebars | <li>
<a>
<div>{{ label }}</div>
<div><small><em>{{ term }}</em></small></div>
</a>
</li>
| <li aria-label="{{label}} ({{term}})">
<a>
<div>{{label}}</div>
<div><small><em>{{term}}</em></small></div>
</a>
</li>
| Add aria-label to course autocomplete | Add aria-label to course autocomplete
| Handlebars | agpl-3.0 | samuels410/greatlakes-lms,AndranikMarkosyan/lms,sdeleon28/canvas-lms,wye0220/shindig-canvas,skmezanul/canvas-lms,AndranikMarkosyan/lms,matematikk-mooc/canvas-lms,dgynn/canvas-lms,samuels410/greatlakes-lms,greyhwndz/canvas-lms,wye0220/shindig-canvas,grahamb/canvas-lms,va7map/canvas-lms,shidao-fm/canvas-lms,instructure/canvas-lms,skmezanul/canvas-lms,juoni/canvas-lms,eCNAP/CANVAS,Unow/canvas-lms,Rvor/canvas-lms,Jyaasa/canvas-lms,matematikk-mooc/canvas-lms,grahamb/canvas-lms,dgynn/canvas-lms,wrdsb/canvas-lms,whalejasmine/canvas-lms,antoniuslin/canvas-lms,redconfetti/canvas-lms,ShreniiNepal/shrenii_lmp,SwinburneOnline/canvas-lms,utkarshx/canvas-lms,roxolan/canvas-lms,samuels410/greatlakes-lms,skmezanul/canvas-lms,greyhwndz/canvas-lms,eCNAP/CANVAS,narigone/canvas,gbleydon/canvas-lms,wrdsb/canvas-lms,va7map/canvas-lms,sfu/canvas-lms,venturehive/canvas-lms,instructure/canvas-lms,gbleydon/canvas-lms,grahamb/canvas-lms,HotChalk/canvas-lms,redconfetti/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,gbleydon/canvas-lms,antoniuslin/canvas-lms,kyroskoh/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,tgroshon/canvas-lms,fronteerio/canvas-lms,ShreniiNepal/shrenii_lmp,instructure/canvas-lms,juoni/canvas-lms,SwinburneOnline/canvas-lms,tgroshon/canvas-lms,Jyaasa/canvas-lms,efrj/canvas-lms,HotChalk/canvas-lms,jay3126/canvas-lms,shidao-fm/canvas-lms,juoni/canvas-lms,sdeleon28/canvas-lms,djbender/canvas-lms,AndranikMarkosyan/lms,antoniuslin/canvas-lms,djbender/canvas-lms,jay3126/canvas-lms,utkarshx/canvas-lms,snehakachroo1/LSI_replica,instructure/canvas-lms,wrdsb/canvas-lms,wrdsb/canvas-lms,samuels410/greatlakes-lms,jay3126/canvas-lms,AndranikMarkosyan/lms,eCNAP/CANVAS,fronteerio/canvas-lms,snehakachroo1/LSI_replica,sfu/canvas-lms,usmschuck/canvas,whalejasmine/canvas-lms,tgroshon/canvas-lms,va7map/canvas-lms,leftplusrightllc/canvas-lms,sdeleon28/canvas-lms,leftplusrightllc/canvas-lms,antoniuslin/canvas-lms,efrj/canvas-lms,ShreniiNepal/shrenii_lmp,fronteerio/canvas-lms,whalejasmine/canvas-lms,leftplusrightllc/canvas-lms,va7map/canvas-lms,Rvor/canvas-lms,juoni/canvas-lms,wye0220/shindig-canvas,venturehive/canvas-lms,matematikk-mooc/canvas-lms,roxolan/canvas-lms,snehakachroo1/LSI_replica,grahamb/canvas-lms,sfu/canvas-lms,narigone/canvas,redconfetti/canvas-lms,greyhwndz/canvas-lms,matematikk-mooc/canvas-lms,utkarshx/canvas-lms,HotChalk/canvas-lms,sdeleon28/canvas-lms,Jyaasa/canvas-lms,jay3126/canvas-lms,instructure/canvas-lms,Rvor/canvas-lms,venturehive/canvas-lms,venturehive/canvas-lms,tgroshon/canvas-lms,usmschuck/canvas,roxolan/canvas-lms,leftplusrightllc/canvas-lms,redconfetti/canvas-lms,djbender/canvas-lms,Jyaasa/canvas-lms,eCNAP/CANVAS,djbender/canvas-lms,fronteerio/canvas-lms,narigone/canvas,kyroskoh/canvas-lms,snehakachroo1/LSI_replica,SwinburneOnline/canvas-lms,efrj/canvas-lms,HotChalk/canvas-lms,Unow/canvas-lms,whalejasmine/canvas-lms,dgynn/canvas-lms,kyroskoh/canvas-lms,utkarshx/canvas-lms,Unow/canvas-lms,roxolan/canvas-lms,sfu/canvas-lms,SwinburneOnline/canvas-lms,usmschuck/canvas,usmschuck/canvas,efrj/canvas-lms,Rvor/canvas-lms,ShreniiNepal/shrenii_lmp,dgynn/canvas-lms,grahamb/canvas-lms,skmezanul/canvas-lms,greyhwndz/canvas-lms,shidao-fm/canvas-lms,narigone/canvas,shidao-fm/canvas-lms,kyroskoh/canvas-lms,sfu/canvas-lms |
b4cf867ad2347e43915735faaff4b8179010199b | app/templates/components/job-infrastructure-notification.hbs | app/templates/components/job-infrastructure-notification.hbs | {{#unless config.enterprise}}
{{#if auth.signedIn}}
{{#if isDeprecatedOrRetiredMacImage}}
{{#notice-banner}}
{{{deprecatedOrRetiredMacImageMessage}}}
{{/notice-banner}}
{{/if}}
{{#if isPreciseEOL}}
{{#notice-banner}}
This job {{conjugatedRun}} on our <b>Precise</b> environment, which is in the process of being decommissioned. Please read about the rollout of Trusty as default <a href="https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming">on the blog</a>, and take note that you can explicitly stay on Precise by specifying <code>dist: precise</code> in your .travis.yml.
{{/notice-banner}}
{{/if}}
{{#if isTrustyStable}}
{{#notice-banner}}
This job {{conjugatedRun}} on our <b>Trusty</b> environment, which is gradually becoming our default Linux environment. Read all about this <a href="https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming?utm_source=web&utm_medium=banner&&utm_campaign=trusty-default">in our blog: Trusty as a default Linux is coming</a> and take note that you can add <code>dist: precise</code> in your .travis.yml file to continue using Precise.
{{/notice-banner}}
{{/if}}
{{/if}}
{{/unless}}
| {{#unless config.enterprise}}
{{#if auth.signedIn}}
{{#if isDeprecatedOrRetiredMacImage}}
{{#notice-banner}}
{{{deprecatedOrRetiredMacImageMessage}}}
{{/notice-banner}}
{{/if}}
{{#if isPreciseEOL}}
{{#notice-banner}}
This job {{conjugatedRun}} on our <b>Precise</b> environment, which is in the process of being decommissioned. Please read about the status of the rollout <a href="https://blog.travis-ci.com/2017-08-31-trusty-as-default-status">on the blog</a>, and take note that you can explicitly stay on Precise by specifying <code>dist: precise</code> in your .travis.yml.
{{/notice-banner}}
{{/if}}
{{/if}}
{{/unless}}
| Update the Precise EOL banner | Update the Precise EOL banner
and remove the Trusty banner as the time has come
| Handlebars | mit | travis-ci/travis-web,travis-ci/travis-web,travis-ci/travis-web,travis-ci/travis-web |
fb00ee79a0ca4e346e9f7c29820d4db75fd97a2a | static/templates/propagate_notification_change.handlebars | static/templates/propagate_notification_change.handlebars | <div>
<p>Apply this change to all stream subscriptions?</p>
<div class="control-group">
<div class="controls propagate-notifications-controls">
<button type="button"
class="yes_propagate_notifications btn btn-primary btn-small">Yes</button>
<button type="button"
class="no_propagate_notifications btn btn-small">No</button>
</div>
</div>
</div> | <div>
<p>Apply this change to all stream subscriptions?</p>
<div class="control-group">
<div class="controls propagate-notifications-controls">
<button type="button"
class="yes_propagate_notifications btn btn-primary btn-small">Yes</button>
<button type="button"
class="no_propagate_notifications btn btn-default btn-small">No</button>
</div>
</div>
</div> | Fix unstyled button on Settings stream notification propagation. | Fix unstyled button on Settings stream notification propagation.
(imported from commit ebc046e8d0f29a6bbf64005c70f32522a366fa6b)
| Handlebars | apache-2.0 | punchagan/zulip,amanharitsh123/zulip,bluesea/zulip,praveenaki/zulip,JanzTam/zulip,karamcnair/zulip,hafeez3000/zulip,johnnygaddarr/zulip,swinghu/zulip,xuanhan863/zulip,zhaoweigg/zulip,dattatreya303/zulip,LeeRisk/zulip,wavelets/zulip,amanharitsh123/zulip,krtkmj/zulip,rht/zulip,hayderimran7/zulip,Qgap/zulip,dattatreya303/zulip,guiquanz/zulip,zulip/zulip,noroot/zulip,atomic-labs/zulip,zofuthan/zulip,isht3/zulip,souravbadami/zulip,wavelets/zulip,sup95/zulip,codeKonami/zulip,jackrzhang/zulip,m1ssou/zulip,aps-sids/zulip,themass/zulip,synicalsyntax/zulip,willingc/zulip,Batterfii/zulip,brockwhittaker/zulip,bitemyapp/zulip,littledogboy/zulip,mansilladev/zulip,amanharitsh123/zulip,Frouk/zulip,hj3938/zulip,babbage/zulip,zorojean/zulip,hayderimran7/zulip,schatt/zulip,KingxBanana/zulip,akuseru/zulip,karamcnair/zulip,aps-sids/zulip,hackerkid/zulip,proliming/zulip,kou/zulip,lfranchi/zulip,showell/zulip,mansilladev/zulip,ufosky-server/zulip,LeeRisk/zulip,easyfmxu/zulip,levixie/zulip,avastu/zulip,johnny9/zulip,codeKonami/zulip,jonesgithub/zulip,joshisa/zulip,yocome/zulip,bssrdf/zulip,hj3938/zulip,aps-sids/zulip,wangdeshui/zulip,huangkebo/zulip,grave-w-grave/zulip,KJin99/zulip,fw1121/zulip,tiansiyuan/zulip,JPJPJPOPOP/zulip,noroot/zulip,cosmicAsymmetry/zulip,Jianchun1/zulip,Vallher/zulip,hafeez3000/zulip,dattatreya303/zulip,swinghu/zulip,xuanhan863/zulip,xuxiao/zulip,shrikrishnaholla/zulip,akuseru/zulip,susansls/zulip,proliming/zulip,jimmy54/zulip,dxq-git/zulip,gkotian/zulip,yuvipanda/zulip,bluesea/zulip,ApsOps/zulip,tbutter/zulip,hayderimran7/zulip,yocome/zulip,levixie/zulip,hustlzp/zulip,JPJPJPOPOP/zulip,rht/zulip,deer-hope/zulip,zachallaun/zulip,Vallher/zulip,praveenaki/zulip,xuanhan863/zulip,sonali0901/zulip,aliceriot/zulip,rht/zulip,Vallher/zulip,seapasulli/zulip,zofuthan/zulip,so0k/zulip,cosmicAsymmetry/zulip,voidException/zulip,zhaoweigg/zulip,ipernet/zulip,jrowan/zulip,ashwinirudrappa/zulip,johnnygaddarr/zulip,dattatreya303/zulip,xuanhan863/zulip,sharmaeklavya2/zulip,m1ssou/zulip,LAndreas/zulip,kokoar/zulip,showell/zulip,zhaoweigg/zulip,easyfmxu/zulip,he15his/zulip,jerryge/zulip,vakila/zulip,ahmadassaf/zulip,he15his/zulip,showell/zulip,tommyip/zulip,dxq-git/zulip,gigawhitlocks/zulip,yocome/zulip,Gabriel0402/zulip,shrikrishnaholla/zulip,thomasboyt/zulip,andersk/zulip,ashwinirudrappa/zulip,esander91/zulip,willingc/zulip,itnihao/zulip,Galexrt/zulip,MariaFaBella85/zulip,ryansnowboarder/zulip,alliejones/zulip,jeffcao/zulip,zhaoweigg/zulip,isht3/zulip,hafeez3000/zulip,suxinde2009/zulip,mohsenSy/zulip,zwily/zulip,Diptanshu8/zulip,Gabriel0402/zulip,moria/zulip,umkay/zulip,luyifan/zulip,aakash-cr7/zulip,ashwinirudrappa/zulip,Qgap/zulip,rishig/zulip,hackerkid/zulip,ryanbackman/zulip,KingxBanana/zulip,zorojean/zulip,verma-varsha/zulip,kou/zulip,Diptanshu8/zulip,amallia/zulip,moria/zulip,eeshangarg/zulip,Drooids/zulip,zulip/zulip,wavelets/zulip,shrikrishnaholla/zulip,vabs22/zulip,Suninus/zulip,codeKonami/zulip,joyhchen/zulip,amyliu345/zulip,johnny9/zulip,zhaoweigg/zulip,cosmicAsymmetry/zulip,jonesgithub/zulip,levixie/zulip,Frouk/zulip,akuseru/zulip,tdr130/zulip,ufosky-server/zulip,aakash-cr7/zulip,hengqujushi/zulip,sonali0901/zulip,hustlzp/zulip,wdaher/zulip,shaunstanislaus/zulip,ryansnowboarder/zulip,christi3k/zulip,Batterfii/zulip,PhilSk/zulip,schatt/zulip,mohsenSy/zulip,wangdeshui/zulip,thomasboyt/zulip,hengqujushi/zulip,gkotian/zulip,rht/zulip,timabbott/zulip,brainwane/zulip,Diptanshu8/zulip,timabbott/zulip,eastlhu/zulip,wdaher/zulip,showell/zulip,synicalsyntax/zulip,niftynei/zulip,paxapy/zulip,wweiradio/zulip,arpith/zulip,themass/zulip,bluesea/zulip,brainwane/zulip,zulip/zulip,kou/zulip,akuseru/zulip,christi3k/zulip,Cheppers/zulip,hafeez3000/zulip,eastlhu/zulip,technicalpickles/zulip,moria/zulip,yuvipanda/zulip,zwily/zulip,bastianh/zulip,dhcrzf/zulip,jessedhillon/zulip,souravbadami/zulip,hustlzp/zulip,rishig/zulip,Drooids/zulip,blaze225/zulip,grave-w-grave/zulip,tiansiyuan/zulip,bluesea/zulip,aps-sids/zulip,armooo/zulip,jonesgithub/zulip,punchagan/zulip,bowlofstew/zulip,lfranchi/zulip,suxinde2009/zulip,MariaFaBella85/zulip,aps-sids/zulip,tdr130/zulip,bastianh/zulip,avastu/zulip,peiwei/zulip,MariaFaBella85/zulip,swinghu/zulip,ikasumiwt/zulip,stamhe/zulip,jerryge/zulip,luyifan/zulip,AZtheAsian/zulip,avastu/zulip,sharmaeklavya2/zulip,dnmfarrell/zulip,ericzhou2008/zulip,esander91/zulip,bastianh/zulip,amanharitsh123/zulip,m1ssou/zulip,mdavid/zulip,umkay/zulip,sonali0901/zulip,itnihao/zulip,levixie/zulip,mdavid/zulip,krtkmj/zulip,andersk/zulip,Frouk/zulip,peguin40/zulip,natanovia/zulip,codeKonami/zulip,proliming/zulip,mdavid/zulip,qq1012803704/zulip,amyliu345/zulip,vaidap/zulip,thomasboyt/zulip,tiansiyuan/zulip,johnnygaddarr/zulip,dnmfarrell/zulip,andersk/zulip,luyifan/zulip,Cheppers/zulip,j831/zulip,dxq-git/zulip,JanzTam/zulip,Batterfii/zulip,joyhchen/zulip,isht3/zulip,mahim97/zulip,LAndreas/zulip,hj3938/zulip,joshisa/zulip,susansls/zulip,joyhchen/zulip,wavelets/zulip,Cheppers/zulip,dwrpayne/zulip,qq1012803704/zulip,hackerkid/zulip,Juanvulcano/zulip,rishig/zulip,gigawhitlocks/zulip,yuvipanda/zulip,eastlhu/zulip,jackrzhang/zulip,pradiptad/zulip,hj3938/zulip,huangkebo/zulip,mahim97/zulip,Suninus/zulip,alliejones/zulip,joshisa/zulip,PaulPetring/zulip,kokoar/zulip,aps-sids/zulip,bssrdf/zulip,udxxabp/zulip,amyliu345/zulip,bitemyapp/zulip,lfranchi/zulip,LeeRisk/zulip,ryansnowboarder/zulip,andersk/zulip,technicalpickles/zulip,jessedhillon/zulip,brainwane/zulip,babbage/zulip,noroot/zulip,saitodisse/zulip,lfranchi/zulip,arpith/zulip,eastlhu/zulip,blaze225/zulip,andersk/zulip,jackrzhang/zulip,voidException/zulip,niftynei/zulip,synicalsyntax/zulip,vaidap/zulip,saitodisse/zulip,armooo/zulip,Cheppers/zulip,peguin40/zulip,karamcnair/zulip,mdavid/zulip,firstblade/zulip,arpitpanwar/zulip,Drooids/zulip,bitemyapp/zulip,natanovia/zulip,ahmadassaf/zulip,reyha/zulip,ufosky-server/zulip,bastianh/zulip,Batterfii/zulip,adnanh/zulip,zachallaun/zulip,ashwinirudrappa/zulip,shubhamdhama/zulip,ryanbackman/zulip,MayB/zulip,zacps/zulip,souravbadami/zulip,shaunstanislaus/zulip,aliceriot/zulip,ryansnowboarder/zulip,Diptanshu8/zulip,jerryge/zulip,he15his/zulip,KJin99/zulip,ApsOps/zulip,DazWorrall/zulip,grave-w-grave/zulip,ufosky-server/zulip,rht/zulip,SmartPeople/zulip,ikasumiwt/zulip,verma-varsha/zulip,itnihao/zulip,zachallaun/zulip,jeffcao/zulip,punchagan/zulip,tdr130/zulip,armooo/zulip,tbutter/zulip,JanzTam/zulip,Drooids/zulip,rishig/zulip,SmartPeople/zulip,shubhamdhama/zulip,EasonYi/zulip,JanzTam/zulip,bssrdf/zulip,jrowan/zulip,LAndreas/zulip,nicholasbs/zulip,hengqujushi/zulip,guiquanz/zulip,umkay/zulip,Suninus/zulip,akuseru/zulip,swinghu/zulip,brockwhittaker/zulip,MariaFaBella85/zulip,j831/zulip,peiwei/zulip,zachallaun/zulip,j831/zulip,andersk/zulip,karamcnair/zulip,zhaoweigg/zulip,tdr130/zulip,zachallaun/zulip,rishig/zulip,susansls/zulip,ericzhou2008/zulip,zwily/zulip,joshisa/zulip,jimmy54/zulip,krtkmj/zulip,willingc/zulip,bastianh/zulip,jerryge/zulip,praveenaki/zulip,dnmfarrell/zulip,arpith/zulip,luyifan/zulip,grave-w-grave/zulip,Frouk/zulip,rishig/zulip,qq1012803704/zulip,dotcool/zulip,hackerkid/zulip,themass/zulip,dhcrzf/zulip,RobotCaleb/zulip,suxinde2009/zulip,codeKonami/zulip,joyhchen/zulip,Cheppers/zulip,so0k/zulip,amallia/zulip,calvinleenyc/zulip,wavelets/zulip,wavelets/zulip,EasonYi/zulip,Diptanshu8/zulip,xuxiao/zulip,PaulPetring/zulip,ApsOps/zulip,natanovia/zulip,praveenaki/zulip,blaze225/zulip,zacps/zulip,Batterfii/zulip,hengqujushi/zulip,wdaher/zulip,dotcool/zulip,itnihao/zulip,umkay/zulip,DazWorrall/zulip,joyhchen/zulip,udxxabp/zulip,Juanvulcano/zulip,Drooids/zulip,JanzTam/zulip,rht/zulip,ufosky-server/zulip,zorojean/zulip,mahim97/zulip,firstblade/zulip,jonesgithub/zulip,wdaher/zulip,zofuthan/zulip,ryansnowboarder/zulip,sup95/zulip,zorojean/zulip,reyha/zulip,glovebx/zulip,pradiptad/zulip,brockwhittaker/zulip,Frouk/zulip,so0k/zulip,easyfmxu/zulip,aps-sids/zulip,susansls/zulip,brainwane/zulip,souravbadami/zulip,dotcool/zulip,zorojean/zulip,RobotCaleb/zulip,avastu/zulip,ahmadassaf/zulip,developerfm/zulip,nicholasbs/zulip,MayB/zulip,kokoar/zulip,shrikrishnaholla/zulip,tiansiyuan/zulip,praveenaki/zulip,hj3938/zulip,jphilipsen05/zulip,johnny9/zulip,praveenaki/zulip,sonali0901/zulip,Suninus/zulip,christi3k/zulip,udxxabp/zulip,esander91/zulip,zachallaun/zulip,wdaher/zulip,umkay/zulip,m1ssou/zulip,yocome/zulip,developerfm/zulip,technicalpickles/zulip,alliejones/zulip,Jianchun1/zulip,firstblade/zulip,samatdav/zulip,umkay/zulip,Galexrt/zulip,zacps/zulip,j831/zulip,dnmfarrell/zulip,brainwane/zulip,moria/zulip,m1ssou/zulip,bssrdf/zulip,jainayush975/zulip,PaulPetring/zulip,wangdeshui/zulip,tdr130/zulip,paxapy/zulip,ufosky-server/zulip,christi3k/zulip,bowlofstew/zulip,yocome/zulip,bitemyapp/zulip,developerfm/zulip,TigorC/zulip,timabbott/zulip,paxapy/zulip,natanovia/zulip,jerryge/zulip,jessedhillon/zulip,pradiptad/zulip,joyhchen/zulip,jerryge/zulip,johnny9/zulip,ipernet/zulip,MayB/zulip,Qgap/zulip,proliming/zulip,mdavid/zulip,mansilladev/zulip,synicalsyntax/zulip,wdaher/zulip,amallia/zulip,atomic-labs/zulip,bastianh/zulip,gkotian/zulip,mansilladev/zulip,vaidap/zulip,atomic-labs/zulip,jessedhillon/zulip,gigawhitlocks/zulip,nicholasbs/zulip,themass/zulip,aliceriot/zulip,stamhe/zulip,MayB/zulip,karamcnair/zulip,samatdav/zulip,ipernet/zulip,adnanh/zulip,punchagan/zulip,arpitpanwar/zulip,dawran6/zulip,zacps/zulip,johnny9/zulip,wangdeshui/zulip,hustlzp/zulip,fw1121/zulip,kaiyuanheshang/zulip,calvinleenyc/zulip,tiansiyuan/zulip,swinghu/zulip,eeshangarg/zulip,Galexrt/zulip,eastlhu/zulip,ashwinirudrappa/zulip,aakash-cr7/zulip,isht3/zulip,voidException/zulip,avastu/zulip,ryansnowboarder/zulip,atomic-labs/zulip,jonesgithub/zulip,jackrzhang/zulip,huangkebo/zulip,tbutter/zulip,jessedhillon/zulip,souravbadami/zulip,arpitpanwar/zulip,jessedhillon/zulip,dhcrzf/zulip,ikasumiwt/zulip,Jianchun1/zulip,bitemyapp/zulip,dotcool/zulip,qq1012803704/zulip,esander91/zulip,gkotian/zulip,moria/zulip,codeKonami/zulip,dotcool/zulip,itnihao/zulip,gigawhitlocks/zulip,Suninus/zulip,JanzTam/zulip,gigawhitlocks/zulip,Diptanshu8/zulip,Cheppers/zulip,timabbott/zulip,mahim97/zulip,kaiyuanheshang/zulip,saitodisse/zulip,dhcrzf/zulip,yocome/zulip,tommyip/zulip,deer-hope/zulip,dawran6/zulip,seapasulli/zulip,glovebx/zulip,zulip/zulip,eeshangarg/zulip,hustlzp/zulip,synicalsyntax/zulip,PhilSk/zulip,qq1012803704/zulip,stamhe/zulip,ahmadassaf/zulip,gigawhitlocks/zulip,wweiradio/zulip,glovebx/zulip,ApsOps/zulip,technicalpickles/zulip,willingc/zulip,pradiptad/zulip,PaulPetring/zulip,littledogboy/zulip,showell/zulip,dhcrzf/zulip,sup95/zulip,ApsOps/zulip,shubhamdhama/zulip,niftynei/zulip,Batterfii/zulip,amyliu345/zulip,tdr130/zulip,ericzhou2008/zulip,mahim97/zulip,shrikrishnaholla/zulip,DazWorrall/zulip,calvinleenyc/zulip,mahim97/zulip,luyifan/zulip,TigorC/zulip,nicholasbs/zulip,willingc/zulip,punchagan/zulip,DazWorrall/zulip,MayB/zulip,jimmy54/zulip,jainayush975/zulip,Gabriel0402/zulip,dnmfarrell/zulip,zwily/zulip,alliejones/zulip,vabs22/zulip,levixie/zulip,zulip/zulip,dxq-git/zulip,eeshangarg/zulip,peguin40/zulip,hengqujushi/zulip,wdaher/zulip,saitodisse/zulip,easyfmxu/zulip,hackerkid/zulip,KingxBanana/zulip,hengqujushi/zulip,fw1121/zulip,aliceriot/zulip,guiquanz/zulip,TigorC/zulip,pradiptad/zulip,tommyip/zulip,proliming/zulip,eastlhu/zulip,zofuthan/zulip,bluesea/zulip,amallia/zulip,ahmadassaf/zulip,jrowan/zulip,hafeez3000/zulip,brockwhittaker/zulip,tbutter/zulip,ApsOps/zulip,thomasboyt/zulip,proliming/zulip,he15his/zulip,ashwinirudrappa/zulip,udxxabp/zulip,RobotCaleb/zulip,thomasboyt/zulip,lfranchi/zulip,johnnygaddarr/zulip,deer-hope/zulip,themass/zulip,aakash-cr7/zulip,ericzhou2008/zulip,alliejones/zulip,vaidap/zulip,Suninus/zulip,peiwei/zulip,hustlzp/zulip,mohsenSy/zulip,paxapy/zulip,peiwei/zulip,bitemyapp/zulip,Jianchun1/zulip,adnanh/zulip,schatt/zulip,EasonYi/zulip,samatdav/zulip,jimmy54/zulip,bssrdf/zulip,tommyip/zulip,saitodisse/zulip,grave-w-grave/zulip,jainayush975/zulip,jeffcao/zulip,he15his/zulip,ryanbackman/zulip,arpith/zulip,xuxiao/zulip,aliceriot/zulip,voidException/zulip,Qgap/zulip,shaunstanislaus/zulip,niftynei/zulip,SmartPeople/zulip,MariaFaBella85/zulip,yuvipanda/zulip,jrowan/zulip,vabs22/zulip,niftynei/zulip,joshisa/zulip,Vallher/zulip,babbage/zulip,PaulPetring/zulip,j831/zulip,avastu/zulip,wweiradio/zulip,johnny9/zulip,jrowan/zulip,Juanvulcano/zulip,armooo/zulip,AZtheAsian/zulip,LAndreas/zulip,praveenaki/zulip,mansilladev/zulip,themass/zulip,levixie/zulip,KingxBanana/zulip,Gabriel0402/zulip,EasonYi/zulip,wavelets/zulip,dawran6/zulip,ipernet/zulip,RobotCaleb/zulip,RobotCaleb/zulip,mohsenSy/zulip,TigorC/zulip,zacps/zulip,shubhamdhama/zulip,stamhe/zulip,alliejones/zulip,KJin99/zulip,glovebx/zulip,zwily/zulip,Frouk/zulip,bluesea/zulip,easyfmxu/zulip,Vallher/zulip,atomic-labs/zulip,amyliu345/zulip,tommyip/zulip,itnihao/zulip,LeeRisk/zulip,dwrpayne/zulip,schatt/zulip,cosmicAsymmetry/zulip,Galexrt/zulip,lfranchi/zulip,voidException/zulip,umkay/zulip,technicalpickles/zulip,sharmaeklavya2/zulip,shubhamdhama/zulip,atomic-labs/zulip,amanharitsh123/zulip,mdavid/zulip,amallia/zulip,KJin99/zulip,krtkmj/zulip,sharmaeklavya2/zulip,jrowan/zulip,armooo/zulip,vaidap/zulip,showell/zulip,dawran6/zulip,cosmicAsymmetry/zulip,arpitpanwar/zulip,zofuthan/zulip,tiansiyuan/zulip,noroot/zulip,gigawhitlocks/zulip,firstblade/zulip,armooo/zulip,yuvipanda/zulip,susansls/zulip,ashwinirudrappa/zulip,wangdeshui/zulip,kokoar/zulip,littledogboy/zulip,AZtheAsian/zulip,guiquanz/zulip,so0k/zulip,jonesgithub/zulip,LAndreas/zulip,jphilipsen05/zulip,Juanvulcano/zulip,Qgap/zulip,johnnygaddarr/zulip,developerfm/zulip,dwrpayne/zulip,SmartPeople/zulip,jonesgithub/zulip,deer-hope/zulip,fw1121/zulip,jerryge/zulip,shrikrishnaholla/zulip,Jianchun1/zulip,moria/zulip,vakila/zulip,dhcrzf/zulip,aliceriot/zulip,suxinde2009/zulip,peiwei/zulip,reyha/zulip,jeffcao/zulip,synicalsyntax/zulip,calvinleenyc/zulip,PhilSk/zulip,brainwane/zulip,adnanh/zulip,krtkmj/zulip,ipernet/zulip,codeKonami/zulip,guiquanz/zulip,aakash-cr7/zulip,stamhe/zulip,Galexrt/zulip,xuxiao/zulip,DazWorrall/zulip,Qgap/zulip,JPJPJPOPOP/zulip,deer-hope/zulip,kokoar/zulip,nicholasbs/zulip,seapasulli/zulip,karamcnair/zulip,sup95/zulip,noroot/zulip,KJin99/zulip,seapasulli/zulip,stamhe/zulip,Vallher/zulip,babbage/zulip,fw1121/zulip,AZtheAsian/zulip,voidException/zulip,adnanh/zulip,huangkebo/zulip,bitemyapp/zulip,cosmicAsymmetry/zulip,dattatreya303/zulip,dawran6/zulip,kaiyuanheshang/zulip,mansilladev/zulip,vabs22/zulip,synicalsyntax/zulip,vabs22/zulip,mohsenSy/zulip,shaunstanislaus/zulip,wweiradio/zulip,PhilSk/zulip,swinghu/zulip,hayderimran7/zulip,shubhamdhama/zulip,dxq-git/zulip,hackerkid/zulip,TigorC/zulip,tdr130/zulip,RobotCaleb/zulip,AZtheAsian/zulip,timabbott/zulip,esander91/zulip,christi3k/zulip,ipernet/zulip,dwrpayne/zulip,jphilipsen05/zulip,adnanh/zulip,yocome/zulip,esander91/zulip,joshisa/zulip,TigorC/zulip,kou/zulip,kokoar/zulip,itnihao/zulip,ryanbackman/zulip,kaiyuanheshang/zulip,ikasumiwt/zulip,wweiradio/zulip,shaunstanislaus/zulip,jainayush975/zulip,vakila/zulip,kaiyuanheshang/zulip,fw1121/zulip,jackrzhang/zulip,Galexrt/zulip,levixie/zulip,DazWorrall/zulip,easyfmxu/zulip,ApsOps/zulip,EasonYi/zulip,yuvipanda/zulip,verma-varsha/zulip,so0k/zulip,tbutter/zulip,schatt/zulip,wangdeshui/zulip,noroot/zulip,saitodisse/zulip,christi3k/zulip,technicalpickles/zulip,RobotCaleb/zulip,KingxBanana/zulip,jeffcao/zulip,thomasboyt/zulip,mansilladev/zulip,arpith/zulip,glovebx/zulip,akuseru/zulip,johnnygaddarr/zulip,vikas-parashar/zulip,ikasumiwt/zulip,jackrzhang/zulip,JPJPJPOPOP/zulip,verma-varsha/zulip,reyha/zulip,udxxabp/zulip,huangkebo/zulip,brockwhittaker/zulip,MayB/zulip,timabbott/zulip,calvinleenyc/zulip,karamcnair/zulip,bowlofstew/zulip,souravbadami/zulip,ryanbackman/zulip,amallia/zulip,dattatreya303/zulip,PhilSk/zulip,jimmy54/zulip,arpitpanwar/zulip,Frouk/zulip,nicholasbs/zulip,mohsenSy/zulip,littledogboy/zulip,KJin99/zulip,so0k/zulip,m1ssou/zulip,andersk/zulip,LAndreas/zulip,so0k/zulip,grave-w-grave/zulip,swinghu/zulip,themass/zulip,zofuthan/zulip,dwrpayne/zulip,zwily/zulip,willingc/zulip,armooo/zulip,susansls/zulip,blaze225/zulip,littledogboy/zulip,hayderimran7/zulip,eastlhu/zulip,kaiyuanheshang/zulip,kokoar/zulip,babbage/zulip,ipernet/zulip,esander91/zulip,j831/zulip,voidException/zulip,bowlofstew/zulip,ahmadassaf/zulip,amallia/zulip,fw1121/zulip,paxapy/zulip,paxapy/zulip,aakash-cr7/zulip,vakila/zulip,kou/zulip,aliceriot/zulip,samatdav/zulip,hengqujushi/zulip,developerfm/zulip,technicalpickles/zulip,jphilipsen05/zulip,jimmy54/zulip,brainwane/zulip,blaze225/zulip,krtkmj/zulip,seapasulli/zulip,gkotian/zulip,hackerkid/zulip,eeshangarg/zulip,hayderimran7/zulip,dwrpayne/zulip,xuanhan863/zulip,hafeez3000/zulip,peguin40/zulip,sonali0901/zulip,arpith/zulip,EasonYi/zulip,adnanh/zulip,pradiptad/zulip,bastianh/zulip,xuxiao/zulip,shubhamdhama/zulip,Vallher/zulip,rishig/zulip,firstblade/zulip,vaidap/zulip,shaunstanislaus/zulip,suxinde2009/zulip,glovebx/zulip,xuanhan863/zulip,johnny9/zulip,kaiyuanheshang/zulip,johnnygaddarr/zulip,punchagan/zulip,natanovia/zulip,tiansiyuan/zulip,jackrzhang/zulip,timabbott/zulip,vakila/zulip,verma-varsha/zulip,natanovia/zulip,huangkebo/zulip,vikas-parashar/zulip,alliejones/zulip,bssrdf/zulip,KingxBanana/zulip,jimmy54/zulip,AZtheAsian/zulip,ericzhou2008/zulip,tbutter/zulip,reyha/zulip,dxq-git/zulip,ahmadassaf/zulip,ikasumiwt/zulip,LeeRisk/zulip,sup95/zulip,eeshangarg/zulip,vikas-parashar/zulip,littledogboy/zulip,vikas-parashar/zulip,Gabriel0402/zulip,seapasulli/zulip,pradiptad/zulip,zwily/zulip,arpitpanwar/zulip,udxxabp/zulip,schatt/zulip,punchagan/zulip,huangkebo/zulip,he15his/zulip,Galexrt/zulip,wweiradio/zulip,verma-varsha/zulip,littledogboy/zulip,vikas-parashar/zulip,SmartPeople/zulip,bowlofstew/zulip,samatdav/zulip,LeeRisk/zulip,vakila/zulip,krtkmj/zulip,ericzhou2008/zulip,thomasboyt/zulip,zulip/zulip,zorojean/zulip,DazWorrall/zulip,amanharitsh123/zulip,akuseru/zulip,gkotian/zulip,SmartPeople/zulip,xuanhan863/zulip,jeffcao/zulip,zofuthan/zulip,hj3938/zulip,noroot/zulip,tommyip/zulip,qq1012803704/zulip,willingc/zulip,ufosky-server/zulip,bowlofstew/zulip,zhaoweigg/zulip,Qgap/zulip,MayB/zulip,dotcool/zulip,Batterfii/zulip,ikasumiwt/zulip,deer-hope/zulip,easyfmxu/zulip,bluesea/zulip,JPJPJPOPOP/zulip,dnmfarrell/zulip,dotcool/zulip,samatdav/zulip,jphilipsen05/zulip,ryansnowboarder/zulip,zacps/zulip,MariaFaBella85/zulip,shrikrishnaholla/zulip,kou/zulip,LeeRisk/zulip,bowlofstew/zulip,PaulPetring/zulip,dawran6/zulip,Cheppers/zulip,lfranchi/zulip,avastu/zulip,udxxabp/zulip,glovebx/zulip,suxinde2009/zulip,rht/zulip,he15his/zulip,nicholasbs/zulip,schatt/zulip,developerfm/zulip,wweiradio/zulip,zachallaun/zulip,luyifan/zulip,jeffcao/zulip,gkotian/zulip,zulip/zulip,KJin99/zulip,peiwei/zulip,amyliu345/zulip,qq1012803704/zulip,isht3/zulip,sup95/zulip,ericzhou2008/zulip,Juanvulcano/zulip,vikas-parashar/zulip,vakila/zulip,vabs22/zulip,peiwei/zulip,yuvipanda/zulip,reyha/zulip,m1ssou/zulip,blaze225/zulip,jainayush975/zulip,wangdeshui/zulip,seapasulli/zulip,brockwhittaker/zulip,stamhe/zulip,Juanvulcano/zulip,MariaFaBella85/zulip,Suninus/zulip,joshisa/zulip,sharmaeklavya2/zulip,zorojean/zulip,deer-hope/zulip,LAndreas/zulip,Jianchun1/zulip,bssrdf/zulip,mdavid/zulip,luyifan/zulip,saitodisse/zulip,guiquanz/zulip,dwrpayne/zulip,tbutter/zulip,dhcrzf/zulip,showell/zulip,jainayush975/zulip,sonali0901/zulip,PhilSk/zulip,kou/zulip,Gabriel0402/zulip,hayderimran7/zulip,dnmfarrell/zulip,peguin40/zulip,dxq-git/zulip,suxinde2009/zulip,moria/zulip,hafeez3000/zulip,EasonYi/zulip,peguin40/zulip,guiquanz/zulip,firstblade/zulip,calvinleenyc/zulip,Gabriel0402/zulip,xuxiao/zulip,ryanbackman/zulip,JPJPJPOPOP/zulip,firstblade/zulip,eeshangarg/zulip,proliming/zulip,hj3938/zulip,isht3/zulip,jphilipsen05/zulip,natanovia/zulip,Drooids/zulip,shaunstanislaus/zulip,jessedhillon/zulip,JanzTam/zulip,atomic-labs/zulip,tommyip/zulip,niftynei/zulip,sharmaeklavya2/zulip,hustlzp/zulip,PaulPetring/zulip,babbage/zulip,babbage/zulip,Drooids/zulip,xuxiao/zulip,developerfm/zulip,arpitpanwar/zulip |
8c4c4460a07d5d2bf746c8cfaf3c35946dac362a | packages/storefront/addon/templates/components/yebo-breadcrumbs.hbs | packages/storefront/addon/templates/components/yebo-breadcrumbs.hbs | <ul class="breadcrumbs">
{{#each items as |item|}}
<li>
{{link-to item.name 'yebo.taxons.show' item.permalink}}
</li>
{{/each}}
<li>{{lastItem.name}}</li>
</ul>
| <ul class="breadcrumbs">
<li>{{link-to 'Home' 'yebo.index'}}</li>
{{#each items as |item|}}
<li>
{{link-to item.name 'yebo.taxons.show' item.permalink}}
</li>
{{/each}}
<li>{{lastItem.name}}</li>
</ul>
| Add home link to the breadcrumbs | Add home link to the breadcrumbs
| Handlebars | mit | yebo-ecommerce/ember,azclick/yebo-ember,azclick/yebo-ember,yebo-ecommerce/ember,yebo-ecommerce/ember,azclick/yebo-ember |
77f039e6b09c9592e4c5c5b60e6358fc525ea384 | src/documentation/pages/Overlay/examples/OverlayDarkExample.hbs | src/documentation/pages/Overlay/examples/OverlayDarkExample.hbs | <div class="docs-OverlayDarkExample">
{{> OverlayElem props=OverlayModels.dark }}
<button class="ms-Button docs-OverlayDarkExample-button">Show the dark overlay</button>
</div>
<script type="text/javascript">
var OverlayExample = document.querySelector('.docs-OverlayDarkExample');
var Overlay = new fabric['Overlay'](OverlayExample.querySelector('.ms-Overlay'));
var OverlayButton = OverlayExample.querySelector('.docs-OverlayDarkExample-button');
// When clicking the button, open the MessageBanner
OverlayButton.onclick = function() {
Overlay.show();
};
</script>
| <div class="docs-OverlayDarkExample">
{{> OverlayElem props=OverlayModels.dark }}
<button class="ms-Button docs-OverlayDarkExample-button">Show the dark overlay</button>
</div>
<script type="text/javascript">
var OverlayDarkExample = document.querySelector('.docs-OverlayDarkExample');
var OverlayDark = new fabric['Overlay'](OverlayDarkExample.querySelector('.ms-Overlay'));
var OverlayDarkButton = OverlayDarkExample.querySelector('.docs-OverlayDarkExample-button');
// When clicking the button, open the MessageBanner
OverlayDarkButton.onclick = function() {
OverlayDark.show();
};
</script>
| Rename variables that were clashing | Rename variables that were clashing
| Handlebars | mit | OfficeDev/Office-UI-Fabric,OfficeDev/Office-UI-Fabric |
f71f05a187cb3dc5474e9fb5d71d3126b4186f9d | app/assets/javascripts/templates/avatars.handlebars | app/assets/javascripts/templates/avatars.handlebars | {{#view Avatar.FormView}}
{{view Em.TextField valueBinding="email"}}
<button
{{bindAttr disabled="controller.preventsSubmit"}}>Get it</button>
{{/view}}
{{outlet}}
| {{#view Avatar.FormView}}
{{view Em.TextField valueBinding="email" placeholder="me@example.com"}}
<button
{{bindAttr disabled="controller.preventsSubmit"}}>Get it</button>
{{/view}}
{{outlet}}
| Add placeholder to email text field | Add placeholder to email text field
| Handlebars | mit | jcf/gravatars,jcf/gravatars |
0ceef0f9e3c862a25ce30ca1d0e020bdfa3bf24c | addon/templates/components/ember-form-master-2000/fm-field.hbs | addon/templates/components/ember-form-master-2000/fm-field.hbs | {{#if label}}
<label for="{{forAttribute}}" class="{{labelClass}}">{{{label}}}</label>
{{/if}}
{{#if isBasicInput}}
{{fm-input
type=type
value=value
classNameBindings='errorClass inputClass'
placeholder=placeholder}}
{{/if}}
{{#if isSelect}}
{{fm-select
content=content
optionValuePath=optionValuePath
optionLabelPath=optionLabelPath
prompt=prompt
value=value
}}
{{/if}}
{{#if isTextarea}}
{{fm-textarea
value=value
classNameBindings='errorClass textareaClass'
placeholder=placeholder
rows=rows
cols=cols
maxlengh=maxlengh
spellcheck=spellcheck
disabled=disabled
}}
{{/if}}
{{#if errors}}
{{fm-errortext errors=errors}}
{{/if}}
{{#if helptext}}
{{fm-helptext helptext=helptext}}
{{/if}}
| {{#if label}}
<label for="{{forAttribute}}" class="{{labelClass}}">{{{label}}}</label>
{{/if}}
{{#if isBasicInput}}
{{fm-input
type=type
value=value
classNameBindings='errorClass inputClass'
maxlength=maxlength
placeholder=placeholder}}
{{/if}}
{{#if isSelect}}
{{fm-select
content=content
optionValuePath=optionValuePath
optionLabelPath=optionLabelPath
prompt=prompt
value=value
}}
{{/if}}
{{#if isTextarea}}
{{fm-textarea
value=value
classNameBindings='errorClass textareaClass'
placeholder=placeholder
rows=rows
cols=cols
maxlength=maxlength
spellcheck=spellcheck
disabled=disabled
}}
{{/if}}
{{#if errors}}
{{fm-errortext errors=errors}}
{{/if}}
{{#if helptext}}
{{fm-helptext helptext=helptext}}
{{/if}}
| Fix typo and add maxlength to basic input field | Fix typo and add maxlength to basic input field | Handlebars | mit | nickkin/ember-form-master-2000,Emerson/ember-form-master-2000,Emerson/ember-form-master-2000,nickkin/ember-form-master-2000 |
3415c81ffc8da57db3896c925dd66397036e0a91 | addon/components/rui-button/template.hbs | addon/components/rui-button/template.hbs | {{yield}}
{{#if isLoading}}
{{!-- TBD: Needs css to spinnerize --}}
<i class='fa fa-spinner' />
{{/if}}
| {{yield}}
{{#if isLoading}}
<i class='fa fa-spinner fa-spin' />
{{/if}}
| Add `fa-spin` class to spinner icon. | Add `fa-spin` class to spinner icon.
| Handlebars | mit | revelation/ember-cli-revelation-ui,revelation/ember-cli-revelation-ui |
d8527057d42880261c9aba510d0ae912ed889dfb | zephyr/static/templates/sidebar_stream_actions.handlebars | zephyr/static/templates/sidebar_stream_actions.handlebars | {{! Contents of the "message actions" popup }}
<ul class="nav nav-list streams_popover" data-id="{{ stream.id }}">
<li>
<a class="narrow_to_stream">
<i class="icon-vector-bullhorn"></i>
Narrow to stream {{stream.name}}
</a>
</li>
<li>
<a class="toggle_home">
{{#if stream.in_home_view}}
<i class="icon-vector-minus-sign"></i>
Hide stream {{stream.name}} from your home view
{{else}}
<i class="icon-vector-plus-sign"></i>
Show stream {{stream.name}} in your home view
{{/if}}
</a>
</li>
<li>
<a class="compose_to_stream">
<i class="icon-vector-edit"></i>
Compose a message to stream {{stream.name}}
</a>
</li>
<li>
<span class="colorpicker-container"><input stream_name="{{stream.name}}" class="colorpicker" type="text" value="{{stream.color}}" /></span>
<a class="custom_color">Choose custom color</a>
</li>
</ul>
| {{! Contents of the "message actions" popup }}
<ul class="nav nav-list streams_popover" data-id="{{ stream.id }}" data-name="{{ stream.name }}">
<li>
<a class="narrow_to_stream">
<i class="icon-vector-bullhorn"></i>
Narrow to stream {{stream.name}}
</a>
</li>
<li>
<a class="toggle_home">
{{#if stream.in_home_view}}
<i class="icon-vector-minus-sign"></i>
Hide stream {{stream.name}} from your home view
{{else}}
<i class="icon-vector-plus-sign"></i>
Show stream {{stream.name}} in your home view
{{/if}}
</a>
</li>
<li>
<a class="compose_to_stream">
<i class="icon-vector-edit"></i>
Compose a message to stream {{stream.name}}
</a>
</li>
<li>
<span class="colorpicker-container"><input stream_name="{{stream.name}}" class="colorpicker" type="text" value="{{stream.color}}" /></span>
<a class="custom_color">Choose custom color</a>
</li>
</ul>
| Fix compose to stream button in actions popover. | Fix compose to stream button in actions popover.
I apparently screwed up my check for whether we were using the old
data-name field, and switching the other stuff to use data-id (which
is needed for the color stuff) is probably not worth it.
(imported from commit 1b925bbcca5beb5dc9dadbcf703cbb07ca511a0c)
| Handlebars | apache-2.0 | kou/zulip,littledogboy/zulip,isht3/zulip,developerfm/zulip,grave-w-grave/zulip,calvinleenyc/zulip,dotcool/zulip,proliming/zulip,dotcool/zulip,LeeRisk/zulip,zhaoweigg/zulip,cosmicAsymmetry/zulip,aps-sids/zulip,noroot/zulip,deer-hope/zulip,kokoar/zulip,AZtheAsian/zulip,sharmaeklavya2/zulip,dattatreya303/zulip,thomasboyt/zulip,willingc/zulip,aliceriot/zulip,mahim97/zulip,bastianh/zulip,j831/zulip,developerfm/zulip,joyhchen/zulip,samatdav/zulip,TigorC/zulip,seapasulli/zulip,proliming/zulip,alliejones/zulip,jphilipsen05/zulip,lfranchi/zulip,bastianh/zulip,aakash-cr7/zulip,nicholasbs/zulip,noroot/zulip,tdr130/zulip,susansls/zulip,yuvipanda/zulip,amallia/zulip,ryanbackman/zulip,wavelets/zulip,mahim97/zulip,peiwei/zulip,deer-hope/zulip,kou/zulip,dxq-git/zulip,m1ssou/zulip,shaunstanislaus/zulip,blaze225/zulip,guiquanz/zulip,eeshangarg/zulip,zwily/zulip,tdr130/zulip,Jianchun1/zulip,jessedhillon/zulip,amyliu345/zulip,bowlofstew/zulip,PaulPetring/zulip,RobotCaleb/zulip,wdaher/zulip,j831/zulip,samatdav/zulip,ikasumiwt/zulip,punchagan/zulip,RobotCaleb/zulip,natanovia/zulip,ApsOps/zulip,Diptanshu8/zulip,zulip/zulip,lfranchi/zulip,ashwinirudrappa/zulip,hengqujushi/zulip,Suninus/zulip,susansls/zulip,shaunstanislaus/zulip,Batterfii/zulip,zorojean/zulip,vabs22/zulip,m1ssou/zulip,Suninus/zulip,gkotian/zulip,souravbadami/zulip,bitemyapp/zulip,codeKonami/zulip,ApsOps/zulip,wangdeshui/zulip,praveenaki/zulip,tiansiyuan/zulip,jackrzhang/zulip,TigorC/zulip,jerryge/zulip,wweiradio/zulip,xuxiao/zulip,umkay/zulip,swinghu/zulip,technicalpickles/zulip,atomic-labs/zulip,so0k/zulip,xuxiao/zulip,willingc/zulip,showell/zulip,sharmaeklavya2/zulip,saitodisse/zulip,AZtheAsian/zulip,eeshangarg/zulip,jackrzhang/zulip,suxinde2009/zulip,tdr130/zulip,tommyip/zulip,peguin40/zulip,firstblade/zulip,ahmadassaf/zulip,punchagan/zulip,PaulPetring/zulip,souravbadami/zulip,kokoar/zulip,praveenaki/zulip,JanzTam/zulip,armooo/zulip,wdaher/zulip,joshisa/zulip,tommyip/zulip,rht/zulip,lfranchi/zulip,ashwinirudrappa/zulip,dnmfarrell/zulip,blaze225/zulip,niftynei/zulip,jimmy54/zulip,stamhe/zulip,glovebx/zulip,rht/zulip,eastlhu/zulip,vikas-parashar/zulip,jainayush975/zulip,suxinde2009/zulip,tbutter/zulip,AZtheAsian/zulip,akuseru/zulip,Cheppers/zulip,jonesgithub/zulip,grave-w-grave/zulip,mansilladev/zulip,ahmadassaf/zulip,amallia/zulip,levixie/zulip,hj3938/zulip,developerfm/zulip,adnanh/zulip,easyfmxu/zulip,SmartPeople/zulip,Cheppers/zulip,rht/zulip,JanzTam/zulip,xuanhan863/zulip,LeeRisk/zulip,themass/zulip,shrikrishnaholla/zulip,Gabriel0402/zulip,m1ssou/zulip,luyifan/zulip,tiansiyuan/zulip,dawran6/zulip,eeshangarg/zulip,themass/zulip,rht/zulip,shaunstanislaus/zulip,vakila/zulip,tbutter/zulip,dattatreya303/zulip,jeffcao/zulip,Vallher/zulip,SmartPeople/zulip,KingxBanana/zulip,jackrzhang/zulip,hafeez3000/zulip,nicholasbs/zulip,andersk/zulip,ericzhou2008/zulip,krtkmj/zulip,huangkebo/zulip,amyliu345/zulip,babbage/zulip,krtkmj/zulip,willingc/zulip,avastu/zulip,themass/zulip,andersk/zulip,nicholasbs/zulip,suxinde2009/zulip,jerryge/zulip,codeKonami/zulip,shaunstanislaus/zulip,xuanhan863/zulip,JPJPJPOPOP/zulip,tbutter/zulip,qq1012803704/zulip,jackrzhang/zulip,qq1012803704/zulip,brockwhittaker/zulip,hustlzp/zulip,JanzTam/zulip,wdaher/zulip,kou/zulip,christi3k/zulip,shubhamdhama/zulip,wavelets/zulip,reyha/zulip,mansilladev/zulip,bitemyapp/zulip,adnanh/zulip,synicalsyntax/zulip,jimmy54/zulip,pradiptad/zulip,sharmaeklavya2/zulip,dwrpayne/zulip,avastu/zulip,paxapy/zulip,niftynei/zulip,hafeez3000/zulip,aliceriot/zulip,dwrpayne/zulip,Vallher/zulip,eastlhu/zulip,JanzTam/zulip,mohsenSy/zulip,susansls/zulip,brockwhittaker/zulip,hayderimran7/zulip,moria/zulip,MariaFaBella85/zulip,zwily/zulip,Juanvulcano/zulip,stamhe/zulip,brainwane/zulip,calvinleenyc/zulip,voidException/zulip,jeffcao/zulip,fw1121/zulip,reyha/zulip,pradiptad/zulip,zacps/zulip,sonali0901/zulip,EasonYi/zulip,lfranchi/zulip,ahmadassaf/zulip,souravbadami/zulip,gigawhitlocks/zulip,RobotCaleb/zulip,RobotCaleb/zulip,thomasboyt/zulip,jessedhillon/zulip,synicalsyntax/zulip,tiansiyuan/zulip,m1ssou/zulip,wangdeshui/zulip,arpitpanwar/zulip,yocome/zulip,ericzhou2008/zulip,jonesgithub/zulip,dattatreya303/zulip,gigawhitlocks/zulip,Galexrt/zulip,zacps/zulip,voidException/zulip,avastu/zulip,eastlhu/zulip,zorojean/zulip,zofuthan/zulip,vakila/zulip,isht3/zulip,developerfm/zulip,jerryge/zulip,themass/zulip,susansls/zulip,udxxabp/zulip,EasonYi/zulip,ufosky-server/zulip,Suninus/zulip,vabs22/zulip,natanovia/zulip,littledogboy/zulip,bssrdf/zulip,RobotCaleb/zulip,vikas-parashar/zulip,zofuthan/zulip,mdavid/zulip,amanharitsh123/zulip,arpith/zulip,jonesgithub/zulip,j831/zulip,bowlofstew/zulip,stamhe/zulip,alliejones/zulip,themass/zulip,wavelets/zulip,hackerkid/zulip,praveenaki/zulip,lfranchi/zulip,shrikrishnaholla/zulip,peguin40/zulip,shrikrishnaholla/zulip,tbutter/zulip,wweiradio/zulip,esander91/zulip,tdr130/zulip,EasonYi/zulip,timabbott/zulip,ericzhou2008/zulip,gkotian/zulip,joshisa/zulip,zachallaun/zulip,PhilSk/zulip,PhilSk/zulip,joshisa/zulip,brainwane/zulip,SmartPeople/zulip,so0k/zulip,dwrpayne/zulip,vakila/zulip,LAndreas/zulip,praveenaki/zulip,KJin99/zulip,DazWorrall/zulip,amyliu345/zulip,MariaFaBella85/zulip,shaunstanislaus/zulip,umkay/zulip,cosmicAsymmetry/zulip,yuvipanda/zulip,punchagan/zulip,johnny9/zulip,Frouk/zulip,natanovia/zulip,udxxabp/zulip,ryansnowboarder/zulip,peiwei/zulip,Cheppers/zulip,KingxBanana/zulip,easyfmxu/zulip,so0k/zulip,firstblade/zulip,littledogboy/zulip,dnmfarrell/zulip,dattatreya303/zulip,armooo/zulip,ufosky-server/zulip,zhaoweigg/zulip,jainayush975/zulip,brainwane/zulip,udxxabp/zulip,jackrzhang/zulip,PhilSk/zulip,sharmaeklavya2/zulip,ryansnowboarder/zulip,grave-w-grave/zulip,zacps/zulip,MayB/zulip,krtkmj/zulip,jainayush975/zulip,punchagan/zulip,aakash-cr7/zulip,PaulPetring/zulip,hayderimran7/zulip,xuxiao/zulip,natanovia/zulip,calvinleenyc/zulip,ashwinirudrappa/zulip,hackerkid/zulip,cosmicAsymmetry/zulip,itnihao/zulip,wweiradio/zulip,DazWorrall/zulip,brockwhittaker/zulip,vakila/zulip,synicalsyntax/zulip,jainayush975/zulip,kaiyuanheshang/zulip,willingc/zulip,dxq-git/zulip,jessedhillon/zulip,dotcool/zulip,karamcnair/zulip,grave-w-grave/zulip,ApsOps/zulip,showell/zulip,hafeez3000/zulip,jphilipsen05/zulip,babbage/zulip,jrowan/zulip,Frouk/zulip,levixie/zulip,dawran6/zulip,krtkmj/zulip,susansls/zulip,andersk/zulip,PhilSk/zulip,ryanbackman/zulip,ashwinirudrappa/zulip,nicholasbs/zulip,shrikrishnaholla/zulip,KingxBanana/zulip,krtkmj/zulip,noroot/zulip,isht3/zulip,punchagan/zulip,willingc/zulip,jerryge/zulip,m1ssou/zulip,Galexrt/zulip,ufosky-server/zulip,ApsOps/zulip,cosmicAsymmetry/zulip,luyifan/zulip,aps-sids/zulip,andersk/zulip,adnanh/zulip,rishig/zulip,stamhe/zulip,xuanhan863/zulip,KingxBanana/zulip,atomic-labs/zulip,krtkmj/zulip,vabs22/zulip,mohsenSy/zulip,saitodisse/zulip,dattatreya303/zulip,Juanvulcano/zulip,vakila/zulip,dwrpayne/zulip,dotcool/zulip,tiansiyuan/zulip,huangkebo/zulip,showell/zulip,calvinleenyc/zulip,amallia/zulip,mdavid/zulip,mahim97/zulip,LAndreas/zulip,zorojean/zulip,EasonYi/zulip,schatt/zulip,eastlhu/zulip,praveenaki/zulip,easyfmxu/zulip,swinghu/zulip,ryanbackman/zulip,mdavid/zulip,MariaFaBella85/zulip,thomasboyt/zulip,deer-hope/zulip,deer-hope/zulip,glovebx/zulip,vikas-parashar/zulip,gkotian/zulip,TigorC/zulip,glovebx/zulip,esander91/zulip,gkotian/zulip,alliejones/zulip,qq1012803704/zulip,showell/zulip,Jianchun1/zulip,jackrzhang/zulip,Drooids/zulip,vakila/zulip,hj3938/zulip,natanovia/zulip,MayB/zulip,mohsenSy/zulip,vaidap/zulip,swinghu/zulip,bssrdf/zulip,sonali0901/zulip,vaidap/zulip,alliejones/zulip,Batterfii/zulip,KJin99/zulip,zachallaun/zulip,johnnygaddarr/zulip,zofuthan/zulip,SmartPeople/zulip,dhcrzf/zulip,zulip/zulip,itnihao/zulip,kaiyuanheshang/zulip,peguin40/zulip,vaidap/zulip,luyifan/zulip,fw1121/zulip,dwrpayne/zulip,aliceriot/zulip,he15his/zulip,akuseru/zulip,joshisa/zulip,yuvipanda/zulip,wangdeshui/zulip,PaulPetring/zulip,Juanvulcano/zulip,technicalpickles/zulip,arpith/zulip,schatt/zulip,timabbott/zulip,peiwei/zulip,hj3938/zulip,Cheppers/zulip,wweiradio/zulip,vikas-parashar/zulip,ericzhou2008/zulip,codeKonami/zulip,nicholasbs/zulip,joyhchen/zulip,udxxabp/zulip,noroot/zulip,zulip/zulip,EasonYi/zulip,qq1012803704/zulip,Gabriel0402/zulip,bowlofstew/zulip,eastlhu/zulip,technicalpickles/zulip,armooo/zulip,xuanhan863/zulip,jainayush975/zulip,Qgap/zulip,gigawhitlocks/zulip,ufosky-server/zulip,aliceriot/zulip,suxinde2009/zulip,ufosky-server/zulip,paxapy/zulip,brainwane/zulip,bluesea/zulip,arpith/zulip,wangdeshui/zulip,arpith/zulip,Drooids/zulip,zhaoweigg/zulip,lfranchi/zulip,natanovia/zulip,LeeRisk/zulip,Batterfii/zulip,itnihao/zulip,zofuthan/zulip,johnny9/zulip,pradiptad/zulip,umkay/zulip,mahim97/zulip,firstblade/zulip,LeeRisk/zulip,ryansnowboarder/zulip,zofuthan/zulip,yuvipanda/zulip,ApsOps/zulip,ikasumiwt/zulip,aakash-cr7/zulip,blaze225/zulip,Suninus/zulip,swinghu/zulip,levixie/zulip,christi3k/zulip,aliceriot/zulip,mahim97/zulip,Galexrt/zulip,he15his/zulip,karamcnair/zulip,dhcrzf/zulip,MayB/zulip,suxinde2009/zulip,willingc/zulip,MayB/zulip,zacps/zulip,brockwhittaker/zulip,shubhamdhama/zulip,proliming/zulip,zwily/zulip,he15his/zulip,atomic-labs/zulip,Galexrt/zulip,bluesea/zulip,ryanbackman/zulip,vikas-parashar/zulip,rishig/zulip,jrowan/zulip,JanzTam/zulip,reyha/zulip,seapasulli/zulip,jeffcao/zulip,hayderimran7/zulip,hustlzp/zulip,ipernet/zulip,noroot/zulip,ryansnowboarder/zulip,ikasumiwt/zulip,esander91/zulip,moria/zulip,mdavid/zulip,ipernet/zulip,umkay/zulip,Qgap/zulip,jphilipsen05/zulip,wangdeshui/zulip,bowlofstew/zulip,joyhchen/zulip,Drooids/zulip,he15his/zulip,gigawhitlocks/zulip,avastu/zulip,kou/zulip,adnanh/zulip,ahmadassaf/zulip,xuanhan863/zulip,avastu/zulip,so0k/zulip,Qgap/zulip,kaiyuanheshang/zulip,arpitpanwar/zulip,jackrzhang/zulip,aliceriot/zulip,TigorC/zulip,kokoar/zulip,seapasulli/zulip,bitemyapp/zulip,j831/zulip,timabbott/zulip,arpitpanwar/zulip,MariaFaBella85/zulip,babbage/zulip,peguin40/zulip,Gabriel0402/zulip,vaidap/zulip,hayderimran7/zulip,dnmfarrell/zulip,Galexrt/zulip,Gabriel0402/zulip,tbutter/zulip,brainwane/zulip,zofuthan/zulip,qq1012803704/zulip,zhaoweigg/zulip,shubhamdhama/zulip,dotcool/zulip,dattatreya303/zulip,atomic-labs/zulip,codeKonami/zulip,thomasboyt/zulip,tiansiyuan/zulip,bssrdf/zulip,brainwane/zulip,zorojean/zulip,rishig/zulip,levixie/zulip,nicholasbs/zulip,bssrdf/zulip,Jianchun1/zulip,bastianh/zulip,JPJPJPOPOP/zulip,easyfmxu/zulip,seapasulli/zulip,JPJPJPOPOP/zulip,JanzTam/zulip,Cheppers/zulip,zwily/zulip,dhcrzf/zulip,akuseru/zulip,codeKonami/zulip,deer-hope/zulip,zulip/zulip,ericzhou2008/zulip,christi3k/zulip,gkotian/zulip,wdaher/zulip,AZtheAsian/zulip,sup95/zulip,niftynei/zulip,samatdav/zulip,moria/zulip,Drooids/zulip,willingc/zulip,karamcnair/zulip,amallia/zulip,levixie/zulip,seapasulli/zulip,huangkebo/zulip,wdaher/zulip,jrowan/zulip,swinghu/zulip,schatt/zulip,sup95/zulip,dxq-git/zulip,Frouk/zulip,m1ssou/zulip,jainayush975/zulip,KJin99/zulip,zachallaun/zulip,Qgap/zulip,Frouk/zulip,qq1012803704/zulip,ryansnowboarder/zulip,zacps/zulip,sup95/zulip,bitemyapp/zulip,armooo/zulip,themass/zulip,karamcnair/zulip,hackerkid/zulip,technicalpickles/zulip,esander91/zulip,fw1121/zulip,bitemyapp/zulip,saitodisse/zulip,shrikrishnaholla/zulip,voidException/zulip,peiwei/zulip,JanzTam/zulip,dxq-git/zulip,noroot/zulip,Drooids/zulip,guiquanz/zulip,showell/zulip,Diptanshu8/zulip,bluesea/zulip,developerfm/zulip,Cheppers/zulip,armooo/zulip,samatdav/zulip,seapasulli/zulip,moria/zulip,mdavid/zulip,shubhamdhama/zulip,hengqujushi/zulip,itnihao/zulip,akuseru/zulip,hustlzp/zulip,hafeez3000/zulip,saitodisse/zulip,ahmadassaf/zulip,alliejones/zulip,PaulPetring/zulip,esander91/zulip,grave-w-grave/zulip,tdr130/zulip,christi3k/zulip,joyhchen/zulip,EasonYi/zulip,jphilipsen05/zulip,aps-sids/zulip,joshisa/zulip,zachallaun/zulip,akuseru/zulip,bastianh/zulip,hayderimran7/zulip,so0k/zulip,eeshangarg/zulip,glovebx/zulip,ryanbackman/zulip,guiquanz/zulip,yuvipanda/zulip,xuxiao/zulip,arpitpanwar/zulip,avastu/zulip,yocome/zulip,AZtheAsian/zulip,mohsenSy/zulip,blaze225/zulip,schatt/zulip,dawran6/zulip,RobotCaleb/zulip,karamcnair/zulip,sonali0901/zulip,proliming/zulip,Cheppers/zulip,umkay/zulip,MayB/zulip,hayderimran7/zulip,wavelets/zulip,bssrdf/zulip,amanharitsh123/zulip,tdr130/zulip,gkotian/zulip,littledogboy/zulip,kaiyuanheshang/zulip,sharmaeklavya2/zulip,tiansiyuan/zulip,mahim97/zulip,aps-sids/zulip,jessedhillon/zulip,karamcnair/zulip,KJin99/zulip,yocome/zulip,verma-varsha/zulip,Jianchun1/zulip,gigawhitlocks/zulip,jeffcao/zulip,ashwinirudrappa/zulip,bluesea/zulip,saitodisse/zulip,dwrpayne/zulip,MayB/zulip,dawran6/zulip,thomasboyt/zulip,JPJPJPOPOP/zulip,stamhe/zulip,KJin99/zulip,seapasulli/zulip,hayderimran7/zulip,kaiyuanheshang/zulip,sup95/zulip,proliming/zulip,bastianh/zulip,hustlzp/zulip,aliceriot/zulip,Drooids/zulip,wangdeshui/zulip,andersk/zulip,levixie/zulip,jerryge/zulip,ryansnowboarder/zulip,Galexrt/zulip,jerryge/zulip,j831/zulip,aakash-cr7/zulip,sonali0901/zulip,noroot/zulip,dawran6/zulip,zachallaun/zulip,suxinde2009/zulip,hafeez3000/zulip,sup95/zulip,pradiptad/zulip,johnnygaddarr/zulip,amanharitsh123/zulip,Juanvulcano/zulip,glovebx/zulip,brainwane/zulip,KingxBanana/zulip,johnnygaddarr/zulip,DazWorrall/zulip,grave-w-grave/zulip,dnmfarrell/zulip,m1ssou/zulip,paxapy/zulip,tbutter/zulip,rht/zulip,reyha/zulip,stamhe/zulip,mansilladev/zulip,Diptanshu8/zulip,zwily/zulip,DazWorrall/zulip,amanharitsh123/zulip,armooo/zulip,ufosky-server/zulip,johnny9/zulip,Suninus/zulip,littledogboy/zulip,andersk/zulip,codeKonami/zulip,hackerkid/zulip,johnnygaddarr/zulip,wavelets/zulip,xuxiao/zulip,peiwei/zulip,firstblade/zulip,Diptanshu8/zulip,joshisa/zulip,j831/zulip,ipernet/zulip,proliming/zulip,voidException/zulip,swinghu/zulip,ipernet/zulip,hj3938/zulip,dnmfarrell/zulip,MariaFaBella85/zulip,souravbadami/zulip,tdr130/zulip,jonesgithub/zulip,bssrdf/zulip,developerfm/zulip,dawran6/zulip,vaidap/zulip,littledogboy/zulip,shubhamdhama/zulip,jessedhillon/zulip,qq1012803704/zulip,dhcrzf/zulip,DazWorrall/zulip,johnnygaddarr/zulip,brockwhittaker/zulip,xuanhan863/zulip,vikas-parashar/zulip,firstblade/zulip,mansilladev/zulip,saitodisse/zulip,PaulPetring/zulip,saitodisse/zulip,umkay/zulip,jonesgithub/zulip,arpitpanwar/zulip,schatt/zulip,luyifan/zulip,kou/zulip,dotcool/zulip,johnnygaddarr/zulip,Frouk/zulip,hj3938/zulip,zhaoweigg/zulip,guiquanz/zulip,Batterfii/zulip,mdavid/zulip,Drooids/zulip,hj3938/zulip,LeeRisk/zulip,adnanh/zulip,voidException/zulip,tommyip/zulip,Juanvulcano/zulip,luyifan/zulip,easyfmxu/zulip,easyfmxu/zulip,bitemyapp/zulip,souravbadami/zulip,blaze225/zulip,jeffcao/zulip,bastianh/zulip,glovebx/zulip,dhcrzf/zulip,JPJPJPOPOP/zulip,ryanbackman/zulip,tbutter/zulip,verma-varsha/zulip,blaze225/zulip,calvinleenyc/zulip,hengqujushi/zulip,guiquanz/zulip,bitemyapp/zulip,suxinde2009/zulip,ikasumiwt/zulip,nicholasbs/zulip,aps-sids/zulip,SmartPeople/zulip,mohsenSy/zulip,reyha/zulip,KJin99/zulip,pradiptad/zulip,jonesgithub/zulip,thomasboyt/zulip,hengqujushi/zulip,christi3k/zulip,eeshangarg/zulip,jimmy54/zulip,Vallher/zulip,peguin40/zulip,TigorC/zulip,ikasumiwt/zulip,akuseru/zulip,RobotCaleb/zulip,Juanvulcano/zulip,PhilSk/zulip,moria/zulip,mansilladev/zulip,sharmaeklavya2/zulip,Diptanshu8/zulip,swinghu/zulip,ApsOps/zulip,dhcrzf/zulip,timabbott/zulip,vabs22/zulip,amallia/zulip,fw1121/zulip,LAndreas/zulip,verma-varsha/zulip,tommyip/zulip,jrowan/zulip,zorojean/zulip,wavelets/zulip,shaunstanislaus/zulip,Vallher/zulip,showell/zulip,levixie/zulip,jonesgithub/zulip,tommyip/zulip,amyliu345/zulip,luyifan/zulip,synicalsyntax/zulip,themass/zulip,timabbott/zulip,yocome/zulip,kaiyuanheshang/zulip,Gabriel0402/zulip,aakash-cr7/zulip,gigawhitlocks/zulip,he15his/zulip,technicalpickles/zulip,ericzhou2008/zulip,atomic-labs/zulip,hustlzp/zulip,kaiyuanheshang/zulip,ryansnowboarder/zulip,amyliu345/zulip,MariaFaBella85/zulip,gigawhitlocks/zulip,LeeRisk/zulip,aakash-cr7/zulip,Qgap/zulip,JPJPJPOPOP/zulip,wweiradio/zulip,LAndreas/zulip,synicalsyntax/zulip,punchagan/zulip,yocome/zulip,timabbott/zulip,bluesea/zulip,ahmadassaf/zulip,johnny9/zulip,jimmy54/zulip,cosmicAsymmetry/zulip,ahmadassaf/zulip,eeshangarg/zulip,littledogboy/zulip,kou/zulip,jerryge/zulip,bluesea/zulip,yocome/zulip,zofuthan/zulip,hengqujushi/zulip,DazWorrall/zulip,udxxabp/zulip,udxxabp/zulip,eastlhu/zulip,codeKonami/zulip,huangkebo/zulip,sup95/zulip,MayB/zulip,rishig/zulip,rishig/zulip,guiquanz/zulip,yuvipanda/zulip,xuxiao/zulip,isht3/zulip,wdaher/zulip,MariaFaBella85/zulip,shrikrishnaholla/zulip,kokoar/zulip,Gabriel0402/zulip,arpitpanwar/zulip,synicalsyntax/zulip,Frouk/zulip,bowlofstew/zulip,bastianh/zulip,gkotian/zulip,mansilladev/zulip,guiquanz/zulip,proliming/zulip,dxq-git/zulip,timabbott/zulip,adnanh/zulip,dotcool/zulip,dhcrzf/zulip,thomasboyt/zulip,Jianchun1/zulip,wweiradio/zulip,arpith/zulip,tommyip/zulip,LAndreas/zulip,hengqujushi/zulip,firstblade/zulip,hackerkid/zulip,deer-hope/zulip,rht/zulip,shrikrishnaholla/zulip,punchagan/zulip,adnanh/zulip,kou/zulip,amanharitsh123/zulip,so0k/zulip,esander91/zulip,kokoar/zulip,jphilipsen05/zulip,babbage/zulip,easyfmxu/zulip,sonali0901/zulip,babbage/zulip,susansls/zulip,vakila/zulip,synicalsyntax/zulip,amyliu345/zulip,bowlofstew/zulip,Vallher/zulip,wavelets/zulip,niftynei/zulip,itnihao/zulip,luyifan/zulip,verma-varsha/zulip,Diptanshu8/zulip,zulip/zulip,zhaoweigg/zulip,peguin40/zulip,isht3/zulip,xuanhan863/zulip,paxapy/zulip,kokoar/zulip,paxapy/zulip,pradiptad/zulip,dxq-git/zulip,hj3938/zulip,hackerkid/zulip,brockwhittaker/zulip,Gabriel0402/zulip,umkay/zulip,itnihao/zulip,zacps/zulip,KingxBanana/zulip,yocome/zulip,joshisa/zulip,yuvipanda/zulip,paxapy/zulip,ashwinirudrappa/zulip,jessedhillon/zulip,reyha/zulip,alliejones/zulip,amallia/zulip,showell/zulip,Batterfii/zulip,zorojean/zulip,dnmfarrell/zulip,voidException/zulip,Batterfii/zulip,ashwinirudrappa/zulip,firstblade/zulip,huangkebo/zulip,deer-hope/zulip,vabs22/zulip,zwily/zulip,PhilSk/zulip,zachallaun/zulip,EasonYi/zulip,he15his/zulip,so0k/zulip,Suninus/zulip,ikasumiwt/zulip,atomic-labs/zulip,ipernet/zulip,ApsOps/zulip,esander91/zulip,schatt/zulip,karamcnair/zulip,TigorC/zulip,aps-sids/zulip,niftynei/zulip,jeffcao/zulip,hustlzp/zulip,PaulPetring/zulip,babbage/zulip,rht/zulip,krtkmj/zulip,Vallher/zulip,wangdeshui/zulip,mdavid/zulip,amallia/zulip,itnihao/zulip,Jianchun1/zulip,zhaoweigg/zulip,udxxabp/zulip,fw1121/zulip,Galexrt/zulip,eastlhu/zulip,andersk/zulip,SmartPeople/zulip,hafeez3000/zulip,DazWorrall/zulip,jimmy54/zulip,developerfm/zulip,dnmfarrell/zulip,he15his/zulip,verma-varsha/zulip,zulip/zulip,johnny9/zulip,johnnygaddarr/zulip,huangkebo/zulip,calvinleenyc/zulip,arpitpanwar/zulip,zorojean/zulip,johnny9/zulip,dwrpayne/zulip,technicalpickles/zulip,fw1121/zulip,niftynei/zulip,ericzhou2008/zulip,zulip/zulip,technicalpickles/zulip,tiansiyuan/zulip,LAndreas/zulip,shubhamdhama/zulip,atomic-labs/zulip,peiwei/zulip,Batterfii/zulip,KJin99/zulip,moria/zulip,jrowan/zulip,jeffcao/zulip,verma-varsha/zulip,arpith/zulip,vaidap/zulip,bssrdf/zulip,christi3k/zulip,bowlofstew/zulip,shubhamdhama/zulip,armooo/zulip,natanovia/zulip,samatdav/zulip,ufosky-server/zulip,eeshangarg/zulip,zwily/zulip,wweiradio/zulip,joyhchen/zulip,stamhe/zulip,samatdav/zulip,Qgap/zulip,avastu/zulip,dxq-git/zulip,Frouk/zulip,vabs22/zulip,hustlzp/zulip,akuseru/zulip,AZtheAsian/zulip,LeeRisk/zulip,isht3/zulip,lfranchi/zulip,ipernet/zulip,Suninus/zulip,bluesea/zulip,tommyip/zulip,voidException/zulip,johnny9/zulip,schatt/zulip,fw1121/zulip,joyhchen/zulip,pradiptad/zulip,wdaher/zulip,jessedhillon/zulip,peiwei/zulip,jphilipsen05/zulip,amanharitsh123/zulip,cosmicAsymmetry/zulip,hengqujushi/zulip,jimmy54/zulip,zachallaun/zulip,moria/zulip,Vallher/zulip,ikasumiwt/zulip,mansilladev/zulip,kokoar/zulip,glovebx/zulip,babbage/zulip,huangkebo/zulip,ipernet/zulip,jrowan/zulip,jimmy54/zulip,rishig/zulip,alliejones/zulip,hackerkid/zulip,Qgap/zulip,sonali0901/zulip,praveenaki/zulip,rishig/zulip,praveenaki/zulip,xuxiao/zulip,mohsenSy/zulip,aps-sids/zulip,LAndreas/zulip,shaunstanislaus/zulip,hafeez3000/zulip,souravbadami/zulip |
a672fa6d385f2de391ea5bc5bbff09e6fc7673fc | templates/listing/dashboard_tag_list.hbs | templates/listing/dashboard_tag_list.hbs | <div class="list-group">
<a class="list-group-item {{#unless tag}}active{{/unless}}" href="/dashboards">All <span class="badge badge-primary pull-right"></span></a>
{{#each tags}}
<a class="list-group-item " data-ds-tag="{{name}}" href="/dashboards/tagged/{{name}}">
{{name}}
<span class="badge badge-default pull-right">{{count}}</span></a>
{{/each}}
</div>
| <ul class="nav nav-pills nav-stacked">
<li class="{{#unless tag}}active{{/unless}}">
<a href="/dashboards">
All <span class="badge badge-primary pull-right"></span>
</a>
</li>
{{#each tags}}
<li data-ds-tag="{{name}}">
<a href="/dashboards/tagged/{{name}}">
{{name}}
<span class="badge badge-default pull-right">{{count}}</span>
</a>
</li>
{{/each}}
</ul>
| Use nave for tag listing, it looks cleaner | Use nave for tag listing, it looks cleaner
| Handlebars | apache-2.0 | jmptrader/tessera,urbanairship/tessera,tessera-metrics/tessera,Slach/tessera,aalpern/tessera,tessera-metrics/tessera,section-io/tessera,jmptrader/tessera,tessera-metrics/tessera,filippog/tessera,Slach/tessera,jmptrader/tessera,Slach/tessera,filippog/tessera,jmptrader/tessera,Slach/tessera,section-io/tessera,urbanairship/tessera,aalpern/tessera,aalpern/tessera,urbanairship/tessera,urbanairship/tessera,filippog/tessera,urbanairship/tessera,jmptrader/tessera,tessera-metrics/tessera,aalpern/tessera,section-io/tessera,section-io/tessera,tessera-metrics/tessera,aalpern/tessera |
372b3f369277c90350cd3502d625b6218de02a74 | gui/app/templates/components/folder/settings-templates.hbs | gui/app/templates/components/folder/settings-templates.hbs | <div class="content-zone">
<div class="explainer-header explainer-gap">Content Templates provide the basis for new documentation</div>
{{#each templates as |item|}}
<div class="mb-5">
<h1>{{item.title}}</h1>
<p>{{item.description}}</p>
<button type="button" class="btn btn-outline-success" onclick={{action 'onOpenTemplate' item.id}}>Open</button>
</div>
{{/each}}
</div> | <div class="content-zone">
<div class="explainer-header explainer-gap">Templates provide predefined content for new documents</div>
{{#each templates as |item|}}
<div class="mb-5">
<h1>{{item.title}}</h1>
<p>{{item.description}}</p>
<button type="button" class="btn btn-outline-success" onclick={{action 'onOpenTemplate' item.id}}>Open</button>
</div>
{{/each}}
</div> | Improve copy for template admin | Improve copy for template admin
| Handlebars | agpl-3.0 | documize/community,documize/community,documize/community,documize/community |
f81ce985a24c10f84b5c5e7d38af7e690329fbd1 | templates/conversion-share.hbs | templates/conversion-share.hbs | <div class="squatch-share">
<span class="label label-default fade" id="squatch-share-notification">Copied!</span>
<button class="btn btn-primary icon-btn copy" data-clipboard-target="#squatch-share-code" data-clipboard-notification="#squatch-share-notification">
{{variables 'widget.CONVERSION_WIDGET.content.widgetCustomization.buttonCopy'}}
</button>
</div>
| <div class="squatch-share">
<span class="label label-default fade" id="squatch-share-notification">{{variables 'widget.CONVERSION_WIDGET.content.textVariables.shareNotification'}}</span>
<button class="btn btn-primary icon-btn copy" data-clipboard-target="#squatch-share-code" data-clipboard-notification="#squatch-share-notification">
{{variables 'widget.CONVERSION_WIDGET.content.widgetCustomization.buttonCopy'}}
</button>
</div>
| Add missing variables call in conversion widget | Add missing variables call in conversion widget
| Handlebars | apache-2.0 | saasquatch/default-theme,saasquatch/default-theme |
e5d5b4fde3d1a41e65084b38407f4e1febce32c8 | xgds_planner2/templates/handlebars/plan-kml.handlebars | xgds_planner2/templates/handlebars/plan-kml.handlebars | <Document>
<Style id="waypoint">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/placemark_circle.png</href>
<scale>0.85</scale>
</Icon>
</IconStyle>
</Style>
<Style id="midpoint">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/placemark_circle.png</href>
<scale>0.6</scale>
</Icon>
<color>80ffffff</color>
</IconStyle>
</Style>
<Style id="direction">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal3/icon20.png</href>
<scale>0.85</scale>
</Icon>
</IconStyle>
</Style>
<Style id="segment">
<LineStyle>
<color>ff0000ff</color>
<width>{{ options.planLineWidthPixels }}</width>
</LineStyle>
</Style>
</Document>
| <Document>
<Style id="waypoint">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/placemark_circle.png</href>
<scale>0.85</scale>
</Icon>
</IconStyle>
</Style>
<Style id="midpoint">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/shapes/placemark_circle.png</href>
<scale>0.6</scale>
</Icon>
<color>80ffffff</color>
</IconStyle>
</Style>
<Style id="direction">
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal3/icon28.png</href>
<scale>0.85</scale>
</Icon>
</IconStyle>
</Style>
<Style id="segment">
<LineStyle>
<color>ff0000ff</color>
<width>{{ options.planLineWidthPixels }}</width>
</LineStyle>
</Style>
</Document>
| Use circle crosshairs for directional drag handle | Use circle crosshairs for directional drag handle
| Handlebars | apache-2.0 | xgds/xgds_planner2,xgds/xgds_planner2,xgds/xgds_planner2,xgds/xgds_planner2 |
d52e7ecea5f58089d7e35bdad0fa9641c0088b0b | src/templates/drizzle/logo.hbs | src/templates/drizzle/logo.hbs | <svg viewBox="0 0 220 60" width="110" height="30" fill="currentColor">
<path d="M55.5,57.64A2.13,2.13,0,0,1,54,57L3,6A2.14,2.14,0,1,1,6,3L57,54A2.14,2.14,0,0,1,55.5,57.64Z"/>
<path d="M56.59,33.94a2.13,2.13,0,0,1-1.51-.63L26.68,4.93a2.14,2.14,0,0,1,3-3L58.1,30.29A2.14,2.14,0,0,1,56.59,33.94Z"/>
<path d="M31.8,58.72a2.13,2.13,0,0,1-1.51-.63L1.9,29.71a2.14,2.14,0,1,1,3-3L33.32,55.07A2.14,2.14,0,0,1,31.8,58.72Z"/>
<text x="85" y="45" font-size="42">Drizzle</text>
</svg>
| <svg viewBox="0 0 250 60" width="125" height="30" fill="currentColor">
<path d="M55.5,57.64A2.13,2.13,0,0,1,54,57L3,6A2.14,2.14,0,1,1,6,3L57,54A2.14,2.14,0,0,1,55.5,57.64Z"/>
<path d="M56.59,33.94a2.13,2.13,0,0,1-1.51-.63L26.68,4.93a2.14,2.14,0,0,1,3-3L58.1,30.29A2.14,2.14,0,0,1,56.59,33.94Z"/>
<path d="M31.8,58.72a2.13,2.13,0,0,1-1.51-.63L1.9,29.71a2.14,2.14,0,1,1,3-3L33.32,55.07A2.14,2.14,0,0,1,31.8,58.72Z"/>
<text x="85" y="45" font-size="42">Drizzle</text>
</svg>
| Make the viewbox a little wider to text doesn't get cut off with different fonts, browsers, OS | Make the viewbox a little wider to text doesn't get cut off with different fonts, browsers, OS
| Handlebars | mit | cloudfour/drizzle,cloudfour/drizzle |
f606198c1dd318d2513565b452b5dbd2eb0c3a12 | packages/generators/generators/lib/templates/single-type-routes.js.hbs | packages/generators/generators/lib/templates/single-type-routes.js.hbs | module.exports = {
routes: [
{
method: 'GET',
path: '/{{id}}',
handler: '{{id}}.find',
config: {
policies: [],
},
},
{
method: 'PUT',
path: '/{{id}}',
handler: '{{id}}.update',
config: {
policies: [],
},
},
{
method: 'DELETE',
path: '/{{id}}/',
handler: '{{id}}.delete',
config: {
policies: [],
},
},
],
};
| module.exports = {
routes: [
{
method: 'GET',
path: '/{{id}}',
handler: '{{id}}.find',
config: {
policies: [],
},
},
{
method: 'PUT',
path: '/{{id}}',
handler: '{{id}}.update',
config: {
policies: [],
},
},
{
method: 'DELETE',
path: '/{{id}}',
handler: '{{id}}.delete',
config: {
policies: [],
},
},
],
};
| Fix generator wrong single-type url | Fix generator wrong single-type url
| Handlebars | mit | wistityhq/strapi,wistityhq/strapi |
ec2bac71c8df67dd0b7dc22aa67a3c29c2e90815 | web/src/main/ember/app/pods/components/doc-summary-line/template.hbs | web/src/main/ember/app/pods/components/doc-summary-line/template.hbs | <tr>
<td title="{{doc.contentType}}">{{#entity-link entity=doc resource='download' models='documents'}}{{fa-icon doc.icon}} {{doc.name}}{{/entity-link}}</td>
<td style="text-align: right;">{{#confirm-button action='deleteDocument' param=doc class='remove button alert'}}{{fa-icon 'times'}} Delete{{/confirm-button}}</td>
</tr>
<tr class="summary">
<td colspan="2">{{doc.created}}</td>
</tr>
| <tr>
<td title="{{doc.contentType}}">{{#entity-link entity=doc resource='download' models='documents'}}{{fa-icon doc.icon}} {{doc.name}}{{/entity-link}} {{#link-to doc.link doc}}{{fa-icon 'info-circle'}}{{/link-to}}</td>
<td style="text-align: right;">{{#confirm-button action='deleteDocument' param=doc class='remove button alert'}}{{fa-icon 'times'}} Delete{{/confirm-button}}</td>
</tr>
<tr class="summary">
<td colspan="2">{{doc.created}}</td>
</tr>
| Add detailed document info link | Add detailed document info link
| Handlebars | agpl-3.0 | MarSik/shelves,MarSik/shelves,MarSik/shelves,MarSik/shelves |
bc6883ecabb1dd187bb7f0ecc44355459d7a3f01 | page-template.hbs | page-template.hbs | {{> head}}
<style>
body
{
text-align: center;
}
textarea
{
width: 100%;
height: 400px;
margin-top: 8px;
}
</style>
<form method="post">
<button type="button" onclick="app.copy()">
Copy
</button>
<button type="button" onclick="app.paste()">
Paste
</button>
<button type="submit">
Save
</button>
<button type="button" onclick="app.clear() && app.save()">
Clear
</button>
<textarea name="clipboardData">{{clipboardData}}</textarea>
</form>
<script type="text/javascript">
'use strict';
var textarea = document.querySelector('textarea');
var submitButton = document.querySelector('[type="submit"]');
window.app = {};
app.copy = function() {
textarea.select();
document.execCommand('copy');
};
app.paste = function() {
textarea.select();
document.execCommand('paste');
};
app.save = function() {
submitButton.click();
};
app.clear = function() {
textarea.value = '';
};
</script>
| {{> head}}
<style>
body
{
text-align: center;
}
textarea
{
width: 100%;
height: 400px;
margin-top: 8px;
}
</style>
<form method="post">
<button type="button" onclick="app.copy()">
Copy
</button>
<button type="submit">
Save
</button>
<button type="button" onclick="app.clear() && app.save()">
Clear
</button>
<textarea name="clipboardData">{{clipboardData}}</textarea>
</form>
<script type="text/javascript">
'use strict';
var textarea = document.querySelector('textarea');
var submitButton = document.querySelector('[type="submit"]');
window.app = {};
app.copy = function() {
textarea.select();
document.execCommand('copy');
};
app.save = function() {
submitButton.click();
};
app.clear = function() {
textarea.value = '';
};
</script>
| Remove paste button (does not work well). | Remove paste button (does not work well).
| Handlebars | agpl-3.0 | n2liquid/clipboard-server |
32a3ca0eefc91646105f9d0ace066f82bc0299a8 | templates/httpBackend-mocks.hbs | templates/httpBackend-mocks.hbs | (function(angular) {
'use strict';
var moduleName = '{{angularModuleName}}.mocked';
angular
.module(moduleName, ['ngMockE2E'])
.run(['apiUrl', '$httpBackend', function(apiUrl, $httpBackend) {
{{#each resourceOperations}}
{{#each this}}
$httpBackend.when{{action}}(apiUrl + '{{path}}').respond({{{mockedResponse}}});
{{/each}}
{{/each}}
}]);
if( typeof exports !== 'undefined' ) {
if (typeof module !== 'undefined' && module.exports) {
exports = module.exports = moduleName;
}
exports = moduleName;
}
})(angular);
| (function(angular) {
'use strict';
var moduleName = '{{ngModule}}.mocked';
angular
.module(moduleName, ['ngMockE2E'])
.run(['apiUrl', '$httpBackend', function(apiUrl, $httpBackend) {
{{#each resourceOperations}}
{{#each this}}
$httpBackend.when{{action}}(apiUrl + '{{path}}').respond({{{mockedResponse}}});
{{/each}}
{{/each}}
}]);
if( typeof exports !== 'undefined' ) {
if (typeof module !== 'undefined' && module.exports) {
exports = module.exports = moduleName;
}
exports = moduleName;
}
})(angular);
| Add ngModule to mocked template as module name | Add ngModule to mocked template as module name
| Handlebars | mit | mchlbrnd/swagged-angular-resources,mchlbrnd/swagged-angular-resources |
ee85e1773f85f3813da33064c162575687bd04a6 | src/main/web/templates/handlebars/base/base.handlebars | src/main/web/templates/handlebars/base/base.handlebars | {{!-- This is the base template, all other templates inherits from this base template --}}
{{!-- Resolve parents of current uri for and assign to variable breadcrumb for building breadcrumb --}}
{{resolveParents uri assign="breadcrumb"}}
{{!-- Resolve navigation fetching children of root uri "/" with depth 2 --}}
{{resolveTaxonomy depth=2 assign="navigation"}}
{{#block "block-header"}}
{{> partials/header}}
{{/block}}
<main id="main" role="main" tabindex="-1">
{{#block "block-main"}}
{{/block}}
</main>
{{#block "block-footer"}}
{{> partials/footer}}
{{/block}}
<script type="text/javascript">
var loop11_key = "0104054b3b56d396b42e668dfe096cee161454a8";
document.write(unescape("%3cscript src='//cdn.loop11.com/my/loop11.js' type='text/javascript'%3e%3c/script%3e"));
</script> | {{!-- This is the base template, all other templates inherits from this base template --}}
{{!-- Resolve parents of current uri for and assign to variable breadcrumb for building breadcrumb --}}
{{resolveParents uri assign="breadcrumb"}}
{{!-- Resolve navigation fetching children of root uri "/" with depth 2 --}}
{{resolveTaxonomy depth=2 assign="navigation"}}
{{#block "block-header"}}
{{> partials/header}}
{{/block}}
<main id="main" role="main" tabindex="-1">
{{#block "block-main"}}
{{/block}}
</main>
{{#block "block-footer"}}
{{> partials/footer}}
{{/block}}
{{!--<script type="text/javascript">
var loop11_key = "0104054b3b56d396b42e668dfe096cee161454a8";
document.write(unescape("%3cscript src='//cdn.loop11.com/my/loop11.js' type='text/javascript'%3e%3c/script%3e"));
</script>--}} | Remove loop11 script tag from every page load | Remove loop11 script tag from every page load
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
994b7a9251f1277047f12c3aa5b329b2d0f9b74f | src/main/resources/assets/app/scripts/templates/job_item_view.hbs | src/main/resources/assets/app/scripts/templates/job_item_view.hbs | <div class="span9 job-name">{{name}}</div>
<div class="hidden job-owner" data-rv-text="job.owner">{{owner}}</div>
<div class="span2 last-run">
<span class="last-run count"
data-rv-class-count-success="job.lastRunSuccess"
data-rv-class-count-error="job.lastRunError"
data-rv-class-count-neutral="job.lastRunFresh"
data-rv-data-title="job:toData | lastRunDescr"
data-rv-text="job.lastRunStatus"
data-container=".app"
data-animation="true"
data-html="true"
data-delay="{show: 500, hide: 100}"
data-toggle="tooltip"></span>
</div>
| <div class="span9 job-name">{{name}}</div>
<div class="span2 last-run">
<span class="last-run count"
data-rv-class-count-success="job.lastRunSuccess"
data-rv-class-count-error="job.lastRunError"
data-rv-class-count-neutral="job.lastRunFresh"
data-rv-data-title="job:toData | lastRunDescr"
data-rv-text="job.lastRunStatus"
data-container=".app"
data-animation="true"
data-html="true"
data-delay="{show: 500, hide: 100}"
data-toggle="tooltip"></span>
</div>
| Remove hidden and unreferenced "job-owner" in list | Remove hidden and unreferenced "job-owner" in list
| Handlebars | apache-2.0 | ryane/chronos,hamo/chronos,nvoron23/chronos,anapsix/chronos,flixster/chronos,lionelnicolas/chronos,josephcopenhaver/chronos,vixns/chronos,hamo/chronos,tdooner/chronos,clearstorydata/chronos,debugger87/chronos,fengshao0907/chronos,rickfast/chronos,mesos/chronos,debugger87/chronos,wangtuanjie/chronos,clearstorydata/chronos,SleepyThread/chronos,lionelnicolas/chronos,cgvarela/chronos,flyinprogrammer/chronos,rickfast/chronos,pekermert/chronos,fengshao0907/chronos,motusllc/chronos,nvoron23/chronos,solarkennedy/chronos,KyleJamesWalker/chronos,doronin/chronos,josephcopenhaver/chronos,xdevelsistemas/chronos,bussiere/chronos,hermansc/chronos,meelapshah/chronos,wangtuanjie/chronos,clearstorydata/chronos,bussiere/chronos,rapidoo/chronos,pekermert/chronos,bussiere/chronos,turb/chronos,kapil-malik/chronos,anapsix/chronos,ryane/chronos,erSitzt/chronos,ryane/chronos,wangtuanjie/chronos,meelapshah/chronos,mikkokupsu/chronos,motusllc/chronos,tdooner/chronos,wrmsr/chronos,rapidoo/chronos,shahankhatch/chronos,mesos/chronos,pekermert/chronos,lionelnicolas/chronos,anapsix/chronos,cgvarela/chronos,flyinprogrammer/chronos,wndhydrnt/chronos,flyinprogrammer/chronos,xdevelsistemas/chronos,mwasn/chronos,hermansc/chronos,jibaro/chronos-1,solarkennedy/chronos,solarkennedy/chronos,cgvarela/chronos,byxorna/chronos,v1k0d3n/chronos,bussiere/chronos,mesos/chronos,rickfast/chronos,motusllc/chronos,hermansc/chronos,erSitzt/chronos,BoopBoopBeepBoop/chronos,erSitzt/chronos,mikkokupsu/chronos,vixns/chronos,SleepyThread/chronos,doronin/chronos,fengshao0907/chronos,KyleJamesWalker/chronos,jibaro/chronos-1,mesos/chronos,SleepyThread/chronos,mikkokupsu/chronos,debugger87/chronos,josephcopenhaver/chronos,shahankhatch/chronos,wndhydrnt/chronos,byxorna/chronos,turb/chronos,erSitzt/chronos,kapil-malik/chronos,cgvarela/chronos,SleepyThread/chronos,pekermert/chronos,wndhydrnt/chronos,wrmsr/chronos,clearstorydata/chronos,flixster/chronos,wrmsr/chronos,v1k0d3n/chronos,Jimdo/chronos,rapidoo/chronos,tony-kerz/chronos,fengshao0907/chronos,nvoron23/chronos,vixns/chronos,turb/chronos,KyleJamesWalker/chronos,hamo/chronos,wndhydrnt/chronos,Jimdo/chronos,lionelnicolas/chronos,wangtuanjie/chronos,vixns/chronos,shahankhatch/chronos,debugger87/chronos,jibaro/chronos-1,flixster/chronos,tdooner/chronos,hamo/chronos,mwasn/chronos,xdevelsistemas/chronos,turb/chronos,BoopBoopBeepBoop/chronos,shahankhatch/chronos,mwasn/chronos,v1k0d3n/chronos,rickfast/chronos,BoopBoopBeepBoop/chronos,Jimdo/chronos,meelapshah/chronos,wrmsr/chronos,tony-kerz/chronos,byxorna/chronos,KyleJamesWalker/chronos,solarkennedy/chronos,Jimdo/chronos,tony-kerz/chronos,jibaro/chronos-1,meelapshah/chronos,nvoron23/chronos,doronin/chronos,kapil-malik/chronos,motusllc/chronos,ryane/chronos,flixster/chronos,v1k0d3n/chronos,xdevelsistemas/chronos,tony-kerz/chronos,mikkokupsu/chronos,rapidoo/chronos,byxorna/chronos,josephcopenhaver/chronos,anapsix/chronos,hermansc/chronos,flyinprogrammer/chronos,mwasn/chronos,tdooner/chronos,BoopBoopBeepBoop/chronos,kapil-malik/chronos |
fb422f8a16a1f8a4b1c2213646ce2303d5fd20c7 | themes/Roon/partials/footer.hbs | themes/Roon/partials/footer.hbs | <footer role="contentinfo">
<div class="inner">
<div class="vcard">
<!-- <a href="{{@blog.url}}/rss" id="btn_feed" class="btn" title="Feed" target="_blank">
<span aria-hidden="true" data-icon=")"></span>
<strong>Feed</strong>
</a> -->
{{#if @blog.logo}}
<a href="{{@blog.url}}" class="photo circle">
<span style="background-image: url('{{@blog.logo}}');">
<img src="{{@blog.logo}}" alt="{{@blog.title}}">
</span>
</a>
{{/if}}
<div class="details">
<h4><a href="{{@blog.url}}" class="url n">{{@blog.title}}</a></h4>
<a href="{{@blog.url}}" class="js-remove-domain-schema">{{@blog.url}}</a><br>
<span>Published with <a href="http://hubpress.io">HubPress</a></span>
</div>
</div>
<div id="user_bio">
<div class="inner">
{{!-- TODO: Parse HTML for links --}}
{{@blog.description}}
</div>
<button id="work_with_us_btn" onclick="location.href='http://www.fastretailing.com/employment/career/jp/fr/it/'">
Work with Us
</button>
</div>
</div>
</footer>
| <footer role="contentinfo">
<div class="inner">
<div class="vcard">
<!-- <a href="{{@blog.url}}/rss" id="btn_feed" class="btn" title="Feed" target="_blank">
<span aria-hidden="true" data-icon=")"></span>
<strong>Feed</strong>
</a> -->
{{#if @blog.logo}}
<a href="{{@blog.url}}" class="photo circle">
<span style="background-image: url('{{@blog.logo}}');">
<img src="{{@blog.logo}}" alt="{{@blog.title}}">
</span>
</a>
{{/if}}
<div class="details">
<h4><a href="{{@blog.url}}" class="url n">{{@blog.title}}</a></h4>
<a href="{{@blog.url}}" class="js-remove-domain-schema">{{@blog.url}}</a><br>
<span>Published with <a href="http://hubpress.io">HubPress</a></span>
</div>
</div>
<div id="user_bio">
<div class="inner">
{{!-- TODO: Parse HTML for links --}}
{{@blog.description}}
</div>
<button id="work_with_us_btn" onclick="location.href='http://www.fastretailing.com/employment/en_us/'">
Work with Us
</button>
</div>
</div>
</footer>
| Change link to HR site to English one | Change link to HR site to English one
| Handlebars | mit | fastretailing/blog,fastretailing/blog,fastretailing/blog |
8ec9a75a7c0bad843327b85bf7e3279a10f4c71b | client/app/templates/components/character-sheet-characteristics.hbs | client/app/templates/components/character-sheet-characteristics.hbs | <div class='strength'><label>strength: {{input type='number' min='1' value=character.strength}}</label></div>
<div class='constitution'><label>constitution: {{input type='number' min='1' value=character.constitution}}</label></div>
<div class='size'><label>size: {{input type='number' min='1' value=character.size}}</label></div>
<div class='dexterity'><label>dexterity: {{input type='number' min='1' value=character.dexterity}}</label></div>
<div class='intelligence'><label>intelligence: {{input type='number' min='1' value=character.intelligence}}</label></div>
<div class='power'><label>power: {{input type='number' min='1' value=character.power}}</label></div>
<div class='charisma'><label>charisma: {{input type='number' min='1' value=character.charisma}}</label></div>
| <div class='strength'><label>strength: {{input type='number' min='0' value=character.strength}}</label></div>
<div class='constitution'><label>constitution: {{input type='number' min='0' value=character.constitution}}</label></div>
<div class='size'><label>size: {{input type='number' min='0' value=character.size}}</label></div>
<div class='dexterity'><label>dexterity: {{input type='number' min='0' value=character.dexterity}}</label></div>
<div class='intelligence'><label>intelligence: {{input type='number' min='0' value=character.intelligence}}</label></div>
<div class='power'><label>power: {{input type='number' min='0' value=character.power}}</label></div>
<div class='charisma'><label>charisma: {{input type='number' min='0' value=character.charisma}}</label></div>
| Set zero as the characteristic minimum. | Set zero as the characteristic minimum.
| Handlebars | mit | erbridge/odin,erbridge/odin |
07188f7e2d9434bc0f443c3dfc651a26082e666c | tests/dummy/app/templates/application.hbs | tests/dummy/app/templates/application.hbs |
{{loading-slider isLoading=loading duration=250 color=color}}
<h2 id='title'>Welcome to Ember.js</h2>
<ul>
<li>{{link-to 'Home' 'index'}}</li>
<li>{{link-to 'Two Second Transition' 'two'}}</li>
<li>{{link-to '75ms Transition' '75'}}</li>
<li>{{link-to 'Orange 500ms Transition' 'orange'}}</li>
</ul>
<div class="boxed">
{{outlet}}
</div>
|
{{loading-slider isLoading=loading duration=250 color=color}}
<h2 id='title'>Welcome to Ember.js</h2>
<ul>
<li>{{link-to 'Home' 'index'}}</li>
<li>{{link-to 'Two Second Transition' 'two'}}</li>
<li>{{link-to '75ms Transition' '75'}}</li>
<li>{{link-to 'Orange 500ms Transition' 'orange'}}</li>
</ul>
<div class="boxed">
{{outlet}}
<p>
<a href="http://github.com/ngenworks/ember-cli-loading-slider">Download the code</a>
</p>
</div>
| Add a download link to the live demo | Add a download link to the live demo
| Handlebars | mit | jerel/ember-cli-loading-slider,jerel/ember-cli-loading-slider |
c35b3255940b5486005355295b2b57746ff01272 | app/views/jst/profiles/addLinkRow.handlebars | app/views/jst/profiles/addLinkRow.handlebars | <tr>
<td><input aria-label="{{t "Link title" }}" type="text" class="ic-Input" maxlength="255" name="link_titles[]" value="{{title}}"></td>
<td>→</td>
<td><input aria-label="{{t "Link Url" }}" type="text" class="ic-Input" name="link_urls[]" value="{{url}}"></td>
<td><a href="#" class="remove_link_row" data-event="removeLinkRow"><span class="screenreader-only">{{t "Remove" }}</span><i class="icon-end"></i></a></td>
</tr>
| <tr>
{{#if title.length}}
<th scope="row">
<input aria-label="{{title}}" type="text" class="ic-Input" maxlength="255" name="link_titles[]" value="{{title}}">
</th>
{{else}}
<th scope="row"><input aria-label="{{t "Link Title" }}" type="text" class="ic-Input" maxlength="255" name="link_titles[]" value="{{title}}"></th>
{{/if}}
<td aria-hidden="true">→</td>
<td><input aria-label="{{t "Link Url" }}" type="text" class="ic-Input" name="link_urls[]" value="{{url}}"></td>
<td><a href="#" class="remove_link_row" data-event="removeLinkRow"><span class="screenreader-only">{{t "Remove" }}</span><i class="icon-end"></i></a></td>
</tr>
| Make edit profile links table more accessible | Make edit profile links table more accessible
closes CNVS-30475
Test Plan:
- Make sure profiles are enabled
- Go to /profile
- Switch to the edit view
- Using a SR go into the links section
- If there is no text in the "Title" column then when
navigating through the table the columns in that row
should read "Link Title" as the row header
- If there is text in the "Title" column then the contents
of that column should read as the row header on the columns
in that row. For example, a row with "Google" and "http://google.com"
should read "Google" as the row header when on the URL.
Change-Id: I145f637e8c0c314a71cff3018e460d6a2bef85b4
Reviewed-on: https://gerrit.instructure.com/86943
Reviewed-by: Matthew Sessions <c7196251943e6fd2cf96a68670e4730c7e7c63b5@instructure.com>
QA-Review: Jahnavi Yetukuri <ed2b2672ccc2e59e56c0615df7f01b579202e014@instructure.com>
Tested-by: Jenkins
Product-Review: Aaron Cannon <25919c673621c006b735dcd5a28df63325948e2b@instructure.com>
| Handlebars | agpl-3.0 | venturehive/canvas-lms,matematikk-mooc/canvas-lms,sfu/canvas-lms,djbender/canvas-lms,SwinburneOnline/canvas-lms,SwinburneOnline/canvas-lms,SwinburneOnline/canvas-lms,djbender/canvas-lms,grahamb/canvas-lms,venturehive/canvas-lms,HotChalk/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,djbender/canvas-lms,djbender/canvas-lms,sfu/canvas-lms,HotChalk/canvas-lms,grahamb/canvas-lms,SwinburneOnline/canvas-lms,matematikk-mooc/canvas-lms,HotChalk/canvas-lms,grahamb/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,matematikk-mooc/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,matematikk-mooc/canvas-lms,venturehive/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,venturehive/canvas-lms,grahamb/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,HotChalk/canvas-lms,sfu/canvas-lms,grahamb/canvas-lms |
f479cac50527a62082274a4d3676e56d6e3da084 | assets/scripts/app/templates/first_sync.hbs | assets/scripts/app/templates/first_sync.hbs | This is the first time you log in to Travis and we're still syncing your repositories.
{{#if isSyncing}}
--- big indicator ---
{{else}}
Syncing has finished, you may check out your
{{#linkTo "profile.index"}}profile{{/linkTo}}
now
{{/if}}
| <div id="getting-started">
<h3>Just one more thing...</h3>
<p>
We're almost done getting you on board, just a few more seconds as we talk to GitHub to find out which
repositories belong to you.
</p>
<p>
If you're part of an organization that already has repositories set up on Travis CI, we'll take you to the list
once we're done.
</p>
<p>
If this is your first time on Travis CI, and you're not part of any existing organizations yet, we'll take you to
a handy getting started guide to get you off the ground quickly.
</p>
<p>
Now hold tight while we sync the last bits from GitHub, we should be done here any minute now.
</p>
{{#if isSyncing}}
--- big indicator ---
{{else}}
<h3>Great news!</h3>
<p>
We've successfully synchronized your details from GitHub. Now {{#linkTo "index.current"}}go get started!{{/linkTo}}
</p>
{{/if}}
</div>
| Add copy for the first sync page. | Add copy for the first sync page.
| Handlebars | mit | fotinakis/travis-web,mjlambert/travis-web,mjlambert/travis-web,Tiger66639/travis-web,fauxton/travis-web,jlrigau/travis-web,fotinakis/travis-web,travis-ci/travis-web,travis-ci/travis-web,fauxton/travis-web,Tiger66639/travis-web,jlrigau/travis-web,2947721120/travis-web,mjlambert/travis-web,travis-ci/travis-web,2947721120/travis-web,jlrigau/travis-web,2947721120/travis-web,fauxton/travis-web,fotinakis/travis-web,mjlambert/travis-web,2947721120/travis-web,Tiger66639/travis-web,fotinakis/travis-web,travis-ci/travis-web,fauxton/travis-web,jlrigau/travis-web,Tiger66639/travis-web |
d9ea21ef1de2f2c1d1e04341f4177e2ab6257a35 | framework/components/_preview.hbs | framework/components/_preview.hbs | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="{{ path '/styles.css' }}">
<link rel="stylesheet" href="{{ path '/_base.css' }}">
<link rel="stylesheet" href="{{ path '/_forms.css' }}">
<link rel="stylesheet" href="{{ path '/_buttons.css' }}">
<link rel="stylesheet" href="{{ path '/_tabs.css' }}">
<link rel="stylesheet" href="{{ path '/_messages.css' }}">
<title>Preview</title>
</head>
<body>
<div class="container">
{{{ yield }}}
</div>
<script src="{{ path '/bundle.js' }}"></script>
<script src="{{ path '/forms.js' }}"></script>
<script src="{{ path '/buttons.js' }}"></script>
<script src="{{ path '/tabs.js' }}"></script>
</body>
</html>
| <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="{{ path '/styles.css' }}">
<link rel="stylesheet" href="{{ path '/_base.css' }}">
<link rel="stylesheet" href="{{ path '/_forms.css' }}">
<link rel="stylesheet" href="{{ path '/_buttons.css' }}">
<link rel="stylesheet" href="{{ path '/_modal.css' }}">
<link rel="stylesheet" href="{{ path '/_messages.css' }}">
<title>Preview</title>
</head>
<body>
<div class="container">
{{{ yield }}}
</div>
<script src="{{ path '/bundle.js' }}"></script>
<script src="{{ path '/forms.js' }}"></script>
<script src="{{ path '/buttons.js' }}"></script>
<script src="{{ path '/tabs.js' }}"></script>
<script src="{{ path '/modal.js' }}"></script>
</body>
</html>
| Add modal css and js to fractal. | Add modal css and js to fractal.
| Handlebars | mit | catchdigital/catchify |
d0a3f8755e065e987ebaf22d1330baa6296680eb | src/main/web/templates/handlebars/partials/language-toggle.handlebars | src/main/web/templates/handlebars/partials/language-toggle.handlebars | {{!-- Urls for different language versions of the current page --}}
{{#if_eq language "en"}}
//{{#if (containsAny location.hostname "ons.gov.uk" "local.onsdigital.co.uk")}}www.{{/if}}{{replace location.hostname "cy." ""}}{{uri}}{{> list/partials/parameters}}
{{/if_eq}}
{{#if_eq language "cym"}}
//cy.{{replace location.hostname "www." ""}}{{uri}}{{> list/partials/parameters}}
{{/if_eq}} | {{!-- Urls for different language versions of the current page --}}
{{#if_eq language "en"}}
//{{#if (containsAny location.hostname "ons.gov.uk" "dev.onsdigital.co.uk")}}www.{{/if}}{{replace location.hostname "cy." ""}}{{uri}}{{> list/partials/parameters}}
{{/if_eq}}
{{#if_eq language "cym"}}
//cy.{{replace location.hostname "www." ""}}{{uri}}{{> list/partials/parameters}}
{{/if_eq}} | Update local onsdigital URL to dev in language toggle | Update local onsdigital URL to dev in language toggle
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
26790d0f6bac41da70590479f1910ff8a9f3a4a3 | app/components/date-navigation/template.hbs | app/components/date-navigation/template.hbs | <div class="btn-group">
<button data-test-previous title="Previous" class="btn btn-default" {{action 'setPrevious'}}>
{{fa-icon 'arrow-left'}}
</button>
<button data-test-today title="Today" class="btn btn-default" {{action 'setToday'}}>
{{fa-icon 'arrow-down'}}
</button>
<button data-test-next title="Next" class="btn btn-default" {{action 'setNext'}}>
{{fa-icon 'arrow-right'}}
</button>
</div>
{{sy-datepicker-btn value=current on-change=(action on-change)}}
| <div class="btn-group">
<button data-test-previous title="Previous day" class="btn btn-default" {{action 'setPrevious'}}>
{{fa-icon 'arrow-left'}}
</button>
<button data-test-today title="Today" class="btn btn-default" {{action 'setToday'}}>
Today
</button>
<button data-test-next title="Next day" class="btn btn-default" {{action 'setNext'}}>
{{fa-icon 'arrow-right'}}
</button>
</div>
{{sy-datepicker-btn value=current on-change=(action on-change)}}
| Use clearer wording for the date navigation on the tracking page | Use clearer wording for the date navigation on the tracking page
| Handlebars | agpl-3.0 | adfinis-sygroup/timed-frontend,anehx/timed-frontend,anehx/timed-frontend,adfinis-sygroup/timed-frontend,adfinis-sygroup/timed-frontend |
c0d51588528cd7c48e78ebf470042f8566723e99 | app/user-quickfiles/template.hbs | app/user-quickfiles/template.hbs | {{title title}}
{{quickfile-nav user=model onQuickfiles=true}}
<div class='quickfiles-content container'>
<h2><a href="{{model.links.html}}">{{model.fullName}}</a>'s Quick Files</h2>
<h5><i>Files uploaded here are <b>publicly accessible</b> and easy to share with others using the share link.</i></h5>
{{file-browser user=model openFile=(action 'openFile')}}
</div>
| {{title title}}
{{quickfile-nav user=model onQuickfiles=true}}
<div class='quickfiles-content container'>
<h5><i>Files uploaded here are <b>publicly accessible</b> and easy to share with others using the share link.</i></h5>
{{file-browser user=model openFile=(action 'openFile')}}
</div>
| Remove fullName's Quick Files header | Remove fullName's Quick Files header
| Handlebars | apache-2.0 | hmoco/ember-osf-web,hmoco/ember-osf-web,hmoco/ember-osf-web |
8e4c85d74498ad7c0e613bfd6be506ae278ab115 | handlebars/partials/json-schema/properties.hbs | handlebars/partials/json-schema/properties.hbs | {{!Renders json-schema object properties.}}
<section class="json-schema-properties">
<dl>
{{#each properties}}
<dt>
{{!Single property, default type is "object"}}
<span class="json-property-name">{{@key}}:</span>
{{>json-schema/datatype}}
</dt>
<dd>
{{#ifeq @key ../discriminator}}
<span class="json-property-discriminator"></span>
{{/ifeq}}
{{#ifcontains ../required @key}}
<span class="json-property-required"></span>
{{/ifcontains}}
{{md description}}
{{!Show details of nested property schema}}
<div class="json-inner-schema">
{{>json-schema/body $ref="" description=""}}
</div>
</dd>
{{/each}}
</dl>
</section>
| {{!Renders json-schema object properties.}}
<section class="json-schema-properties">
<dl>
{{#each properties}}
<dt>
{{!Single property, default type is "object"}}
<span class="json-property-name">{{@key}}:</span>
{{>json-schema/datatype}}
{{#ifcontains ../required @key}}
<span class="json-property-required"></span>
{{/ifcontains}}
{{#ifeq @key ../discriminator}}
<span class="json-property-discriminator"></span>
{{/ifeq}}
</dt>
<dd>
{{md description}}
{{!Show details of nested property schema}}
<div class="json-inner-schema">
{{>json-schema/body $ref="" description=""}}
</div>
</dd>
{{/each}}
</dl>
</section>
| Move badges "discriminitor", "required" closer to the property name | Move badges "discriminitor", "required" closer to the property name
| Handlebars | mit | bootprint/bootprint-json-schema,nknapp/bootprint-json-schema,Sauradyuti/bootprint-json-schema,Sauradyuti/bootprint-json-schema,nknapp/bootprint-json-schema,bootprint/bootprint-json-schema |
fbf30d9a0e607da1ef1c7efbac4fc4e25c705454 | partials/learn/sidebar.handlebars | partials/learn/sidebar.handlebars | <div class="siteSidebar S-flexItem-noFlex spu-background-light3 spu-padStart-20">
<div class="so-siteHeader">
{{> siteLogo }}
</div>
<div>
<h2 class="mainSectionTitle spu-color-dark2">Learn</h2>
</div>
<div class="spu-borderTop-1 spu-borderColor-light2 spu-padTop-20">
<ul class="pageNavList">
{{>sidebarSubMenu title="Get Started" glob="learn/get-started/*.html"}}
{{>sidebarSubMenu title="Concepts" glob="learn/concepts/*.html"}}
{{#sidebarSubMenu "Integration Guides"}}
<li class="pageNavList__item">TODO</li>
{{/sidebarSubMenu}}
{{#sidebarSubMenu "Horizon"}}
<li class="pageNavList__item">TODO</li>
{{/sidebarSubMenu}}
{{#sidebarSubMenu "Stellar Core"}}
<li class="pageNavList__item">TODO</li>
{{/sidebarSubMenu}}
</ul>
</div>
</div>
| <div class="siteSidebar S-flexItem-noFlex spu-background-light3 spu-padStart-20">
<div class="so-siteHeader">
{{> siteLogo }}
</div>
<div>
<h2 class="mainSectionTitle spu-color-dark2">Learn</h2>
</div>
<div class="spu-borderTop-1 spu-borderColor-light2 spu-padTop-20">
<ul class="pageNavList">
{{>sidebarSubMenu title="Get Started" glob="learn/get-started/*.html"}}
{{>sidebarSubMenu title="Concepts" glob="learn/concepts/*.html"}}
{{#sidebarSubMenu "Integration Guides"}}
<li class="pageNavList__item">TODO</li>
{{/sidebarSubMenu}}
{{#sidebarSubMenu "Horizon"}}
{{#eachFile "horizon/learn/*.html"}}
<li class="pageNavList__item"><a href="/{{path}}">{{file.title}}</a></li>
{{/eachFile}}
{{#sidebarSubMenu "Tutorials"}}
{{#eachFile "horizon/learn/tutorials/*.html"}}
<li class="pageNavList__item"><a href="/{{path}}">{{file.title}}</a></li>
{{/eachFile}}
{{/sidebarSubMenu}}
{{/sidebarSubMenu}}
{{>sidebarSubMenu title="Stellar Core" glob="stellar-core/*.html"}}
</ul>
</div>
</div>
| Add horizon and stellar-core learn submenus | Add horizon and stellar-core learn submenus
| Handlebars | apache-2.0 | stellar/developers,stellar/developers |
695652fff41eb5d5130b652851418a48ce9277bc | src/main/web/templates/handlebars/highcharts/config/base/simple-chart-config.handlebars | src/main/web/templates/handlebars/highcharts/config/base/simple-chart-config.handlebars | {{!-- Charts with an array of series data inherits from this base template --}}
{{#partial "chart-config"}}
options.series=[{{#each series}}{
name: "{{{sub (sup this)}}}",
data: [{{#each data}}{{num (lookup this ../this)}},{{/each}}]
},{{/each}} ];
{{#block "additional-chart-config"}}
{{/block}}
{{/partial}}
{{!-- This denotes the template inherits from base-chart-config--}}
{{> highcharts/config/base/base-chart-config}} | {{!-- Charts with an array of series data inherits from this base template --}}
{{!-- NOTE: the data output needs to be a continous string and whitespace (line returns) break it --}}
{{#partial "chart-config"}}
options.series=[{{#each series}}{
name: "{{{sub (sup this)}}}",
data: [{{#each data}} {{#if_eq highlight (lookup this headers.0)}}{name:"{{{sup (sub (lookup this headers.0))}}}",color:'#ff0000', y:{{num (lookup this ../this)}} },{{else}} {{num (lookup this ../this)}}, {{/if_eq}}{{/each}}]
},{{/each}} ];
{{#block "additional-chart-config"}}
{{/block}}
{{/partial}}
{{!-- This denotes the template inherits from base-chart-config--}}
{{> highcharts/config/base/base-chart-config}} | Update series data to show highlight | Update series data to show highlight
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
fa7cee729c40ce0f8996622ea5b18aaaf426433d | data/web/keybindings/keybinding.hbs | data/web/keybindings/keybinding.hbs | <div class="documentation-item {{#if remoteScripting}}remote-scripting{{else}}local-scripting{{/if}}">
<div class="row">
<div class="col-lg-12">
<p>
<a href="#{{urlify key}}" name="{{urlify key}}">
<span class="documentation-key">{{key}}</span> <span class="documentation-type">{{#if remoteScripting}}Remote scripting{{else}}Local scripting{{/if}}</span>
</a>
<p>{{script}}</p>
</p>
</div>
</div>
</div>
| <div class="documentation-item {{#if remoteScripting}}remote-scripting{{else}}local-scripting{{/if}}">
<div class="row">
<div class="col-lg-12">
<p>
<a href="#{{urlify key}}" name="{{urlify key}}">
<span class="documentation-key">{{key}}</span> <span class="documentation-type">{{#if remoteScripting}}Remote scripting{{else}}Local scripting{{/if}}</span>
</a>
<p>{{script}}</p>
<p>{{documentation}}</p>
</p>
</div>
</div>
</div>
| Add documentation to Keybinding doc file | Add documentation to Keybinding doc file
| Handlebars | mit | OpenSpace/OpenSpace,OpenSpace/OpenSpace,OpenSpace/OpenSpace,OpenSpace/OpenSpace |
50d92afcfab9a6c05835bb14f09e341d11a6c6a1 | ui/app/templates/allocations/allocation/task/subnav.hbs | ui/app/templates/allocations/allocation/task/subnav.hbs | <div class="tabs is-subnav">
<ul>
<li>{{#link-to "allocations.allocation.task.index" model.allocation model activeClass="is-active"}}Overview{{/link-to}}</li>
</ul>
</div>
| <div class="tabs is-subnav">
<ul>
<li>{{#link-to "allocations.allocation.task.index" model.allocation model activeClass="is-active"}}Overview{{/link-to}}</li>
<li>{{#link-to "allocations.allocation.task.logs" model.allocation model activeClass="is-active"}}Logs{{/link-to}}</li>
</ul>
</div>
| Add link to the task logs page | Add link to the task logs page
| Handlebars | mpl-2.0 | burdandrei/nomad,nak3/nomad,burdandrei/nomad,nak3/nomad,hashicorp/nomad,burdandrei/nomad,Ashald/nomad,dvusboy/nomad,dvusboy/nomad,burdandrei/nomad,Ashald/nomad,nak3/nomad,dvusboy/nomad,burdandrei/nomad,dvusboy/nomad,dvusboy/nomad,burdandrei/nomad,hashicorp/nomad,Ashald/nomad,nak3/nomad,nak3/nomad,dvusboy/nomad,Ashald/nomad,hashicorp/nomad,hashicorp/nomad,Ashald/nomad,Ashald/nomad,nak3/nomad,nak3/nomad,hashicorp/nomad,dvusboy/nomad,Ashald/nomad,burdandrei/nomad,hashicorp/nomad |
dbf4643836b0e6d9460dd49dd7b16229d226b455 | partials/loop.hbs | partials/loop.hbs | {{!-- This is the post loop - each post will be output using this markup --}}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{title}}</a></h2>
</header>
{{#if image}}
<a class="read-more" href="{{url}}">
<section class="post-image" style="background-image: url('{{image}}')" alt="{{{title}}}"></section>
</a>
{{/if}}
<section class="post-excerpt">
<a class="read-more" href="{{url}}"><p>{{excerpt words="32"}} »</p></a>
</section>
<footer class="post-meta">
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format="YYYY-MM-DD HH:mm"}}">{{date format="HH:mm, DD MMMM YYYY"}}</time>
{{author}}
</footer>
</article>
{{/foreach}}
| {{!-- This is the post loop - each post will be output using this markup --}}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{title}}</a></h2>
</header>
{{#if image}}
<a class="read-more" href="{{url}}">
<section class="post-image" style="background-image: url('{{image}}')" alt="{{{title}}}"></section>
</a>
{{/if}}
<section class="post-excerpt">
<a class="read-more" href="{{url}}"><p>{{excerpt words="32"}} »</p></a>
</section>
<footer class="post-meta">
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format="YYYY-MM-DD HH:mm"}}">{{date format="HH:mm, DD MMMM YYYY"}}</time>
{{^if featured}}
{{author}}
{{/if}}
</footer>
</article>
{{/foreach}}
| Hide author on index for non-featured posts | Hide author on index for non-featured posts
| Handlebars | mit | ArstanWhitebeard/high-heart,ArstanWhitebeard/high-heart,ArstanWhitebeard/high-heart |
94a91a295e72045e24753bf0b264040c0ba539cf | tests/dummy/app/templates/index.hbs | tests/dummy/app/templates/index.hbs | <div id="translated">{{t "test"}}</div>
<div id="translated-with-args0">{{t "testarg" count=0}}</div>
<div id="translated-with-args1">{{t "testarg" count=1}}</div>
<div id="translated-with-args3">{{t "testarg" count=3}}</div>
<div id="translated-with-bound-args">{{t "testarg" countBinding=model.count}}</div>
<div><a id="change-language-link" href="#" {{action 'changeLanguage'}}>Change Language</a></div>
| <div id="translated">{{t "test"}}</div>
<div id="translated-with-args0">{{t "testarg" count=0}}</div>
<div id="translated-with-args1">{{t "testarg" count=1}}</div>
<div id="translated-with-args3">{{t "testarg" count=3}}</div>
<div id="translated-with-bound-args">{{t "testarg" count=count}}</div>
<div><a id="change-language-link" href="#" {{action 'changeLanguage'}}>Change Language</a></div>
| Remove Old-Style fooBinding Hash Param | Remove Old-Style fooBinding Hash Param
Change the old-style countBinding hash parameter in index.hbs
so just count.
| Handlebars | mit | OCTRI/ember-i18next,OCTRI/ember-i18next |
2272919e0687179adcbf4d00e04b19a9fb52ba9b | app/templates/characters/index.hbs | app/templates/characters/index.hbs | <div class="clearfix mxn2">
<div class="col col-8 px2">
<div class="px2">
<form {{action "search" on="submit"}}>
{{input value=queryField classNames="field-light half-width mb0" placeholder='Search for a character...'}}
<input type="submit" value="Search" class="button ml2" />
</form>
</div>
</div>
<div class="col col-4 px2">
<div class="px2 right">
<h3>{{meta.total}} characters</h3>
</div>
</div>
</div>
<div class="clearfix mxn2">
<div class="col col-12 p2 mx-auto">
<div class="flex flex-wrap flex-stretch p1">
{{#each model as |character|}}
{{characters/character-card character=character}}
{{/each}}
</div>
</div>
</div>
<div class="clearfix">
<div class="col col-12 mb4 center">
<button class="button button-big button-next-page" {{action 'next'}}>Next ></button>
</div>
</div>
| <div class="clearfix mxn2">
<div class="col col-8 px2">
<div class="px2">
<form {{action "search" on="submit"}}>
{{input value=queryField classNames="field-light half-width mb0" placeholder='Search for a character...'}}
<input type="submit" value="Search" class="button ml2" />
</form>
</div>
</div>
<div class="col col-4 px2">
<div class="px2 right">
<h3>{{meta.total}} characters</h3>
</div>
</div>
</div>
<div class="clearfix mxn2">
<div class="col col-12 p2 mx-auto">
<div class="flex flex-wrap flex-stretch p1">
{{#each model as |character|}}
{{characters/character-card character=character}}
{{else}}
<p>No superheroes to see at the moment...</p>
{{/each}}
</div>
</div>
</div>
<div class="clearfix">
<div class="col col-12 mb4 center">
<button class="button button-big button-next-page" {{action 'next'}}>Next ></button>
</div>
</div>
| Add message if no characters returned | Add message if no characters returned
| Handlebars | mit | dtt101/superhero,dtt101/superhero |
c90a5afb6ef047bd8c29be0971ed384756cc1a9b | index.hbs | index.hbs | {{!< default}}
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
{{!-- The big featured header --}}
<header class="main-header {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}">
<nav class="main-nav overlay clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">{{@blog.title}}</h1>
<h2 class="page-description">{{@blog.description}}</h2>
<h3 class="page-description"><a href="http://martinnormark.com/ios-app-development/">iOS</a> & Web Developer</h3>
</div>
</div>
<a class="scroll-down icon-arrow-left" href="#content" data-offset="-45"><span class="hidden">Scroll Down</span></a>
</header>
{{!-- The main content area on the homepage --}}
<main id="content" class="content" role="main">
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
{{> "loop"}}
</main>
| {{!< default}}
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
{{!-- The big featured header --}}
<header class="main-header {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}">
<nav class="main-nav overlay clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
{{#if @blog.navigation}}
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
{{/if}}
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">{{@blog.title}}</h1>
<h2 class="page-description">{{@blog.description}}</h2>
</div>
</div>
<a class="scroll-down icon-arrow-left" href="#content" data-offset="-45"><span class="hidden">Scroll Down</span></a>
</header>
{{!-- The main content area on the homepage --}}
<main id="content" class="content" role="main">
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
{{> "loop"}}
</main>
| Revert "Add link to page header" | Revert "Add link to page header"
This reverts commit 8ac3c0dc18f330febbaff658d9d15ddce612fe1f.
| Handlebars | mit | martinnormark/Casper,martinnormark/Casper |
ab08accd7c95ea4fcd7d1882ef62bfb9e92d2533 | src/main/web/templates/handlebars/partials/latest-release.handlebars | src/main/web/templates/handlebars/partials/latest-release.handlebars | {{#unless (endsWith (parentPath uri) "previous")}} {{!-- If not a previous version workout the latest link --}}
{{#if description.latestRelease}}
<p class="alert__title">This is the latest release</p> <a class="btn btn--primary print--hide" href="{{parentPath uri}}/previousReleases">View previous releases</a>
{{else}}
{{#resolve (concat (parentPath uri) "/latest") filter="title"}}
<p class="alert__title">This is not the latest release</p> <a class="btn btn--primary print--hide" href="{{uri}}">View latest release</a>
{{/resolve}}
{{/if}}
{{else}}{{!-- If an older version of any release link to latest version of that release--}}
<div class="alert--warning">
<div class="alert--warning__icon">!</div>
<h2 class="alert--warning__title">This has been superseded</h2> <a class="btn btn--primary print--hide alert--warning__content" href="{{parentPath (parentPath uri)}}">View corrected version</a>
</div>
{{/unless}} | {{#unless (endsWith (parentPath uri) "previous")}} {{!-- If not a previous version workout the latest link --}}
{{#if description.latestRelease}}
<p class="alert__title">This is the latest release</p> <a class="btn btn--primary print--hide" href="{{parentPath uri}}/previousReleases">View previous releases</a>
{{else}}
{{#resolve (concat (parentPath uri) "/latest") filter="title"}}
<p class="alert__title">This is not the latest release</p> <a class="btn btn--primary print--hide" href="{{uri}}">View latest release</a>
{{/resolve}}
{{/if}}
{{else}}{{!-- If an older version of any release link to latest version of that release--}}
<div class="alert--warning">
<div class="alert--warning__icon"></div>
<h2 class="alert--warning__title">This has been superseded</h2> <a class="btn btn--primary print--hide alert--warning__content" href="{{parentPath (parentPath uri)}}">View corrected version</a>
</div>
{{/unless}} | Remove exclamation from 'latest release' alert and replace with :after | Remove exclamation from 'latest release' alert and replace with :after
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
3bbb0358918496088e4193eb90d3d925ee9a3c1e | app/assets/javascripts/discourse/templates/components/home-logo.js.handlebars | app/assets/javascripts/discourse/templates/components/home-logo.js.handlebars | <a href='#'>
{{#if showSmallLogo}}
{{#if smallLogoUrl}}
<img class="logo-small" src="{{unbound smallLogoUrl}}" width="33" height="33">
{{else}}
<i class="fa fa-home"></i>
{{/if}}
{{else}}
{{#if bigLogoUrl}}
<img id="site-logo" class="logo-big" src="{{unbound bigLogoUrl}}" alt="{{unbound title}}">
{{else}}
<h2 id="site-text-logo" class="text-logo">{{unbound title}}</h2>
{{/if}}
{{/if}}
</a>
| <a href="/">
{{#if showSmallLogo}}
{{#if smallLogoUrl}}
<img class="logo-small" src="{{unbound smallLogoUrl}}" width="33" height="33">
{{else}}
<i class="fa fa-home"></i>
{{/if}}
{{else}}
{{#if bigLogoUrl}}
<img id="site-logo" class="logo-big" src="{{unbound bigLogoUrl}}" alt="{{unbound title}}">
{{else}}
<h2 id="site-text-logo" class="text-logo">{{unbound title}}</h2>
{{/if}}
{{/if}}
</a>
| Change logo link to / | Change logo link to /
| Handlebars | mit | natefinch/discourse,natefinch/discourse |
135b9afb4311914245079ab31b38d935955a65b7 | assets/scripts/app/templates/ssh_key/_form.hbs | assets/scripts/app/templates/ssh_key/_form.hbs | <form class="ssh-key" {{action "save" on="submit"}}>
<div class="field">
<label>Description:</label>
{{input value=description}}
</div>
{{#travis-field "value"}}
<label class="value">Value:</label>
{{textarea value=value}} {{travis-errors "value"}}
{{/travis-field}}
<div class="actions">
<input type="submit" {{bind-attr value=actionType class=":submit-ssh-key isSaving:saving" disabled=isSaving}} />
<span class="or">or</span>
<a href="#" class="cancel-ssh-key" {{action "cancel"}}>Cancel</a>
</div>
</form>
| <form class="ssh-key" {{action "save" on="submit"}}>
<div class="field">
<label>Description:</label>
{{input value=description}}
</div>
{{#travis-field "value"}}
<label class="value">Private Key:</label>
{{textarea value=value}} {{travis-errors "value"}}
{{/travis-field}}
<div class="actions">
<input type="submit" {{bind-attr value=actionType class=":submit-ssh-key isSaving:saving" disabled=isSaving}} />
<span class="or">or</span>
<a href="#" class="cancel-ssh-key" {{action "cancel"}}>Cancel</a>
</div>
</form>
| Use "Private Key" as a label for the key field. | Use "Private Key" as a label for the key field.
| Handlebars | mit | fotinakis/travis-web,mjlambert/travis-web,Tiger66639/travis-web,2947721120/travis-web,mjlambert/travis-web,fauxton/travis-web,Tiger66639/travis-web,travis-ci/travis-web,jlrigau/travis-web,2947721120/travis-web,Tiger66639/travis-web,jlrigau/travis-web,mjlambert/travis-web,travis-ci/travis-web,2947721120/travis-web,jlrigau/travis-web,fotinakis/travis-web,jlrigau/travis-web,Tiger66639/travis-web,fotinakis/travis-web,fauxton/travis-web,fauxton/travis-web,fauxton/travis-web,2947721120/travis-web,fotinakis/travis-web,travis-ci/travis-web,mjlambert/travis-web,travis-ci/travis-web |
0ddf0a9229173ad03e632bd3cfb2c7c97d90e656 | src/main/web/templates/handlebars/partials/related/new-data.handlebars | src/main/web/templates/handlebars/partials/related/new-data.handlebars |
{{#if_all relatedDatasets showDataList}}
<div class="print--hide">
{{> partials/related/data-list}}
</div>
{{/if_all}}
{{#if_any relatedData relatedDatasets datasets (eq type "dataset_landing_page") (eq type "timeseries")}}
<div class="{{#if_all relatedDatasets showDataList}}background--mercury padding-left-sm--1 padding-left-md--1 padding-right-sm--1 padding-right-md--1 padding-bottom-sm--2 padding-bottom-md--2{{/if_all}} margin-bottom-sm--2 margin-bottom-md--2">
<a class="btn btn--primary btn--full-width" href="{{relatedUri}}">
{{!-- if "parent" get the parent title --}}
{{#if_eq relatedTitle "parent"}}
{{#last breadcrumb}}
View all data related to {{description.title}}
{{/last}}
{{/if_eq}}
{{!-- if "self" use page title and edition if one exists --}}
{{#if_eq relatedTitle "self"}}
View all data related to this {{> type-label}}
{{/if_eq}}
{{!-- if not "self" or "parent" use custom title --}}
{{#if_all (ne relatedTitle "parent") (ne relatedTitle "self")}}
{{relatedTitle}}
{{/if_all}}
</a>
</div>
{{/if_any}} |
{{#if_all relatedDatasets showDataList}}
<div class="print--hide">
{{> partials/related/data-list}}
</div>
{{/if_all}}
{{#if_any relatedData relatedDatasets datasets (eq type "dataset_landing_page") (eq type "timeseries")}}
<div class="{{#if_all relatedDatasets showDataList}}background--mercury padding-left-sm--1 padding-left-md--1 padding-right-sm--1 padding-right-md--1 padding-bottom-sm--2 padding-bottom-md--2{{/if_all}} margin-bottom-sm--2 margin-bottom-md--2">
<a class="btn btn--primary btn--full-width" href="{{relatedUri}}">
{{!-- if "parent" get the parent title --}}
{{#if_eq relatedTitle "parent"}}
{{#last breadcrumb}}
View all data related to {{description.title}}
{{/last}}
{{/if_eq}}
{{!-- if "self" use page title and edition if one exists --}}
{{#if_eq relatedTitle "self"}}
View all data used in this {{> type-label}}
{{/if_eq}}
{{!-- if not "self" or "parent" use custom title --}}
{{#if_all (ne relatedTitle "parent") (ne relatedTitle "self")}}
{{relatedTitle}}
{{/if_all}}
</a>
</div>
{{/if_any}} | Change related data CTA wording | Change related data CTA wording
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
13237935a2f07910d8594063538b79bfe8fff39a | app/templates/about-you.hbs | app/templates/about-you.hbs | ShareDrop lets you share files with others.
Other people will see you as
<b>{{you.label}}</b> | ShareDrop lets you share files with others.
Other people will see you as <b>{{you.label}}</b>. | Add missing . at the end | Add missing . at the end
| Handlebars | mit | cowbell/sharedrop,cowbell/sharedrop |
9219720b6a449d19eaba92cb4eb620c75b5b7b76 | samples/apps/org.wso2.carbon.uuf.sample.pets-store.app/src/main/pages/pets/{id}.hbs | samples/apps/org.wso2.carbon.uuf.sample.pets-store.app/src/main/pages/pets/{id}.hbs | {{secured}}
{{layout "org.wso2.carbon.uuf.sample.foundation.ui.main"}}
{{title @config.appName " | " @pathParams.id}}
{{#fillZone "content"}}
{{css "css/pet-store.css"}}
<div class="page-header">
<h1>{{t "pets-store.pet.info"}}</h1>
</div>
<div class="col-md-8">
{{fragment "thumbnail"}}
<br />
<div class="pet-info">
{{t "pets-store.pet.name"}} : {{@pathParams.id}}
</div>
</div>
<div class="col-md-4">
{{fragment "org.wso2.carbon.uuf.sample.store-common.tags"}}
</div>
{{/fillZone}}
| {{secured}}
{{layout "org.wso2.carbon.uuf.sample.foundation.ui.main"}}
{{title @config.appName " | " @pathParams.id}}
{{#fillZone "content"}}
{{css "css/pet-store.css"}}
<div class="page-header">
<h1>{{t "pets-store.pet.info"}}</h1>
</div>
<div class="col-md-8">
{{fragment "thumbnail"}}
<br />
<div class="pet-info">
{{t "pets-store.pet.name"}} : {{@pathParams.id}}
</div>
</div>
<div class="col-md-4">
{{fragment "org.wso2.carbon.uuf.sample.store-common.ui.tags"}}
</div>
{{/fillZone}}
| Fix bug in pet store | Fix bug in pet store
| Handlebars | apache-2.0 | wso2/carbon-uuf,sajithar/carbon-uuf,this/carbon-uuf,wso2/carbon-uuf,this/carbon-uuf,wso2/carbon-uuf,sajithar/carbon-uuf,wso2/carbon-uuf,this/carbon-uuf,this/carbon-uuf |
714e5d261e58edf4fb5d9cfff81a94ca540f778c | templates/confluence/angular1x-helloworld/src/main/spark/__spa.key__/src/js/app.js.handlebars | templates/confluence/angular1x-helloworld/src/main/spark/__spa.key__/src/js/app.js.handlebars | (function () {
angular.module("{{spa.key}}", [])
{{#isDialogApp}}
.run(function ($rootScope) {
$rootScope.app = {
helpLink: 'http://example.com',
title: '{{spa.name}} SPARK App',
footer: {
text: 'Powered by SPARK and Angular ' + angular.version.full + '.'
}
};
})
{{/isDialogApp}}
.controller("HelloController", function ($scope) {
$scope.user = {
'name': 'World'
};
});
})();
| (function () {
angular.module("{{spa.key}}", [])
{{#isDialogApp}}
.run(function ($rootScope) {
$rootScope.app = {
helpLink: 'http://example.com',
title: '{{spa.name}} SPARK App',
footer: {
text: 'Powered by SPARK and Angular ' + angular.version.full + '.'
}
};
})
{{/isDialogApp}}
.controller("HelloController", function ($scope) {
$scope.user = {
'name': 'World'
};
{{#isAdminOrSpaceApp}}
$scope.angularVersion = angular.version.full;
{{/isAdminOrSpaceApp}}
});
})();
| Fix missing angular version in footer | Fix missing angular version in footer
| Handlebars | mit | K15t/spark-tools |
abe72dbb2cf85fdea654da8f83d5f2f137d0e1ab | src/main/web/templates/handlebars/highcharts/config/confidence-interval-chart-config.handlebars | src/main/web/templates/handlebars/highcharts/config/confidence-interval-chart-config.handlebars | {{#partial "chart-config"}}
options.legend.enabled=false;
//clear the main chart tooltip
options.tooltip = {};
options.series=[{
name: "{{{sub (sup headers.1)}}}",
{{#if scatter}}type: "scatter",{{else}}
type: "{{#if rotated}}bar{{else}}column{{/if}}",
{{/if}}
data: [{{#each data}}
{{#if_eq highlight (lookup categories @index)}}
{color:HIGHLIGHT_COLOUR,y:{{num (lookup this headers.1)}} },
{{else}}
{{num (lookup this headers.1)}},
{{/if_eq}}
{{/each}}
] ,
tooltip: {
pointFormat: '<span style="font-weight: bold; color: {series.color}">{point.category}</span>: <b>{point.y:.1f}</b> '
}
},{
name: "{{{sub (sup headers.2)}}} - {{sub (sup headers.3)}}",
type: "errorbar",
data: [{{#each data}}[{{num (lookup this headers.2)}},{{num (lookup this headers.3)}}],{{/each}}]
}];
{{/partial}}
{{!-- This denotes the template inherits from base-chart-config--}}
{{> highcharts/config/base/base-chart-config}} | {{#partial "chart-config"}}
options.legend.enabled=false;
//clear the main chart tooltip
options.tooltip = {};
options.series=[{
name: "{{{sub (sup headers.1)}}}",
{{#if scatter}}type: "scatter",{{else}}
type: "{{#if rotated}}bar{{else}}column{{/if}}",
{{/if}}
data: [{{#each data}}
{{#if_eq highlight (lookup categories @index)}}
{color:HIGHLIGHT_COLOUR,y:{{num (lookup this headers.1)}} },
{{else}}
{{num (lookup this headers.1)}},
{{/if_eq}}
{{/each}}
],
tooltip: {
headerFormat: '<span style="font-weight: bold;">{series.name}</span><br>',
pointFormat: '<span style="font-weight: bold; color: {series.color}">{point.category}</span>: <b>{point.y:.1f}</b> '
}
},{
name: "{{{sub (sup headers.2)}}} - {{sub (sup headers.3)}}",
type: "errorbar",
data: [{{#each data}}[{{num (lookup this headers.2)}},{{num (lookup this headers.3)}}],{{/each}}]
}];
{{/partial}}
{{!-- This denotes the template inherits from base-chart-config--}}
{{> highcharts/config/base/base-chart-config}} | Add header to scatterplot tooltip | Add header to scatterplot tooltip
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
df2db717836a39118db021cd2462627248b44216 | engines/standard_tasks/app/assets/javascripts/standard_tasks/templates/overlays/publishing_related_questions_overlay.hbs | engines/standard_tasks/app/assets/javascripts/standard_tasks/templates/overlays/publishing_related_questions_overlay.hbs | <h1>Publishing Related Questions</h1>
<form>
<fieldset>
<ol>
<li class="question">
{{#question-radio ident="publishing_related_questions.submitted_in_conjunction"
task=model
displayContent=true
question="Is this manuscript being submitted in conjunction with another submission?"}}
{{#if view.selectedYes}}
<div class="dataset">
<div class="dataset-header">Please provide the title of that submission and the corresponding author.</div>
{{question-textarea ident="publishing_related_questions.submitted_in_conjunction.corresponding_title"
class="sub-question"
task=model
question="Title"}}
<br>
{{question-textarea ident="publishing_related_questions.submitted_in_conjunction.corresponding_author"
class="sub-question"
task=model
question="Corresponding author"}}
</div>
{{/if}}
{{/question-radio}}
</li>
</ol>
</fieldset>
</form>
| <h1>Publishing Related Questions</h1>
<form>
<fieldset>
<ol>
<li class="question">
{{#question-radio ident="publishing_related_questions.submitted_in_conjunction"
task=model
displayContent=true
question="Is this manuscript being submitted in conjunction with another submission?"}}
{{#if view.selectedYes}}
<div class="dataset">
<div class="dataset-header">Please provide the title of that submission and the corresponding author.</div>
{{question-input ident="publishing_related_questions.submitted_in_conjunction.corresponding_title"
class="sub-question"
task=model
question="Title"}}
<br>
{{question-input ident="publishing_related_questions.submitted_in_conjunction.corresponding_author"
class="sub-question"
task=model
question="Corresponding author"}}
</div>
{{/if}}
{{/question-radio}}
</li>
</ol>
</fieldset>
</form>
| Use question-input component instead of textarea. | Use question-input component instead of textarea.
| Handlebars | mit | johan--/tahi,johan--/tahi,johan--/tahi,johan--/tahi |
3e1eb12d3298ccf0ef650f9d4d750ba051902f91 | app/index.hbs | app/index.hbs | <!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>MH17 Travelogue</title>
<link rel="stylesheet" type="text/css" href="styles/app.css">
</head>
<body>
<main id="content">
<div id="map"></div>
<iframe id="iframe" width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https://soundcloud.com/correctiv_org/sets/mh17-eindrucke-aus-der-ostukraine&auto_play=false&buying=false&liking=false&download=false&sharing=true&show_artwork=true&show_comments=false&show_playcount=true&show_user=false&hide_related=false&visual=false&start_track=0&callback=true"></iframe>
</main>
<script src="https://w.soundcloud.com/player/api.js"></script>
<script src="bundle/app.js"></script>
</body>
</html>
| <!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>MH17 Travelogue</title>
<link rel="stylesheet" type="text/css" href="styles/app.css">
</head>
<body>
<main id="content">
<div id="map"></div>
<iframe id="iframe" width="100%" height="350" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https://soundcloud.com/correctiv_org/sets/mh17-eindrucke-aus-der-ostukraine&auto_play=false&buying=false&liking=false&download=false&sharing=true&show_artwork=true&show_comments=false&show_playcount=true&show_user=false&hide_related=false&visual=false&start_track=0&callback=true"></iframe>
</main>
<script src="https://w.soundcloud.com/player/api.js"></script>
<script src="bundle/app.js"></script>
</body>
</html>
| Reduce height of player to 350px | Reduce height of player to 350px | Handlebars | mit | correctiv/mh17-travelogue |
9eb6188dd87095543be05f751c71e4b2e967e59e | static/templates/hotspot_overlay.hbs | static/templates/hotspot_overlay.hbs | <div id="hotspot_{{name}}_overlay" class="hotspot overlay" data-overlay="hotspot_{{name}}_overlay">
<div class="hotspot-popover">
<div class="hotspot-popover-top">
<h1 class="hotspot-title">{{title}}</h1>
</div>
<div class="hotspot-popover-content">
<p class="hotspot-description">{{description}}</p>
</div>
<div class="hotspot-popover-bottom">
<img class="hotspot-img" alt=_("hotspot illustration") src="{{img}}" />
<button class="hotspot-confirm">{{t 'Got it!' }}</button>
</div>
</div>
</div>
| <div id="hotspot_{{name}}_overlay" class="hotspot overlay" data-overlay="hotspot_{{name}}_overlay">
<div class="hotspot-popover">
<div class="hotspot-popover-top">
<h1 class="hotspot-title">{{title}}</h1>
</div>
<div class="hotspot-popover-content">
<p class="hotspot-description">{{description}}</p>
</div>
<div class="hotspot-popover-bottom">
<img class="hotspot-img" src="{{img}}" />
<button class="hotspot-confirm">{{t 'Got it!' }}</button>
</div>
</div>
</div>
| Remove useless and malformed alt text. | hotspots: Remove useless and malformed alt text.
Since it was introduced in 5ce0db9f433a6dcf7beea42b295f00e27d060933,
we've had alt text for the hotspots illustration with an invalid
translation tag.
Fix this by removing the alt text, since the image has no functional
effect and so the right answer should it fail to load or the user is
visually impaired is to ignore it.
| Handlebars | apache-2.0 | rht/zulip,hackerkid/zulip,rht/zulip,rht/zulip,andersk/zulip,zulip/zulip,andersk/zulip,punchagan/zulip,eeshangarg/zulip,hackerkid/zulip,kou/zulip,punchagan/zulip,zulip/zulip,eeshangarg/zulip,eeshangarg/zulip,kou/zulip,andersk/zulip,punchagan/zulip,punchagan/zulip,rht/zulip,zulip/zulip,kou/zulip,kou/zulip,andersk/zulip,kou/zulip,punchagan/zulip,kou/zulip,zulip/zulip,punchagan/zulip,zulip/zulip,hackerkid/zulip,andersk/zulip,andersk/zulip,eeshangarg/zulip,rht/zulip,hackerkid/zulip,hackerkid/zulip,rht/zulip,punchagan/zulip,rht/zulip,kou/zulip,zulip/zulip,eeshangarg/zulip,zulip/zulip,hackerkid/zulip,hackerkid/zulip,andersk/zulip,eeshangarg/zulip,eeshangarg/zulip |
b92e33c628f2e934dece359dcec0d7fa15335e58 | tests/framework/listing.handlebars | tests/framework/listing.handlebars | <!DOCTYPE html>
<html>
<head>
<title>Gobo Tests</title>
<script src='lib/test-harness.js'></script>
<style>
iframe {
width: 1px;
height: 1px;
position: absolute;
left: -500px;
}
.success:before {
content: "\2713 ";
color: green;
}
.failure:before {
content: "\2717 ";
color: red;
}
</style>
</head>
<body>
<h1>Tests</h1>
<ul>
{{#each suites}}
<li><a href='{{url}}'>{{suite}}</a>
<ul>
{{#each tests}}
<li>
<a test-case
test-suite='{{suite}}'
href='{{url}}'>
{{test}}
</a>
</li>
{{/each}}
</ul>
</li>
{{/each}}
</ul>
<script>
Harness.start(function (results) {
window.global_test_results = results;
});
</script>
</body>
</html>
| <!DOCTYPE html>
<html>
<head>
<title>Gobo Tests</title>
<script src='lib/test-harness.js'></script>
<style>
iframe {
width: 1px;
height: 1px;
position: absolute;
left: -500px;
}
.success:before {
content: "\2713 ";
color: green;
}
.failure:before {
content: "\2717 ";
color: red;
}
</style>
</head>
<body>
<h1>Tests</h1>
<ul>
{{#each suites}}
<li><a href='{{url}}'>{{suite}}</a>
<ul>
{{#each tests}}
<li>
<a test-case
test-suite='{{../suite}}'
href='{{url}}'>
{{test}}
</a>
</li>
{{/each}}
</ul>
</li>
{{/each}}
</ul>
<script>
Harness.start(function (results) {
window.global_test_results = results;
});
</script>
</body>
</html>
| Fix suite name in test harness | Fix suite name in test harness
| Handlebars | mit | GoboJS/Gobo,GoboJS/Gobo,GoboJS/Gobo |
88f014672aba7fbf14b8a71163d4a33a7f610ff4 | app/templates/me/pending-invites.hbs | app/templates/me/pending-invites.hbs | {{outlet}}
| {{ title 'Pending Invites' }}
<div id='crates-heading'>
{{svg-jar "gear"}}
<h1>Pending Owner Invites</h1>
</div>
<div id='my-invites'>
<div class='white-rows'>
{{#each model as |invite|}}
<div class='row'>
<div class='info'>
<h3>
{{#link-to 'crate' invite.crate_name}}
{{invite.crate_name}}
{{/link-to}}
</h3>
<p>
Invited by: {{invite.invited_by_username}}
</p>
<button class='small yellow-button'>Accept</button>
<button class='small yellow-button'>Deny</button>
<span class='date small'>{{moment-from-now invite.created_at}}</span>
</div>
</div>
{{/each}}
</div>
</div>
| Add html template such that results returned can be displayed | Add html template such that results returned can be displayed
| Handlebars | apache-2.0 | rust-lang/crates.io,rust-lang/crates.io,rust-lang/crates.io,rust-lang/crates.io |
029148c20c86fe2913539596b80bde5050931a06 | ember/app/templates/components/cesium-button.hbs | ember/app/templates/components/cesium-button.hbs | <button type="button" local-class="cesium-button" class="ol-unselectable" {{on "click" this.toggle}}>
{{#if enabled}}
<img src="../../images/2d.png">
{{else}}
<img src="../../images/3d.png">
{{/if}}
</button> | <button type="button" local-class="cesium-button" class="ol-unselectable" {{on "click" this.toggle}}>
{{#if @enabled}}
<img src="../../images/2d.png">
{{else}}
<img src="../../images/3d.png">
{{/if}}
</button> | Use `@` prefix for arguments | CesiumButton: Use `@` prefix for arguments
| Handlebars | agpl-3.0 | skylines-project/skylines,skylines-project/skylines,skylines-project/skylines,skylines-project/skylines |
68b44654752f08c4e676c75381753735402112a2 | partials/header.hbs | partials/header.hbs | <div class="main-header-background">
<header class="main-header">
<h1 class="brand">
<a href="https://topaxi.codes/">topaxi.codes</a>
</h1>
<nav class="main-menu">
<ul>
<li class="menu-item">
<a href="https://topaxi.ch/">Home</a>
</li>
<li class="menu-item">
<a href="https://topaxi.codes/">Blog</a>
</li>
</ul>
<ul>
<li class="menu-item">
<a href="https://topaxi.ch/about">About</a>
</li>
</ul>
</nav>
</header>
</div>
| <div class="main-header-background">
<header class="main-header">
<h1 class="brand">
<a href="https://topaxi.codes/">topaxi.codes</a>
</h1>
<nav class="main-menu">
<ul>
<li class="menu-item">
<a href="https://topaxi.ch/">Home</a>
</li>
<li class="menu-item active">
<a href="https://topaxi.codes/">Blog</a>
</li>
</ul>
<ul>
<li class="menu-item">
<a href="https://topaxi.ch/about">About</a>
</li>
</ul>
</nav>
</header>
</div>
| Mark Blog always as active | Mark Blog always as active
| Handlebars | mit | topaxi/TopaxiCodes,topaxi/TopaxiCodes |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.