This file contains hidden or 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
| Manifest-Version: 1.0 | |
| Bnd-LastModified: 1460452654554 | |
| Build-Jdk: 1.7.0_67 | |
| Built-By: bugg | |
| Bundle-Blueprint: OSGI-INF/blueprint/blueprint.xml | |
| Bundle-ManifestVersion: 2 | |
| Bundle-Name: pentahoreporting-megabundle | |
| Bundle-SymbolicName: pentahoreporting-megabundle;singleton:=true | |
| Bundle-Version: 1.0.0.SNAPSHOT | |
| Created-By: Apache Maven Bundle Plugin |
This file contains hidden or 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
| var name = $(this.el).find("input[name='connname']").val(); | |
| var path = $(this.el).find("select[name='csvpath']").val(); | |
| var enabled = false; | |
| if(schema.has.been.created){ | |
| var mondrianschema = $(this.el).find(".schemaselect").val(); | |
| enabled = true; | |
| } | |
| var c = "type=OLAP\n"+ | |
| "name="+name+"\n"+ | |
| "driver=mondrian.olap4j.MondrianOlap4jDriver\n"+ |
This file contains hidden or 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
| { | |
| version: '1.0', | |
| defaultSchema: 'SALES', | |
| schemas: [ | |
| { | |
| name: 'SALES', | |
| type: 'custom', | |
| factory: 'org.apache.calcite.adapter.csv.CsvSchemaFactory', | |
| operand: { | |
| directory: 'sales' |
This file contains hidden or 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"?> | |
| <Schema name="opendata" measuresCaption="Mjere"> | |
| <Dimension name="izvor" caption="PREMA IZVORIMA"> | |
| <Hierarchy hasAll="true" allMemberName="IZVORI" allLevelName="Sve" primaryKey="id" caption="IZVOR"> | |
| <Table name="proracun_izvori_flat"/> | |
| <Level name="Skupina" caption="Skupina" column="level1_naziv" type="String" uniqueMembers="true"/> | |
| <Level name="Podskupina" caption="Podskupina" column="level2_naziv" type="String" uniqueMembers="false"/> |
This file contains hidden or 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"?> | |
| <Schema name="Phoenix" metamodelVersion="4.0"> | |
| <PhysicalSchema> | |
| <Table name='TRANSACTIONS'> | |
| <Key> | |
| <Column name='AGENT_ID'/> | |
| </Key> | |
| </Table> | |
| <Table name='AG_TER_PRO'/> | |
| </PhysicalSchema> |
This file contains hidden or 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
| 11:10 magicaltrout| it depends on how the project is structured already and how much resource people can put into | |
| the graduation tasks | |
| 11:11 magicaltrout| I just got involved with Apache Joshua which is a translation engine, like Google translate etc | |
| 11:11 magicaltrout| quite interesting | |
| 11:12 magicaltrout| Milagro is developed by a bunch of the guys who used to work at Ecommera with me | |
| 11:12 magicaltrout| zeppelin should have graduated ages ago | |
| 11:12 magicaltrout| they suck at getting shit done | |
| 11:13 magicaltrout| Guacamole is cool because its not a data project | |
| 11:14 magicaltrout| Beam came from Google |
This file contains hidden or 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
| bugg@tomsdevbox:~/Projects/charms$ juju kill-controller dev-lxd | |
| WARNING! This command will destroy the "local.dev-lxd" controller. | |
| This includes all machines, services, data and other resources. | |
| Continue [y/N]? y | |
| ERROR cannot obtain bootstrap information: Get https://10.0.3.1:8443/1.0/profiles: Unable to connect to: 10.0.3.1:8443 |
This file contains hidden or 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
| type=OLAP | |
| name=dsname | |
| driver=mondrian.olap4j.MondrianOlap4jDriver | |
| location=jdbc:xmla:Server=http://test | |
| username=sa | |
| password=password | |
| security.enabled=true | |
| security.type=passthrough |
This file contains hidden or 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
| units: | |
| pdi/0: | |
| workload-status: | |
| current: active | |
| message: Carte is ready! Master is:52.49.141.21 | |
| since: 14 Mar 2016 23:43:26Z | |
| agent-status: | |
| current: idle | |
| since: 14 Mar 2016 23:43:29Z | |
| version: 1.24.7 |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| import unittest | |
| import amulet | |
| class TestDeploy(unittest.TestCase): | |
| """ | |
| Deployment test for the Pentaho Data Integration charm. |