Skip to content

Commit

Permalink
Unified comments and editor settings across files
Browse files Browse the repository at this point in the history
  • Loading branch information
Håvard Stranden committed Feb 7, 2011
1 parent 6fa5d6f commit 6e81c19
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
8 changes: 5 additions & 3 deletions lib/base64.js
Expand Up @@ -25,9 +25,8 @@
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/

/* base64 encode/decode compatible with window.btoa/atob
*
* base64 encode/decode compatible with window.btoa/atob
*
* window.atob/btoa is a Firefox extension to convert binary data (the "b")
* to base64 (ascii, the "a").
Expand All @@ -47,6 +46,9 @@
* window.atob and base64.decode take a base64-encoded string
* If the input length is not a multiple of 4, or contains invalid characters
* then an exception is thrown.
*
* -*- Mode: JS; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set sw=2 ts=2 et tw=80 :
*/
var base64 = {};
base64.PADCHAR = '=';
Expand Down
3 changes: 3 additions & 0 deletions lib/bigint.js
Expand Up @@ -32,6 +32,9 @@
*
* All redistributions must retain an intact copy of this copyright notice
* and disclaimer.
*
* -*- Mode: JS; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set sw=2 ts=2 et tw=80 :
*/

// Bits per digit
Expand Down
3 changes: 3 additions & 0 deletions lib/convert.js
Expand Up @@ -21,6 +21,9 @@
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
*
* -*- Mode: JS; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set sw=2 ts=2 et tw=80 :
*/

var base64 = require('base64').base64;
Expand Down
3 changes: 3 additions & 0 deletions lib/xrds.js
Expand Up @@ -21,6 +21,9 @@
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
*
* -*- Mode: JS; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set sw=2 ts=2 et tw=80 :
*/

exports.parse = function(data)
Expand Down
5 changes: 3 additions & 2 deletions openid.js
@@ -1,5 +1,3 @@
/* -*- Mode: JS; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set sw=2 ts=2 et tw=80 : */
/* OpenID for node.js
*
* http://ox.no/software/node-openid
Expand All @@ -23,6 +21,9 @@
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
*
* -*- Mode: JS; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set sw=2 ts=2 et tw=80 :
*/

require.paths.unshift(__dirname + '/lib');
Expand Down

0 comments on commit 6e81c19

Please sign in to comment.