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
beta.seorank.net:80 ::1 - - [08/Apr/2016:06:59:32 +0000] "OPTIONS * HTTP/1.0" 200 125 "-" "Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.14 OpenSSL/1.0.1f (internal dummy connection)" | |
version=2 | |
rule=:%clientip:word% %auth:word% - - [%timestamp:char-to:]%] "%verb:word% %request:word% HTTP/%httpversion:float%" %response:number% %bytes:number% "%apacheserver:char-to:/%/%version:word% (%os:char-to:)%)%blob:rest% |
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
uptime | awk -F'( |,|:)+' '{if ($7=="min") m=$6; else {if ($7~/^day/) {d=$6;h=$8;m=$9} else {h=$6;m=$7}}} {print "{\"days\":",d+0,", \"hours\":",h+0,", \"minutes\": ",m+0,"}"}' | |
//{"days": 0 , "hours": 9 , "minutes": 40 } |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> | |
<CORSRule> | |
<AllowedOrigin>*</AllowedOrigin> | |
<AllowedMethod>PUT</AllowedMethod> | |
<AllowedMethod>POST</AllowedMethod> | |
<AllowedMethod>GET</AllowedMethod> | |
<AllowedMethod>HEAD</AllowedMethod> | |
<MaxAgeSeconds>3000</MaxAgeSeconds> | |
<AllowedHeader>*</AllowedHeader> |
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
- (IBAction)buyMoreButtonClicked:(id)sender | |
{ | |
[GGProgressHUD showActivity]; | |
NSString *productId = IAP_PRODUCT_CREDIT; | |
SKProduct *product = [[TNStoreHelper requestedProducts] valueForKey:productId]; | |
if (product) { | |
[self purchaseProduct:product]; | |
return; | |
} |
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
- (IBAction)buyMoreButtonClicked:(id)sender | |
{ | |
[GGProgressHUD showActivity]; | |
NSString *productId = nil; | |
if (sender == btnCredit1) { | |
productId = IAP_PRODUCT_CREDIT1; | |
} else if (sender == btnCredit2) { | |
productId = IAP_PRODUCT_CREDIT2; | |
} else { | |
productId = IAP_PRODUCT_CREDIT3; |
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
// notice $(function () { | |
(function (window, $, root, undefined) { | |
$(function () { | |
root.ns( | |
'PhalconEye.widget.autocomplete', | |
{ | |
/** | |
* Init autocomplete. | |
* | |
* @param element Element object. |
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
$params = ['hide' => true, 'hideTimeout' => 1000]; | |
$callbackFn = $this->request->getQuery('callbackFn', 'string'); | |
if ($callbackFn) { | |
$params['customJs'] = $callbackFn . '('. $jsonData .')'; | |
} | |
$this->resolveModal($params); |
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
/** | |
* Api container. | |
* | |
* @category PhalconEye | |
* @package Engine\Api | |
* @author Ivan Vorontsov <[email protected]> | |
* @copyright 2013-2014 PhalconEye Team | |
* @license New BSD License | |
* @link http://phalconeye.com/ | |
*/ |
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
$arrUsers = $this->di->get('sourcing')->pyramidRepository()->getTeamUsers(0); | |
$form = new CoreForm(); | |
$form->addSelect('users[]', 'Users', null, $arrUsers, null, ['using' => ['id', '__getFullName']], ['data-widget'=>"dualListBox", 'multiple'=> 'true']); |
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
{% extends "../../Core/View/layouts/main.volt" %} | |
{% block head %} | |
<script type="text/javascript"> | |
var manageUsersAction = function($btn) { | |
PhalconEye.widget.modal.open($btn.data('url'), {'callbackFn': 'onAfterUserSelection'}); | |
} | |
var onAfterUserSelection = function(users) { | |
var container = $('#assigneesWrapper').html(''); |