Skip to content

Commit

Permalink
rename repository
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpaljak committed Mar 28, 2015
1 parent 6342f0a commit 148e84f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish:
# only publish commited code
test -z "`git status -s`"
# check out Github pages if not already
test -d gh-pages || git clone [email protected]:open-eid/js-token-signing.git -b gh-pages gh-pages
test -d gh-pages || git clone [email protected]:open-eid/hwcrypto.js.git -b gh-pages gh-pages
# make sure it is clean
(cd gh-pages && git reset --hard && git clean -dfx && git rm -rf *)
# run Grunt (includes tests)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
> Browser JavaScript interface for signing with hardware tokens
* [![Bower version](https://badge.fury.io/bo/hwcrypto.svg)](http://bower.io/search/?q=hwcrypto)
* [![Build Status](https://travis-ci.org/open-eid/js-token-signing.svg?branch=master)](https://travis-ci.org/open-eid/js-token-signing)
* [![Build Status](https://travis-ci.org/open-eid/hwcrypto.js.svg?branch=master)](https://travis-ci.org/open-eid/hwcrypto.js)


## Get started
Expand All @@ -11,7 +11,7 @@ The easiest way for managing JavaScript-s on a website is with [Bower](http://bo

$ bower install --save hwcrypto

Alternatively you can download the files from [release area](https://github.com/open-eid/js-token-signing/releases).
Alternatively you can download the files from [release area](https://github.com/open-eid/hwcrypto.js/releases).

`hwcrypto.js` itself does not do much, it depends on trusted platform code (installed separately and often running outside of the browser) to do the heavy lifting.

Expand All @@ -21,7 +21,7 @@ Version 0.0.7 has built-in support for:

Distribution and installation of the necessary platform components is out of scope of this project.

For further instructions on how to use the interface please have a look at **[API specification](https://github.com/open-eid/js-token-signing/wiki/ModernAPI)**
For further instructions on how to use the interface please have a look at [API specification](https://github.com/open-eid/hwcrypto.js/wiki/ModernAPI)

## Support

Expand Down
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"smartcard"
],
"license": "MIT",
"homepage": "https://github.com/open-eid/js-token-signing.git",
"homepage": "https://github.com/open-eid/hwcrypto.js.git",
"repository": {
"type": "git",
"url": "git://github.com/open-eid/js-token-signing.git"
"url": "git://github.com/open-eid/hwcrypto.js.git"
},
"ignore": [
"**/.*",
Expand All @@ -38,4 +38,4 @@
"dependencies": {
"native-promise-only": "~0.7.6-a"
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.7",
"repository": {
"type": "git",
"url": "http://github.com/open-eid/js-token-signing.git"
"url": "http://github.com/open-eid/hwcrypto.js.git"
},
"devDependencies": {
"bower": "^1.3.12",
Expand Down
8 changes: 4 additions & 4 deletions snippets/toolbar.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<p>This is a
<b><script>document.write(window.location.protocol.substring(0, window.location.protocol.length-1).toUpperCase());</script></b> test page for
<a href="hwcrypto.js">hwcrypto.js</a> (<a href="https://github.com/open-eid/js-token-signing/wiki">more information</a>)
implementing <a href="https://github.com/open-eid/js-token-signing/wiki/ModernAPI">API v0.1</a>
<a href="hwcrypto.js">hwcrypto.js</a> (<a href="https://github.com/open-eid/hwcrypto.js/wiki">more information</a>)
implementing <a href="https://github.com/open-eid/hwcrypto.js/wiki/ModernAPI">API v0.1</a>
</p>
<p>
Switch to:
<a href="http://open-eid.github.io/js-token-signing/sign.html">HTTP</a> | <a href="https://open-eid.github.io/js-token-signing/sign.html">HTTPS</a>
<a href="http://open-eid.github.io/hwcrypto.js/sign.html">HTTP</a> | <a href="https://open-eid.github.io/hwcrypto.js/sign.html">HTTPS</a>
| <a href="okbrowser.html">browser with module</a> | <a href="nokbrowser.html">browser without module</a> | <a href="success.html">success</a>
</p>
<hr>
<hr>
2 changes: 1 addition & 1 deletion src/hwcrypto.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// JavaScript library as described in
// https://github.com/open-eid/js-token-signing
// https://github.com/open-eid/hwcrypto.js
var hwcrypto = (function hwcrypto() {
'use strict';
console.log("hwcrypto.js activated");
Expand Down

0 comments on commit 148e84f

Please sign in to comment.