Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Set maxLines on location spinner item | <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeightSmall"
android:gravity="center_vertical"
android:padding="4dp"
android:drawableStart="@drawable/ic_location"
android:drawablePadding="8dp"
style="@style/ExploreFilter"
tools:text="New Zealand"/> | <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeightSmall"
android:gravity="center_vertical"
android:padding="4dp"
android:drawableStart="@drawable/ic_location"
android:drawablePadding="8dp"
android:maxLines="2"
android:ellipsize="end"
style="@style/ExploreFilter"
tools:text="New Zealand"/> |
Add workaround for OPENJPA-740 which is related to IMAP-114 | <persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="1.0">
<persistence-unit name="James" transaction-type="RESOURCE_LOCAL">
<!-- IMAP stuff-->
<class>org.apache.james.imap.jpa.mail.model.JPAHeader</class>
<class>org.apache.james.imap.jpa.mail.model.JPAMailbox</class>
<class>org.apache.james.imap.jpa.mail.model.JPAMailboxMembership</class>
<class>org.apache.james.imap.jpa.mail.model.JPAMessage</class>
<class>org.apache.james.imap.jpa.mail.model.JPAProperty</class>
<class>org.apache.james.imap.jpa.user.model.JPASubscription</class>
<!-- UsersRepository -->
<class>org.apache.james.server.jpa.JPAUser</class>
<properties>
<!-- workaround till openjpa 1.3 or 2.0.0 was released -->
<!-- see https://issues.apache.org/jira/browse/OPENJPA-740 -->
<property name="openjpa.jdbc.DBDictionary" value="blobTypeName=LONGBLOB"/>
<!-- create tables on startup -->
<property name="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)"/>
</properties>
</persistence-unit>
</persistence>
| <persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="1.0">
<persistence-unit name="James" transaction-type="RESOURCE_LOCAL">
<!-- IMAP stuff-->
<class>org.apache.james.imap.jpa.mail.model.JPAHeader</class>
<class>org.apache.james.imap.jpa.mail.model.JPAMailbox</class>
<class>org.apache.james.imap.jpa.mail.model.JPAMailboxMembership</class>
<class>org.apache.james.imap.jpa.mail.model.JPAMessage</class>
<class>org.apache.james.imap.jpa.mail.model.JPAProperty</class>
<class>org.apache.james.imap.jpa.user.model.JPASubscription</class>
<!-- UsersRepository -->
<class>org.apache.james.server.jpa.JPAUser</class>
<properties>
<!-- workaround for MYSQL till openjpa 1.3 or 2.0.0 was released -->
<!-- see https://issues.apache.org/jira/browse/OPENJPA-740 -->
<!-- IF YOU USE MYSQL UNCOMMENT THIS -->
<!--
<property name="openjpa.jdbc.DBDictionary" value="blobTypeName=LONGBLOB"/>
-->
<!-- create tables on startup -->
<property name="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)"/>
</properties>
</persistence-unit>
</persistence>
|
Update Brazilian Portuguese Language XML | <?xml version="1.0" encoding="UTF-8"?>
<addon>
<tech_name>language_portuguese</tech_name>
<name>Brazilian Portuguese Language</name>
<description>Add Brazilian Portuguese Language Support</description>
<icon>static/images/language_portuguese.png</icon>
<version>1.0.0</version>
<license>Community</license>
<author>Inextrix Technologies Pvt. Ltd.</author>
<status>production</status>
</addon>
| <?xml version="1.0" encoding="UTF-8"?>
<addon>
<tech_name>language_portuguese</tech_name>
<name>Brazilian Portuguese Language</name>
<description>Add Brazilian Portuguese Language Support</description>
<icon>static/images/language_portuguese.png</icon>
<version>2.0.0</version>
<license>Community</license>
<author>Inextrix Technologies Pvt. Ltd.</author>
<status>production</status>
</addon>
|
Fix a bug in the 'set ' command, and add descriptions for the variables. | <?xml version="1.0" encoding="ISO-8859-1"?>
<!--
XML NS template for making a single-node PlanetLab DevBox experiment
-->
<nstemplate>
<variable name="HWType" default="pc" />
<variable name="NodeName" default="devbox" />
<!-- This hard-codes the image name, but it seems like we have to do
that somewhere... -->
<variable name="ImageName" default="PLAB-NONSTD" />
<nstext>
<section><![CDATA[
# plabdevbox.ns - NS script to make a DevBox experiment on Emulab
#
# February 21, 2006
#
# Questions and comments to testbed-ops@emulab.net
#
# Boilerplate
#
source tb_compat.tcl
set ns [new Simulator]
set $<NodeName /> [$ns node]
tb-set-hardware $<NodeName /> <HWType />
tb-set-node-os $<NodeName /> "<ImageName />"
#
# Boilerplate
#
$ns run
]]></section>
</nstext>
</nstemplate>
| <?xml version="1.0" encoding="ISO-8859-1"?>
<!--
XML NS template for making a single-node PlanetLab DevBox experiment
-->
<nstemplate>
<variable name="HWType" default="pc" descr="Hardware Type" />
<variable name="NodeName" default="devbox" descr="Node Name" />
<!-- This hard-codes the image name, but it seems like we have to do
that somewhere... -->
<variable name="ImageName" default="PLAB-NONSTD" descr = "Disk Image" />
<nstext>
<section><![CDATA[
# plabdevbox.ns - NS script to make a DevBox experiment on Emulab
#
# February 21, 2006
#
# Questions and comments to testbed-ops@emulab.net
#
# Boilerplate
#
source tb_compat.tcl
set ns [new Simulator]
set <NodeName /> [$ns node]
tb-set-hardware $<NodeName /> <HWType />
tb-set-node-os $<NodeName /> "<ImageName />"
#
# Boilerplate
#
$ns run
]]></section>
</nstext>
</nstemplate>
|
Change verifyOrderbook method return type. Update TradeOgre version Update stream-parent Xchange version | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.knowm.xchange</groupId>
<artifactId>xchange-parent</artifactId>
<version>4.4.0-SNAPSHOT</version>
</parent>
<artifactId>xchange-tradeogre</artifactId>
<name>XChange TradeOgre</name>
<description>XChange implementation for the TradeOgre Exchange</description>
<url>http://knowm.org/open-source/xchange/</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>Knowm Inc.</name>
<url>http://knowm.org/open-source/xchange/</url>
</organization>
<dependencies>
<dependency>
<groupId>org.knowm.xchange</groupId>
<artifactId>xchange-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.knowm.xchange</groupId>
<artifactId>xchange-parent</artifactId>
<version>4.4.1-SNAPSHOT</version>
</parent>
<artifactId>xchange-tradeogre</artifactId>
<name>XChange TradeOgre</name>
<description>XChange implementation for the TradeOgre Exchange</description>
<url>http://knowm.org/open-source/xchange/</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>Knowm Inc.</name>
<url>http://knowm.org/open-source/xchange/</url>
</organization>
<dependencies>
<dependency>
<groupId>org.knowm.xchange</groupId>
<artifactId>xchange-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
|
Set filtering of *.java to false | <?xml version="1.0" encoding="UTF-8"?>
<archetype-descriptor name="maven-cms-archetype">
<fileSets>
<fileSet filtered="true" packaged="true">
<directory>src/main/java</directory>
<includes>
<include>**/*.java</include>
</includes>
</fileSet>
<fileSet filtered="false" packaged="true">
<directory>src/main/resources/com/enonic/plugin/thymeleafcontroller</directory>
<includes>
<include>**/*.css</include>
<include>**/*.js</include>
<include>**/*.png</include>
<include>**/*.jpg</include>
</includes>
</fileSet>
<fileSet filtered="false" packaged="true">
<directory>src/main/resources/META-INF</directory>
<includes>
<include>cms/default.properties</include>
<include>sprint/context.xml</include>
</includes>
</fileSet>
<fileSet filtered="false" packaged="true">
<directory>src/main/resources/views</directory>
<includes>
<include>**/*.html</include>
<include>*.html</include>
</includes>
</fileSet>
</fileSets>
</archetype-descriptor> | <?xml version="1.0" encoding="UTF-8"?>
<archetype-descriptor name="maven-cms-archetype">
<fileSets>
<fileSet filtered="false" packaged="true">
<directory>src/main/java</directory>
<includes>
<include>**/*.java</include>
</includes>
</fileSet>
<fileSet filtered="false" packaged="true">
<directory>src/main/resources/com/enonic/plugin/thymeleafcontroller</directory>
<includes>
<include>**/*.css</include>
<include>**/*.js</include>
<include>**/*.png</include>
<include>**/*.jpg</include>
</includes>
</fileSet>
<fileSet filtered="false" packaged="true">
<directory>src/main/resources/META-INF</directory>
<includes>
<include>cms/default.properties</include>
<include>sprint/context.xml</include>
</includes>
</fileSet>
<fileSet filtered="false" packaged="true">
<directory>src/main/resources/views</directory>
<includes>
<include>**/*.html</include>
<include>*.html</include>
</includes>
</fileSet>
</fileSets>
</archetype-descriptor> |
Use new snapshot of plexus-ircbot for prevent System.exit | <project>
<parent>
<artifactId>continuum-parent-notifiers</artifactId>
<groupId>org.apache.maven.continuum</groupId>
<version>1.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>continuum-notifier-irc</artifactId>
<name>Continuum IRC Notifier</name>
<version>1.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-ircbot</artifactId>
<version>1.1-alpha-5</version>
</dependency>
<dependency>
<groupId>org.apache.maven.continuum</groupId>
<artifactId>continuum-notifier-api</artifactId>
</dependency>
</dependencies>
</project> | <project>
<parent>
<artifactId>continuum-parent-notifiers</artifactId>
<groupId>org.apache.maven.continuum</groupId>
<version>1.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>continuum-notifier-irc</artifactId>
<name>Continuum IRC Notifier</name>
<version>1.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-ircbot</artifactId>
<version>1.1-alpha-6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.maven.continuum</groupId>
<artifactId>continuum-notifier-api</artifactId>
</dependency>
</dependencies>
</project> |
Add a margin to the copyright string in the splash screen. | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_170"
android:layout_centerHorizontal="true"
android:layout_marginTop="40dp"/>
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:indeterminate="true"/>
<TextView
android:id="@+id/copyright_txt_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:textColor="@color/vector_silver_color"
android:text="@string/splash_screen_copyright" />
</RelativeLayout>
| <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_170"
android:layout_centerHorizontal="true"
android:layout_marginTop="40dp"/>
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:indeterminate="true"/>
<TextView
android:id="@+id/copyright_txt_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:layout_marginBottom="20dp"
android:textColor="@color/vector_silver_color"
android:text="@string/splash_screen_copyright" />
</RelativeLayout>
|
Load frontend JS even if nodePush is disabled | <?xml version="1.0" encoding="UTF-8"?>
<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/templateListener.xsd">
<import>
<templatelistener name="javascriptInclude">
<environment>user</environment>
<templatename>headInclude</templatename>
<eventname>javascriptInclude</eventname>
<templatecode><![CDATA[{if NODEPUSH_HOST}<script type="text/javascript" src="{NODEPUSH_HOST}/socket.io/socket.io.js"></script>
<script type="text/javascript" src="{$__wcf->getPath()}js/be.bastelstu.wcf.nodePush.js"></script>{/if}]]></templatecode>
</templatelistener>
<templatelistener name="javascriptInit">
<environment>user</environment>
<templatename>headInclude</templatename>
<eventname>javascriptInit</eventname>
<templatecode><![CDATA[{if NODEPUSH_HOST}be.bastelstu.wcf.nodePush.init('{@NODEPUSH_HOST|encodeJS}');{/if}]]></templatecode>
</templatelistener>
</import>
</data> | <?xml version="1.0" encoding="UTF-8"?>
<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/templateListener.xsd">
<import>
<templatelistener name="javascriptInclude">
<environment>user</environment>
<templatename>headInclude</templatename>
<eventname>javascriptInclude</eventname>
<templatecode><![CDATA[{if NODEPUSH_HOST}<script type="text/javascript" src="{NODEPUSH_HOST}/socket.io/socket.io.js"></script>{/if}
<script type="text/javascript" src="{$__wcf->getPath()}js/be.bastelstu.wcf.nodePush.js"></script>]]></templatecode>
</templatelistener>
<templatelistener name="javascriptInit">
<environment>user</environment>
<templatename>headInclude</templatename>
<eventname>javascriptInit</eventname>
<templatecode><![CDATA[{if NODEPUSH_HOST}be.bastelstu.wcf.nodePush.init('{@NODEPUSH_HOST|encodeJS}');{/if}]]></templatecode>
</templatelistener>
</import>
</data>
|
Set permGen size to to maven surefire plugin | <?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../pom.xml</relativePath>
<groupId>kotlin.eclipse</groupId>
<artifactId>kotlin.eclipse.plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>org.jetbrains.kotlin.ui.tests</artifactId>
<groupId>kotlin.eclipse</groupId>
<version>0.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
<useUIHarness>true</useUIHarness>
</configuration>
</plugin>
</plugins>
</build>
</project> | <?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<relativePath>../pom.xml</relativePath>
<groupId>kotlin.eclipse</groupId>
<artifactId>kotlin.eclipse.plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<artifactId>org.jetbrains.kotlin.ui.tests</artifactId>
<groupId>kotlin.eclipse</groupId>
<version>0.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
<useUIHarness>true</useUIHarness>
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project> |
Change to new app icon in manifest | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pqbyte.coherence"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="23" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/GdxTheme" >
<activity
android:name="com.pqbyte.coherence.AndroidLauncher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pqbyte.coherence"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="23" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/GdxTheme" >
<activity
android:name="com.pqbyte.coherence.AndroidLauncher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
|
Adjust WPCS own ruleset to align except for arrays which only contains multi-line items | <?xml version="1.0"?>
<ruleset name="WordPress Coding Standards">
<description>The Coding standard for the WordPress Coding Standards itself.</description>
<arg value="sp"/>
<arg name="extensions" value="php"/>
<!-- Exclude the code in the PHPCS 2.x test files copied in from PHPCS. -->
<exclude-pattern>/Test/AllTests.php</exclude-pattern>
<exclude-pattern>/Test/Standards/*.php</exclude-pattern>
<!-- Exclude Composer vendor directory. -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<rule ref="WordPress-Extra">
<exclude name="WordPress.Files.FileName" />
<exclude name="WordPress.NamingConventions.ValidVariableName" />
</rule>
<rule ref="WordPress-Docs" />
<!-- Enforce PSR1 compatible namespaces. -->
<rule ref="PSR1.Classes.ClassDeclaration"/>
</ruleset>
| <?xml version="1.0"?>
<ruleset name="WordPress Coding Standards">
<description>The Coding standard for the WordPress Coding Standards itself.</description>
<arg value="sp"/>
<arg name="extensions" value="php"/>
<!-- Exclude the code in the PHPCS 2.x test files copied in from PHPCS. -->
<exclude-pattern>/Test/AllTests.php</exclude-pattern>
<exclude-pattern>/Test/Standards/*.php</exclude-pattern>
<!-- Exclude Composer vendor directory. -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<rule ref="WordPress-Extra">
<exclude name="WordPress.Files.FileName"/>
<exclude name="WordPress.NamingConventions.ValidVariableName"/>
</rule>
<rule ref="WordPress-Docs"/>
<!-- Enforce PSR1 compatible namespaces. -->
<rule ref="PSR1.Classes.ClassDeclaration"/>
<rule ref="WordPress.Arrays.MultipleStatementAlignment">
<properties>
<property name="alignMultilineItems" value="!=100"/>
</properties>
</rule>
</ruleset>
|
Fix AppCompat Gradle build am: d80938a746 am: 0181458287 | <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2012 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.support.v7.appcompat">
<uses-sdk android:minSdkVersion="7"/>
<application />
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2012 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="android.support.v7.appcompat">
<uses-sdk android:minSdkVersion="7"
tools:overrideLibrary="android.support.graphics.drawable.animated"/>
<application/>
</manifest>
|
Add os="debian" to XML root element (removed by accident) | <?xml version="1.0" encoding="UTF-8"?>
<chapter xmlns="http://docbook.org/ns/docbook"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="5.0"
xml:id="ch_debconf">
<title>Configure OpenStack with debconf</title>
<xi:include href="section_debconf-concepts.xml"/>
<xi:include href="section_debconf-dbconfig-common.xml"/>
<xi:include href="section_debconf-rabbitmq.xml"/>
<xi:include href="section_debconf-keystone_authtoken.xml"/>
<xi:include href="section_debconf-api-endpoints.xml"/>
</chapter>
| <?xml version="1.0" encoding="UTF-8"?>
<chapter xmlns="http://docbook.org/ns/docbook"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="5.0"
xml:id="ch_debconf"
os="debian">
<title>Configure OpenStack with debconf</title>
<xi:include href="section_debconf-concepts.xml"/>
<xi:include href="section_debconf-dbconfig-common.xml"/>
<xi:include href="section_debconf-rabbitmq.xml"/>
<xi:include href="section_debconf-keystone_authtoken.xml"/>
<xi:include href="section_debconf-api-endpoints.xml"/>
</chapter>
|
Add source and forum URLs | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.artwork.helper" name="Artwork Helper" version="0.5.1~dev" provider-name="rrector">
<requires>
<import addon="xbmc.python" version="2.19.0" />
<import addon="xbmc.json" version="6.20.0" />
</requires>
<extension point="xbmc.python.library" library="default.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Artwork Helper currently provides a couple of tools to skins and other add-ons for working with artwork.</summary>
<description lang="en">Artwork Helper currently provides a couple of tools to skins and other add-ons for working with artwork. See README.md for detailed usage.</description>
<disclaimer lang="en">Artwork Skin Helper does not directly add functionality on its own and must be supported by skins or other add-ons.</disclaimer>
<license>The MIT License</license>
<platform>all</platform>
<source></source>
<forum></forum>
<language />
<website />
<email />
</extension>
</addon>
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.artwork.helper" name="Artwork Helper" version="0.5.1~dev" provider-name="rrector">
<requires>
<import addon="xbmc.python" version="2.19.0" />
<import addon="xbmc.json" version="6.20.0" />
</requires>
<extension point="xbmc.python.library" library="default.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Artwork Helper currently provides a couple of tools to skins and other add-ons for working with artwork.</summary>
<description lang="en">Artwork Helper currently provides a couple of tools to skins and other add-ons for working with artwork. See README.md for detailed usage.</description>
<disclaimer lang="en">Artwork Skin Helper does not directly add functionality on its own and must be supported by skins or other add-ons.</disclaimer>
<source>https://github.com/rmrector/script.artwork.helper</source>
<forum>http://forum.kodi.tv/showthread.php?tid=236649</forum>
<license>The MIT License</license>
<platform>all</platform>
<language />
<website />
<email />
</extension>
</addon>
|
Fix IDEA project settings after move to server. | <component name="libraryTable">
<library name="Solr example library">
<CLASSES>
<root url="file://$PROJECT_DIR$/solr/example/lib" />
</CLASSES>
<JAVADOC />
<SOURCES />
<jarDirectory url="file://$PROJECT_DIR$/solr/example/lib" recursive="true" />
</library>
</component> | <component name="libraryTable">
<library name="Solr example library">
<CLASSES>
<root url="file://$PROJECT_DIR$/solr/server/lib" />
</CLASSES>
<JAVADOC />
<SOURCES />
<jarDirectory url="file://$PROJECT_DIR$/solr/server/lib" recursive="true" />
</library>
</component> |
Update VARIANT_EFFECT_PREDICTOR to version 73. | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
~ Copyright (c) 2011-2013 by Cornell University and the Cornell Research Foundation,
~ Inc. All Rights Reserved.
~
~ GobyWeb plugins are released under the LGPL3 license, unless otherwise specified
~ by the license of a specific plugin. See the file LGPL3.license in this distribution
~ for a copy of the LGPL license.
~
~ When a plugin is not released under the LGPL3 license, the comments at the top of
~ the plugin's config.xml will indicate how that specific plugin is released/licensed.
-->
<resourceConfig xsi:noNamespaceSchemaLocation="../../../schemas/plugins.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<name>Variant Effect Predictor</name>
<id>VARIANT_EFFECT_PREDICTOR</id>
<help>Variant effect predictor. See http://useast.ensembl.org/info/docs/variation/vep/vep_script.html. Auto-install with artifacts.</help>
<version>72</version>
<requires>
<resource>
<id>ENSEMBL_API</id>
<versionAtLeast>73</versionAtLeast>
</resource>
</requires>
<artifacts>
<artifact id="BINARIES" order="1"/>
</artifacts>
<files>
<file>
<id>SCRIPT</id>
<filename>vep</filename>
</file>
</files>
</resourceConfig>
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
~ Copyright (c) 2011-2013 by Cornell University and the Cornell Research Foundation,
~ Inc. All Rights Reserved.
~
~ GobyWeb plugins are released under the LGPL3 license, unless otherwise specified
~ by the license of a specific plugin. See the file LGPL3.license in this distribution
~ for a copy of the LGPL license.
~
~ When a plugin is not released under the LGPL3 license, the comments at the top of
~ the plugin's config.xml will indicate how that specific plugin is released/licensed.
-->
<resourceConfig xsi:noNamespaceSchemaLocation="../../../schemas/plugins.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<name>Variant Effect Predictor</name>
<id>VARIANT_EFFECT_PREDICTOR</id>
<help>Variant effect predictor. See http://useast.ensembl.org/info/docs/variation/vep/vep_script.html. Auto-install with artifacts.</help>
<version>73</version>
<requires>
<resource>
<id>ENSEMBL_API</id>
<versionAtLeast>73</versionAtLeast>
</resource>
</requires>
<artifacts>
<artifact id="BINARIES" order="1"/>
</artifacts>
<files>
<file>
<id>SCRIPT</id>
<filename>vep</filename>
</file>
</files>
</resourceConfig>
|
Enable portrait mode only. Rotating kills everything. | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.barvoy.sensorama" >
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.barvoy.sensorama" >
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
|
Update hello world source code in kit to match the tutorial in the book. | <?xml version="1.0"?>
<deployment>
<cluster hostcount="1"
sitesperhost="2" />
<httpd enabled="true">
<jsonapi enabled="true" />
</httpd>
</deployment>
| <?xml version="1.0"?>
<deployment>
<cluster hostcount="1"
sitesperhost="2"
/>
<httpd enabled="true">
<jsonapi enabled="true" />
</httpd>
</deployment>
|
Remove unnecessary comment, fix formatting | <resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
| <resources>
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar" />
</resources>
|
Add required permissions to the manifest | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.connectsdk"
android:versionCode="11"
android:versionName="1.5.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="22" />
<application />
</manifest>
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.connectsdk"
android:versionCode="11"
android:versionName="1.5.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
<application />
</manifest>
|
Update to 4.3 repository location. | <?xml version='1.0' encoding='UTF-8'?>
<?artifactRepository class='org.eclipse.equinox.internal.provisional.p2.core.repository.ICompositeRepository' version='1.0.0'?>
<repository name='"EPP Packages Repository"' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
<properties size='2'>
<property name='p2.compressed' value='true'/>
<property name='p2.timestamp' value='1285286400000'/>
</properties>
<children size='2'>
<child location='file:///home/data/httpd/download.eclipse.org/releases/staging/aggregate'/>
<child location='file:///home/data/httpd/download.eclipse.org/eclipse/updates/4.2milestones'/>
</children>
</repository> | <?xml version='1.0' encoding='UTF-8'?>
<?artifactRepository class='org.eclipse.equinox.internal.provisional.p2.core.repository.ICompositeRepository' version='1.0.0'?>
<repository name='"EPP Packages Repository"' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
<properties size='2'>
<property name='p2.compressed' value='true'/>
<property name='p2.timestamp' value='1285286400000'/>
</properties>
<children size='2'>
<child location='file:///home/data/httpd/download.eclipse.org/releases/staging/aggregate'/>
<child location='file:///home/data/httpd/download.eclipse.org/eclipse/updates/4.3milestones'/>
</children>
</repository> |
Add a link to the bzr change log on Sourceforge. | <?xml version="1.0" encoding="ISO-8859-1"?>
<project>
<version position="left"/>
<body>
<links>
<item name="Sourceforge Project" href="http://sourceforge.net/projects/expectj"/>
</links>
<menu name="ExpectJ">
<item name="Introduction" href="index.html"/>
<item name="Javadoc" href="apidocs/index.html"/>
<item name="Source cross reference" href="xref/index.html"/>
<item name="Sourceforge Project" href="http://sourceforge.net/projects/expectj"/>
</menu>
<menu ref="reports"/>
</body>
</project>
| <?xml version="1.0" encoding="ISO-8859-1"?>
<project>
<version position="left"/>
<body>
<links>
<item name="Sourceforge Project" href="http://sourceforge.net/projects/expectj"/>
</links>
<menu name="ExpectJ">
<item name="Introduction" href="index.html"/>
<item name="Changelog" href="http://expectj.bzr.sourceforge.net/bzr/expectj/trunk/changes"/>
<item name="Javadoc" href="apidocs/index.html"/>
<item name="Source cross reference" href="xref/index.html"/>
<item name="Sourceforge Project" href="http://sourceforge.net/projects/expectj"/>
</menu>
<menu ref="reports"/>
</body>
</project>
|
Fix Android Manifest class name | <?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="0.0.1" android:windowSoftInputMode="adjustPan" package="com.ionicframework.starter" xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="preferExternal">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="PravitelstvoBG" android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="19" />
</manifest>
| <?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="0.0.1" android:windowSoftInputMode="adjustPan" package="com.ionicframework.starter" xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="preferExternal">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="HelloCordova" android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="19" />
</manifest>
|
Update google maps api key. | <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="google_maps_api_key">0RKYBEQTAi6OfIPQuU_kOX8_8FPzqBTpj74q3QQ</string>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="google_maps_api_key">0RKYBEQTAi6NEKnd4A_jdnRIYgbcQJTV_3gnBOQ</string>
</resources>
|
Synchronize action bar text with dropdown text | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2012 GitHub Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="10dp"
android:paddingRight="5dp" >
<ImageView
android:id="@+id/iv_avatar"
style="@style/AvatarActionBar"
android:contentDescription="@string/avatar" />
<TextView
android:id="@+id/tv_org_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="5dp"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/actionbar_text" />
</LinearLayout> | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2012 GitHub Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="10dp"
android:paddingRight="5dp" >
<ImageView
android:id="@+id/iv_avatar"
style="@style/AvatarActionBar"
android:contentDescription="@string/avatar" />
<TextView
android:id="@+id/tv_org_name"
style="@style/TitleText"
android:paddingBottom="0dp"
android:paddingLeft="5dp"
android:singleLine="true"
android:textColor="@color/actionbar_text"
android:textStyle="normal" />
</LinearLayout> |
Configure NerdLauncher as home screen | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bignerdranch.android.nerdlauncher" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".NerdLauncherActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bignerdranch.android.nerdlauncher" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".NerdLauncherActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
|
Revert "Changed PHPUnit test path." | <phpunit>
<testsuites>
<testsuite name="QUAIL Tests">
<directory>testfiles/*Tests.php files</directory>
<file>php/tests/testfiles/oacTests.php</file>
<file>php/tests/testfiles/quailTests.php</file>
</testsuite>
</testsuites>
</phpunit> | <phpunit>
<testsuites>
<testsuite name="QUAIL Tests">
<directory>testfiles/*Tests.php files</directory>
<file>testfiles/oacTests.php</file>
<file>testfiles/quailTests.php</file>
</testsuite>
</testsuites>
</phpunit> |
Improve sentence structure in German translation | <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="appName">BobBall</string>
<string name="continueString">Berühre um fortzusetzen</string>
<string name="highScoreAchieved">Glückwunsch, du hast einen neuen High Score erreicht</string>
<string name="pausedText">Pausiert</string>
<string name="bttnTextResume">Spiel fortsetzen</string>
<string name="welcomeText">Willkommen zu BobBall</string>
<string name="levelCompleted">"Gut gemacht, Level beendet: "</string>
<string name="dead">Du bist gestorben</string>
<string name="namePrompt">Gib deinen Namen ein:</string>
<string name="timeLeftLabel">"Übrige Zeit: "</string>
<string name="livesLabel">"Leben: "</string>
<string name="scoreLabel">"Punkte: "</string>
<string name="areaClearedLabel">"% bereinigt: "</string>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="appName">BobBall</string>
<string name="continueString">Berühre um fortzusetzen</string>
<string name="highScoreAchieved">Glückwunsch, du hast einen neuen High Score erreicht</string>
<string name="pausedText">Pausiert</string>
<string name="bttnTextResume">Spiel fortsetzen</string>
<string name="welcomeText">Willkommen zu BobBall</string>
<string name="levelCompleted">"Gut gemacht, du hast Level %d beendet"</string>
<string name="dead">Du bist gestorben</string>
<string name="namePrompt">Gib deinen Namen ein:</string>
<string name="timeLeftLabel">"Übrige Zeit: %d"</string>
<string name="livesLabel">"Leben: "</string>
<string name="scoreLabel">"Punkte: "</string>
<string name="areaClearedLabel">"% bereinigt: "</string>
</resources>
|
Exclude vendor from test coverage report. | <?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap = "vendor/autoload.php">
<testsuites>
<testsuite name="Test Suite">
<directory>src/App/Test</directory>
</testsuite>
</testsuites>
</phpunit>
| <?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap = "vendor/autoload.php">
<testsuites>
<testsuite name="Test Suite">
<directory>src/App/Test</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>vendor</directory>
</blacklist>
</filter>
</phpunit>
|
Remove vbarbaresi and dmerejkowsky from maintainers | <project version="3">
<maintainer email="dmerejkowsky@aldebaran-robotics.com">Dimitri Merejkowsky</maintainer>
<maintainer email="vbarbaresi@aldebaran-robotics.com">Vincent Barbaresi</maintainer>
<maintainer email="hkouki@aldebaran-robotics.com">Houssem Kouki</maintainer>
<project src="doc" />
<qipython name="qibuild">
<setup with_distutils="true" />
</qipython>
</project>
| <project version="3">
<maintainer email="hkouki@aldebaran-robotics.com">Houssem Kouki</maintainer>
<project src="doc" />
<qipython name="qibuild">
<setup with_distutils="true" />
</qipython>
</project>
|
Exclude eval-stdin.php from code coverage | <?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="false"
verbose="true">
<testsuites>
<testsuite name="small">
<directory suffix="Test.php">tests/Framework</directory>
<directory suffix="Test.php">tests/Extensions</directory>
<directory suffix="Test.php">tests/Runner</directory>
<directory suffix="Test.php">tests/Util</directory>
</testsuite>
<testsuite name="large">
<directory suffix=".phpt">tests/TextUI</directory>
<directory suffix=".phpt">tests/Regression</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<file>src/Framework/Assert/Functions.php</file>
</exclude>
</whitelist>
</filter>
<php>
<const name="PHPUNIT_TESTSUITE" value="true"/>
</php>
</phpunit>
| <?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="false"
verbose="true">
<testsuites>
<testsuite name="small">
<directory suffix="Test.php">tests/Framework</directory>
<directory suffix="Test.php">tests/Extensions</directory>
<directory suffix="Test.php">tests/Runner</directory>
<directory suffix="Test.php">tests/Util</directory>
</testsuite>
<testsuite name="large">
<directory suffix=".phpt">tests/TextUI</directory>
<directory suffix=".phpt">tests/Regression</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<file>src/Framework/Assert/Functions.php</file>
<file>src/Util/PHP/eval-stdin.php</file>
</exclude>
</whitelist>
</filter>
<php>
<const name="PHPUNIT_TESTSUITE" value="true"/>
</php>
</phpunit>
|
Choose python version based on what ros is using | <package format="2">
<name>laser_geometry</name>
<version>1.6.4</version>
<description>
This package contains a class for converting from a 2D laser scan as defined by
sensor_msgs/LaserScan into a point cloud as defined by sensor_msgs/PointCloud
or sensor_msgs/PointCloud2. In particular, it contains functionality to account
for the skew resulting from moving robots or tilting laser scanners.
</description>
<maintainer email="dave.hershberger@sri.com">Dave Hershberger</maintainer>
<maintainer email="william@osrfoundation.org">William Woodall</maintainer>
<license>BSD</license>
<author>Tully Foote</author>
<author>Radu Bogdan Rusu</author>
<url>http://ros.org/wiki/laser_geometry</url>
<buildtool_depend version_gte="0.5.68">catkin</buildtool_depend>
<depend>angles</depend>
<depend>boost</depend>
<depend>eigen</depend>
<depend>roscpp</depend>
<depend>sensor_msgs</depend>
<depend>tf</depend>
<depend>tf2</depend>
<exec_depend>python-numpy</exec_depend>
<test_depend>rosunit</test_depend>
</package>
| <package format="2">
<name>laser_geometry</name>
<version>1.6.4</version>
<description>
This package contains a class for converting from a 2D laser scan as defined by
sensor_msgs/LaserScan into a point cloud as defined by sensor_msgs/PointCloud
or sensor_msgs/PointCloud2. In particular, it contains functionality to account
for the skew resulting from moving robots or tilting laser scanners.
</description>
<maintainer email="dave.hershberger@sri.com">Dave Hershberger</maintainer>
<maintainer email="william@osrfoundation.org">William Woodall</maintainer>
<license>BSD</license>
<author>Tully Foote</author>
<author>Radu Bogdan Rusu</author>
<url>http://ros.org/wiki/laser_geometry</url>
<buildtool_depend version_gte="0.5.68">catkin</buildtool_depend>
<depend>angles</depend>
<depend>boost</depend>
<depend>eigen</depend>
<depend>roscpp</depend>
<depend>sensor_msgs</depend>
<depend>tf</depend>
<depend>tf2</depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 2">python-numpy</exec_depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 3">python3-numpy</exec_depend>
<test_depend>rosunit</test_depend>
</package>
|
Rename nodelet xml file in plugins.xml. | <?xml version="1.0"?>
<package format="2">
<name>global_mapper</name>
<version>1.1.3</version>
<description>The global_mapper package</description>
<maintainer email="jakeware@mit.edu">Jake Ware</maintainer>
<author>Jake Ware</author>
<license>MIT</license>
<buildtool_depend>catkin</buildtool_depend>
<depend>roscpp</depend>
<depend>nodelet</depend>
<depend>fla_utils</depend>
<depend>pcl_ros</depend>
<export>
<nodelet plugin="${prefix}/global_mapper_nodelet.xml"/>
</export>
</package>
| <?xml version="1.0"?>
<package format="2">
<name>global_mapper</name>
<version>1.1.3</version>
<description>The global_mapper package</description>
<maintainer email="jakeware@mit.edu">Jake Ware</maintainer>
<author>Jake Ware</author>
<license>MIT</license>
<buildtool_depend>catkin</buildtool_depend>
<depend>roscpp</depend>
<depend>nodelet</depend>
<depend>fla_utils</depend>
<depend>pcl_ros</depend>
<export>
<nodelet plugin="${prefix}/nodelet_plugins.xml"/>
</export>
</package>
|
Fix IDE copyright profile to include LLC for Poly Forest | <component name="CopyrightManager">
<copyright>
<option name="notice" value="Copyright &#36;today.year Poly Forest Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." />
<option name="keyword" value="Copyright" />
<option name="allowReplaceKeyword" value="Copyright" />
<option name="myName" value="Apache 2" />
<option name="myLocal" value="true" />
</copyright>
</component>
| <component name="CopyrightManager">
<copyright>
<option name="allowReplaceRegexp" value="Copyright" />
<option name="notice" value="Copyright &#36;today.year Poly Forest, LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." />
<option name="myName" value="Apache 2" />
</copyright>
</component> |
Add missing GMS version to manifest | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.meiste.tempalarm" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission
android:name="com.example.gcm.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.gcm.permission.C2D_MESSAGE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.meiste.tempalarm.CurrentTemp"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.meiste.tempalarm" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission
android:name="com.example.gcm.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.gcm.permission.C2D_MESSAGE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.meiste.tempalarm.CurrentTemp"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
</manifest>
|
Exclude groovy import from canoo dependency | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.rvkb</groupId>
<artifactId>woko-webtests</artifactId>
<version>2.0-beta2-SNAPSHOT</version>
</parent>
<artifactId>woko-webtests-common</artifactId>
<name>Woko - web tests common code</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.canoo.webtest</groupId>
<artifactId>webtest</artifactId>
<version>3.0</version>
</dependency>
<!-- override the htmlunit version (jquery doesn't work otherwise) -->
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
</dependency>
</dependencies>
</project> | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.rvkb</groupId>
<artifactId>woko-webtests</artifactId>
<version>2.0-beta2-SNAPSHOT</version>
</parent>
<artifactId>woko-webtests-common</artifactId>
<name>Woko - web tests common code</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.canoo.webtest</groupId>
<artifactId>webtest</artifactId>
<version>3.0</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.7.0</version>
</dependency>
<!-- override the htmlunit version (jquery doesn't work otherwise) -->
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
</dependency>
</dependencies>
</project> |
Increase sort order for brands so it is greater than catalog. | <?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
<system>
<section id="brand" translate="label" type="text" sortOrder="40" showInDefault="1" showInWebsite="1" showInStore="1">
<class>separator-top</class>
<label>Brands</label>
<tab>catalog</tab>
<resource>Dmatthew_Brand::config_brand</resource>
<group id="seo" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Search Engine Optimization</label>
<field id="brand_url_suffix" translate="label comment" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Brand URL Suffix</label>
<backend_model>Magento\Catalog\Model\System\Config\Backend\Catalog\Url\Rewrite\Suffix</backend_model>
<comment>You need to refresh the cache.</comment>
</field>
</group>
</section>
</system>
</config>
| <?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
<system>
<section id="brand" translate="label" type="text" sortOrder="45" showInDefault="1" showInWebsite="1" showInStore="1">
<class>separator-top</class>
<label>Brands</label>
<tab>catalog</tab>
<resource>Dmatthew_Brand::config_brand</resource>
<group id="seo" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Search Engine Optimization</label>
<field id="brand_url_suffix" translate="label comment" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Brand URL Suffix</label>
<backend_model>Magento\Catalog\Model\System\Config\Backend\Catalog\Url\Rewrite\Suffix</backend_model>
<comment>You need to refresh the cache.</comment>
</field>
</group>
</section>
</system>
</config>
|
Hide debugging option for now | <menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.gmail.alexellingsen.g2theming.MainActivity" >
<item
android:id="@+id/action_reset_default"
android:showAsAction="never"
android:title="@string/action_reset_default"/>
<item
android:id="@+id/action_enable_debugging"
android:checkable="true"
android:showAsAction="never"
android:title="@string/enable_debugging"/>
</menu> | <menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.gmail.alexellingsen.g2theming.MainActivity" >
<item
android:id="@+id/action_reset_default"
android:showAsAction="never"
android:title="@string/action_reset_default"/>
<item
android:id="@+id/action_enable_debugging"
android:checkable="true"
android:showAsAction="never"
android:title="@string/enable_debugging"
android:visible="false"/>
</menu> |
Update mapping: fix type for Identifier | <?xml version="1.0" encoding="UTF-8"?>
<hibernate-mapping default-cascade="none">
<class name="ADO.Model.Sequence_Ref" table="sequence" dynamic-insert="true" dynamic-update="true">
<comment>Sequence generator</comment>
<id name="name" type="String" unsaved-value="0">
<comment>the sequence name</comment>
<column name="NAME" not-null="true" unique="false" sql-type="VARCHAR(256)"/>
<generator class="none"/>
</id>
<version name="object_version" type="int" column="objectVersion"/>
<property name="value" type="Identifier">
<comment>the sequence value</comment>
<column name="VALUE" not-null="false" unique="false" sql-type="BIGINT"/>
</property>
<property name="block_size" type="Identifier">
<comment>the sequence block size</comment>
<column name="BLOCK_SIZE" not-null="false" unique="false" sql-type="BIGINT"/>
</property>
</class>
</hibernate-mapping>
| <?xml version="1.0" encoding="UTF-8"?>
<hibernate-mapping default-cascade="none">
<class name="ADO.Model.Sequence_Ref" table="sequence" dynamic-insert="true" dynamic-update="true">
<comment>Sequence generator</comment>
<id name="name" type="String" unsaved-value="0">
<comment>the sequence name</comment>
<column name="NAME" not-null="true" unique="false" sql-type="VARCHAR(256)"/>
<generator class="none"/>
</id>
<version name="object_version" type="int" column="objectVersion"/>
<property name="value" type="ADO.Identifier">
<comment>the sequence value</comment>
<column name="VALUE" not-null="false" unique="false" sql-type="BIGINT"/>
</property>
<property name="block_size" type="ADO.Identifier">
<comment>the sequence block size</comment>
<column name="BLOCK_SIZE" not-null="false" unique="false" sql-type="BIGINT"/>
</property>
</class>
</hibernate-mapping>
|
Fix typo in POM (FTPSERVER-373) | <?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License. -->
<project>
<parent>
<artifactId>ftpserver-parent</artifactId>
<groupId>org.apache.ftpserver</groupId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.ftpserver</groupId>r
<artifactId>ftpserver-examples</artifactId>
<packaging>pom</packaging>
<name>Apache FtpServer Examples</name>
<version>1.1.0-SNAPSHOT</version>
<modules>
<module>ftpserver-example-spring-war</module>
<module>ftpserver-osgi-ftplet-service</module>
<module>ftpserver-osgi-spring-service</module>
</modules>
</project>
| <?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License. -->
<project>
<parent>
<artifactId>ftpserver-parent</artifactId>
<groupId>org.apache.ftpserver</groupId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.ftpserver</groupId>
<artifactId>ftpserver-examples</artifactId>
<packaging>pom</packaging>
<name>Apache FtpServer Examples</name>
<version>1.1.0-SNAPSHOT</version>
<modules>
<module>ftpserver-example-spring-war</module>
<module>ftpserver-osgi-ftplet-service</module>
<module>ftpserver-osgi-spring-service</module>
</modules>
</project>
|
Make minimum wide widget height accurate | <?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:minWidth="320dp"
android:minHeight="120dp"
android:minResizeWidth="200dp"
android:minResizeHeight="120dp"
android:previewImage="@drawable/art_default"
android:initialLayout="@layout/widget_wide"
android:resizeMode="horizontal|vertical"
android:widgetCategory="home_screen"
tools:targetApi="jelly_bean_mr1">
</appwidget-provider> | <?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:minWidth="320dp"
android:minHeight="@dimen/widget_wide_height"
android:minResizeWidth="200dp"
android:minResizeHeight="@dimen/widget_wide_height"
android:previewImage="@drawable/art_default"
android:initialLayout="@layout/widget_wide"
android:resizeMode="horizontal|vertical"
android:widgetCategory="home_screen"
tools:targetApi="jelly_bean_mr1">
</appwidget-provider> |
Change Support7Demos to use android:theme instead | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2014 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Your content"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge"/>
</LinearLayout> | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2014 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Your content"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge"/>
</LinearLayout> |
Set language version to 6 to prevent strange errors | <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ru.digiteklabs</groupId>
<artifactId>scheduler</artifactId>
<version>0.1</version>
<dependencies>
<dependency>
<groupId>com.intellij</groupId>
<artifactId>annotations</artifactId>
<version>12.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project> | <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ru.digiteklabs</groupId>
<artifactId>scheduler</artifactId>
<version>0.1</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>6</source>
<target>6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.intellij</groupId>
<artifactId>annotations</artifactId>
<version>12.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project> |
Change size of species list thumbnails. | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2012 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<dimen name="species_detail_thumbnail_size">100dp</dimen>
<dimen name="image_thumbnail_spacing">1dp</dimen>
<dimen name="image_detail_pager_margin">10dp</dimen>
<dimen name="group_column_width">140dp</dimen>
<dimen name="group_item_padding_bottom">5dp</dimen>
<dimen name="group_item_spacing">10dp</dimen>
<dimen name="group_icon_padding">10dp</dimen>
<dimen name="species_list_thumbnail_size">72px</dimen>
<dimen name="details_page_padding">20dp</dimen>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2012 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<dimen name="species_detail_thumbnail_size">100dp</dimen>
<dimen name="image_thumbnail_spacing">1dp</dimen>
<dimen name="image_detail_pager_margin">10dp</dimen>
<dimen name="group_column_width">140dp</dimen>
<dimen name="group_item_padding_bottom">5dp</dimen>
<dimen name="group_item_spacing">10dp</dimen>
<dimen name="group_icon_padding">10dp</dimen>
<dimen name="species_list_thumbnail_size">56dp</dimen>
<dimen name="details_page_padding">20dp</dimen>
</resources>
|
Update target platform and dependencies | <?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2017 Torkild U. Resheim.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Torkild U. Resheim - initial API and implementation
-->
<feature
id="net.resheim.eclipse.equationwriter"
label="%featureName"
version="0.1.0.qualifier"
provider-name="%providerName"
plugin="net.resheim.eclipse.equationwriter.core">
<description>
%description
</description>
<copyright>
%copyright
</copyright>
<license>
%license
</license>
<plugin
id="net.resheim.eclipse.equationwriter.core"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
<plugin
id="net.resheim.eclipse.equationwriter.mathjax"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
</feature>
| <?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2017 Torkild U. Resheim.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Torkild U. Resheim - initial API and implementation
-->
<feature
id="net.resheim.eclipse.equationwriter"
label="%featureName"
version="0.1.0.qualifier"
provider-name="%providerName"
plugin="net.resheim.eclipse.equationwriter.core">
<description>
%description
</description>
<copyright>
%copyright
</copyright>
<license>
%license
</license>
<requires>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.ui.browser"/>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.jface.text"/>
<import plugin="org.eclipse.ui.workbench"/>
<import plugin="org.eclipse.ui.forms"/>
<import plugin="org.eclipse.swt"/>
<import plugin="org.eclipse.ui.editors"/>
<import plugin="org.eclipse.mylyn.wikitext"/>
<import plugin="com.google.guava"/>
</requires>
<plugin
id="net.resheim.eclipse.equationwriter.core"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
<plugin
id="net.resheim.eclipse.equationwriter.mathjax"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
</feature>
|
Add AMQP client library dependency | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>uk.co.samstokes.storm</groupId>
<artifactId>storm-amqp-spout</artifactId>
<version>0.0.1-SNAPSHOT</version>
<repositories>
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>storm</groupId>
<artifactId>storm</artifactId>
<version>0.5.2</version>
</dependency>
</dependencies>
</project>
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>uk.co.samstokes.storm</groupId>
<artifactId>storm-amqp-spout</artifactId>
<version>0.0.1-SNAPSHOT</version>
<repositories>
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>storm</groupId>
<artifactId>storm</artifactId>
<version>0.5.2</version>
</dependency>
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>2.6.1</version>
</dependency>
</dependencies>
</project>
|
Use BeanServiceProviderFactory in Twitter showcase. | <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:social="http://www.springframework.org/schema/spring-social"
xsi:schemaLocation="http://www.springframework.org/schema/spring-social http://www.springframework.org/schema/social/spring-social-1.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<!-- Configure a connection repository through which account-to-provider connections will be stored -->
<social:jdbc-connection-repository data-source="dataSource" />
<!-- Configure a service provider factory from which service providers may be retrieved by name
(used primarily by ConnectController).
In this case, service providers are retrieved as beans from the Spring application context.
<social:jdbc-service-provider-factory> retrieves them through JDBC.
-->
<bean id="serviceProviderFactory" class="org.springframework.social.config.BeanServiceProviderFactory" />
<!-- Configure a Twitter service provider -->
<social:twitter-provider consumer-key="YR571S2JiVBOFyJS5MEg"
consumer-secret="Kb8hS0luftwCJX3qVoyiLUMfZDtK1EozFoUkjNLUMx4" />
</beans> | <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:social="http://www.springframework.org/schema/spring-social"
xsi:schemaLocation="http://www.springframework.org/schema/spring-social http://www.springframework.org/schema/social/spring-social-1.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<!-- Configure a connection repository through which account-to-provider connections will be stored -->
<social:jdbc-connection-repository data-source="dataSource" />
<!-- Configure a service provider factory from which service providers may be retrieved by name
(used primarily by ConnectController).
In this case, service providers are retrieved as beans from the Spring application context.
<social:jdbc-service-provider-factory> retrieves them through JDBC.
-->
<bean id="serviceProviderFactory" class="org.springframework.social.config.BeanServiceProviderFactory" autowire="constructor" />
<!-- Configure a Twitter service provider -->
<social:twitter-provider consumer-key="YR571S2JiVBOFyJS5MEg"
consumer-secret="Kb8hS0luftwCJX3qVoyiLUMfZDtK1EozFoUkjNLUMx4" />
</beans> |
Remove unused stuff from manifest | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eightbitlab.bottomnavigationbar">
<application android:allowBackup="true" android:label="@string/app_name"
android:supportsRtl="true">
</application>
</manifest>
| <manifest package="com.eightbitlab.bottomnavigationbar">
</manifest>
|
Revert "Hide ability to create merged manga" | <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_share"
android:icon="@drawable/ic_share_white_24dp"
android:title="@string/action_share"
app:showAsAction="ifRoom" />
<!--<item android:id="@+id/action_smart_search"
android:icon="@drawable/eh_ic_find_replace_white_24dp"
android:title="Find in another source"
app:showAsAction="ifRoom" />-->
<item android:id="@+id/action_open_in_browser"
android:title="@string/action_open_in_browser"
app:showAsAction="never"/>
<item android:id="@+id/action_open_in_web_view"
android:title="@string/action_open_in_web_view"
app:showAsAction="never"/>
<item android:id="@+id/action_add_to_home_screen"
android:title="@string/action_add_to_home_screen"
app:showAsAction="never"/>
</menu>
| <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_share"
android:icon="@drawable/ic_share_white_24dp"
android:title="@string/action_share"
app:showAsAction="ifRoom" />
<item android:id="@+id/action_smart_search"
android:icon="@drawable/eh_ic_find_replace_white_24dp"
android:title="Find in another source"
app:showAsAction="ifRoom" />
<item android:id="@+id/action_open_in_browser"
android:title="@string/action_open_in_browser"
app:showAsAction="never"/>
<item android:id="@+id/action_open_in_web_view"
android:title="@string/action_open_in_web_view"
app:showAsAction="never"/>
<item android:id="@+id/action_add_to_home_screen"
android:title="@string/action_add_to_home_screen"
app:showAsAction="never"/>
</menu>
|
Set required owncloud version to 4.93 | <?xml version="1.0"?>
<info>
<id>search_lucene</id>
<name>Full Text Search</name>
<licence>AGPL</licence>
<author>Jörn Dreyer</author>
<types>
<filesystem/>
</types>
<require>4.91</require>
<shipped>true</shipped>
<default_enable/>
<description>Activate this app when you want to be
able to find files by searching their content.
The implementation does not search the files
directly but will build a so called
<a href="http://en.wikipedia.org/wiki/Reverse_index">reverse index</a>.<br/><br/>
Currently only your personal files will be indexed,
and only you index is searched, so you will not be able
to find files that have been shared with you or that
reside on remote mount points.<br/><br/>
Every time a file has been written owncloud will
index it in the background. Furthermore, when
clicking the search box it will check if any
files need indexing. This might add a lot of
background jobs after first enabling this app,
depending on the amount of files you have.<br/><br/>
Even thought file indexing is in progress you will
still be able to retrieve file search results for any
indexed files.<br/><br/>
We currenty support plain text, HTML and PDF files.
MS Office 2007 and Open/Libre Office are on the roadmap.
</description>
</info>
| <?xml version="1.0"?>
<info>
<id>search_lucene</id>
<name>Full Text Search</name>
<licence>AGPL</licence>
<author>Jörn Dreyer</author>
<types>
<filesystem/>
</types>
<require>4.93</require>
<shipped>true</shipped>
<default_enable/>
<description>Activate this app when you want to be
able to find files by searching their content.
The implementation does not search the files
directly but will build a so called
<a href="http://en.wikipedia.org/wiki/Reverse_index">reverse index</a>.<br/><br/>
Currently only your personal files will be indexed,
and only you index is searched, so you will not be able
to find files that have been shared with you or that
reside on remote mount points.<br/><br/>
Every time a file has been written owncloud will
index it in the background. Furthermore, when
clicking the search box it will check if any
files need indexing. This might add a lot of
background jobs after first enabling this app,
depending on the amount of files you have.<br/><br/>
Even thought file indexing is in progress you will
still be able to retrieve file search results for any
indexed files.<br/><br/>
We currenty support plain text, HTML and PDF files.
MS Office 2007 and Open/Libre Office are on the roadmap.
</description>
</info>
|
Update xsp-config to allow runtime value bindings for defaultCountryCode | <?xml version="1.0" encoding="UTF-8"?>
<faces-config>
<faces-config-extension>
<namespace-uri>http://www.gregorbyte.com/xsp/
</namespace-uri>
<default-prefix>gb</default-prefix>
</faces-config-extension>
<converter>
<description>Converts a String into an Phone Number in
International Format</description>
<display-name>Phone Number Converter</display-name>
<converter-id>gregorbyte.PhoneNumberConverter
</converter-id>
<converter-class>com.gregorbyte.xsp.converter.PhoneNumberConverter
</converter-class>
<property>
<description>The default Country code to be used if the user does
not specify one</description>
<display-name>Default Country Code</display-name>
<property-name>defaultCountryCode</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<allow-run-time-binding>false</allow-run-time-binding>
</property-extension>
</property>
<converter-extension>
<tag-name>convertPhoneNumber</tag-name>
</converter-extension>
</converter>
</faces-config> | <?xml version="1.0" encoding="UTF-8"?>
<faces-config>
<faces-config-extension>
<namespace-uri>http://www.gregorbyte.com/xsp/
</namespace-uri>
<default-prefix>gb</default-prefix>
</faces-config-extension>
<converter>
<description>Converts a String into an Phone Number in
International Format</description>
<display-name>Phone Number Converter</display-name>
<converter-id>gregorbyte.PhoneNumberConverter
</converter-id>
<converter-class>com.gregorbyte.xsp.converter.PhoneNumberConverter
</converter-class>
<property>
<description>The default Country code to be used if the user does
not specify one</description>
<display-name>Default Country Code</display-name>
<property-name>defaultCountryCode</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<allow-run-time-binding>true</allow-run-time-binding>
</property-extension>
</property>
<converter-extension>
<tag-name>convertPhoneNumber</tag-name>
</converter-extension>
</converter>
</faces-config> |
Simplify output to make it more readable. Early exploratory stages, known to be quite buggy. | declare function local:unwrap($t, $stok)
{
let $children := $stok[@head-id = $t/@id]
let $seq := ($children | $t)/.
return
if ($children)
then
<wg relation="{$t/@relation}">
{
for $s in $seq
return
if ($s is $t)
then $t
else local:unwrap($s, $stok)
}
</wg>
else $t
};
for $s in //sentence
let $stok := $s//token
let $t := $stok[not(@head-id)][1] (: hack ... get rid of subscript :)
return
<sentence>
{
local:unwrap($t, $stok)
}
</sentence> | declare function local:token($t)
{
<w>{ string($t/@form) }</w>,
$t/@presentation-after[. != ' '] ! <pc>{string(.)}</pc>
};
declare function local:unwrap($t, $stok)
{
let $children := $stok[@head-id = $t/@id]
let $seq := ($children | $t)/.
return
if ($children)
then
<wg relation="{$t/@relation}">
{
for $s in $seq
return
if ($s is $t)
then local:token($t)
else local:unwrap($s, $stok)
}
</wg>
else local:token($t)
};
for $s in //sentence
return
<sentence>
{
let $stok := $s//token
for $t in $stok[not(@head-id)]
return local:unwrap($t, $stok)
}
</sentence> |
Annotate the MarkLogic rdf functions with versioned type restrictions. | xquery version "1.0-ml";
(:~
: MarkLogic rdf functions
:
: @see https://docs.marklogic.com/rdf
:)
module namespace rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
declare namespace a = "http://reecedunn.co.uk/xquery/annotations";
declare namespace o = "http://reecedunn.co.uk/xquery/options";
declare option o:requires "marklogic/7.0";
declare %a:since("marklogic", "7.0") function rdf:langString($string as xs:string, $lang as xs:string) as rdf:langString external;
declare %a:since("marklogic", "7.0") function rdf:langString-language($val (: as [7.0]sem:unknown [8.0]rdf:langString :)) as xs:string external; | xquery version "1.0-ml";
(:~
: MarkLogic rdf functions
:
: @see https://docs.marklogic.com/rdf
:)
module namespace rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
declare namespace a = "http://reecedunn.co.uk/xquery/annotations";
declare namespace o = "http://reecedunn.co.uk/xquery/options";
declare option o:requires "marklogic/7.0";
declare %a:since("marklogic", "7.0") function rdf:langString($string as xs:string, $lang as xs:string) as rdf:langString external;
declare %a:restrict-until("$options", "marklogic", "8.0", "sem:unknown")
%a:restrict-since("$options", "marklogic", "8.0", "rdf:langString")
%a:since("marklogic", "7.0") function rdf:langString-language($val as (sem:unknown|rdf:langString)) as xs:string external; |
Add BaseX User Module function signatures. | xquery version "3.0";
(:~
: BaseX User Module functions
:
: @see http://docs.basex.org/wiki/User_Module
:)
module namespace user = "http://basex.org/modules/user";
import module namespace a = "http://reecedunn.co.uk/xquery/annotations" at "res://reecedunn.co.uk/xquery/annotations.xqy";
declare %a:since("basex", "8.1") function user:current() as xs:string external;
declare %a:since("basex", "8.0") function user:list() as xs:string* external;
declare %a:since("basex", "8.0") function user:list-details() as element(user)* external;
declare %a:since("basex", "8.0") function user:list-details($name as xs:string) as element(user)* external;
declare %a:since("basex", "8.0") function user:exists($name as xs:string) as xs:boolean external;
declare %a:since("basex", "8.6") function user:check($name as xs:string, $password as xs:string) as xs:empty-sequence() external;
declare %a:since("basex", "8.6") function user:info() as element(info) external;
declare %a:since("basex", "8.0") function user:create($name as xs:string, $password as xs:string) as empty-sequence() external;
declare %a:since("basex", "8.0") function user:create($name as xs:string, $password as xs:string, $permissions as xs:string*) as empty-sequence() external;
declare %a:since("basex", "8.4") function user:create($name as xs:string, $password as xs:string, $permissions as xs:string*, $patterns as xs:string*) as empty-sequence() external;
declare %a:since("basex", "8.0") function user:grant($name as xs:string, $permissions as xs:string*) as empty-sequence() external;
declare %a:since("basex", "8.4") function user:grant($name as xs:string, $permissions as xs:string*, $patterns as xs:string*) as empty-sequence() external;
declare %a:since("basex", "8.0") function user:drop($name as xs:string) as empty-sequence() external;
declare %a:since("basex", "8.4") function user:drop($name as xs:string, $patterns as xs:string*) as empty-sequence() external;
declare %a:since("basex", "8.0") function user:alter($name as xs:string, $newname as xs:string) as empty-sequence() external;
declare %a:since("basex", "8.0") function user:password($name as xs:string, $password as xs:string) as empty-sequence() external;
declare %a:since("basex", "8.6") function user:update-info($info as element(info)) as empty-sequence() external; | |
Add BaseX Unit Module function signatures. | xquery version "3.0";
(:~
: BaseX Unit Module functions
:
: @see http://docs.basex.org/wiki/Unit_Module
:)
module namespace unit = "http://basex.org/modules/unit";
import module namespace a = "http://reecedunn.co.uk/xquery/annotations" at "res://reecedunn.co.uk/xquery/annotations.xqy";
(:
BaseX Unit Module annotations
@TODO - do these need to be included?
%unit:test
%unit:test("expected", CODE) %unit:test("expected" as xs:string, xs:QName)???
%unit:before
%unit:before(FUNCTION)
%unit:after
%unit:after(FUNCTION)
%unit:before-module
%unit:after-module
%unit:ignore
%unit:ignore(MESSAGE)
:)
declare %a:since("basex", "7.7") function unit:assert($test as item()*) as empty-sequence() external;
declare %a:since("basex", "7.7") function unit:assert($test as item()*, $info as item()) as empty-sequence() external;
declare %a:since("basex", "7.8") function unit:assert-equals($returned as item()*, $expected as item()*) as empty-sequence() external;
declare %a:since("basex", "7.8") function unit:assert-equals($returned as item()*, $expected as item()*, $info as item()) as empty-sequence() external;
declare %a:since("basex", "8.0") function unit:fail() as empty-sequence() external;
declare %a:since("basex", "7.7") function unit:fail($info as item()) as empty-sequence() external;
declare %a:since("basex", "7.7") %a:until("basex", "7.9") function unit:test() as element(testsuite)* external;
declare %a:since("basex", "7.7") %a:until("basex", "7.9") function unit:test($functions as function(*)*) as element(testsuite)* external;
declare %a:since("basex", "7.7") %a:until("basex", "7.9") function unit:test-uris($uris as xs:string*) as element(testsuites) external; | |
Update basic XSL to reflect XSD changes. | <?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h1>MCUpdater ServerPack version <xsl:value-of select="ServerPack/@version"/></h1>
<xsl:for-each select="ServerPack/Server">
<h2><xsl:value-of select="@name"/> - Minecraft <xsl:value-of select="@version"/> (revision <xsl:value-of select="@revision"/>)</h2>
<h3>Mods</h3>
<table border="1">
<tr bgcolor="#cccccc">
<th>Name</th>
<th>Version</th>
<th>URL</th>
<th>MD5</th>
</tr>
<xsl:for-each select="Module">
<tr>
<td><xsl:value-of select="@name"/></td>
<td><xsl:value-of select="Meta/@version"/></td>
<td><a href="{Meta/@URL}"><xsl:value-of select="Meta/@URL"/></a></td>
<td><xsl:value-of select="MD5"/></td>
</tr>
</xsl:for-each>
</table>
<hr/>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
| <?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h1>MCUpdater ServerPack version <xsl:value-of select="ServerPack/@version"/></h1>
<xsl:for-each select="ServerPack/Server">
<h2><xsl:value-of select="@name"/> - Minecraft <xsl:value-of select="@version"/> (revision <xsl:value-of select="@revision"/>)</h2>
<h3>Mods</h3>
<table border="1">
<tr bgcolor="#cccccc">
<th>Name</th>
<th>Version</th>
<th>URL</th>
<th>MD5</th>
</tr>
<xsl:for-each select="Module">
<tr>
<td><xsl:value-of select="@name"/></td>
<td><xsl:value-of select="Meta/version"/></td>
<td><a href="{Meta/URL}"><xsl:value-of select="Meta/URL"/></a></td>
<td><xsl:value-of select="MD5"/></td>
</tr>
</xsl:for-each>
</table>
<hr/>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|
Fix FIMK header row in a transaction packet | <?xml version="1.0" encoding="UTF-8"?>
<!-- Simplifies FIMK blockexplorer transaction list -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" omit-xml-declaration="yes" indent="no" />
<xsl:strip-space elements="*" />
<!-- Header and table rows are mapped into CSV records -->
<xsl:template match="h1|tr">
<xsl:apply-templates />
<xsl:text> </xsl:text>
</xsl:template>
<!-- Table cells and lists are mapped into CSV fields (comma separated) -->
<xsl:template match="td[not(position() = last())]|li[not(position() = last())]">
<xsl:apply-templates />
<xsl:text>,</xsl:text>
</xsl:template>
<!-- Change all text to upper case which makes compression rate
higher (less unique characters) -->
<xsl:template match="text()">
<xsl:value-of select="translate(.,
'abcdefghijklmnopqrstuvwxyz',
'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" />
</xsl:template>
</xsl:stylesheet>
| <?xml version="1.0" encoding="UTF-8"?>
<!-- Simplifies FIMK blockexplorer transaction list -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" omit-xml-declaration="yes" indent="no" />
<xsl:strip-space elements="*" />
<!-- Header and table rows are mapped into CSV records -->
<xsl:template match="h1|tr">
<xsl:apply-templates />
<xsl:text> </xsl:text>
</xsl:template>
<!-- Table cells and lists are mapped into CSV fields (comma separated) -->
<xsl:template match="th[not(position() = last())]|td[not(position() = last())]|li[not(position() = last())]">
<xsl:apply-templates />
<xsl:text>,</xsl:text>
</xsl:template>
<!-- Change all text to upper case which makes compression rate
higher (less unique characters) -->
<xsl:template match="text()">
<xsl:value-of select="translate(.,
'abcdefghijklmnopqrstuvwxyz',
'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" />
</xsl:template>
</xsl:stylesheet>
|
Add a message to explain the default skins and the test remote skins. The default skin names are hard-coded. We need to find a way to automate that. | <?xml version="1.0"?>
<!--
Copyright 2002-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="skins">
<project default="echoskins">
<target name="echoskins">
<echo>Available skins:</echo>
<xsl:apply-templates select="skin" />
</target>
</project>
</xsl:template>
<xsl:template match="skin">
<echo>
* <xsl:value-of select="@name"/> - <xsl:value-of select="normalize-space(description)"/>
- author: <xsl:value-of select="@author"/>
- website: <xsl:value-of select="@website"/>
</echo>
</xsl:template>
</xsl:stylesheet>
| <?xml version="1.0"?>
<!--
Copyright 2002-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="skins">
<project default="echoskins">
<target name="echoskins">
<echo>Available skins:
Forrest provides some default skins which should meet most needs.
crust, pelt-dev, tigris
See http://forrest.apache.org/docs/skins.html
Additional skins which are maintained by other people are available from
outside the Forrest distribution. Currently these are only basic test skins
to demonstrate the concept of a remote skin respository.</echo>
<xsl:apply-templates select="skin" />
</target>
</project>
</xsl:template>
<xsl:template match="skin">
<echo>
* <xsl:value-of select="@name"/> - <xsl:value-of select="normalize-space(description)"/>
- author: <xsl:value-of select="@author"/>
- website: <xsl:value-of select="@website"/>
</echo>
</xsl:template>
</xsl:stylesheet>
|
Add correct input for 'from' element in feedback.xsl | <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<feedbackform>
<recipients>
<recipient><xsl:text>1234@integrationpartners.nl</xsl:text></recipient>
</recipients>
<from>
<xsl:choose>
<xsl:when test="root/name=''"><xsl:text>Anonymous</xsl:text></xsl:when>
<xsl:otherwise><xsl:value-of select="root/name" /></xsl:otherwise>
</xsl:choose>
</from>
<subject><xsl:text>Feedback GUI 3.0</xsl:text></subject>
<name>
<xsl:choose>
<xsl:when test="root/name=''"><xsl:text>Anonymous</xsl:text></xsl:when>
<xsl:otherwise><xsl:value-of select="root/name" /></xsl:otherwise>
</xsl:choose>
</name>
<message>
<rating><xsl:value-of select="root/rating"/></rating>
<feedback><xsl:value-of select="root/feedback" /></feedback>
</message>
</feedbackform>
</xsl:template>
</xsl:stylesheet> | <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<feedbackform>
<recipients>
<recipient><xsl:text>1234@integrationpartners.nl</xsl:text></recipient>
</recipients>
<from><xsl:text>noreply@integrationpartners.nl</xsl:text></from>
<subject><xsl:text>Feedback GUI 3.0</xsl:text></subject>
<name>
<xsl:choose>
<xsl:when test="root/name=''"><xsl:text>Anonymous</xsl:text></xsl:when>
<xsl:otherwise><xsl:value-of select="root/name" /></xsl:otherwise>
</xsl:choose>
</name>
<message>
<rating><xsl:value-of select="root/rating"/></rating>
<feedback><xsl:value-of select="root/feedback" /></feedback>
</message>
</feedbackform>
</xsl:template>
</xsl:stylesheet> |
Fix metadata xslt IdP filtering | <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
xmlns:mdattr="urn:oasis:names:tc:SAML:metadata:attribute"
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"
version="1.0">
<xsl:output method="xml" indent="yes" omit-xml-declaration="no"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*" />
</xsl:copy>
</xsl:template>
<xsl:template match="md:SPSSODescriptor" />
</xsl:stylesheet>
| <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
xmlns:mdattr="urn:oasis:names:tc:SAML:metadata:attribute"
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"
version="1.0">
<xsl:output method="xml" indent="yes" omit-xml-declaration="no"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*" />
</xsl:copy>
</xsl:template>
<xsl:template match="md:EntityDescriptor[not(md:IDPSSODescriptor)]" />
<xsl:template match="md:SPSSODescriptor" />
<xsl:template match="ds:Signature" />
</xsl:stylesheet>
|
Make the species lookup URL relative and fix warnings on Habides XForm. | <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xf="http://www.w3.org/2002/xforms"
xmlns:bf="http://betterform.sourceforge.net/xforms"
xmlns:ev="http://www.w3.org/2001/xml-events"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xf bf"
xpath-default-namespace="http://www.w3.org/1999/xhtml">
<xsl:import href="xhtml.xsl"/>
<xsl:template name="InputDateAndTime">
<xsl:param name="id"/>
<xsl:param name="name"/>
<xsl:param name="type"/>
<xsl:param name="navindex"/>
<xsl:param name="classes"/>
<xsl:variable name="dataBfParams">
<xsl:choose>
<xsl:when test="exists(@data-bf-params) and string-length(@data-bf-params) > 0">
<xsl:value-of select="@data-bf-params"/>,value:'<xsl:value-of select="bf:data/@bf:schema-value"/>'
</xsl:when>
<xsl:otherwise>date:'dd/MM/yyyy',locale:'et-ee',value:'<xsl:value-of select="bf:data/@bf:schema-value"/>'
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<input id="{$id}-value"
name="{$name}"
type="{$type}"
class="{$classes}"
tabindex="{$navindex}"
data-bf-params="{$dataBfParams}"
placeholder="{xf:hint/text()}"
value="{bf:data/text()}">
<xsl:if test="bf:data/@bf:readonly='true'">
<xsl:attribute name="disabled">disabled</xsl:attribute>
</xsl:if>
<xsl:apply-templates select="@*" mode="copy-foreign-attributes"/>
</input>
</xsl:template>
</xsl:stylesheet> | |
Add basic list item XSLT | <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:tei="http://www.tei-c.org/ns/1.0">
<xsl:template match="/">
<li>
<p><xsl:value-of select="//tei:msDesc/tei:msIdentifier/tei:idno"/></p>
<p><xsl:value-of select="//tei:msDesc/tei:head"/></p>
<p><xsl:value-of select="//tei:objectDesc/tei:supportDesc/tei:extent/text()"/></p>
<p><xsl:value-of select="//tei:msDesc/tei:msContents/tei:textLang"/></p>
</li>
</xsl:template>
</xsl:stylesheet>
| |
Reformat XSL to convert from old format to new. | <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mapping="http://docs.rackspace.com/identity/api/ext/MappingRules"
xmlns="http://docs.rackspace.com/identity/api/ext/MappingRules"
version="2.0"
exclude-result-prefixes="mapping">
<xsl:output indent="yes" method="xml" encoding="UTF-8"></xsl:output>
<xsl:template match="mapping:rules">
<xsl:copy>
<xsl:namespace name="xs" select="'http://www.w3.org/2001/XMLSchema'"/>
<xsl:namespace name="xsi" select="'http://www.w3.org/2001/XMLSchema-instance'"/>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<xsl:template match="mapping:local">
<xsl:copy>
<user>
<xsl:if test="exists(mapping:user/@name)">
<name value="{mapping:user/@name}"/>
</xsl:if>
<xsl:if test="exists(mapping:user/@email)">
<email value="{mapping:user/@email}"/>
</xsl:if>
<xsl:if test="exists(mapping:user/@expire)">
<expire value="{mapping:user/@expire}"/>
</xsl:if>
<xsl:if test="exists(mapping:user/@expireAfter)">
<expire value="{mapping:user/@expireAfter}"/>
</xsl:if>
<xsl:if test="exists(mapping:domain/@id)">
<domain value="{mapping:domain/@id}"/>
</xsl:if>
<xsl:if test="exists(mapping:role/@names)">
<roles value="{mapping:role/@names}"/>
</xsl:if>
</user>
</xsl:copy>
</xsl:template>
<xsl:template match="mapping:user | mapping:domain | mapping:role"/>
<xsl:template match="mapping:assertion | mapping:attribute |
mapping:assertions[@notAnyOf or @anyOneOf] |
mapping:attributes[@notAnyOf or @anyOneOf]">
<attribute>
<xsl:apply-templates select="@*"></xsl:apply-templates>
</attribute>
</xsl:template>
<xsl:template match="mapping:assertions | mapping:attributes">
<attribute multiValue="true">
<xsl:apply-templates select="@*"></xsl:apply-templates>
</attribute>
</xsl:template>
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet> | |
Correct identification of resource of a change | package tools.vitruv.framework.change.description.impl
import tools.vitruv.framework.change.description.VitruviusChange
abstract class AbstractVitruviusChangeImpl implements VitruviusChange {
override getAffectedResource() {
if (!validate()) {
throw new IllegalStateException('''«this» is invalid and does not affect a unique resource.''')
}
return affectedEObjects.map[eResource].findFirst[it !== null]
}
} | package tools.vitruv.framework.change.description.impl
import tools.vitruv.framework.change.description.VitruviusChange
abstract class AbstractVitruviusChangeImpl implements VitruviusChange {
override getAffectedResource() {
if (!validate()) {
throw new IllegalStateException('''«this» is invalid and does not affect a unique resource.''')
}
return affectedEObjects.map[eResource].filterNull.findFirst[it.URI == this.URI.EMFUri]
}
} |
Add new generation to master build | /*
* generated by Xtext
*/
package de.beyondjava.xtext.jsf.generator
import org.eclipse.emf.ecore.resource.Resource
import org.eclipse.xtext.generator.IFileSystemAccess
import org.eclipse.xtext.generator.IGenerator
/**
* Generates code from your model files on save.
*
* See https://www.eclipse.org/Xtext/documentation/303_runtime_concepts.html#code-generation
*/
class ComponentLanguageGenerator implements IGenerator {
override void doGenerate(Resource resource, IFileSystemAccess fsa) {
new TaglibGenerator().doGenerate(resource, fsa);
new ComponentGenerator().doGenerate(resource, fsa);
new RendererGenerator().doGenerate(resource, fsa);
new DocumentationGenerator().doGenerate(resource, fsa);
new AttributesDocumentationGenerator().doGenerate(resource, fsa);
}
} | /*
* generated by Xtext
*/
package de.beyondjava.xtext.jsf.generator
import org.eclipse.emf.ecore.resource.Resource
import org.eclipse.xtext.generator.IFileSystemAccess
import org.eclipse.xtext.generator.IGenerator
/**
* Generates code from your model files on save.
*
* See https://www.eclipse.org/Xtext/documentation/303_runtime_concepts.html#code-generation
*/
class ComponentLanguageGenerator implements IGenerator {
override void doGenerate(Resource resource, IFileSystemAccess fsa) {
new TaglibGenerator().doGenerate(resource, fsa);
new ComponentGenerator().doGenerate(resource, fsa);
new RendererGenerator().doGenerate(resource, fsa);
new DocumentationGenerator().doGenerate(resource, fsa);
new AttributesDocumentationGenerator().doGenerate(resource, fsa);
new BeanInfoGenerator().doGenerate(resource, fsa);
}
} |
Allow referencing super configs from all over the world (workspace) | /*
* Copyright (c) SSI Schaefer IT Solutions
*/
package com.wamas.ide.launching.scoping
/**
* This class contains custom scoping description.
*
* See https://www.eclipse.org/Xtext/documentation/303_runtime_concepts.html#scoping
* on how and when to use it.
*/
class LcDslScopeProvider extends AbstractLcDslScopeProvider {
}
| /*
* Copyright (c) SSI Schaefer IT Solutions
*/
package com.wamas.ide.launching.scoping
import org.eclipse.xtext.scoping.impl.AbstractDeclarativeScopeProvider
import com.wamas.ide.launching.lcDsl.LaunchConfig
import org.eclipse.emf.ecore.EReference
import org.eclipse.xtext.resource.IResourceDescriptions
import com.google.inject.Inject
import com.wamas.ide.launching.lcDsl.LcDslPackage
import org.eclipse.xtext.scoping.Scopes
import org.eclipse.emf.ecore.util.EcoreUtil
/**
* This class contains custom scoping description.
*
* See https://www.eclipse.org/Xtext/documentation/303_runtime_concepts.html#scoping
* on how and when to use it.
*/
class LcDslScopeProvider extends AbstractDeclarativeScopeProvider {
@Inject
IResourceDescriptions index;
def scope_LaunchConfig_superConfig(LaunchConfig config, EReference ref) {
val allLcs = index.getExportedObjectsByType(LcDslPackage.eINSTANCE.launchConfig);
Scopes.scopeFor(allLcs.filter[!name.lastSegment.equals(config.name)].map[EcoreUtil.resolve(EObjectOrProxy, config)])
}
}
|
Test for use of lists. | package eu.quanticol.carma.core.tests
import com.google.inject.Inject
import eu.quanticol.carma.core.carma.Model
import org.eclipse.xtext.junit4.InjectWith
import org.eclipse.xtext.junit4.XtextRunner
import org.eclipse.xtext.junit4.util.ParseHelper
import org.eclipse.xtext.junit4.validation.ValidationTestHelper
import org.eclipse.xtext.xbase.compiler.CompilationTestHelper
import org.junit.Test
import org.junit.runner.RunWith
import static extension org.junit.Assert.*
import eu.quanticol.carma.simulator.CarmaModel
@RunWith(typeof(XtextRunner))
@InjectWith(typeof(CARMAInjectorProviderCustom))
class Test_List_Error {
@Inject extension ParseHelper<Model>
@Inject extension ValidationTestHelper
@Inject extension CompilationTestHelper
CharSequence code = '''
fun real getElementAt( list<list<real>> l , int i , int j ){
return l[i][j];
}
space Grid (){
universe <int x, int y>
nodes {
[0,0];
}
connections{}
areas{}
}
const DISTANCES = [: [:0.0, 1.0:], [:1.0, 1.0:] :];
component Robot(location myLocation){
store{
attrib location currentLocation := myLocation;
}
behaviour{
ReadyToMove = move*[false]<>{}.kill;
}
init{ReadyToMove}
}
measure RobotsAt00 = #{Robot[ReadyToMove] | my.currentLocation == [0,0]};
system Test{
space Grid()
collective{
new Robot([0,0]);
}
environment{
store{
attrib list<list<real>> attributes := [: [:0.0, 1.0:], [:1.0, 1.0:] :];
}
prob{}
weight{}
rate{
// This getElementAt call works. DISTANCE defined as a global constant.
// move* {return getElementAt(DISTANCES, 0, 0);}
// This getElementAt call throws a compile error. LinkedList cannot be resolved to a variable.
move* {return getElementAt(global.attributes, 0, 0);}
default {
return 1.0;
}
}
update{}
}
}
'''
@Test
def void test_Parser(){
code.parse.assertNoErrors
}
@Test
def void test_Compiler(){
class.classLoader.setJavaCompilerClassPath
code.compile[
var o = getCompiledClass.newInstance
assertNotNull( o )
assertTrue( o instanceof CarmaModel )
var m = o as CarmaModel
assertEquals( 2 , m.systems.length )
assertEquals( 3 , m.measures.length )
]
}
} | |
Update from Hackage at 2018-10-12T00:44:03Z | homepage: http://github.com/mfine/postgresql-connector
changelog-type: ''
hash: 1da6655737350a6ae8b8cd0901222385ecce39e3b36ef132adbf4bcb4ce77fe7
test-bench-deps: {}
maintainer: Mark Fine <mark.fine@gmail.com>
synopsis: Initial project postgresql-connector from stack
changelog: ''
basic-deps:
exceptions: ! '>=0.8.3'
bytestring: ! '>=0.10.8.2'
base: ! '>=4.8 && <5'
time: ! '>=1.8.0.2'
resource-pool: ! '>=0.2.3.2'
lens: ! '>=4.16.1'
postgresql-simple: ! '>=0.5.4.0'
mtl: ! '>=2.2.2'
transformers-base: ! '>=0.4.4'
resourcet: ! '>=1.2.1'
all-versions:
- '0.1.0'
- '0.2.0'
- '0.2.2'
- '0.2.3'
- '0.2.4'
- '0.2.5'
- '0.2.6'
author: Mark Fine
latest: '0.2.6'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: http://github.com/mfine/postgresql-connector
changelog-type: ''
hash: 5defd4497315f1914cad8a689c458e7874a76f253c3ee382b66438f263798b2c
test-bench-deps: {}
maintainer: Mark Fine <mark.fine@gmail.com>
synopsis: Initial project postgresql-connector from stack
changelog: ''
basic-deps:
exceptions: ! '>=0.8.3'
bytestring: ! '>=0.10.8.2'
base: ! '>=4.8 && <5'
time: ! '>=1.8.0.2'
resource-pool: ! '>=0.2.3.2'
lens: ! '>=4.15.4'
postgresql-simple: ! '>=0.5.3.0'
mtl: ! '>=2.2.2'
transformers-base: ! '>=0.4.4'
resourcet: ! '>=1.1.11'
all-versions:
- '0.1.0'
- '0.2.0'
- '0.2.2'
- '0.2.3'
- '0.2.4'
- '0.2.5'
- '0.2.6'
- '0.2.7'
author: Mark Fine
latest: '0.2.7'
description-type: haddock
description: Please see README.md
license-name: BSD3
|
Add Python3 yoga unit tests | - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-xena-jobs
- release-notes-jobs-python3
- openstack-cover-jobs | - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-yoga-jobs
- release-notes-jobs-python3
- openstack-cover-jobs |
Remove a useless command from AppVeyor build | build_script:
- cd C:\
- C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S git make"
test_script:
- C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && make -k check"
| build_script:
- C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S git make"
test_script:
- C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && make -k check"
|
Enable summary plugins for TF example | beginner-workaround:
description: >
Workaround for Guild 0.6.3 and earlier on TensorFlow 2.x
Versions of Guild prior to 0.6.4 did not support TensorFlow 2.x
and would terminate with an error `AttributeError: module
'tensorboard.summary._tf.summary' has no attribute 'FileWriter'`.
This operation disables the plugins that rely on TensorFlow 1.x
APIs and explicitly define the output scalars for step, loss, and
accuracy that correspond to TF 2.0 Keras output.
Update `output-scalars` as needed to capture scalars for your
operation.
main: beginner2
disable-plugins: all
output-scalars:
step: 'Epoch (\S+)/'
loss: '- loss: (\S+)'
accuracy: '- accuracy: (\S+)'
summary1:
main: summary1 ${logdir}
flags:
logdir:
required: yes
arg-skip: yes
summary2:
main: summary2 ${logdir}
flags:
logdir:
required: yes
arg-skip: yes
| beginner-workaround:
description: >
Workaround for Guild 0.6.3 and earlier on TensorFlow 2.x
Versions of Guild prior to 0.6.4 did not support TensorFlow 2.x
and would terminate with an error `AttributeError: module
'tensorboard.summary._tf.summary' has no attribute 'FileWriter'`.
This operation disables the plugins that rely on TensorFlow 1.x
APIs and explicitly define the output scalars for step, loss, and
accuracy that correspond to TF 2.0 Keras output.
Update `output-scalars` as needed to capture scalars for your
operation.
main: beginner2
disable-plugins: all
output-scalars:
step: 'Epoch (\S+)/'
loss: '- loss: (\S+)'
accuracy: '- accuracy: (\S+)'
summary1:
main: summary1 ${logdir}
flags:
logdir:
required: yes
arg-skip: yes
plugins: summary
summary2:
main: summary2 ${logdir}
flags:
logdir:
required: yes
arg-skip: yes
plugins: summary
|
Add looser node versions to Travis | language: node_js
sudo: false
node_js:
- "4.2.2"
| language: node_js
sudo: false
node_js:
- "4"
- "5"
|
Update Simply Pace to 1.1.0 (6) | Categories:
- Sports & Health
License: GPL-3.0-only
SourceCode: https://github.com/MarcoSpoerl/simply-pace
IssueTracker: https://github.com/MarcoSpoerl/simply-pace/issues
AutoName: Simply Pace
Description: |
Simply Pace is a very simple pace calculator. It concentrates on distance, time, and pace. Without any additional clutter.
RepoType: git
Repo: https://github.com/MarcoSpoerl/simply-pace
Builds:
- versionName: 1.0.4
versionCode: 5
commit: 1.0.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.0.4
CurrentVersionCode: 5
| Categories:
- Sports & Health
License: GPL-3.0-only
SourceCode: https://github.com/MarcoSpoerl/simply-pace
IssueTracker: https://github.com/MarcoSpoerl/simply-pace/issues
AutoName: Simply Pace
Description: |
Simply Pace is a very simple pace calculator. It concentrates on distance, time, and pace. Without any additional clutter.
RepoType: git
Repo: https://github.com/MarcoSpoerl/simply-pace
Builds:
- versionName: 1.0.4
versionCode: 5
commit: 1.0.4
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 6
commit: 1.1.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.1.0
CurrentVersionCode: 6
|
Revert "some debugging to deploy added 2" | box: 0xf0/node-phantomjs
build:
steps:
- script:
code: export NODE_ENV=development
- wercker/install-packages:
packages: npm
- npm-install
- script:
code: NODE_ENV=production npm run deploy
deploy:
steps:
- script:
code: ls -la
- script:
code: ls -la build
- ematsen/gh-pages:
token: $GITHUB_TOKEN
path: dist
domain: usezen.it
| box: 0xf0/node-phantomjs
build:
steps:
- script:
code: export NODE_ENV=development
- wercker/install-packages:
packages: npm
- npm-install
- script:
code: NODE_ENV=production npm run deploy
deploy:
steps:
- script:
code: ls -la
- script:
code: ls -la dist
- ematsen/gh-pages:
token: $GITHUB_TOKEN
path: dist
domain: usezen.it
|
Change the name of the action | name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
| name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with RSpec
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
|
Add workaround for wrong check in ansible git module. | ---
- name: Clone repository to userhome
git:
repo: "{{ lcsh_repourl }}"
dest: "{{ lcsh_userhome }}/letsencrypt.sh"
version: "{{ lcsh_commit }}"
| ---
- name: Clone repository to userhome
git:
repo: "{{ lcsh_repourl }}"
dest: "{{ lcsh_userhome }}/letsencrypt.sh"
version: "{{ lcsh_commit }}"
# force is needed for unmerged/unreleased bugfix
# https://github.com/ansible/ansible-modules-core/pull/3416
force: true
|
Fix warning: Metrics/LineLength has the wrong namespace - should be Layout | AllCops:
TargetRubyVersion: 2.4
DisplayCopNames: true
Layout/HashAlignment:
Enabled: false
Layout/SpaceInsideBlockBraces:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
#
# Lint
#
Lint/SuppressedException:
Enabled: false
Lint/Loop:
Enabled: false
#
# Metrics
#
Metrics/AbcSize:
Max: 35
Metrics/BlockLength:
Max: 128
Enabled: false
Metrics/ClassLength:
Max: 128
Metrics/LineLength:
Max: 128
Metrics/MethodLength:
CountComments: false
Max: 50
Metrics/CyclomaticComplexity:
Max: 15
Metrics/PerceivedComplexity:
Max: 15
#
# Style
#
Style/FormatStringToken:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: true
Style/GlobalVars:
Enabled: false
Style/NumericPredicate:
Enabled: false
Style/RescueModifier:
Enabled: false
Style/SafeNavigation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/TrivialAccessors:
Enabled: false
| AllCops:
TargetRubyVersion: 2.4
DisplayCopNames: true
Layout/HashAlignment:
Enabled: false
Layout/LineLength:
Max: 128
Layout/SpaceInsideBlockBraces:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
#
# Lint
#
Lint/SuppressedException:
Enabled: false
Lint/Loop:
Enabled: false
#
# Metrics
#
Metrics/AbcSize:
Max: 35
Metrics/BlockLength:
Max: 128
Enabled: false
Metrics/ClassLength:
Max: 128
Metrics/MethodLength:
CountComments: false
Max: 50
Metrics/CyclomaticComplexity:
Max: 15
Metrics/PerceivedComplexity:
Max: 15
#
# Style
#
Style/FormatStringToken:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: true
Style/GlobalVars:
Enabled: false
Style/NumericPredicate:
Enabled: false
Style/RescueModifier:
Enabled: false
Style/SafeNavigation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/TrivialAccessors:
Enabled: false
|
Use Boost v1.69.0 on AppVeyor | # https://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: Stable
- nodejs_version: LTS
- nodejs_version: '8'
- nodejs_version: '6'
install:
# Remove large directories to stay below AppVeyor’s disk usage quota.
- rd C:\cygwin /s /q
- rd C:\Qt /s /q
# Install Node.js.
- ps: Install-Product node $Env:nodejs_version x64
# Install Csound; see https://www.appveyor.com/docs/how-to/download-file.
- ps: Start-FileDownload 'https://github.com/csound/csound/releases/download/6.12.2/Csound6.12.0-Windows_x64-installer.exe'
- ps: Start-Process 'Csound6.12.0-Windows_x64-installer.exe' -ArgumentList '/verySilent', '/noRestart' -Wait
- set PATH=%PATH%;%ProgramFiles%\Csound6_x64\bin
# Install csound-api.
- set CL=/I"C:\Libraries\boost_1_67_0" /I"%ProgramFiles%\Csound6_x64\include"
- set LINK="%ProgramFiles%\Csound6_x64\lib\csound64.lib"
- npm install csound-api
test_script:
- npm --global install jasmine
- npm install dedent-js
- cd lib\csound-parser
- jasmine
build: off
| # https://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: Stable
- nodejs_version: LTS
- nodejs_version: '8'
- nodejs_version: '6'
install:
# Remove large directories to stay below AppVeyor’s disk usage quota.
- rd C:\cygwin /s /q
- rd C:\Qt /s /q
# Install Node.js.
- ps: Install-Product node $Env:nodejs_version x64
# Install Csound; see https://www.appveyor.com/docs/how-to/download-file.
- ps: Start-FileDownload 'https://github.com/csound/csound/releases/download/6.12.2/Csound6.12.0-Windows_x64-installer.exe'
- ps: Start-Process 'Csound6.12.0-Windows_x64-installer.exe' -ArgumentList '/verySilent', '/noRestart' -Wait
- set PATH=%PATH%;%ProgramFiles%\Csound6_x64\bin
# Install csound-api.
- set CL=/I"C:\Libraries\boost_1_69_0" /I"%ProgramFiles%\Csound6_x64\include"
- set LINK="%ProgramFiles%\Csound6_x64\lib\csound64.lib"
- npm install csound-api
test_script:
- npm --global install jasmine
- npm install dedent-js
- cd lib\csound-parser
- jasmine
build: off
|
Test on Node 5 instead of 4 | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "4"
# Install scripts. (runs after repo cloning)
install:
# Get the Node version with matching major & minor numbers
- ps: Install-Product node $env:nodejs_version
# Log HTTP requests.
- npm config set loglevel http
# Typical npm stuff.
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- npm test
# Don't actually build.
build: off
# Finish immediately if one of the jobs fails.
matrix:
fast_finish: true
# Set up cache, clear it on package.json changes.
cache:
# npm cache.
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json
# Local npm packages.
- node_modules -> package.json
# Set build version format here instead of in the admin panel.
version: "{build}"
| # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "5"
# Install scripts. (runs after repo cloning)
install:
# Get the Node version with matching major & minor numbers
- ps: Install-Product node $env:nodejs_version
# Log HTTP requests.
- npm config set loglevel http
# Typical npm stuff.
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- npm test
# Don't actually build.
build: off
# Finish immediately if one of the jobs fails.
matrix:
fast_finish: true
# Set up cache, clear it on package.json changes.
cache:
# npm cache.
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json
# Local npm packages.
- node_modules -> package.json
# Set build version format here instead of in the admin panel.
version: "{build}"
|
Set permissions for GitHub Actions | name: Java
on:
- push
- pull_request
jobs:
java:
name: ${{ matrix.java-version }}
runs-on: ubuntu-latest
strategy:
matrix:
java-version:
- 8
- 11
- 17
steps:
- name: Check out GitHub repository
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
- name: Run tests
run: mvn test
- name: Run Checkstyle
run: mvn checkstyle:check
- name: Generate Javadoc
run: mvn compile javadoc:javadoc
| name: Java
on:
- push
- pull_request
permissions:
contents: read
jobs:
java:
name: ${{ matrix.java-version }}
runs-on: ubuntu-latest
strategy:
matrix:
java-version:
- 8
- 11
- 17
steps:
- name: Check out GitHub repository
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
- name: Run tests
run: mvn test
- name: Run Checkstyle
run: mvn checkstyle:check
- name: Generate Javadoc
run: mvn compile javadoc:javadoc
|
Set up Heroku on CCI2 | version: 2
jobs:
build:
working_directory: ~/circulate
docker:
- image: python:3.6.0
environment:
FLASK_CONFIG: testing
TEST_DATABASE_URL: postgresql://ubuntu@localhost/circle_test?sslmode=disable
- image: postgres:9.6.2
environment:
POSTGRES_USER: ubuntu
POSTGRES_DB: circle_test
POSTGRES_PASSWORD: ""
- image: selenium/standalone-chrome:3.1.0
steps:
- checkout
- restore_cache:
key: projectname-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
- run:
name: Install Dependencies
command: pip install -r requirements/dev.txt
- run:
# this can be removed
name: Locate site Packages
command: python -c "import site; print(site.getsitepackages())"
- save_cache:
key: projectname-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
paths:
- "~/.cache/pip"
- "/usr/local/lib/python3.6/site-packages"
- run:
name: Run Tests
command: python manage.py test
- store_artifacts:
path: test-reports/
destination: tr1
- store_test_results:
path: test-reports/
- run:
name: Setup Heroku
command: .circleci/setup-heroku.sh
command: cat ~/.netrc
| version: 2
jobs:
build:
working_directory: ~/circulate
docker:
- image: python:3.6.0
environment:
FLASK_CONFIG: testing
TEST_DATABASE_URL: postgresql://ubuntu@localhost/circle_test?sslmode=disable
- image: postgres:9.6.2
environment:
POSTGRES_USER: ubuntu
POSTGRES_DB: circle_test
POSTGRES_PASSWORD: ""
- image: selenium/standalone-chrome:3.1.0
steps:
- checkout
- restore_cache:
key: projectname-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
- run:
name: Install Dependencies
command: pip install -r requirements/dev.txt
- run:
# this can be removed
name: Locate site Packages
command: python -c "import site; print(site.getsitepackages())"
- save_cache:
key: projectname-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
paths:
- "~/.cache/pip"
- "/usr/local/lib/python3.6/site-packages"
- run:
name: Run Tests
command: python manage.py test
- store_artifacts:
path: test-reports/
destination: tr1
- store_test_results:
path: test-reports/
- run:
name: Setup Heroku
command: .circleci/setup-heroku.sh
- run:
name: Check
command: cat ~/.netrc
|
Remove timezone to speed up build setup | machine:
timezone:
America/Los_Angeles
python:
version: 2.7.12
environment:
APEXTESTSDB_BASE_URL: 'https://apextestsdb.herokuapp.com'
APEXTESTSDB_USER_ID: 1
CUMULUSCI_PATH: ../CumulusCI
GITHUB_USERNAME: mrbelvedere
GITHUB_ORG_NAME: SalesforceFoundation
GITHUB_REPO_NAME: 'CumulusCI-Test'
PREFIX_RELEASE: rel/
SF_USERNAME_FEATURE: 'mrbelvedere@cumulusci-test.feature'
INSTANCE_URL: 'https://na17.salesforce.com'
MRBELVEDERE_BASE_URL: 'https://mrbelvedere.salesforcefoundation.org/mpinstaller'
SF_USERNAME_BETA: 'mrbelvedere@cumulusci-test.beta'
SF_USERNAME_BETA_BROWSERTEST: 'mrbelvedere@cumulusci-test.beta.browsertest'
SF_USERNAME_PACKAGING: 'mrbelvedere@cumulusci-test.packaging'
dependencies:
override:
- 'git clone https://github.com/SalesforceFoundation/CumulusCI $CUMULUSCI_PATH'
- 'cd $CUMULUSCI_PATH; pip install --upgrade -r requirements.txt'
test:
override:
- 'cumulusci ci deploy --debug-logdir apex_tests_db'
| machine:
python:
version: 2.7.12
environment:
APEXTESTSDB_BASE_URL: 'https://apextestsdb.herokuapp.com'
APEXTESTSDB_USER_ID: 1
CUMULUSCI_PATH: ../CumulusCI
GITHUB_USERNAME: mrbelvedere
GITHUB_ORG_NAME: SalesforceFoundation
GITHUB_REPO_NAME: 'CumulusCI-Test'
PREFIX_RELEASE: rel/
SF_USERNAME_FEATURE: 'mrbelvedere@cumulusci-test.feature'
INSTANCE_URL: 'https://na17.salesforce.com'
MRBELVEDERE_BASE_URL: 'https://mrbelvedere.salesforcefoundation.org/mpinstaller'
SF_USERNAME_BETA: 'mrbelvedere@cumulusci-test.beta'
SF_USERNAME_BETA_BROWSERTEST: 'mrbelvedere@cumulusci-test.beta.browsertest'
SF_USERNAME_PACKAGING: 'mrbelvedere@cumulusci-test.packaging'
dependencies:
override:
- 'git clone https://github.com/SalesforceFoundation/CumulusCI $CUMULUSCI_PATH'
- 'cd $CUMULUSCI_PATH; pip install --upgrade -r requirements.txt'
test:
override:
- 'cumulusci ci deploy --debug-logdir apex_tests_db'
|
Set CI node version to 5.x | dependencies:
override:
- curl -L https://atom.io/download/deb -o atom-amd64.deb
- sudo dpkg --install atom-amd64.deb || true
- sudo apt-get update
- sudo apt-get -f install
- apm install
- npm run compile
test:
override:
- npm run test
- npm run lint
| dependencies:
override:
- curl -L https://atom.io/download/deb -o atom-amd64.deb
- sudo dpkg --install atom-amd64.deb || true
- sudo apt-get update
- sudo apt-get -f install
- nvm use 5.1.0
- apm install
- npm run compile
test:
override:
- npm run test
- npm run lint
machine:
node:
version: 5.1.0
|
Add description to gitlint pre-commit hook | - id: gitlint
name: gitlint
language: python
additional_dependencies: ["./gitlint-core[trusted-deps]"]
entry: gitlint
args: [--staged, --msg-filename]
stages: [commit-msg]
| - id: gitlint
name: gitlint
description: Checks your git commit messages for style.
language: python
additional_dependencies: ["./gitlint-core[trusted-deps]"]
entry: gitlint
args: [--staged, --msg-filename]
stages: [commit-msg]
|
Build all configs on AppVeyor | version: 0.0.{build}-{branch}
image: Visual Studio 2017
shallow_clone: true
environment:
BOOST_LIBRARYDIR: C:\Libraries\boost_1_67_0\lib64-msvc-14.1
BOOST_ROOT: C:\Libraries\boost_1_67_0
matrix:
- RENDERER: Null
- RENDERER: OpenGL
install:
- cmd: |
set PREFIX_DIR=%APPVEYOR_BUILD_FOLDER%\_3rdparty
mkdir %PREFIX_DIR% && cd %PREFIX_DIR%
call %APPVEYOR_BUILD_FOLDER%\bootstrap.bat
build_script:
- cmd: |
set BUILD_DIR=%APPVEYOR_BUILD_FOLDER%\_build
mkdir %BUILD_DIR% && cd %BUILD_DIR%
cmake -G "Visual Studio 15 2017 Win64" %APPVEYOR_BUILD_FOLDER% -DCMAKE_PREFIX_PATH=%PREFIX_DIR% -DY_ALL=ON -DY_RENDERER=%RENDERER%
cmake --build . --config Release -- /nologo /verbosity:minimal
test_script:
- cmd: |
set PATH=%PATH%;%BOOST_LIBRARYDIR%
cmake --build . --config Release --target check -- /nologo /verbosity:minimal
| version: 0.0.{build}-{branch}
image: Visual Studio 2017
shallow_clone: true
environment:
BOOST_LIBRARYDIR: C:\Libraries\boost_1_67_0\lib64-msvc-14.1
BOOST_ROOT: C:\Libraries\boost_1_67_0
matrix:
- CONFIG: Release
RENDERER: Null
- CONFIG: Debug
RENDERER: Null
- CONFIG: Release
RENDERER: OpenGL
- CONFIG: Debug
RENDERER: OpenGL
install:
- cmd: |
set PREFIX_DIR=%APPVEYOR_BUILD_FOLDER%\_3rdparty
mkdir %PREFIX_DIR% && cd %PREFIX_DIR%
call %APPVEYOR_BUILD_FOLDER%\bootstrap.bat
build_script:
- cmd: |
set BUILD_DIR=%APPVEYOR_BUILD_FOLDER%\_build
mkdir %BUILD_DIR% && cd %BUILD_DIR%
cmake -G "Visual Studio 15 2017 Win64" %APPVEYOR_BUILD_FOLDER% -DCMAKE_PREFIX_PATH=%PREFIX_DIR% -DY_ALL=ON -DY_RENDERER=%RENDERER%
cmake --build . --config %CONFIG% -- /nologo /verbosity:minimal
test_script:
- cmd: |
set PATH=%PATH%;%BOOST_LIBRARYDIR%
cmake --build . --config %CONFIG% --target check -- /nologo /verbosity:minimal
|
Add access and upload log to prod env | imports:
- { resource: config.yml }
- { resource: security_cas.yml }
#framework:
# validation:
# cache: apc
#doctrine:
# orm:
# metadata_cache_driver: apc
# result_cache_driver: apc
# query_cache_driver: apc
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
nested:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
ubc_lt_commons:
providers:
sis:
base_url: %sis_base_url%
http_client: Guzzle
auth:
module: Auth2
rpc_path: "/auth/rpc"
username: %auth2_username%
password: %auth2_password%
service_application: %auth2_service_application%
service_url: %auth2_service_url%
serializer: JMS
| imports:
- { resource: config.yml }
- { resource: security_cas.yml }
#framework:
# validation:
# cache: apc
#doctrine:
# orm:
# metadata_cache_driver: apc
# result_cache_driver: apc
# query_cache_driver: apc
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
nested:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
access:
type: stream
path: "%kernel.logs_dir%/access.log"
channels: [access]
upload:
type: stream
path: "%kernel.logs_dir%/upload.log"
channels: [upload]
ubc_lt_commons:
providers:
sis:
base_url: %sis_base_url%
http_client: Guzzle
auth:
module: Auth2
rpc_path: "/auth/rpc"
username: %auth2_username%
password: %auth2_password%
service_application: %auth2_service_application%
service_url: %auth2_service_url%
serializer: JMS
|
Update plugin version to 4 | # Plugin name
name: detach-database
# Human-readable name for your plugin
title: Separate DB from controller
# Plugin version
version: '1.1.0'
# Description
description: Creates separate Database role for deploying
# Required fuel version
fuel_version: ['9.0']
# Specify license of your plugin
licenses: ['Apache License Version 2.0']
# Specify author or company name
authors: ['Matthew Mosesohn','Mirantis']
# A link to the plugin's page
homepage: 'https://github.com/stackforge/fuel-plugins'
# Specify a group which your plugin implements, possible options:
# network, storage, storage::cinder, storage::glance, hypervisor
groups: [network]
# The plugin is compatible with releases in the list
releases:
- os: ubuntu
version: mitaka-9.0
mode: ['ha']
deployment_scripts_path: deployment_scripts/
repository_path: repositories/ubuntu
- os: ubuntu
version: newton-10.0
mode: ['ha']
deployment_scripts_path: deployment_scripts/
repository_path: repositories/ubuntu
# Version of plugin package
package_version: '3.0.0'
| # Plugin name
name: detach-database
# Human-readable name for your plugin
title: Separate DB from controller
# Plugin version
version: '1.1.0'
# Description
description: Creates separate Database role for deploying
# Required fuel version
fuel_version: ['9.0']
# Specify license of your plugin
licenses: ['Apache License Version 2.0']
# Specify author or company name
authors: ['Matthew Mosesohn','Mirantis']
# A link to the plugin's page
homepage: 'https://github.com/stackforge/fuel-plugins'
# Specify a group which your plugin implements, possible options:
# network, storage, storage::cinder, storage::glance, hypervisor
groups: [network]
# Change `false` to `true` if the plugin can be installed in the environment
# after the deployment.
is_hotpluggable: false
# The plugin is compatible with releases in the list
releases:
- os: ubuntu
version: mitaka-9.0
mode: ['ha']
deployment_scripts_path: deployment_scripts/
repository_path: repositories/ubuntu
- os: ubuntu
version: newton-10.0
mode: ['ha']
deployment_scripts_path: deployment_scripts/
repository_path: repositories/ubuntu
# Version of plugin package
package_version: '4.0.0'
|
Revert "Revert "Make `bosh int` fail without required `windows2016-cell.yml`"" | - type: replace
path: /releases/name=windows2016fs?
value:
name: windows2016fs
version: 1.9.0
| - type: replace
path: /releases/name=windows2016fs
value:
name: windows2016fs
version: 1.9.0
|
Update Ansible role softasap/sa-publishing-kindlegen to 1.1.0 | - name: composer
src: geerlingguy.composer
version: 1.7.6
- name: ntp
src: geerlingguy.ntp
version: 1.6.4
- name: logrotate
src: nickhammond.logrotate
version: v0.0.5
- name: swapfile
src: oefenweb.swapfile
version: v2.0.22
- name: mailhog
src: geerlingguy.mailhog
version: 2.1.4
- name: princexml
src: pressbooks.princexml
version: 12.5.0
- name: kindlegen
src: softasap.sa-publishing-kindlegen
version: 0f31e09
- src: geerlingguy.redis
version: 1.6.0
| - name: composer
src: geerlingguy.composer
version: 1.7.6
- name: ntp
src: geerlingguy.ntp
version: 1.6.4
- name: logrotate
src: nickhammond.logrotate
version: v0.0.5
- name: swapfile
src: oefenweb.swapfile
version: v2.0.22
- name: mailhog
src: geerlingguy.mailhog
version: 2.1.4
- name: princexml
src: pressbooks.princexml
version: 12.5.0
- name: kindlegen
src: softasap.sa-publishing-kindlegen
version: 1.1.0
- src: geerlingguy.redis
version: 1.6.0
|
Fix psych install error on Ruby 2.2 on AppVeyor | version: 1.0.{build}-{branch}
environment:
BACKLOG_SPACE_ID:
secure: kr2ydONkTrsvlVKYCdQxSw==
BACKLOG_API_KEY:
secure: g+q5mcsZYYPnCP0klGetdO2LdD+HBP9hH+157sGi7vScSckyi4h76iYqsanJGnwK+fPV6waPofDPH+b3O2gBZNTef7dIJnAa/IBqUhLMgZE=
matrix:
- RUBY_VERSION: 200
- RUBY_VERSION: 200-x64
- RUBY_VERSION: 21
- RUBY_VERSION: 21-x64
- RUBY_VERSION: 22
- RUBY_VERSION: 22-x64
- RUBY_VERSION: 23
- RUBY_VERSION: 23-x64
- RUBY_VERSION: 24
- RUBY_VERSION: 24-x64
- RUBY_VERSION: 25
- RUBY_VERSION: 25-x64
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
- bundle install
build: off
before_test:
- ruby -v
- gem -v
- bundle -v
test_script:
- bundle exec rake
| version: 1.0.{build}-{branch}
environment:
BACKLOG_SPACE_ID:
secure: kr2ydONkTrsvlVKYCdQxSw==
BACKLOG_API_KEY:
secure: g+q5mcsZYYPnCP0klGetdO2LdD+HBP9hH+157sGi7vScSckyi4h76iYqsanJGnwK+fPV6waPofDPH+b3O2gBZNTef7dIJnAa/IBqUhLMgZE=
matrix:
- RUBY_VERSION: 200
- RUBY_VERSION: 200-x64
- RUBY_VERSION: 21
- RUBY_VERSION: 21-x64
- RUBY_VERSION: 22
- RUBY_VERSION: 22-x64
- RUBY_VERSION: 23
- RUBY_VERSION: 23-x64
- RUBY_VERSION: 24
- RUBY_VERSION: 24-x64
- RUBY_VERSION: 25
- RUBY_VERSION: 25-x64
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
- bundle lock --add-platform ruby
- bundle install
build: off
before_test:
- ruby -v
- gem -v
- bundle -v
test_script:
- bundle exec rake
|
Add uploadArchives task for AppVeyor build | version: "{build}"
build:
verbosity: detailed
build_script:
- gradlew.bat --full-stacktrace clean assemble
test_script:
- gradlew.bat --full-stacktrace check
- cd samples\example && gradlew.bat --full-stacktrace clean webResourceCompile && cd ..\..
cache:
- .gradle
- C:\Users\appveyor\.gradle
| version: "{build}"
build:
verbosity: detailed
build_script:
- gradlew.bat --full-stacktrace clean assemble
test_script:
- gradlew.bat --full-stacktrace check uploadArchives
- cd samples\example && gradlew.bat --full-stacktrace clean webResourceCompile && cd ..\..
cache:
- .gradle
- C:\Users\appveyor\.gradle
|
Update from Hackage at 2017-03-05T10:54:25Z | homepage: ''
changelog-type: ''
hash: 00b9335498191c770b15efcb3c0b3372f22758fdb15ad7e2ec5d5b75204ea74d
test-bench-deps: {}
maintainer: Francesco Mazzoli <f@mazzo.li>
synopsis: Mapping between BSON and algebraic data types.
changelog: ''
basic-deps:
base: ! '>=4 && <5'
compact-string-fix: ! '>=0.3.1'
bson: ! '>=0.1.3'
th-lift: ! '>=0.5.3'
template-haskell: ! '>=2.5'
all-versions:
- '0.1'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.4.1'
author: Francesco Mazzoli <f@mazzo.li>
latest: '0.1.4.1'
description-type: haddock
description: This module defines a Bson class to convert data types to Bson and to
convert Bson documents back to datatypes, along with template haskell functions
to easily derive the instance.
license-name: OtherLicense
| homepage: ''
changelog-type: ''
hash: 5c8cb6d885170652a246a452500f10afef8c95cfb1969fd542b5fb1c5044ce31
test-bench-deps: {}
maintainer: Francesco Mazzoli <f@mazzo.li>
synopsis: Mapping between BSON and algebraic data types.
changelog: ''
basic-deps:
base: ! '>=4 && <5'
text: ! '>=1.1'
bson: ! '>=0.2'
th-lift: ! '>=0.5.3'
template-haskell: ! '>=2.5'
all-versions:
- '0.1'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.3.2'
- '0.1.4'
- '0.1.4.1'
- '0.1.5.0'
author: Francesco Mazzoli <f@mazzo.li>
latest: '0.1.5.0'
description-type: haddock
description: This module defines a Bson class to convert data types to Bson and to
convert Bson documents back to datatypes, along with template haskell functions
to easily derive the instance.
license-name: OtherLicense
|
Deploy to surge on successful build | language: node_js
node_js:
- "4.1.1"
notifications:
email: false
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start | language: node_js
node_js:
- "4.1.1"
notifications:
email: false
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success:
- npm run build
- npm run deploy
|
Fix bower install failed on CI | box: node:5.11.0
build:
steps:
- npm-install
- npm-test
- io-monad/semantic-release@2.0.0:
github_token: $GH_TOKEN
npm_token: $NPM_TOKEN
| box: node:5.11.0
build:
steps:
# Configure npm and bower to allow root scripts
- script:
name: enable root/sudo for npm/bower
code: |
# https://docs.npmjs.com/misc/config#unsafe-perm
npm config set unsafe-perm true
# https://github.com/bower/bower/issues/1752#issuecomment-113455403
echo "{\"allow_root\": true}" > ~/.bowerrc
- npm-install
- npm-test
- io-monad/semantic-release@2.0.0:
github_token: $GH_TOKEN
npm_token: $NPM_TOKEN
|
Use new exclusion format and remove hash rockets rule | AllCops:
Exclude:
- vendor/**
AlignParameters:
Enabled: false
CyclomaticComplexity:
Enabled: false
Encoding:
Enabled: false
HashSyntax:
Enabled: false
LineLength:
Enabled: false
MethodLength:
Max: 30
NumericLiterals:
Enabled: false
SingleSpaceBeforeFirstArg:
Enabled: false
| AllCops:
Exclude:
- vendor/**/*
AlignParameters:
Enabled: false
CyclomaticComplexity:
Enabled: false
Encoding:
Enabled: false
LineLength:
Enabled: false
MethodLength:
Max: 30
NumericLiterals:
Enabled: false
SingleSpaceBeforeFirstArg:
Enabled: false
|
Add more memory to the VM | ---
driver:
name: vagrant
customize:
memory: 1024
cpus: 2
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
driver_config:
box: ubuntu/xenial64
- name: ubuntu-14.04
driver_config:
box: ubuntu/trusty64
suites:
- name: default
run_list:
- recipe[universe_ubuntu::default]
verifier:
inspec_tests:
- test/recipes
attributes:
| ---
driver:
name: vagrant
customize:
memory: 2048
cpus: 2
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
driver_config:
box: ubuntu/xenial64
- name: ubuntu-14.04
driver_config:
box: ubuntu/trusty64
suites:
- name: default
run_list:
- recipe[universe_ubuntu::default]
verifier:
inspec_tests:
- test/recipes
attributes:
|
Add Spotless check in Git Action | name: Run tests - Ubuntu + Java 8
on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 8.0.292
- name: Maven install, test skipped
run: mvn install -DskipTests
- name: Maven test
run: mvn test
| name: Run tests - Ubuntu + Java 8
on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 8.0.292
- name: Spotless check
run: mvn spotless:check
- name: Maven install, test skipped
run: mvn install -DskipTests
- name: Maven test
run: mvn test |
Update F-Droid Build Status to 1.2 (3) | Categories:
- Development
License: MIT
AuthorName: Peter Storch
WebSite: https://codeberg.org/pstorch/F-Droid_Build_Status
SourceCode: https://codeberg.org/pstorch/F-Droid_Build_Status
IssueTracker: https://codeberg.org/pstorch/F-Droid_Build_Status/issues
Changelog: https://codeberg.org/pstorch/F-Droid_Build_Status/releases
AutoName: F-Droid Build Status
RepoType: git
Repo: https://codeberg.org/pstorch/F-Droid_Build_Status.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.0'
CurrentVersionCode: 1
| Categories:
- Development
License: MIT
AuthorName: Peter Storch
WebSite: https://codeberg.org/pstorch/F-Droid_Build_Status
SourceCode: https://codeberg.org/pstorch/F-Droid_Build_Status
IssueTracker: https://codeberg.org/pstorch/F-Droid_Build_Status/issues
Changelog: https://codeberg.org/pstorch/F-Droid_Build_Status/releases
AutoName: F-Droid Build Status
RepoType: git
Repo: https://codeberg.org/pstorch/F-Droid_Build_Status.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: '1.2'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.2'
CurrentVersionCode: 3
|
Add BLD and STY to labeler prefixes. | "API": "30 - API"
"BENCH": "28 - Benchmark"
"BUG": "00 - Bug"
"DEP": "07 - Deprecation"
"DEV": "16 - Development"
"DOC": "04 - Documentation"
"ENH": "01 - Enhancement"
"MAINT": "03 - Maintenance"
"REV": "34 - Reversion"
"TST": "05 - Testing"
"REL": "14 - Release"
"WIP": "25 - WIP"
| "API": "30 - API"
"BENCH": "28 - Benchmark"
"BUG": "00 - Bug"
"BLD": "36 - Build"
"DEP": "07 - Deprecation"
"DEV": "16 - Development"
"DOC": "04 - Documentation"
"ENH": "01 - Enhancement"
"MAINT": "03 - Maintenance"
"REV": "34 - Reversion"
"STY": "03 - Maintenance"
"TST": "05 - Testing"
"REL": "14 - Release"
"WIP": "25 - WIP"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.