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
/** | |
* Address.java | |
* | |
* This file was auto-generated from WSDL | |
* by the Apache Axis 1.4.1-SNAPSHOT Mar 11, 2019 (00:47:30 UTC) WSDL2Java emitter. | |
*/ | |
package com.projectname.webservice.generated; | |
public class Address implements java.io.Serializable { |
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
openssl s_client -showcerts -connect daybreakgames.com:443 |
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
const assert = require('chai').assert; | |
const cookiejar = require('cookiejar'); | |
const injector = require('../di-injector'); | |
const testAccounts = require('../data/accounts.json'); | |
const grabToken = new RegExp(/value=[a-zA-Z0-9\-_"]*(?= name="_csrf")/); | |
let agentFactory; | |
/** If you are using the tdd interface, suiteSetup maps to beforeAll, and setup maps to beforeEach. */ | |
suite('routes', () => { |
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
/* Note: Just enough to get the idea here. | |
resources/ | |
|- locales/ | |
|- en/ | |
|- translation.json | |
|- zh/ | |
|- translation.json | |
|- static/ | |
|- css/ | |
|- fonts/ |
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
/* Form AJAX JavaScript. Requires jQurery to be loaded */ | |
window.DEMO = window.DEMO || {}; | |
/** | |
* @method rws | |
* @description RESTful Web services (RWS) | |
* Wrapped in an IIFE (Immediately Invoked Function Expression) | |
* @paraam $ {object} jQuery object, used for ajax methods. | |
*/ | |
// eslint-disable-next-line no-undef |
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
Language: JavaScript | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: AlwaysBreak | |
AlignEscapedNewlinesLeft: true | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: true | |
AllowShortBlocksOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: None | |
AllowShortIfStatementsOnASingleLine: false | |
AllowShortLoopsOnASingleLine: false |
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
Language: JavaScript | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: AlwaysBreak | |
AlignEscapedNewlinesLeft: true | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: true | |
AllowShortBlocksOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: None | |
AllowShortIfStatementsOnASingleLine: false | |
AllowShortLoopsOnASingleLine: false |
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
<div class="form-group row-select"> | |
<label for="rowDropdownMenu" i18n="the title for pagination results@@controlPaginationResults">Results per page</label> | |
<div ngbDropdown class="d-inline-block"> | |
<button class="btn btn-outline-primary" id="rowDropdownMenu" ngbDropdownToggle>{{rows.current.text}}</button> | |
<div class="dropdown-menu" aria-labelledby="rowDropdownMenu"> | |
<ng-template ngFor let-option [ngForOf]="rows.options | displays"> | |
<button | |
class="dropdown-item" | |
value="{{option.value}}" | |
(click)="changed.emit({value:option.value, bubbles: true})">{{option.text}}</button> |