-
Install CNTLM in a folder where you have full rights to run it as administrator.
-
Open
cntlm.iniand fill it :
Username YOUR_USERNAME
Domain YOUR_DOMAIN
| // https://fiddle.sencha.com/#view/editor&fiddle/3oce | |
| Ext.application({ | |
| name: 'Fiddle', | |
| launch: function () { | |
| var controller = Ext.create('Ext.app.ViewController', { | |
| init: function () { | |
| this.populateStore(); | |
| }, | |
| populateStore: function () { |
| import org.apache.commons.logging.Log; | |
| import org.apache.commons.logging.LogFactory; | |
| import app.example.exception.DataAccessException; | |
| import javax.sql.DataSource; | |
| import java.sql.Connection; | |
| import java.sql.PreparedStatement; | |
| import java.sql.ResultSet; | |
| import java.sql.SQLException; | |
| import java.util.function.Consumer; |
| import java.sql.Connection; | |
| import java.sql.PreparedStatement; | |
| import java.sql.ResultSet; | |
| import java.sql.SQLException; | |
| import java.util.function.Consumer; | |
| import java.util.function.Function; | |
| import java.util.function.Supplier; | |
| import org.apache.commons.logging.Log; |
| package com.app.exception.common; | |
| import com.fasterxml.jackson.annotation.JsonFormat; | |
| import lombok.AllArgsConstructor; | |
| import lombok.Builder; | |
| import lombok.Data; | |
| import lombok.EqualsAndHashCode; | |
| import org.hibernate.validator.internal.engine.path.PathImpl; | |
| import org.springframework.validation.FieldError; | |
| import org.springframework.validation.ObjectError; |
| import { NgModule } from '@angular/core'; | |
| import { | |
| MatAutocompleteModule, | |
| MatButtonModule, | |
| MatButtonToggleModule, | |
| MatCardModule, | |
| MatCheckboxModule, | |
| MatDatepickerModule, | |
| MatDialogModule, | |
| MatExpansionModule, |
Install CNTLM in a folder where you have full rights to run it as administrator.
Open cntlm.ini and fill it :
Username YOUR_USERNAME
Domain YOUR_DOMAIN
| Ext.define('App.common.locale.I18n', { | |
| extend: 'Ext.Base', | |
| singleton: true, | |
| alternateClassName: ['I18n'], | |
| requires: [ | |
| 'App.store.locale.Translations', // in memory store to keep translations | |
| 'App.api.config.Endpoints', // config file with endpoint information | |
| ], | |
| initLocale: function (language) { | |
| // STEP 1. find which language to load |
| Ext.define('App.common.I18n', { | |
| singleton: true, | |
| alternateClassName: ['I18n'], | |
| requires: [ | |
| 'App.locale.locale-de', | |
| 'App.locale.locale-en', | |
| 'App.locale.locale-fr', | |
| 'App.locale.locale-it' | |
| ], | |
| initLocale: function () { |
| /** | |
| * Hides/Disables a component based on the user roles provided and user roles required for a component | |
| * Example usage : | |
| * 1. Default behavior to prevent rendering of component if required role is not present. Suitable for small components like button, textfields and other form controls | |
| * plugins: [ | |
| * { | |
| * ptype: 'security', | |
| * roles: ['ROLE_ADMIN', 'ROLE_SUBADMIN', 'APP_ROLE1'], | |
| * } | |
| * ] |
| (function() { | |
| // No mouse version | |
| Ext.Component.prototype.fireEvent = | |
| Ext.Function.createInterceptor(Ext.Component.prototype.fireEvent, function() { | |
| if (arguments && arguments[0].indexOf("mouse") === -1 && arguments[0] != "uievent") { | |
| console.log(this.$className, arguments, this); | |
| } | |
| return true; | |
| });})(); |