This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sun Sep 10 14:07:31 2017 : Info: # Executing section authorize from file /etc/freeradius2/sites/default | |
Sun Sep 10 14:07:31 2017 : Info: +group authorize { | |
Sun Sep 10 14:07:31 2017 : Info: [eap] EAP packet type response id 31 length 6 | |
Sun Sep 10 14:07:31 2017 : Info: [eap] Continuing tunnel setup. | |
Sun Sep 10 14:07:31 2017 : Info: ++[eap] = ok | |
Sun Sep 10 14:07:31 2017 : Info: +} # group authorize = ok | |
Sun Sep 10 14:07:31 2017 : Info: Found Auth-Type = EAP | |
Sun Sep 10 14:07:31 2017 : Info: # Executing group from file /etc/freeradius2/sites/default | |
Sun Sep 10 14:07:31 2017 : Info: +group authenticate { | |
Sun Sep 10 14:07:31 2017 : Info: [eap] Request found, released from the list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* jQuery Smart Banner | |
* Copyright (c) 2012 Arnold Daniels <arnold@jasny.net> | |
* Based on 'jQuery Smart Web App Banner' by Kurt Zenisek @ kzeni.com | |
*/ | |
!function ($) { | |
var SmartBanner = function (options) { | |
this.origHtmlMargin = parseFloat($('html').css('margin-top')) // Get the original margin-top of the HTML element so we can take that into account | |
this.options = $.extend({}, $.smartbanner.defaults, options) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// NSString+Distance.h | |
// | |
// Created by Alexander Johansson on 2011-11-27. | |
// Based on http://stackoverflow.com/q/5684973/590396 | |
// | |
#import <Foundation/Foundation.h> | |
@interface NSString (Distance) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UIDeviceHardware.h | |
// | |
// Used to determine EXACT version of device software is running on. | |
#import <Foundation/Foundation.h> | |
@interface UIDeviceHardware : NSObject | |
+ (NSString *) platform; | |
+ (NSString *) platformString; |