diff --git a/lib/base64.js b/lib/base64.js index 1b5a23e..eeeb3bc 100644 --- a/lib/base64.js +++ b/lib/base64.js @@ -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"). @@ -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 = '='; diff --git a/lib/bigint.js b/lib/bigint.js index 8effd3a..b4795c9 100644 --- a/lib/bigint.js +++ b/lib/bigint.js @@ -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 diff --git a/lib/convert.js b/lib/convert.js index f02901a..15fece9 100644 --- a/lib/convert.js +++ b/lib/convert.js @@ -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; diff --git a/lib/xrds.js b/lib/xrds.js index 97a54fe..168c26f 100644 --- a/lib/xrds.js +++ b/lib/xrds.js @@ -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) diff --git a/openid.js b/openid.js index 41eb8e5..ba50a9c 100644 --- a/openid.js +++ b/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 @@ -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');