Skip to content

Commit

Permalink
Update gh url with username change
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymholt committed Dec 13, 2017
1 parent 72ba8a0 commit 23970d7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# cRonstrue [![Build Status](https://travis-ci.org/bradymholt/cRonstrue.svg?branch=master)](https://travis-ci.org/bradyholt/cRonstrue) [![NPM Package](https://img.shields.io/npm/v/cronstrue.svg)](https://www.npmjs.com/package/cronstrue)
# cRonstrue [![Build Status](https://travis-ci.org/bradymholt/cRonstrue.svg?branch=master)](https://travis-ci.org/bradymholt/cRonstrue) [![NPM Package](https://img.shields.io/npm/v/cronstrue.svg)](https://www.npmjs.com/package/cronstrue)

cRonstrue is a JavaScript library that parses a cron expression and outputs a human readable description of the cron schedule. For example, given the expression "*/5 * * * *" it will output "Every 5 minutes".

This library was ported from the original C# implemenation called [cron-expression-descriptor](https://github.com/bradyholt/cron-expression-descriptor) and is also available in a [few other languages](https://github.com/bradyholt/cron-expression-descriptor#ports).
This library was ported from the original C# implemenation called [cron-expression-descriptor](https://github.com/bradymholt/cron-expression-descriptor) and is also available in a [few other languages](https://github.com/bradymholt/cron-expression-descriptor#ports).

## Features
- Zero dependencies
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
```
npm adduser bradyholt
npm adduser bradymholt
npm run release
```
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"cron",
"schedule"
],
"homepage": "https://github.com/bradyholt/cronstrue",
"homepage": "https://github.com/bradymholt/cronstrue",
"ignore": ["**/.*", "node_modules", "bower_components", "test", "tests"]
}
20 changes: 10 additions & 10 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ <h2>Convert cron expressions into human readable descriptions</h2>
</header>

<section id="downloads" class="clearfix">
<a href="https://github.com/bradyholt/cronstrue/zipball/master" id="download-zip" class="button"><span>Download .zip</span></a>
<a href="https://github.com/bradyholt/cronstrue/tarball/master" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
<a href="https://github.com/bradyholt/cronstrue" id="view-on-github" class="button"><span>View on GitHub</span></a>
<a href="https://github.com/bradymholt/cronstrue/zipball/master" id="download-zip" class="button"><span>Download .zip</span></a>
<a href="https://github.com/bradymholt/cronstrue/tarball/master" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
<a href="https://github.com/bradymholt/cronstrue" id="view-on-github" class="button"><span>View on GitHub</span></a>
</section>

<hr>

<section id="main_content">
<h1 id="cronstrue-build-status-https-travis-ci-org-bradyholt-cronstrue-svg-branch-master-https-travis-ci-org-bradyholt-cronstrue-npm-package-https-img-shields-io-npm-v-cronstrue-svg-https-www-npmjs-com-package-cronstrue-">cRonstrue <a href="https://travis-ci.org/bradyholt/cRonstrue"><img src="https://travis-ci.org/bradyholt/cRonstrue.svg?branch=master" alt="Build Status"></a> <a href="https://www.npmjs.com/package/cronstrue"><img src="https://img.shields.io/npm/v/cronstrue.svg" alt="NPM Package"></a></h1>
<h1 id="cronstrue-build-status-https-travis-ci-org-bradyholt-cronstrue-svg-branch-master-https-travis-ci-org-bradyholt-cronstrue-npm-package-https-img-shields-io-npm-v-cronstrue-svg-https-www-npmjs-com-package-cronstrue-">cRonstrue <a href="https://travis-ci.org/bradymholt/cRonstrue"><img src="https://travis-ci.org/bradymholt/cRonstrue.svg?branch=master" alt="Build Status"></a> <a href="https://www.npmjs.com/package/cronstrue"><img src="https://img.shields.io/npm/v/cronstrue.svg" alt="NPM Package"></a></h1>
<p>cRonstrue is a JavaScript library that parses a cron expression and outputs a human readable description of the cron schedule. For example, given the expression &quot;<em>/5 </em> <em> </em> *&quot; it will output &quot;Every 5 minutes&quot;.</p>
<p>This library was ported from the original C# implemenation called <a href="https://github.com/bradyholt/cron-expression-descriptor">cron-expression-descriptor</a> and is also available in a <a href="https://github.com/bradyholt/cron-expression-descriptor#ports">few other languages</a>.</p>
<p>This library was ported from the original C# implemenation called <a href="https://github.com/bradymholt/cron-expression-descriptor">cron-expression-descriptor</a> and is also available in a <a href="https://github.com/bradymholt/cron-expression-descriptor#ports">few other languages</a>.</p>
<h2 id="features">Features</h2>
<ul>
<li>Zero dependencies</li>
Expand Down Expand Up @@ -73,9 +73,9 @@ <h2 id="usage">Usage</h2>
cronstrue.toString(&quot;* * * ? * 2-6/2&quot;, { dayOfWeekStartIndexZero: false});
&gt; &quot;Every second, every 2 days of the week, Monday through Friday&quot;
</code></pre>
<p>For more usage examples, including a demonstration of how cRonstrue can handle some very complex cron expressions, you can <a href="https://github.com/bradyholt/cRonstrue/blob/master/test/cronstrue.ts">reference the unit tests</a>.</p>
<p>For more usage examples, including a demonstration of how cRonstrue can handle some very complex cron expressions, you can <a href="https://github.com/bradymholt/cRonstrue/blob/master/test/cronstrue.ts">reference the unit tests</a>.</p>
<h2 id="demo">Demo</h2>
<p>A demo is available here <a href="http://bradyholt.github.io/cRonstrue/#cronstrue-demo">here</a>.</p>
<p>A demo is available here <a href="http://bradymholt.github.io/cRonstrue/#cronstrue-demo">here</a>.</p>
<h2 id="i18n">i18n</h2>
<p>To use the i18n support cRonstrue provides, you must use the packaged library that contains the locale transalations. Once you do this, you can pass the name of a supported locale as an option to <code>cronstrue.toString()</code>. For example, for the es (Spanish) locale, you would use: <code>cronstrue.toString(&quot;* * * * *&quot;, { locale: &quot;es&quot; });</code>.</p>
<h3 id="node">Node</h3>
Expand Down Expand Up @@ -108,7 +108,7 @@ <h3 id="supported-locales">Supported Locales</h3>
<li>zh_CN - Chinese (Simplified)</li>
</ul>
<h2 id="license">License</h2>
<p>cRonstrue is freely distributable under the terms of the <a href="https://github.com/bradyholt/cronstrue/blob/master/LICENSE">MIT license</a>.</p>
<p>cRonstrue is freely distributable under the terms of the <a href="https://github.com/bradymholt/cronstrue/blob/master/LICENSE">MIT license</a>.</p>

<h2 id="cronstrue-demo">Live Demo</h2>
<form style="background-color:inherit; padding-left:0px; font-size:18px;">
Expand All @@ -118,7 +118,7 @@ <h2 id="cronstrue-demo">Live Demo</h2>
</form>
</section>
<footer>
cRonstrue is maintained by <a href="https://github.com/bradyholt/cronstrue">Brady Holt</a><br> This page was generated
cRonstrue is maintained by <a href="https://github.com/bradymholt/cronstrue">Brady Holt</a><br> This page was generated
by <a href="https://www.npmjs.com/package/handlebars">Handlebars.js</a> and <a href="https://www.npmjs.com/package/marked">marked</a>.
Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
Expand All @@ -128,7 +128,7 @@ <h2 id="cronstrue-demo">Live Demo</h2>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="https://rawgit.com/bradyholt/cronstrue/master/dist/cronstrue.min.js" type="text/javascript"></script>
<script src="https://rawgit.com/bradymholt/cronstrue/master/dist/cronstrue.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#translate").click(function () {
Expand Down
2 changes: 1 addition & 1 deletion docs/template.hbs.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h2 id="cronstrue-demo">Live Demo</h2>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="https://rawgit.com/bradyholt/cronstrue/master/dist/cronstrue.min.js" type="text/javascript"></script>
<script src="https://rawgit.com/bradymholt/cronstrue/master/dist/cronstrue.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#translate").click(function () {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"author": "Brady Holt",
"license": "MIT",
"bugs": {
"url": "https://github.com/bradyholt/cronstrue/issues"
"url": "https://github.com/bradymholt/cronstrue/issues"
},
"homepage": "https://github.com/bradyholt/cronstrue",
"homepage": "https://github.com/bradymholt/cronstrue",
"keywords": [
"cron",
"cronjob",
Expand All @@ -33,7 +33,7 @@
],
"repository": {
"type": "git",
"url": "git+https://github.com/bradyholt/cronstrue.git"
"url": "git+https://github.com/bradymholt/cronstrue.git"
},
"devDependencies": {
"@types/chai": "^4.0.0",
Expand Down

0 comments on commit 23970d7

Please sign in to comment.