Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Remove comment from referenced code sample | <?xml version='1.0' encoding='UTF-8'?>
<!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. -->
<project>
<target name="dita2html5-webfont"
depends="dita2html5-webfont.init,
dita2html5"/>
<target name="dita2html5-webfont.init">
<property name="args.hdf"
location="${dita.plugin.com.example.html5-webfont.dir}/include/webfont.hdf.xml"/>
<property name="args.cssroot"
location="${dita.plugin.com.example.html5-webfont.dir}/css"/>
<property name="args.css" value="custom.css"/>
<property name="args.copycss" value="yes"/>
<property name="args.csspath" value="css"/>
</target>
</project>
| <?xml version='1.0' encoding='UTF-8'?>
<project>
<target name="dita2html5-webfont"
depends="dita2html5-webfont.init,
dita2html5"/>
<target name="dita2html5-webfont.init">
<property name="args.hdf"
location="${dita.plugin.com.example.html5-webfont.dir}/include/webfont.hdf.xml"/>
<property name="args.cssroot"
location="${dita.plugin.com.example.html5-webfont.dir}/css"/>
<property name="args.css" value="custom.css"/>
<property name="args.copycss" value="yes"/>
<property name="args.csspath" value="css"/>
</target>
</project>
|
Correct test plugin settings for Maven build. | <?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>
<groupId>com.googlecode</groupId>
<artifactId>goclipse-aggregator</artifactId>
<version>1-SNAPSHOT</version>
</parent>
<artifactId>com.googlecode.goclipse.ui.tests</artifactId>
<version>0.8.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</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>
<groupId>com.googlecode</groupId>
<artifactId>goclipse-aggregator</artifactId>
<version>1-SNAPSHOT</version>
</parent>
<artifactId>com.googlecode.goclipse.ui.tests</artifactId>
<version>0.8.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
</project>
|
Replace place holder for spring configuration location for difference modules using expression | <?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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<import resource="classpath:org/mifos/config/resources/applicationContext.xml"/>
<import resource="classpath:org/mifos/config/resources/apponly-services.xml"/>
<import resource="classpath:META-INF/spring/QuestionnaireContext.xml"/>
<import resource="classpath:META-INF/spring/CashFlowContext.xml"/>
<import resource="classpath:META-INF/spring/accountingIntegrationPluginContext.xml"/>
<import resource="classpath:META-INF/spring/DbUpgradeContext.xml"/>
</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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<import resource="classpath:org/mifos/config/resources/applicationContext.xml"/>
<import resource="classpath:org/mifos/config/resources/apponly-services.xml"/>
<import resource="classpath*:META-INF/spring/*Context.xml"/>
</beans> |
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> |
Use lighter black color for unselected state for dark date picker header text. | <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 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.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true"
android:color="@color/text_color_primary_light"/>
<item android:state_selected="false"
android:color="@color/text_color_secondary_light"/>
<item android:color="@color/text_color_secondary_light"/>
</selector> | <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 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.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true"
android:color="@color/text_color_primary_light"/>
<item android:state_selected="false"
android:color="@color/text_color_disabled_light"/>
<item android:color="@color/text_color_disabled_light"/>
</selector> |
Revert "(TK-202) Increase logging to debug jenkins test failure" | <configuration scan="true">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d %-5p [%c{2}] %m%n</pattern>
</encoder>
</appender>
<logger name="puppetlabs" level="debug"/>
<root level="debug">
<appender-ref ref="STDOUT" />
</root>
</configuration>
| <configuration scan="true">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d %-5p [%c{2}] %m%n</pattern>
</encoder>
</appender>
<logger name="puppetlabs" level="error"/>
<root level="error">
<appender-ref ref="STDOUT" />
</root>
</configuration> |
Fix undo unfavourite bar not showing up in SearchActivity | <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.activity.SearchActivity">
<fragment
android:id="@+id/songs_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="me.echeung.moemoekyun.ui.fragment.SongsFragment"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
| <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.activity.SearchActivity">
<fragment
android:id="@+id/songs_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="me.echeung.moemoekyun.ui.fragment.SongsFragment"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
|
Change color scheme to a blueish one | <?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#2196F3</color>
<color name="colorPrimaryDark">#1565C0</color>
<color name="colorAccent">#1976D2</color>
</resources>
|
Change name of the property to be more consistent with the rest of CAS | <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<description>
This file lets CAS know where you've stored the cas.properties file which details some of the configuration
options
that are specific to your environment. You can specify the location of the file here. You may wish to place the
file outside
of the Servlet context if you have options that are specific to a tier (i.e. test vs. production) so that the
WAR file
can be moved between tiers without modification.
</description>
<util:properties id="casProperties" location="${cas.properties.filepath:/WEB-INF/cas.properties}"/>
<context:property-placeholder properties-ref="casProperties"/>
</beans>
| <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<description>
This file lets CAS know where you've stored the cas.properties file which details some of the configuration
options
that are specific to your environment. You can specify the location of the file here. You may wish to place the
file outside
of the Servlet context if you have options that are specific to a tier (i.e. test vs. production) so that the
WAR file
can be moved between tiers without modification.
</description>
<util:properties id="casProperties" location="${cas.properties.config.location:/WEB-INF/cas.properties}"/>
<context:property-placeholder properties-ref="casProperties"/>
</beans>
|
Allow application to be moved to sd card to save space | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yeokm1.nussocprint"
android:versionCode="5"
android:versionName="0.4.1" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="false"
android:icon="@drawable/app_icon"
android:label="@string/app_name" >
<activity android:name="com.lamerman.FileDialog" >
</activity>
<activity
android:name="ui.MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock"
android:uiOptions="splitActionBarWhenNarrow"
android:windowSoftInputMode="stateAlwaysHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/pdf" />
</intent-filter>
</activity>
</application>
</manifest> | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yeokm1.nussocprint"
android:versionCode="5"
android:versionName="0.4.1" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="false"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:installLocation="auto">
<activity android:name="com.lamerman.FileDialog" >
</activity>
<activity
android:name="ui.MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock"
android:uiOptions="splitActionBarWhenNarrow"
android:windowSoftInputMode="stateAlwaysHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/pdf" />
</intent-filter>
</activity>
</application>
</manifest> |
Add dependencies: designwizard and testng. | <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>br.edu.ufcg.splab</groupId>
<artifactId>designmetrics</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Design Metrics</name>
<description>Implementing Design Metrics using the DesignWizard API</description>
</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>br.edu.ufcg.splab</groupId>
<artifactId>designmetrics</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Design Metrics</name>
<description>Implementing Design Metrics using the DesignWizard API</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<developers>
<developer>
<email>tacianosilva@gmail.com</email>
<name>Taciano Morais Silva</name>
<url>https://github.com/tacianosilva</url>
<id>tacianosilva</id>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.designwizard</groupId>
<artifactId>designwizard</artifactId>
<version>1.4.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Update icon for User Talk. | <vector android:height="24dp" android:viewportHeight="20"
android:viewportWidth="20" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#00af89" android:pathData="M18,0L2,0a2,2 0,0 0,-2 2v18l4,-4h14a2,2 0,0 0,2 -2L20,2a2,2 0,0 0,-2 -2zM14,4a1.5,1.5 0,1 1,-1.5 1.5A1.5,1.5 0,0 1,14 4zM6,4a1.5,1.5 0,1 1,-1.5 1.5A1.5,1.5 0,0 1,6 4zM10,12c-2.61,0 -4.83,-0.67 -5.65,-3h11.3c-0.82,2.33 -3.04,3 -5.65,3z"/>
</vector>
| <vector android:height="24dp" android:viewportHeight="24"
android:viewportWidth="24" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#00af89" android:pathData="M20,2L4,2A2,2 0,0 0,2 4v18l4,-4h14a2,2 0,0 0,2 -2L22,4A2,2 0,0 0,20 2ZM16,6A1.5,1.5 0,1 1,14.5 7.5,1.5 1.5,0 0,1 16,6ZM8,6A1.5,1.5 0,1 1,6.5 7.5,1.5 1.5,0 0,1 8,6ZM12,14C9.39,14 7.17,13.33 6.35,11h11.3c-0.82,2.33 -3.04,3 -5.65,3z"/>
</vector>
|
Add padding for search field | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/searchTerm"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
android:hint="Enter search term here" />
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/results"
android:layout_below="@+id/searchTerm"
android:layout_marginTop="10dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true" />
</RelativeLayout>
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/searchTerm"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
android:hint="Enter search term here"
android:layout_margin="10dp"/>
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/results"
android:layout_below="@+id/searchTerm"
android:layout_marginTop="10dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true" />
</RelativeLayout>
|
Fix select row source panel | <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:fui="urn:import:org.zanata.webtrans.client.ui">
<ui:with field="messages"
type="org.zanata.webtrans.client.resources.NavigationMessages" />
<ui:style type="org.zanata.webtrans.client.ui.SourcePanel.Styles">
.selectedRow {
padding: 3px;
table-layout: fixed;
border:3px solid #add8e6;
}
.nonSelectedRow {
background-color: inherit;
padding: 3px;
table-layout: fixed;
}
</ui:style>
<g:HorizontalPanel width="100%" height="100%" styleName="{style.nonSelectedRow}" ui:field="container">
<g:cell horizontalAlignment="ALIGN_LEFT">
<g:SimplePanel ui:field="sourceContentContainer">
</g:SimplePanel>
</g:cell>
<g:cell horizontalAlignment="ALIGN_RIGHT" width="20px">
<g:RadioButton ui:field="selectButton" name="selectSourceButton" />
</g:cell>
</g:HorizontalPanel>
</ui:UiBinder> | <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:fui="urn:import:org.zanata.webtrans.client.ui">
<ui:with field="messages"
type="org.zanata.webtrans.client.resources.NavigationMessages" />
<ui:style type="org.zanata.webtrans.client.ui.SourcePanel.Styles">
.selectedRow {
padding: 3px;
table-layout: fixed;
background-color:#add8e6;
}
.nonSelectedRow {
background-color: inherit;
padding: 3px;
table-layout: fixed;
}
</ui:style>
<g:HorizontalPanel width="100%" height="100%" styleName="{style.nonSelectedRow}" ui:field="container">
<g:cell horizontalAlignment="ALIGN_LEFT">
<g:SimplePanel ui:field="sourceContentContainer">
</g:SimplePanel>
</g:cell>
<g:cell horizontalAlignment="ALIGN_RIGHT" width="20px">
<g:RadioButton ui:field="selectButton" name="selectSourceButton" />
</g:cell>
</g:HorizontalPanel>
</ui:UiBinder> |
Update the APIPixie version in the example | <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>com.ligati</groupId>
<artifactId>apipixie-basic</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>apipixie-basic</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.ligati</groupId>
<artifactId>apipixie</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple</artifactId>
<version>5.1.6</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</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>com.ligati</groupId>
<artifactId>apipixie-basic</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>apipixie-basic</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.ligati</groupId>
<artifactId>apipixie</artifactId>
<version>0.1</version>
</dependency>
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple</artifactId>
<version>5.1.6</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
|
Allow screen rotations to restart the app, so we recompute all the display values when it is changed | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.waynepiekarski.screeninfo" >
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".FullscreenActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:theme="@style/FullscreenTheme" >
<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="net.waynepiekarski.screeninfo" >
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".FullscreenActivity"
android:configChanges="keyboardHidden|screenSize"
android:label="@string/app_name"
android:theme="@style/FullscreenTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
|
Use groupId org.jbpm for jbpm-docs | <?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>
<parent>
<groupId>org.kie</groupId>
<artifactId>kie-docs</artifactId>
<version>6.3.0-SNAPSHOT</version>
</parent>
<artifactId>jbpm-docs</artifactId>
<packaging>jdocbook</packaging>
<name>KIE :: Documentation :: jBPM</name>
<description>jBPM Documentation</description>
</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>
<parent>
<groupId>org.kie</groupId>
<artifactId>kie-docs</artifactId>
<version>6.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-docs</artifactId>
<packaging>jdocbook</packaging>
<name>KIE :: Documentation :: jBPM</name>
<description>jBPM Documentation</description>
</project>
|
Set nolocal=true by default for scheduler/rm core | <?xml version="1.0" encoding="UTF-8"?>
<ProActiveUserProperties>
<properties>
</properties>
<javaProperties>
</javaProperties>
</ProActiveUserProperties>
| <?xml version="1.0" encoding="UTF-8"?>
<ProActiveUserProperties>
<properties>
<prop key="proactive.net.nolocal" value="true"/>
<!--<prop key="proactive.rmi.port" value="1234"/>-->
</properties>
<javaProperties>
</javaProperties>
</ProActiveUserProperties>
|
Use hidden password prompt in the login dialog. | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/loginprompt_text_username" android:textAppearance="?android:attr/textAppearanceLarge" android:text="@string/loginprompt_text_username"></TextView>
<EditText android:layout_width="fill_parent" android:id="@+id/loginprompt_edittext_username" android:layout_height="wrap_content">
<requestFocus></requestFocus>
</EditText>
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/loginprompt_text_password" android:textAppearance="?android:attr/textAppearanceLarge" android:text="@string/loginprompt_text_password"></TextView>
<EditText android:layout_width="fill_parent" android:id="@+id/loginprompt_edittext_password" android:layout_height="wrap_content"></EditText>
<Button android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/loginprompt_button_connect" android:text="@string/loginprompt_button_connect"></Button>
</LinearLayout>
| <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/loginprompt_text_username" android:textAppearance="?android:attr/textAppearanceLarge" android:text="@string/loginprompt_text_username"></TextView>
<EditText android:layout_width="fill_parent" android:id="@+id/loginprompt_edittext_username" android:layout_height="wrap_content">
<requestFocus></requestFocus>
</EditText>
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/loginprompt_text_password" android:textAppearance="?android:attr/textAppearanceLarge" android:text="@string/loginprompt_text_password"></TextView>
<EditText android:layout_width="fill_parent" android:id="@+id/loginprompt_edittext_password" android:layout_height="wrap_content" android:password="true"></EditText>
<Button android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/loginprompt_button_connect" android:text="@string/loginprompt_button_connect"></Button>
</LinearLayout>
|
Remove unnecessary manifest attribute that could potentially cause manifest merging conflicts. | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jmedeisis.windowview">
<application android:allowBackup="true" />
</manifest>
| <manifest package="com.jmedeisis.windowview"/> |
Fix color of the visible drawable | <vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="@color/primary_text"
android:pathData="M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
</vector>
| <vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="@color/secondary_text"
android:pathData="M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z"/>
</vector>
|
Add settings icon to create task page | <menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context="com.jeff_fennell.todo.CreateTask">
<item android:id="@+id/action_settings" android:title="@string/action_settings"
android:orderInCategory="100" app:showAsAction="never" />
</menu>
| <menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context="com.jeff_fennell.todo.CreateTask">
<item android:id="@+id/action_settings" android:title="@string/action_settings"
android:orderInCategory="100" app:showAsAction="always" android:icon="@drawable/settings"/>
</menu>
|
Set the test-result to java 6 compilation compatilibility | <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>org.omg.bpmn.miwg</groupId>
<artifactId>test-result</artifactId>
<version>0.1</version>
<distributionManagement>
<site>
<id>github-bpmn-miwg</id>
<url>scm:git:https://github.com/bpmn-miwg/bpmn-miwg-tools</url>
</site>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<version>2.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.omg.bpmn.miwg</groupId>
<artifactId>test-result</artifactId>
<version>0.1</version>
<properties>
<java.version>1.6</java.version>
</properties>
<distributionManagement>
<site>
<id>github-bpmn-miwg</id>
<url>scm:git:https://github.com/bpmn-miwg/bpmn-miwg-tools</url>
</site>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<version>2.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
<version>2.3.2</version>
</plugin>
</plugins>
</build>
</project> |
Fix incompatibility with new Cordova. | <?xml version="1.0" encoding="UTF-8"?>
<widget id="io.cocoon.template.threejs.horse" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cocoon="http://cocoon.io/ns/1.0">
<name>WebGL Horse</name>
<description>
An animated 3D model of a horse running, taken from three.js demo list.
Url: http://threejs.org/examples/webgl_morphtargets_horse.html
</description>
<!-- Shown in the wizard -->
<icon src="icon.png" />
<content src="index.html" />
<access origin="*"/>
<preference name="Orientation" value="landscape"/>
<preference name="Fullscreen" value="true"/>
<cocoon:plugin name="com.ludei.canvasplus.ios"/>
<cocoon:plugin name="com.ludei.canvasplus.android"/>
</widget>
| <?xml version="1.0" encoding="UTF-8"?>
<widget id="io.cocoon.template.threejs.horse" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cocoon="http://cocoon.io/ns/1.0">
<name>WebGL Horse</name>
<description>
An animated 3D model of a horse running, taken from three.js demo list.
Url: http://threejs.org/examples/webgl_morphtargets_horse.html
</description>
<!-- Shown in the wizard -->
<content src="index.html" />
<access origin="*"/>
<preference name="Orientation" value="landscape"/>
<preference name="Fullscreen" value="true"/>
<cocoon:plugin name="com.ludei.canvasplus.ios"/>
<cocoon:plugin name="com.ludei.canvasplus.android"/>
</widget>
|
Fix the jBCrypt dependencies to be on "core" configuration rather than "opengamma" one. | <ivy-module version="2.0">
<info organisation="com.opengamma" module="og-security" status="integration"/>
<configurations>
<conf name="core"/>
<conf name="opengamma" extends="core"/>
</configurations>
<publications>
<artifact name="og-security" type="jar"/>
</publications>
<dependencies>
<dependency name="og-util" rev="latest.integration" conf="opengamma->*"/>
<dependency org="org.springframework" name="spring" rev="2.5.6" conf="*->orm"/>
<dependency org="org.springframework" name="spring-security" rev="2.0.5"/>
<dependency org="org.mongodb" name="java-driver" rev="1.0" conf="opengamma->*"/>
<dependency org="org.mindrot" name="jBCrypt" rev="0.3" conf="opengamma->*"/>
</dependencies>
</ivy-module>
| <ivy-module version="2.0">
<info organisation="com.opengamma" module="og-security" status="integration"/>
<configurations>
<conf name="core"/>
<conf name="opengamma" extends="core"/>
</configurations>
<publications>
<artifact name="og-security" type="jar"/>
</publications>
<dependencies>
<dependency name="og-util" rev="latest.integration" conf="opengamma->*"/>
<dependency org="org.springframework" name="spring" rev="2.5.6" conf="*->orm"/>
<dependency org="org.springframework" name="spring-security" rev="2.0.5"/>
<dependency org="org.mongodb" name="java-driver" rev="1.0" conf="core->*"/>
<dependency org="org.mindrot" name="jBCrypt" rev="0.3" conf="core->*"/>
</dependencies>
</ivy-module>
|
Add properties for dependency versions | <?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>
<parent>
<groupId>de.digitalcollections.blueprints</groupId>
<artifactId>rest-webservice</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<name>DigitalCollections: Blueprints 3: REST Webservice Client (Frontend IMPL OpenFeign)</name>
<artifactId>rest-client-openfeign</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>de.digitalcollections.blueprints</groupId>
<artifactId>model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-core</artifactId>
<version>9.5.0</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-gson</artifactId>
<version>9.5.0</version>
</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>
<parent>
<groupId>de.digitalcollections.blueprints</groupId>
<artifactId>rest-webservice</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<name>DigitalCollections: Blueprints 3: REST Webservice Client (Frontend IMPL OpenFeign)</name>
<artifactId>rest-client-openfeign</artifactId>
<packaging>jar</packaging>
<properties>
<junit.version>4.12</junit.version>
<feign.version>9.5.0</feign.version>
</properties>
<dependencies>
<dependency>
<groupId>de.digitalcollections.blueprints</groupId>
<artifactId>model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-core</artifactId>
<version>${feign.version}</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-gson</artifactId>
<version>${feign.version}</version>
</dependency>
</dependencies>
</project>
|
Update Android SDK version to 1.3.5 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nextpeer.android"
android:versionCode="1"
android:versionName="1.3.4" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-sdk android:minSdkVersion="8" />
<application
android:allowBackup="true"
android:icon="@drawable/np__ic_launcher"
android:label="@string/np__application_name"
android:theme="@style/NP__Theme" >
<activity android:name="com.nextpeer.android.NextpeerActivity"
android:label="@string/np__application_name"
android:theme="@style/NP__Theme" />
<activity android:name="com.nextpeer.android.facebook.LoginActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:label="@string/np__application_name" />
<service android:name="com.nextpeer.android.NextpeerPushService" />
<receiver android:name="com.nextpeer.android.NextpeerBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>
</receiver>
</application>
</manifest> | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nextpeer.android"
android:versionCode="1"
android:versionName="1.3.5" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-sdk android:minSdkVersion="8" />
<application
android:allowBackup="true"
android:icon="@drawable/np__ic_launcher"
android:label="@string/np__application_name"
android:theme="@style/NP__Theme" >
<activity android:name="com.nextpeer.android.NextpeerActivity"
android:label="@string/np__application_name"
android:theme="@style/NP__Theme" />
<activity android:name="com.nextpeer.android.facebook.LoginActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:label="@string/np__application_name" />
<service android:name="com.nextpeer.android.NextpeerPushService" />
<receiver android:name="com.nextpeer.android.NextpeerBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>
</receiver>
</application>
</manifest> |
Rename module to Jasig from JA-SIG | <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">
<parent>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server</artifactId>
<version>3.4.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cas-server-integration-ehcache</artifactId>
<packaging>jar</packaging>
<name>JA-SIG CAS EHCache Integration</name>
<dependencies>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-core</artifactId>
<version>${project.version}</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">
<parent>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server</artifactId>
<version>3.4.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cas-server-integration-ehcache</artifactId>
<packaging>jar</packaging>
<name>Jasig CAS EHCache Integration</name>
<dependencies>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project> |
Remove redundant unused color resources | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2021 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>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<!-- Status bar -->
<color name="black30">#4D000000</color>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2021 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>
<!-- Status bar -->
<color name="black30">#4D000000</color>
</resources>
|
Switch from Palladio nightly to release | <?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>
<parent>
<groupId>tools.vitruv</groupId>
<artifactId>extensions-tests</artifactId>
<version>0.2.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<artifactId>emf-tests</artifactId>
<packaging>pom</packaging>
<name>EMF Domain Test Modules</name>
<repositories>
<repository>
<id>Palladiosimulator</id>
<layout>p2</layout>
<url>https://sdqbuild.ipd.kit.edu/nexus/content/repositories/palladiosimulator-nightly/</url>
</repository>
</repositories>
<modules>
<module>tools.vitruv.extensions.emf.monitorededitor.tests</module>
</modules>
</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>
<parent>
<groupId>tools.vitruv</groupId>
<artifactId>extensions-tests</artifactId>
<version>0.2.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<artifactId>emf-tests</artifactId>
<packaging>pom</packaging>
<name>EMF Domain Test Modules</name>
<repositories>
<repository>
<id>Palladiosimulator</id>
<layout>p2</layout>
<url>https://sdqbuild.ipd.kit.edu/nexus/content/repositories/palladiosimulator-release/</url>
</repository>
</repositories>
<modules>
<module>tools.vitruv.extensions.emf.monitorededitor.tests</module>
</modules>
</project> |
Set priority via mail attribute, not via mail header. | <?xml version="1.0"?>
<!--
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.
-->
<document>
<properties>
<title>Queue Priority</title>
</properties>
<body>
<section name="Priority in the Spooling Queues">
<p>Priority is supported when James (de)queues the mails during the spooling process.</p>
<p>For this just add a Mail header with name "MAIL_PRIORITY" to the mail you send.</p>
<p>This mail header should use one of the following value:</p>
<ol>
<li>0 for LOW_PRIORITY</li>
<li>5 for NORMAL_PRIORITY (default)</li>
<li>9 for HIGH_PRIORITY</li>
</ol>
<p>Default priority if no MAIL_PRIORITY attribute set is NORMAL_PRIORITY.</p>
</section>
</body>
</document>
| <?xml version="1.0"?>
<!--
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.
-->
<document>
<properties>
<title>Queue Priority</title>
</properties>
<body>
<section name="Priority in the Spooling Queues">
<p>Priority is supported when James (de)queues the mails during the spooling process.</p>
<p>For this just add a Mail attribute with name "MAIL_PRIORITY" to the mail you send.</p>
<p>This mail header should use one of the following value:</p>
<ol>
<li>0 for LOW_PRIORITY</li>
<li>5 for NORMAL_PRIORITY (default)</li>
<li>9 for HIGH_PRIORITY</li>
</ol>
<p>Default priority if no MAIL_PRIORITY attribute set is NORMAL_PRIORITY.</p>
</section>
</body>
</document>
|
Move total payouts to an attribute of the request listing | {% extends "base.xml" %}
{% from "macros.xml" import request_xml %}
{% block content %}
<requests>
<total-payouts>{{ total_payouts.currency() }}</total-payouts>
{% for srp_request in requests %}
{{ request_xml(srp_request) }}
{% endfor %}
</requests>
{% if prev is defined %}
<prev>{{ prev }}</prev>
{% endif %}
{% if next is defined %}
<next>{{ next }}</next>
{% endif %}
{% endblock content %}
| {% extends "base.xml" %}
{% from "macros.xml" import request_xml %}
{% block content %}
<requests count="{{ requests|count }}" total-payouts="{{ total_payouts.currency() }}">
{% for srp_request in requests %}
{{ request_xml(srp_request) }}
{% endfor %}
</requests>
{% if prev is defined %}
<prev>{{ prev }}</prev>
{% endif %}
{% if next is defined %}
<next>{{ next }}</next>
{% endif %}
{% endblock content %}
|
Clean up engineeringcryptutils' test logging | <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
<errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
<param name="Target" value="System.out"/>
<layout class="org.apache.log4j.PatternLayout">
<!-- The default pattern: Date Priority [Category] Message\n -->
<param name="ConversionPattern" value="%-5p [%c{6}] %m%n"/>
</layout>
</appender>
<root>
<priority value="INFO"/>
<appender-ref ref="CONSOLE"/>
</root>
</log4j:configuration>
| <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
<errorHandler class="org.apache.log4j.helpers.OnlyOnceErrorHandler"/>
<param name="Target" value="System.out"/>
<layout class="org.apache.log4j.PatternLayout">
<!-- The default pattern: Date Priority [Category] Message\n -->
<param name="ConversionPattern" value="%-5p [%c{6}] %m%n"/>
</layout>
</appender>
<root>
<priority value="INFO"/>
<appender-ref ref="CONSOLE"/>
</root>
</log4j:configuration>
|
Fix fullscreen image action bar cut off. | <?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2014 Uwe Trottmann
~
~ 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.
-->
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/sgToolbar"
android:layout_height="?attr/actionBarSize"
android:layout_width="match_parent"
app:theme="?attr/actionBarTheme"
app:popupTheme="?attr/actionBarPopupTheme"
android:fitsSystemWindows="true"
android:background="@drawable/background_actionbar_gradient" />
| <?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2014 Uwe Trottmann
~
~ 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.
-->
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/sgToolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
app:theme="?attr/actionBarTheme"
app:popupTheme="?attr/actionBarPopupTheme"
android:fitsSystemWindows="true"
android:background="@drawable/background_actionbar_gradient" />
|
Upgrade to Joda Time 2.3. | <?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>
<parent>
<groupId>com.codahale.dropwizard</groupId>
<artifactId>dropwizard-parent</artifactId>
<version>0.7.0-SNAPSHOT</version>
</parent>
<artifactId>dropwizard-util</artifactId>
<name>Dropwizard Utility Classes</name>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.2</version>
</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>
<parent>
<groupId>com.codahale.dropwizard</groupId>
<artifactId>dropwizard-parent</artifactId>
<version>0.7.0-SNAPSHOT</version>
</parent>
<artifactId>dropwizard-util</artifactId>
<name>Dropwizard Utility Classes</name>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.3</version>
</dependency>
</dependencies>
</project>
|
Switch to App Engine automatic scaling | <?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<runtime>java8</runtime>
<!-- Allows App Engine to send multiple requests to one instance in parallel: -->
<threadsafe>true</threadsafe>
<!-- Configure serving/caching of GWT files -->
<static-files>
<include path="**"/>
<include path="**.nocache.*" expiration="0s"/>
<include path="**.cache.*" expiration="365d"/>
</static-files>
<!-- Configure java.util.logging -->
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
<staging>
<enable-jar-classes>false</enable-jar-classes>
</staging>
<sessions-enabled>false</sessions-enabled>
<basic-scaling>
<max-instances>1</max-instances>
<idle-timeout>1m</idle-timeout>
</basic-scaling>
</appengine-web-app>
| <?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<runtime>java8</runtime>
<!-- Allows App Engine to send multiple requests to one instance in parallel: -->
<threadsafe>true</threadsafe>
<!-- Configure serving/caching of GWT files -->
<static-files>
<include path="**"/>
<include path="**.nocache.*" expiration="0s"/>
<include path="**.cache.*" expiration="365d"/>
</static-files>
<!-- Configure java.util.logging -->
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
<staging>
<enable-jar-classes>false</enable-jar-classes>
</staging>
<sessions-enabled>false</sessions-enabled>
<automatic-scaling>
<max-instances>1</max-instances>
</automatic-scaling>
</appengine-web-app>
|
Fix preference crash on Android 4.1 | <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dip"
android:textAppearance="@style/TextAppearance.Opacapp.Subhead"
android:paddingLeft="?android:attr/listPreferredItemPaddingStart"
android:paddingRight="?android:attr/listPreferredItemPaddingEnd"
android:paddingTop="16dip"/> | <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dip"
android:textAppearance="@style/TextAppearance.Opacapp.Subhead"
android:paddingLeft="6dp"
android:paddingRight="6dp"
android:paddingTop="16dip"/> |
Fix issue with admin sso login page loading | <module name="sso" expose="false" xmlns="http://wso2.org/projects/jaggery/module.xml">
<script>
<name>client</name>
<path>scripts/sso.client.js</path>
</script>
<hostObject>
<className>org.wso2.carbon.hostobjects.sso.SAMLSSORelyingPartyObject</className>
<name>SSORelyingParty</name>
</hostObject>
</module> | <module name="sso" expose="false" xmlns="http://wso2.org/projects/jaggery/module.xml">
<hostObject>
<className>org.wso2.carbon.hostobjects.sso.SAMLSSORelyingPartyObject</className>
<name>SSORelyingParty</name>
</hostObject>
</module> |
Apply pre-commit changes: Resolve conflicts | <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo noupdate="1">
<record id="event_draft" model="event.registration.state">
<field name="name">Unconfirmed</field>
<field name="code">draft</field>
</record>
<record id="event_cancel" model="event.registration.state">
<field name="name">Cancelled</field>
<field name="code">cancel</field>
</record>
<record id="event_open" model="event.registration.state">
<field name="name">Confirmed</field>
<field name="code">open</field>
</record>
<record id="event_done" model="event.registration.state">
<field name="name">Attended</field>
<field name="code">done</field>
</record>
</odoo>
| <?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo noupdate="1">
<record id="event_draft" model="event.registration.state">
<field name="name">Unconfirmed</field>
<field name="code">draft</field>
</record>
<record id="event_cancel" model="event.registration.state">
<field name="name">Cancelled</field>
<field name="code">cancel</field>
</record>
<record id="event_open" model="event.registration.state">
<field name="name">Confirmed</field>
<field name="code">open</field>
</record>
<record id="event_done" model="event.registration.state">
<field name="name">Attended</field>
<field name="code">done</field>
</record>
</odoo>
|
Mark grauphel as compatible with Nextcloud 18 | <?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>grauphel</id>
<name>Grauphel: Tomboy note server</name>
<summary>Tomboy REST API server to sync notes between devices</summary>
<description>
Tomboy REST API server to sync notes between devices.
Tomboy, Conboy and Tomdroid clients are supported.
</description>
<version>0.7.3</version>
<licence>agpl</licence>
<author>Christian Weiske</author>
<namespace>Grauphel</namespace>
<documentation>
<admin>https://cweiske.de/grauphel.htm#installation</admin>
</documentation>
<category>organization</category>
<website>https://cweiske.de/grauphel.htm</website>
<bugs>https://github.com/cweiske/grauphel/issues</bugs>
<repository type="git">https://git.cweiske.de/grauphel.git</repository>
<dependencies>
<lib>OAuth</lib>
<owncloud min-version="7"/>
<nextcloud min-version="13" max-version="17"/>
</dependencies>
<!-- <ocsid>166654</ocsid> -->
</info>
| <?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>grauphel</id>
<name>Grauphel: Tomboy note server</name>
<summary>Tomboy REST API server to sync notes between devices</summary>
<description>
Tomboy REST API server to sync notes between devices.
Tomboy, Conboy and Tomdroid clients are supported.
</description>
<version>0.7.3</version>
<licence>agpl</licence>
<author>Christian Weiske</author>
<namespace>Grauphel</namespace>
<documentation>
<admin>https://cweiske.de/grauphel.htm#installation</admin>
</documentation>
<category>organization</category>
<website>https://cweiske.de/grauphel.htm</website>
<bugs>https://github.com/cweiske/grauphel/issues</bugs>
<repository type="git">https://git.cweiske.de/grauphel.git</repository>
<dependencies>
<lib>OAuth</lib>
<owncloud min-version="7"/>
<nextcloud min-version="13" max-version="18"/>
</dependencies>
<!-- <ocsid>166654</ocsid> -->
</info>
|
Change rewind and skip calculations | <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black"
android:keepScreenOn="true">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="@dimen/overscan_start_padding"
android:paddingEnd="@dimen/overscan_end_padding"
android:paddingBottom="@dimen/overscan_bottom_padding">
<com.google.android.exoplayer2.ui.SimpleExoPlayerView
android:id="@+id/player_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
</FrameLayout> | <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black"
android:keepScreenOn="true">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="@dimen/overscan_start_padding"
android:paddingEnd="@dimen/overscan_end_padding"
android:paddingBottom="@dimen/overscan_bottom_padding">
<com.google.android.exoplayer2.ui.SimpleExoPlayerView
android:id="@+id/player_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:rewind_increment="300000"
app:fastforward_increment="300000"
/>
</FrameLayout>
</FrameLayout> |
Define couchbase as lazy service, so you can catch the exception arising if the server’s down | <?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<parameters>
<parameter key="couchbase.host">localhost</parameter>
<parameter key="couchbase.username"/>
<parameter key="couchbase.password"/>
<parameter key="couchbase.bucket"/>
<parameter key="couchbase.persistent">true</parameter>
</parameters>
<services>
<service id="couchbase" class="Couchbase">
<argument>%couchbase.host%</argument>
<argument>%couchbase.username%</argument>
<argument>%couchbase.password%</argument>
<argument>%couchbase.bucket%</argument>
<argument>%couchbase.persistent%</argument>
</service>
</services>
</container>
| <?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<parameters>
<parameter key="couchbase.host">localhost</parameter>
<parameter key="couchbase.username"/>
<parameter key="couchbase.password"/>
<parameter key="couchbase.bucket"/>
<parameter key="couchbase.persistent">true</parameter>
</parameters>
<services>
<service id="couchbase" class="Couchbase" lazy="true">
<argument>%couchbase.host%</argument>
<argument>%couchbase.username%</argument>
<argument>%couchbase.password%</argument>
<argument>%couchbase.bucket%</argument>
<argument>%couchbase.persistent%</argument>
</service>
</services>
</container>
|
Configure MainActivity as default activity to be launched inside the sample project | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.pedrovgs.nox.sample">
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.pedrovgs.nox.sample">
<application
android:icon="@drawable/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>
|
Change DAS url to process center DAS url as default | <?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. 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.
-->
<ProcessCenter xmlns="http://wso2.org/pc/config">
<!--Configurations for Process Analytics-->
<Analytics>
<Enabled>false</Enabled>
<DASServerUrl>https://localhost:9445</DASServerUrl>
<DASUsername>admin</DASUsername>
<DASPassword>admin</DASPassword>
</Analytics>
<!--Configurations for runtime Environment-->
<RuntimeEnvironment>
<Enabled>false</Enabled>
<ServerUrl>https://localhost:9444</ServerUrl>
<Username>admin</Username>
<Password>admin</Password>
</RuntimeEnvironment>
</ProcessCenter> | <?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. 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.
-->
<ProcessCenter xmlns="http://wso2.org/pc/config">
<!--Configurations for Process Analytics-->
<Analytics>
<Enabled>false</Enabled>
<DASServerUrl>https://localhost:9443</DASServerUrl>
<DASUsername>admin</DASUsername>
<DASPassword>admin</DASPassword>
</Analytics>
<!--Configurations for runtime Environment-->
<RuntimeEnvironment>
<Enabled>false</Enabled>
<ServerUrl>https://localhost:9444</ServerUrl>
<Username>admin</Username>
<Password>admin</Password>
</RuntimeEnvironment>
</ProcessCenter> |
Remove features. Ship on time. | <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Civilopedia V</string>
<!-- List of drawer items -->
<string-array name="civ_categories">
<item>Technologies</item>
<item>Units</item>
<item>Buildings</item>
<item>Wonders</item>
<item>Social Policies</item>
<item>Civilizations</item>
<item>Religion</item>
</string-array>
<string name="drawer_open">Open navigation drawer</string>
<string name="drawer_close">Close navigation drawer</string>
<!-- About menu and activity -->
<string name="menu_about">About</string>
<string name="about_name">About Civilopedia V</string>
<string name="about_text">
The Civilopedia contains the details for Firaxis\' Civilopedia V
and is intended to be a companion used during gameplay.
</string>
<string name="about_copyright">
The graphics and game text are extracted from the game itself
and are owned by Firaxis, the developer of Civilization V.
</string>
<string name="about_url">https://github.com/davidfischer/civilopedia_v</string>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Civilopedia V</string>
<!-- List of drawer items -->
<string-array name="civ_categories">
<item>Technologies</item>
<item>Units</item>
<item>Buildings</item>
<item>Wonders</item>
</string-array>
<string name="drawer_open">Open navigation drawer</string>
<string name="drawer_close">Close navigation drawer</string>
<!-- About menu and activity -->
<string name="menu_about">About</string>
<string name="about_name">About Civilopedia V</string>
<string name="about_text">
The Civilopedia contains the details for Firaxis\' Civilopedia V
and is intended to be a companion used during gameplay.
</string>
<string name="about_copyright">
The graphics and game text are extracted from the game itself
and are owned by Firaxis, the developer of Civilization V.
</string>
<string name="about_url">https://github.com/davidfischer/civilopedia_v</string>
</resources>
|
Fix Action Mode close item styling am: 8362de239c | <?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.
-->
<ImageView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/action_mode_close_button"
android:contentDescription="@string/abc_action_mode_done"
android:focusable="true"
android:clickable="true"
app:srcCompat="?attr/actionModeCloseDrawable"
style="?attr/actionModeCloseButtonStyle"
android:layout_width="wrap_content"
android:layout_height="match_parent"/> | <?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.
-->
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/action_mode_close_button"
style="?attr/actionModeCloseButtonStyle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginEnd="16dip"
android:layout_marginRight="16dip"
android:clickable="true"
android:contentDescription="@string/abc_action_mode_done"
android:focusable="true"
android:paddingLeft="8dp"
android:paddingStart="8dp"
app:srcCompat="?attr/actionModeCloseDrawable" /> |
Remove application tag in manifest | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.kristal.networkstatusplugin">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<application
android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true">
</application>
</manifest>
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.kristal.networkstatusplugin">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
</manifest>
|
Remove classesDir from DSL ref | <section>
<section>
<title>Properties</title>
<table>
<thead>
<tr>
<td>Name</td>
<td>Default with <literal>jdepend</literal> plugin</td>
</tr>
</thead>
<tr>
<td>jdependClasspath</td>
<td><literal>project.configurations.jdepend</literal></td>
</tr>
<tr>
<td>classesDir</td>
<td></td>
</tr>
<tr>
<td>classesDirs</td>
<td><literal><replaceable>sourceSet</replaceable>.output.classesDirs</literal></td>
</tr>
<tr>
<td>reports</td>
<td></td>
</tr>
</table>
</section>
<section>
<title>Methods</title>
<table>
<thead>
<tr>
<td>Name</td>
</tr>
</thead>
<tr>
<td>reports</td>
</tr>
</table>
</section>
</section>
| <section>
<section>
<title>Properties</title>
<table>
<thead>
<tr>
<td>Name</td>
<td>Default with <literal>jdepend</literal> plugin</td>
</tr>
</thead>
<tr>
<td>jdependClasspath</td>
<td><literal>project.configurations.jdepend</literal></td>
</tr>
<tr>
<td>classesDirs</td>
<td><literal><replaceable>sourceSet</replaceable>.output.classesDirs</literal></td>
</tr>
<tr>
<td>reports</td>
<td></td>
</tr>
</table>
</section>
<section>
<title>Methods</title>
<table>
<thead>
<tr>
<td>Name</td>
</tr>
</thead>
<tr>
<td>reports</td>
</tr>
</table>
</section>
</section>
|
Update to new Checkstyle version | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CheckStyle-IDEA">
<option name="configuration">
<map>
<entry key="location-0" value="CLASSPATH:/sun_checks.xml:The default CheckStyle rules" />
</map>
</option>
</component>
</project> | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CheckStyle-IDEA">
<option name="configuration">
<map>
<entry key="location-0" value="CLASSPATH:/sun_checks.xml:The default Checkstyle rules" />
<entry key="location-1" value="CLASSPATH:/sun_checks.xml:The default CheckStyle rules" />
</map>
</option>
</component>
</project> |
Fix intent package name in manifest | <?xml version="1.0" encoding="utf-8"?>
<manifest package="io.taig.android.toolbelt.log">
<application />
</manifest> | <?xml version="1.0" encoding="utf-8"?>
<manifest package="io.taig.android.toolbelt.intent">
<application />
</manifest> |
Remove backup from user phone. | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.jourdanrodrigues.controk">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.example.jourdanrodrigues.controk.MainActivity">
<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.example.jourdanrodrigues.controk">
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.example.jourdanrodrigues.controk.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
|
Increase weights of header and number pad in landscape. | <?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<include
layout="@layout/bsp_numberpad_time_picker_header"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<com.philliphsu.bottomsheetpickers.view.numberpad.NumberPadView
android:id="@+id/bsp_numberpad_time_picker_view"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:paddingLeft="@dimen/bsp_gridpicker_padding_start"
android:paddingRight="@dimen/bsp_gridpicker_padding_end"
android:paddingStart="@dimen/bsp_gridpicker_padding_start"
android:paddingEnd="@dimen/bsp_gridpicker_padding_end"
android:paddingTop="@dimen/bsp_gridpicker_padding_top"
android:paddingBottom="@dimen/bsp_gridpicker_padding_bottom" />
</merge> | <?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<include
layout="@layout/bsp_numberpad_time_picker_header"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2" />
<com.philliphsu.bottomsheetpickers.view.numberpad.NumberPadView
android:id="@+id/bsp_numberpad_time_picker_view"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:paddingLeft="@dimen/bsp_gridpicker_padding_start"
android:paddingRight="@dimen/bsp_gridpicker_padding_end"
android:paddingStart="@dimen/bsp_gridpicker_padding_start"
android:paddingEnd="@dimen/bsp_gridpicker_padding_end"
android:paddingTop="@dimen/bsp_gridpicker_padding_top"
android:paddingBottom="@dimen/bsp_gridpicker_padding_bottom" />
</merge> |
Use groupId org.jbpm for jbpm-docs | <?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>
<parent>
<groupId>org.kie</groupId>
<artifactId>kie-docs</artifactId>
<version>6.3.0-SNAPSHOT</version>
</parent>
<artifactId>jbpm-docs</artifactId>
<packaging>jdocbook</packaging>
<name>KIE :: Documentation :: jBPM</name>
<description>jBPM Documentation</description>
</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>
<parent>
<groupId>org.kie</groupId>
<artifactId>kie-docs</artifactId>
<version>6.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-docs</artifactId>
<packaging>jdocbook</packaging>
<name>KIE :: Documentation :: jBPM</name>
<description>jBPM Documentation</description>
</project>
|
Update layout to use ViewPager. Adding a 4th tab of "My events" breaks the layout a bit. | <?xml version="1.0" encoding="utf-8"?>
<!-- Main layout with all events -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar android:id="@+id/progress_bar"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
android:layout_marginTop="-7dp"
style="?android:attr/progressBarStyleHorizontal" />
<android.support.v4.app.FragmentTabHost
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/tabHost">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:orientation="horizontal" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</android.support.v4.app.FragmentTabHost>
</FrameLayout>
| <?xml version="1.0" encoding="utf-8"?>
<!-- Main layout with all events -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar android:id="@+id/progress_bar"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
android:layout_marginTop="-7dp"
style="?android:attr/progressBarStyleHorizontal" />
<android.support.v4.view.ViewPager
android:id="@+id/eventTypePager"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.PagerTitleStrip
android:id="@+id/pager_title_strip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:background="#33b5e5"
android:textColor="#fff"
android:paddingTop="4dp"
android:paddingBottom="4dp" />
</android.support.v4.view.ViewPager>
</LinearLayout>
|
Support for 18:9 and 18.5:9 screens | <manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.calintat.units" >
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/app_theme"
android:allowBackup="true"
android:supportsRtl="true"
android:fullBackupContent="@xml/backup_descriptor" >
<activity
android:name=".activities.MainActivity"
android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activities.SettingsActivity"
android:parentActivityName=".activities.MainActivity" />
</application>
</manifest> | <manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.calintat.units" >
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/app_theme"
android:allowBackup="true"
android:supportsRtl="true"
android:fullBackupContent="@xml/backup_descriptor" >
<meta-data
android:name="android.max_aspect"
android:value="2.1" />
<activity
android:name=".activities.MainActivity"
android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activities.SettingsActivity"
android:parentActivityName=".activities.MainActivity" />
</application>
</manifest> |
Add explicit dependency to jaxb-api | <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>com.woorea</groupId>
<artifactId>openstack-java-sdk</artifactId>
<version>3.2.8-SNAPSHOT</version>
</parent>
<artifactId>nova-model</artifactId>
<name>OpenStack Nova Model</name>
<description>OpenStack Nova Model</description>
</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>com.woorea</groupId>
<artifactId>openstack-java-sdk</artifactId>
<version>3.2.8-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.12</version>
</dependency>
</dependencies>
<artifactId>nova-model</artifactId>
<name>OpenStack Nova Model</name>
<description>OpenStack Nova Model</description>
</project> |
Check README only if tool exists | <?xml version="1.0" encoding="UTF-8"?>
<project name="Check README">
<property name="executable.rst" location="/usr/bin/rst2html" />
<target name="readme" extensionOf="-package:main~hook">
<exec executable="${executable.rst}" failonerror="true" dir="${basedir}" errorproperty="readme.error">
<arg value="${basedir}/README.rst" />
<arg value="${builddir}/README.html" />
</exec>
<fail>
<condition>
<not>
<equals arg1="${readme.error}" arg2=""/>
</not>
</condition>
The README.rst contains errors:
${readme.error}
</fail>
</target>
</project>
| <?xml version="1.0" encoding="UTF-8"?>
<project name="Check README">
<property name="executable.rst" location="/usr/bin/rst2html" />
<target name="-readme:check-exec">
<available file="${executable.rst}" type="file" property="readme:exec:available"/>
</target>
<target name="readme" depends="-readme:check-exec" extensionOf="-package:main~hook" if="readme:exec:available">
<exec executable="${executable.rst}" failonerror="true" dir="${basedir}" errorproperty="readme.error">
<arg value="${basedir}/README.rst" />
<arg value="${builddir}/README.html" />
</exec>
<fail>
<condition>
<not>
<equals arg1="${readme.error}" arg2=""/>
</not>
</condition>
The README.rst contains errors:
${readme.error}
</fail>
</target>
</project>
|
Update "fixes" folder (bug fix) | <AML>
<Item type="Item Action" action="add">
<source_id>
<Item type="ItemType" action="get" select="id" where="[ItemType].name='Part'"/>
</source_id>
<related_id>A4CDEF0ABB314323BDE27F782C0DDA1C</related_id>
</Item>
</AML>
| <AML>
<Item type="Item Action" action="add" id="A3CB23B870D44D31A3BA9CF5C034DCC6">
<related_id keyed_name="labs_OpenCustomModalDialog" type="Action">A4CDEF0ABB314323BDE27F782C0DDA1C</related_id>
<source_id keyed_name="Part" type="ItemType" name="Part">4F1AC04A2B484F3ABA4E20DB63808A88</source_id>
</Item>
</AML>
|
Remove permission limited to system apps | <?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Allows unlocking your device and activating its screen so UI tests can succeed -->
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<!-- Allows for storing and retrieving screenshots -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<!-- Allows changing locales -->
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
</manifest> | <?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Allows unlocking your device and activating its screen so UI tests can succeed -->
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<!-- Allows for storing and retrieving screenshots -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
</manifest> |
Put build number into version string, old-school. | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.funnyhatsoftware.spacedock"
android:versionCode="3"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:name="com.funnyhatsoftware.spacedock.SpaceDockApplication"
android:allowBackup="true"
android:icon="@drawable/spacedock_icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".activity.RootActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.EditSquadActivity"
android:parentActivityName=".activity.RootActivity" >
</activity>
<activity
android:name=".activity.SettingsActivity"
android:label="@string/title_settings"
android:parentActivityName=".activity.RootActivity" >
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.funnyhatsoftware.spacedock"
android:versionCode="3"
android:versionName="1.0a3" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:name="com.funnyhatsoftware.spacedock.SpaceDockApplication"
android:allowBackup="true"
android:icon="@drawable/spacedock_icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".activity.RootActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.EditSquadActivity"
android:parentActivityName=".activity.RootActivity" >
</activity>
<activity
android:name=".activity.SettingsActivity"
android:label="@string/title_settings"
android:parentActivityName=".activity.RootActivity" >
</activity>
</application>
</manifest>
|
Make sure the app is loaded in dav | <?xml version="1.0"?>
<info>
<id>sharebymail</id>
<name>Share by mail</name>
<description>Share provider which allows you to share files by mail</description>
<licence>AGPL</licence>
<author>Bjoern Schiessle</author>
<version>1.0.0</version>
<namespace>ShareByMail</namespace>
<category>other</category>
<dependencies>
<nextcloud min-version="11" max-version="11" />
</dependencies>
<default_enable/>
<activity>
<providers>
<provider>OCA\ShareByMail\Activity</provider>
</providers>
</activity>
</info>
| <?xml version="1.0"?>
<info>
<id>sharebymail</id>
<name>Share by mail</name>
<description>Share provider which allows you to share files by mail</description>
<licence>AGPL</licence>
<author>Bjoern Schiessle</author>
<version>1.0.1</version>
<namespace>ShareByMail</namespace>
<category>other</category>
<dependencies>
<nextcloud min-version="11" max-version="11" />
</dependencies>
<default_enable/>
<types>
<filesystem/>
</types>
<activity>
<providers>
<provider>OCA\ShareByMail\Activity</provider>
</providers>
</activity>
</info>
|
Add test libraries to the class path | <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>de.cgan</groupId>
<artifactId>bottles</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>99 Bottles of Beer</name>
<url>https://github.com/migu/99BottlesOfBeer</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</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>de.cgan</groupId>
<artifactId>bottles</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>99 Bottles of Beer</name>
<url>https://github.com/migu/99BottlesOfBeer</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>4.11</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Use emulated stack mode until development is complete | <module>
<!-- WS Compiler: manually edited -->
<inherits name="com.vaadin.DefaultWidgetSet" />
<inherits name="elemental.Elemental" />
<public path="public/" />
<source path="shared/" />
<source path="client/" />
</module>
| <module>
<!-- WS Compiler: manually edited -->
<inherits name="com.vaadin.DefaultWidgetSet" />
<inherits name="elemental.Elemental" />
<public path="public/" />
<source path="shared/" />
<source path="client/" />
<!-- TODO: For debugging only; remove these before release! -->
<set-property name="compiler.stackMode" value="emulated" />
<set-configuration-property name="compiler.emulatedStack.recordLineNumbers" value="true" />
<set-configuration-property name="compiler.emulatedStack.recordFileNames" value="true" />
</module>
|
Add service ID to avoid Symfony 3.4 deprecation notice | <?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<parameters>
<parameter key="contentmapping.destinationadapter.solarium.batch_size">20</parameter>
</parameters>
<services>
<!-- Console Commands -->
<service class="Webfactory\ContentMappingDestinationAdapterSolariumBundle\Command\DeleteFromIndexCommand">
<argument type="service" id="solarium.client"/>
<argument type="service" id="logger"/>
<tag name="monolog.logger" channel="contentmapping" />
<tag name="console.command" />
</service>
<!-- DestinationAdapter -->
<service id="contentmapping.destinationadapter.solarium" class="Webfactory\ContentMapping\DestinationAdapter\Solarium\SolariumDestinationAdapter">
<factory class="Webfactory\ContentMappingDestinationAdapterSolariumBundle\SolariumDestinationAdapterFactory" method="create" />
<argument type="service" id="solarium.client"/>
<argument type="service" id="logger" />
<argument>%contentmapping.destinationadapter.solarium.batch_size%</argument>
<argument>%kernel.debug%</argument>
<tag name="monolog.logger" channel="contentmapping" />
</service>
</services>
</container>
| <?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<parameters>
<parameter key="contentmapping.destinationadapter.solarium.batch_size">20</parameter>
</parameters>
<services>
<!-- Console Commands -->
<service id="contentmapping.destinationadapter.solarium.delete_from_index_command" class="Webfactory\ContentMappingDestinationAdapterSolariumBundle\Command\DeleteFromIndexCommand">
<argument type="service" id="solarium.client"/>
<argument type="service" id="logger"/>
<tag name="monolog.logger" channel="contentmapping" />
<tag name="console.command" />
</service>
<!-- DestinationAdapter -->
<service id="contentmapping.destinationadapter.solarium" class="Webfactory\ContentMapping\DestinationAdapter\Solarium\SolariumDestinationAdapter">
<factory class="Webfactory\ContentMappingDestinationAdapterSolariumBundle\SolariumDestinationAdapterFactory" method="create" />
<argument type="service" id="solarium.client"/>
<argument type="service" id="logger" />
<argument>%contentmapping.destinationadapter.solarium.batch_size%</argument>
<argument>%kernel.debug%</argument>
<tag name="monolog.logger" channel="contentmapping" />
</service>
</services>
</container>
|
Test of writing directly to GitHub local | <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
>
<channel>
<title>Comments for Hi. My name is André Kaplan</title>
<atom:link href="/comments/feed/" rel="self" type="application/rss+xml" />
<link>/</link>
<description>UX Designer</description>
<lastBuildDate>Sun, 27 Aug 2017 13:38:13 +0000</lastBuildDate>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://wordpress.org/?v=4.8.1</generator>
</channel>
</rss>
| <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
>
<channel>
<title>Comments for Hi. My name is André Kaplan</title>
<atom:link href="/comments/feed/" rel="self" type="application/rss+xml" />
<link>/</link>
<description>UX Designer</description>
<lastBuildDate>Sun, 27 Aug 2017 13:43:17 +0000</lastBuildDate>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://wordpress.org/?v=4.8.1</generator>
</channel>
</rss>
|
Add description to run tasks | <?xml version="1.0" encoding="UTF-8"?>
<project name="Librarian" default="test">
<property file="${project.basedir}/build.properties" />
<!--
<target name="clean">
<delete dir="${project.basedir}/build" quiet="true" />
<mkdir dir="${project.basedir}/build" />
</target>
<target name="buid" depends="clean"></target>
-->
<target name="test" description="Run Unit Tests">
<exec
executable="${project.basedir}/bin/phpunit"
checkreturn="true"
passthru="true"
>
<arg value="-c" />
<arg value="${project.basedir}/app/phpunit.xml.dist" />
</exec>
</target>
<target name="run">
<exec
command="${project.basedir}/app/console server:run ${app.local.host}:${app.local.port}"
checkreturn="true"
passthru="true"
/>
</target>
<target name="run:mongo">
<exec
command="docker run --name ${container.events.name} -v ${container.events.volume} -p ${container.events.port} -d ${container.events.image}"
checkreturn="true"
passthru="true"
/>
</target>
</project>
| <?xml version="1.0" encoding="UTF-8"?>
<project name="Librarian" default="test">
<property file="${project.basedir}/build.properties" />
<!--
<target name="clean">
<delete dir="${project.basedir}/build" quiet="true" />
<mkdir dir="${project.basedir}/build" />
</target>
<target name="buid" depends="clean"></target>
-->
<target name="test" description="Run Unit Tests">
<exec
executable="${project.basedir}/bin/phpunit"
checkreturn="true"
passthru="true"
>
<arg value="-c" />
<arg value="${project.basedir}/app/phpunit.xml.dist" />
</exec>
</target>
<target name="run" description="Run the app">
<exec
command="${project.basedir}/app/console server:run ${app.local.host}:${app.local.port}"
checkreturn="true"
passthru="true"
/>
</target>
<target name="run:mongo" description="Run MongoDB container">
<exec
command="docker run --name ${container.events.name} -v ${container.events.volume} -p ${container.events.port} -d ${container.events.image}"
checkreturn="true"
passthru="true"
/>
</target>
</project>
|
Add new tags for new UI | <?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>Jive Messenger</display-name>
<description>Open Source XMPP Server by Jive Software (jivesoftware.org)</description>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>messenger_i18n_en</param-value>
</context-param>
<!--@@STARTUP-SERVLET@@-->
<!--@@JSPC-SERVLETS@@-->
<taglib>
<taglib-uri>core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>fmt</taglib-uri>
<taglib-location>/WEB-INF/fmt.tld</taglib-location>
</taglib>
</web-app>
| <?xmlTest version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>Jive Messenger</display-name>
<description>Open Source XMPP Server by Jive Software (jivesoftware.org)</description>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>messenger_i18n_en</param-value>
</context-param>
<!--@@STARTUP-SERVLET@@-->
<!--@@JSPC-SERVLETS@@-->
<taglib>
<taglib-uri>core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>fmt</taglib-uri>
<taglib-location>/WEB-INF/fmt.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>admin</taglib-uri>
<taglib-location>/WEB-INF/admin.tld</taglib-location>
</taglib>
</web-app>
|
Add Brazilian key hint labels in a comment | <?xml version="1.0" encoding="utf-8"?>
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android">
<Row android:rowEdgeFlags="top">
<Key android:codes="235" android:keyEdgeFlags="left"/>
<Key android:codes="281"/>
<Key android:codes="949"/>
<Key android:codes="951"/>
<Key android:codes="8364" android:keyEdgeFlags="right"/>
</Row>
<Row android:rowEdgeFlags="bottom">
<Key android:codes="51" android:keyEdgeFlags="left"/>
<Key android:codes="232"/>
<Key android:codes="233"/>
<Key android:codes="275"/>
<Key android:codes="283"/>
<Key android:codes="234" android:keyEdgeFlags="right"/>
</Row>
</Keyboard>
| <?xml version="1.0" encoding="utf-8"?>
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android">
<Row android:rowEdgeFlags="top">
<!-- ë ę ε η € -->
<Key android:codes="235" android:keyEdgeFlags="left"/>
<Key android:codes="281"/>
<Key android:codes="949"/>
<Key android:codes="951"/>
<Key android:codes="8364" android:keyEdgeFlags="right"/>
</Row>
<Row android:rowEdgeFlags="bottom">
<!-- 3 è é ē ě ê -->
<Key android:codes="51" android:keyEdgeFlags="left"/>
<Key android:codes="232"/>
<Key android:codes="233"/>
<Key android:codes="275"/>
<Key android:codes="283"/>
<Key android:codes="234" android:keyEdgeFlags="right"/>
</Row>
</Keyboard>
|
Deploy version 31 to GAE | <?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>rasptempalarm</application>
<version>30</version>
<threadsafe>true</threadsafe>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties" />
</system-properties>
</appengine-web-app> | <?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>rasptempalarm</application>
<version>31</version>
<threadsafe>true</threadsafe>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties" />
</system-properties>
</appengine-web-app> |
Make gpg.executable use gpg instead of gpg.executable2 which is not supported by travis-ci | <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>ossrh</id>
<username>${env.OSSRH_JIRA_USERNAME}</username>
<password>${env.OSSRH_JIRA_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg2</gpg.executable>
<gpg.keyname>${env.GPG_KEY_NAME}</gpg.keyname>
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
</properties>
</profile>
</profiles>
</settings> | <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>ossrh</id>
<username>${env.OSSRH_JIRA_USERNAME}</username>
<password>${env.OSSRH_JIRA_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg</gpg.executable>
<gpg.keyname>${env.GPG_KEY_NAME}</gpg.keyname>
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
</properties>
</profile>
</profiles>
</settings> |
Fix loading of CSS file | <?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.
-->
<module rename-to="reviewers">
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name="com.google.gwt.user.User"/>
<!-- Other module inherits -->
<inherits name="com.google.gerrit.Plugin"/>
<inherits name="com.google.gwt.http.HTTP"/>
<inherits name="com.google.gwt.json.JSON"/>
<inherits name="com.google.gwtexpui.globalkey.GlobalKey"/>
<!-- Using GWT built-in themes adds a number of static -->
<!-- resources to the plugin. No theme inherits lines were -->
<!-- added in order to make this plugin as simple as possible -->
<!-- Specify the app entry point class. -->
<entry-point class="com.googlesource.gerrit.plugins.reviewers.client.ReviewersPlugin"/>
<stylesheet src="/reviewers.css"/>
</module>
| <?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.
-->
<module rename-to="reviewers">
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name="com.google.gwt.user.User"/>
<!-- Other module inherits -->
<inherits name="com.google.gerrit.Plugin"/>
<inherits name="com.google.gwt.http.HTTP"/>
<inherits name="com.google.gwt.json.JSON"/>
<inherits name="com.google.gwtexpui.globalkey.GlobalKey"/>
<!-- Using GWT built-in themes adds a number of static -->
<!-- resources to the plugin. No theme inherits lines were -->
<!-- added in order to make this plugin as simple as possible -->
<!-- Specify the app entry point class. -->
<entry-point class="com.googlesource.gerrit.plugins.reviewers.client.ReviewersPlugin"/>
<stylesheet src="reviewers.css"/>
</module>
|
Add libraries, helpers, hooks to coverage filter | <phpunit
bootstrap="./Bootstrap.php"
colors="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="CodeIgniter Application Test Suite">
<directory suffix="test.php">./</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">../controllers</directory>
<directory suffix=".php">../models</directory>
<directory suffix=".php">../views</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>
| <phpunit
bootstrap="./Bootstrap.php"
colors="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="CodeIgniter Application Test Suite">
<directory suffix="test.php">./</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">../controllers</directory>
<directory suffix=".php">../models</directory>
<directory suffix=".php">../views</directory>
<directory suffix=".php">../libraries</directory>
<directory suffix=".php">../helpers</directory>
<directory suffix=".php">../hooks</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>
|
Make sure system scrollbars get initialized at least | <?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/rrv_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<com.bkromhout.rrvl.FastScroller
android:id="@+id/rrv_fast_scroller"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end|right"
android:visibility="gone"/>
<ViewStub
android:id="@+id/rrv_empty_content_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>
</merge> | <?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/rrv_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"/>
<com.bkromhout.rrvl.FastScroller
android:id="@+id/rrv_fast_scroller"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end|right"
android:visibility="gone"/>
<ViewStub
android:id="@+id/rrv_empty_content_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>
</merge> |
Support installation on SD card. | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.postgresql.top" android:versionCode="1"
android:versionName="2.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".PGTop" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".PGAddDatabase"></activity>
<activity android:name=".PGRemoveDatabase"></activity>
<activity android:name=".PGSettings"></activity>
<activity android:name=".PGStatActivity"></activity>
<activity android:name=".PGStatBgwriter"></activity>
<activity android:name=".PGStatDatabase"></activity>
</application>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest> | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.postgresql.top" android:versionCode="1"
android:versionName="2.0"
android:installLocation="auto"
>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".PGTop" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".PGAddDatabase"></activity>
<activity android:name=".PGRemoveDatabase"></activity>
<activity android:name=".PGSettings"></activity>
<activity android:name=".PGStatActivity"></activity>
<activity android:name=".PGStatBgwriter"></activity>
<activity android:name=".PGStatDatabase"></activity>
</application>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest> |
Revert "Attempt a work-around to fix failed test suite on server." | <manifest package="com.smartdevicelink" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="8"/>
<uses-permission android:name="android.permission.BLUETOOTH" />
<!-- Required to pair Bluetooth devices -->
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.INTERNET" />
<!-- Required to check if WiFi is enabled -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<instrumentation>
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.smartdevicelink.test"
<meta-data
android:name="notPackage"
android:value="net.bytebuddy" />
</instrumentation>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:debuggable="true">
<uses-library android:name="android.test.runner" />
</application>
</manifest>
| <manifest package="com.smartdevicelink" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="8"/>
<uses-permission android:name="android.permission.BLUETOOTH" />
<!-- Required to pair Bluetooth devices -->
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.INTERNET" />
<!-- Required to check if WiFi is enabled -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.smartdevicelink.test" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:debuggable="true">
<uses-library android:name="android.test.runner" />
</application>
</manifest>
|
Update to note food served at the rear of the Hall of Service in 2016 | <?xml version="1.0" encoding="UTF-8"?>
<rooms>
<room>
<room_id>1</room_id>
<title>Hall of Service</title>
<color>#d1a42b</color>
</room>
<room>
<room_id>2</room_id>
<title>Board of Governors</title>
<color>#415976</color>
</room>
<room>
<room_id>3</room_id>
<title>Hallway outside the Hall of Service</title>
<color>#415976</color>
</room>
<room>
<room_id>4</room_id>
<title>TBD</title>
<color>#415976</color>
</room>
</rooms>
| <?xml version="1.0" encoding="UTF-8"?>
<rooms>
<room>
<room_id>1</room_id>
<title>Hall of Service</title>
<color>#d1a42b</color>
</room>
<room>
<room_id>2</room_id>
<title>Board of Governors</title>
<color>#415976</color>
</room>
<room>
<room_id>3</room_id>
<title>Back of the Hall of Service</title>
<color>#415976</color>
</room>
<room>
<room_id>4</room_id>
<title>Reception location TBA soon</title>
<color>#415976</color>
</room>
</rooms>
|
Use exploded war directly for now | <?xml version="1.0" encoding="UTF-8"?>
<gbeans>
<path>geronimo-web-console.war</path>
<gbean class="org.apache.geronimo.jetty.JettyWebApplicationContext" objectName="geronimo.app:name=WebConsole">
<default attribute="URI" type="java.net.URI">file:../modules/console-web/target/geronimo-web-console.war</default>
<default attribute="ContextPath" type="java.lang.String">/geronimo-web-console</default>
<endpoint name="JettyContainer">
<pattern>geronimo.web:type=WebContainer,container=Jetty</pattern>
</endpoint>
</gbean>
</gbeans> | <?xml version="1.0" encoding="UTF-8"?>
<gbeans>
<!-- <path>geronimo-web-console.war</path>-->
<gbean class="org.apache.geronimo.jetty.JettyWebApplicationContext" objectName="geronimo.app:name=WebConsole">
<default attribute="URI" type="java.net.URI">file:../modules/console-web/target/geronimo-web-console/</default>
<default attribute="ContextPath" type="java.lang.String">/geronimo-web-console</default>
<endpoint name="JettyContainer">
<pattern>geronimo.web:type=WebContainer,container=Jetty</pattern>
</endpoint>
</gbean>
</gbeans> |
Set error_reporting to E_ALL when running tests | <?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="src">
<directory>./tests/src</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="tests/log/coverage"
charset="UTF-8"
yui="true"
highlight="false"
lowUpperBound="70"
highLowerBound="90"
/>
<log type="testdox-html" target="tests/log/testdox.html"/>
<log type="coverage-clover" target="tests/log/coverage.xml" />
</logging>
</phpunit>
| <?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="src">
<directory>./tests/src</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="tests/log/coverage"
charset="UTF-8"
yui="true"
highlight="false"
lowUpperBound="70"
highLowerBound="90"
/>
<log type="testdox-html" target="tests/log/testdox.html"/>
<log type="coverage-clover" target="tests/log/coverage.xml" />
</logging>
<php>
<ini name="error_reporting" value="E_ALL" />
</php>
</phpunit>
|
Update copyright year in code template | <?xml version="1.0" encoding="UTF-8"?>
<templates>
<template context="newtype_context" deleted="false"
description="Newly created files" enabled="true"
id="org.eclipse.jdt.ui.text.codetemplates.newtype" name="newtype">/*
* Copyright 2010, Red Hat, Inc. and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
${package_declaration}
${typecomment}
${type_declaration}
</template>
</templates>
| <?xml version="1.0" encoding="UTF-8"?>
<templates>
<template context="newtype_context" deleted="false"
description="Newly created files" enabled="true"
id="org.eclipse.jdt.ui.text.codetemplates.newtype" name="newtype">/*
* Copyright 2013, Red Hat, Inc. and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
${package_declaration}
${typecomment}
${type_declaration}
</template>
</templates>
|
Add fade in effect to album selector correctly use holo color to match rest of system. | <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_selected="true" android:drawable="@color/orange" android:state_pressed="false"/>
<item
android:drawable="@color/fity_percent_transparent"
/>
</selector>
| <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:exitFadeDuration="@android:integer/config_mediumAnimTime" >
<item android:state_selected="true" android:drawable="@color/holo_color" android:state_pressed="false"/>
<item
android:drawable="@color/fity_percent_transparent"
/>
</selector>
|
Add a horizontal rule to the node view | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip"
android:drawSelectorOnTop="true">
<TextView
android:id="@+id/node_detail_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textStyle="bold"
android:textSize="16sp"
android:textColor="#FF050505"
/>
<TextView
android:id="@+id/node_detail_tags"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textColor="#FF050505"
android:layout_below="@id/node_detail_name"
/>
</RelativeLayout> | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip"
android:drawSelectorOnTop="true">
<TextView
android:id="@+id/node_detail_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textStyle="bold"
android:textSize="16sp"
android:textColor="#FF050505"
/>
<TextView
android:id="@+id/node_detail_tags"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textColor="#FF050505"
android:layout_below="@id/node_detail_name"
/>
<View
android:id="@+id/node_detail_hr"
android:layout_width="fill_parent"
android:layout_height="2dip"
android:layout_marginTop="4dip"
android:layout_marginBottom="4dip"
android:paddingBottom="6dip"
android:background="#CCCCCCCC"
android:layout_below="@id/node_detail_tags"
/>
</RelativeLayout> |
Revert manifest min to API level 8 | <manifest package="com.smartdevicelink" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="11"/>
<!-- Required to use the USB Accessory mode -->
<uses-feature android:name="android.hardware.usb.accessory"/>
<application android:debuggable="true"/>
</manifest>
| <manifest package="com.smartdevicelink" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="8"/>
<application android:debuggable="true"/>
</manifest>
|
Fix key length issue in newer MySQL and MariaDB | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<property name="mediumtext" value="TEXT" dbms="postgresql" />
<property name="mediumtext" value="MEDIUMTEXT" />
<changeSet author="darren (generated)" id="dump1">
<createIndex indexName="idx_label_key_value" tableName="label" unique="false">
<column name="key"/>
<column name="value"/>
</createIndex>
</changeSet>
</databaseChangeLog>
| <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<property name="mediumtext" value="TEXT" dbms="postgresql" />
<property name="mediumtext" value="MEDIUMTEXT" />
<changeSet dbms="!mysql" author="darren (generated)" id="dump1">
<validCheckSum>7:46c16c76490ce496b22a9faa6bf6db0c</validCheckSum>
<createIndex indexName="idx_label_key_value" tableName="label" unique="false">
<column name="key"/>
<column name="value"/>
</createIndex>
</changeSet>
<changeSet dbms="mysql" author="darren (generated)" id="dump1">
<validCheckSum>7:46c16c76490ce496b22a9faa6bf6db0c</validCheckSum>
<validCheckSum>7:435f414e3ee3bafb1de08adb404c7c68</validCheckSum>
<sql>
CREATE INDEX idx_label_key_value ON label(`key`(255), `value`(255));
</sql>
</changeSet>
</databaseChangeLog>
|
Improve drink detail a bit | <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/image"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/name"/>
</FrameLayout> | <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/image"
android:scaleType="centerCrop"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/name"
android:textSize="28sp"
android:fontFamily="sans-serif-light"/>
</FrameLayout> |
Adjust version to other pkgs in the repo. | <?xml version="1.0"?>
<package>
<name>moveit_runtime</name>
<version>0.7.6</version>
<description>moveit_runtime meta package contains MoveIt! packages that are essential for its runtime (e.g. running MoveIt! on robots).</description>
<author email="gm130s@gmail.com">Isaac I. Y. Saito</author>
<maintainer email="gm130s@gmail.com">Isaac I. Y. Saito</maintainer>
<license>BSD</license>
<url type="website">http://moveit.ros.org</url>
<url type="website">http://wiki.ros.org/moveit_runtime</url>
<buildtool_depend>catkin</buildtool_depend>
<run_depend>moveit_core</run_depend>
<run_depend>moveit_planners</run_depend>
<run_depend>moveit_plugins</run_depend>
<run_depend>moveit_ros_manipulation</run_depend>
<run_depend>moveit_ros_move_group</run_depend>
<run_depend>moveit_ros_perception</run_depend>
<run_depend>moveit_ros_planning</run_depend>
<run_depend>moveit_ros_planning_interface</run_depend>
<run_depend>moveit_ros_warehouse</run_depend>
<export>
<metapackage/>
</export>
</package>
| <?xml version="1.0"?>
<package>
<name>moveit_runtime</name>
<version>0.9.3</version>
<description>moveit_runtime meta package contains MoveIt! packages that are essential for its runtime (e.g. running MoveIt! on robots).</description>
<author email="gm130s@gmail.com">Isaac I. Y. Saito</author>
<maintainer email="gm130s@gmail.com">Isaac I. Y. Saito</maintainer>
<license>BSD</license>
<url type="website">http://moveit.ros.org</url>
<url type="website">http://wiki.ros.org/moveit_runtime</url>
<buildtool_depend>catkin</buildtool_depend>
<run_depend>moveit_core</run_depend>
<run_depend>moveit_planners</run_depend>
<run_depend>moveit_plugins</run_depend>
<run_depend>moveit_ros_manipulation</run_depend>
<run_depend>moveit_ros_move_group</run_depend>
<run_depend>moveit_ros_perception</run_depend>
<run_depend>moveit_ros_planning</run_depend>
<run_depend>moveit_ros_planning_interface</run_depend>
<run_depend>moveit_ros_warehouse</run_depend>
<export>
<metapackage/>
</export>
</package>
|
Update IDEA's project configuration to use JDK 17 | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavadocGenerationManager">
<option name="OUTPUT_DIRECTORY" value="$USER_HOME$/Desktop/Bach15-API" />
<option name="OPTION_SCOPE" value="public" />
<option name="OTHER_OPTIONS" value="-Xdoclint:" />
<option name="LOCALE" value="en" />
<option name="OPTION_INCLUDE_LIBS" value="true" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_16" project-jdk-name="16" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/.idea/out" />
</component>
</project> | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavadocGenerationManager">
<option name="OUTPUT_DIRECTORY" value="$USER_HOME$/Desktop/Bach15-API" />
<option name="OPTION_SCOPE" value="public" />
<option name="OTHER_OPTIONS" value="-Xdoclint:" />
<option name="LOCALE" value="en" />
<option name="OPTION_INCLUDE_LIBS" value="true" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/.idea/out" />
</component>
</project> |
Change colorPrimary to light blue | <!--
~ Copyright (C) 2014 Antonio Leiva Gordillo.
~
~ 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>
<color name="colorPrimary">@color/material_deep_teal_200</color>
<color name="colorPrimaryDark">@color/material_deep_teal_500</color>
<color name="colorSecondary">@color/material_deep_teal_200</color>
<color name="colorSecondaryDark">@color/material_deep_teal_500</color>
<color name="windowBackgroundColor">#ddd</color>
<color name="black_translucent">#80000000</color>
</resources>
| <!--
~ Copyright (C) 2014 Antonio Leiva Gordillo.
~
~ 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>
<color name="colorPrimary">#2196F3</color>
<color name="colorPrimaryDark">#1E88E5</color>
<color name="colorSecondary">#2196F3</color>
<color name="colorSecondaryDark">#1E88E5</color>
<!--color name="colorPrimary">@color/material_deep_teal_200</color>
<color name="colorPrimaryDark">@color/material_deep_teal_500</color>
<color name="colorSecondary">@color/material_deep_teal_200</color>
<color name="colorSecondaryDark">@color/material_deep_teal_500</color-->
<color name="windowBackgroundColor">#ddd</color>
<color name="black_translucent">#80000000</color>
</resources>
|
Change tool dependencies for fastq join | <?xml version="1.0"?>
<tool_dependency>
<package name="ea-utils" version="0.1.0">
<repository name="package_ea_utils" owner="bebatut" />
</package>
</tool_dependency> | <?xml version="1.0"?>
<tool_dependency>
<package name="ea-utils" version="0.1.0">
<install version="1.0">
<actions_group>
<!-- Download the binaries -->
<actions os="linux" architecture="x86_64">
<action type="shell_command">svn checkout http://ea-utils.googlecode.com/svn/trunk/ ea-utils</action>
<action type="change_directory">ea-utils/clipper/</action>
<action type="shell_command">make</action>
<action type="move_file">
<source>fastq-join</source>
<destination>$INSTALL_DIR</destination>
</action>
</actions>
<!-- This actions tag is only processed if none of the above tags resulted in a successful installation. -->
<actions>
<action type="shell_command">echo "ERROR: Automated installation is currently not supported."</action>
<action type="shell_command">echo "Please report this via https://github.com/ASaiM/galaxytools/issues - thank you!"</action>
<action type="shell_command">false</action>
<!-- The 'false' command will return an error, so Galaxy should treat this as a failed install -->
</actions>
<!-- The $PATH environment variable is only set if one of the above <actions> tags resulted in a successful installation. -->
<action type="set_environment">
<environment_variable name="PATH" action="prepend_to">$INSTALL_DIR</environment_variable>
</action>
</actions_group>
</install>
</package>
</tool_dependency> |
Update default theme with the blue tint | <?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="hs_background_color">#e1e1e1</color>
<color name="hs_header_background_color">#81c57b</color>
<color name="hs_childView_background_color">#ffffff</color>
<color name="hs_listView_divider_color">#e2e2e2</color>
<color name="hs_listView_selector_color">#d3d3d3</color>
<color name="hs_transparent_color">#0000</color>
<color name="hs_lightGreycolor">#ECECEC</color>
<color name="hs_darkGreycolor">#B5B5B5</color>
<color name="hs_rightchat_bubblecolor">#81c57b</color>
<color name="hs_leftchat_bubblecolor">#ffffff</color>
<color name="hs_leftchat_messageTextcolor">#000000</color>
<color name="hs_rightchat_messageTextcolor">#000000</color>
<color name="hs_message_moreinfoTextColor">#000000</color>
<color name="hs_button_background_color">#FFFFFF</color>
<color name="hs_buttonTextcolor">#DE2527</color>
<color name="hs_editTextcolor">#000000</color>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="hs_background_color">#e1e1e1</color>
<color name="hs_header_background_color">#228CD1</color>
<color name="hs_childView_background_color">#000000</color>
<color name="hs_listView_divider_color">#e2e2e2</color>
<color name="hs_listView_selector_color">#d3d3d3</color>
<color name="hs_transparent_color">#0000</color>
<color name="hs_lightGreycolor">#ECECEC</color>
<color name="hs_darkGreycolor">#B5B5B5</color>
<color name="hs_rightchat_bubblecolor">#228CD1</color>
<color name="hs_leftchat_bubblecolor">#000000</color>
<color name="hs_leftchat_messageTextcolor">#000000</color>
<color name="hs_rightchat_messageTextcolor">#000000</color>
<color name="hs_message_moreinfoTextColor">#000000</color>
<color name="hs_button_background_color">#FFFFFF</color>
<color name="hs_buttonTextcolor">#DE2527</color>
<color name="hs_editTextcolor">#000000</color>
</resources>
|
Add drive equation from last year to rotation and translation controls | ()<?xml version="1.0" encoding="UTF-8"?>
<ControlConfig>
<profile name="default" active="true">
<control type="joystick" name="transY" id="1">
<maxInput value="1.0"/>
<minInput value="-1.0"/>
<deadzone value="0.05"/>
<equation value="x"/>
</control>
<control type="joystick" name="rot" id="0">
<maxInput value="1.0"/>
<minInput value="-1.0"/>
<deadzone value="0.05"/>
<equation value="x"/>
</control>
<control type="button" name="shooter" id="1">
<toggle value="false"/>
<cooldown value="0.0"/>
</control>
<control type="joystick" name="liftArm" id="5">
<maxInput value="1.0"/>
<minInput value="-1.0"/>
<deadzone value="0.1"/>
<equation value="x"/>
</control>
<control type="button" name="extendArm" id="6">
<toggle value="true"/>
<cooldown value="0.25"/>
</control>
<control type="button" name="intakeArms" id="5">
<toggle value="false"/>
<cooldown value="0"/>
</control>
</profile>
</ControlConfig>
| ()<?xml version="1.0" encoding="UTF-8"?>
<ControlConfig>
<profile name="default" active="true">
<control type="joystick" name="transY" id="1">
<maxInput value="1.0"/>
<minInput value="-1.0"/>
<deadzone value="0.05"/>
<equation value="1.75*(x-0.4)^3 + 0.6*x^2 + 0.12"/>
</control>
<control type="joystick" name="rot" id="0">
<maxInput value="1.0"/>
<minInput value="-1.0"/>
<deadzone value="0.05"/>
<equation value="1.75*(x-0.4)^3 + 0.6*x^2 + 0.12"/>
</control>
<control type="button" name="shooter" id="1">
<toggle value="false"/>
<cooldown value="0.0"/>
</control>
<control type="joystick" name="liftArm" id="5">
<maxInput value="1.0"/>
<minInput value="-1.0"/>
<deadzone value="0.1"/>
<equation value="x"/>
</control>
<control type="button" name="extendArm" id="6">
<toggle value="true"/>
<cooldown value="0.25"/>
</control>
<control type="button" name="intakeArms" id="5">
<toggle value="false"/>
<cooldown value="0"/>
</control>
</profile>
</ControlConfig>
|
Fix image button height for search field | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="Search"
android:id="@+id/filterEditText" />
<ImageButton
android:layout_width="46dp"
android:layout_height="38dp"
android:id="@+id/filterClearButton"
android:layout_weight="0"
android:clickable="true"
android:src="@android:drawable/ic_input_delete"
android:layout_marginRight="8dp"
android:scaleType="centerCrop" />
</LinearLayout> | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="Search"
android:id="@+id/filterEditText" />
<ImageButton
android:layout_width="46dp"
android:layout_height="fill_parent"
android:id="@+id/filterClearButton"
android:layout_weight="0"
android:clickable="true"
android:src="@android:drawable/ic_input_delete"
android:layout_marginRight="8dp"
android:scaleType="centerCrop" />
</LinearLayout> |
Add Checkstyle rule that verifies that there are no unused imports | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<module name="Checker">
<property name="severity" value="error" />
<module name="TreeWalker">
<module name="SuppressWarningsHolder" />
<module name="JavadocMethod">
<property name="allowMissingJavadoc" value="true" />
<property name="allowMissingParamTags" value="true" />
<property name="allowMissingReturnTag" value="true" />
<property name="allowMissingThrowsTags" value="true" />
<property name="allowUndeclaredRTE" value="true" />
<property name="validateThrows" value="true" />
</module>
<module name="AtclauseOrder">
<property name="tagOrder" value="@param, @return, @throws, @exception, @since, @author, @see" />
</module>
<module name="NonEmptyAtclauseDescription" />
</module>
<module name="JavadocPackage" />
<module name="SuppressWarningsFilter" />
</module>
| <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<module name="Checker">
<property name="severity" value="error" />
<module name="TreeWalker">
<module name="SuppressWarningsHolder" />
<module name="JavadocMethod">
<property name="allowMissingJavadoc" value="true" />
<property name="allowMissingParamTags" value="true" />
<property name="allowMissingReturnTag" value="true" />
<property name="allowMissingThrowsTags" value="true" />
<property name="allowUndeclaredRTE" value="true" />
<property name="validateThrows" value="true" />
</module>
<module name="AtclauseOrder">
<property name="tagOrder" value="@param, @return, @throws, @exception, @since, @author, @see" />
</module>
<module name="NonEmptyAtclauseDescription" />
<module name="UnusedImports">
<property name="processJavadoc" value="true" />
</module>
</module>
<module name="JavadocPackage" />
<module name="SuppressWarningsFilter" />
</module>
|
Update snapshot version of integration-tests | <?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>robozombie-it</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>com.lonepulse</groupId>
<artifactId>robozombie-parent</artifactId>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<project.name>RoboZombie Integration Tests</project.name>
<platform.version>4.0.1.2</platform.version>
</properties>
<name>${project.name}</name>
<dependencies>
<dependency>
<groupId>com.lonepulse</groupId>
<artifactId>robozombie</artifactId>
<version>1.3.0-SNAPSHOT</version>
<scope>provided</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>robozombie-it</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>com.lonepulse</groupId>
<artifactId>robozombie-parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<project.name>RoboZombie Integration Tests</project.name>
<platform.version>4.0.1.2</platform.version>
</properties>
<name>${project.name}</name>
<dependencies>
<dependency>
<groupId>com.lonepulse</groupId>
<artifactId>robozombie</artifactId>
<version>1.3.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
|
Fix test, PA_SCHEDULER_HOME is the proper name | <?xml version="1.0" encoding="UTF-8"?>
<job xmlns="urn:proactive:jobdescriptor:dev" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:proactive:jobdescriptor:dev ../../../src/org/ow2/proactive/scheduler/common/xml/schemas/jobdescriptor/dev/schedulerjob.xsd"
name="job_propagate_vars_on_unix" cancelJobOnError="false" priority="normal">
<variables>
<variable name="var" value="var-value" />
</variables>
<description>PropagateVariablesOnUnix</description>
<taskFlow>
<task name="task1" preciousResult="true">
<pre>
<script>
<code language="javascript">
if ('var-value' != variables.get('var')) {
throw 'Incorrect variable value (\'var\') in variables map: \'' + variables.get('var') + '\', expected \'var-value\'.';
}
variables.put('var','pre-script-1');
</code>
</script>
</pre>
<nativeExecutable>
<staticCommand value="${pa.scheduler.home}/scheduler/scheduler-server/build/resources/test/functionaltests/vars/test-vars.sh" />
</nativeExecutable>
</task>
</taskFlow>
</job> | <?xml version="1.0" encoding="UTF-8"?>
<job xmlns="urn:proactive:jobdescriptor:dev" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:proactive:jobdescriptor:dev ../../../src/org/ow2/proactive/scheduler/common/xml/schemas/jobdescriptor/dev/schedulerjob.xsd"
name="job_propagate_vars_on_unix" cancelJobOnError="false" priority="normal">
<variables>
<variable name="var" value="var-value" />
</variables>
<description>PropagateVariablesOnUnix</description>
<taskFlow>
<task name="task1" preciousResult="true">
<pre>
<script>
<code language="javascript">
if ('var-value' != variables.get('var')) {
throw 'Incorrect variable value (\'var\') in variables map: \'' + variables.get('var') + '\', expected \'var-value\'.';
}
variables.put('var','pre-script-1');
</code>
</script>
</pre>
<nativeExecutable>
<staticCommand value="${PA_SCHEDULER_HOME}/scheduler/scheduler-server/build/resources/test/functionaltests/vars/test-vars.sh" />
</nativeExecutable>
</task>
</taskFlow>
</job> |
Raise the precedence of the respondr-lo fragment def, so that the background preference portlet comes after the gallery portlet in the layout; this change prevents the background portlet from displaying on top of the gallery (now it's after) | <?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to Jasig under one or more contributor license
agreements. See the NOTICE file distributed with this work
for additional information regarding copyright ownership.
Jasig 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.
-->
<fragment-definition xmlns:dlm="http://org.jasig.portal.layout.dlm.config" script="classpath://org/jasig/portal/io/import-fragment-definition_v3-1.crn">
<dlm:fragment name="AuthenticatedRespondr" ownerID="authenticated.respondr-lo" precedence="80">
<dlm:audience evaluatorFactory="org.jasig.portal.layout.dlm.providers.GroupMembershipEvaluatorFactory">
<paren mode="AND">
<attribute mode="deepMemberOf" name="Authenticated Users"/>
<attribute mode="deepMemberOf" name="Responder Theme Users"/>
</paren>
</dlm:audience>
</dlm:fragment>
</fragment-definition>
| <?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to Jasig under one or more contributor license
agreements. See the NOTICE file distributed with this work
for additional information regarding copyright ownership.
Jasig 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.
-->
<fragment-definition xmlns:dlm="http://org.jasig.portal.layout.dlm.config" script="classpath://org/jasig/portal/io/import-fragment-definition_v3-1.crn">
<dlm:fragment name="AuthenticatedRespondr" ownerID="authenticated.respondr-lo" precedence="90">
<dlm:audience evaluatorFactory="org.jasig.portal.layout.dlm.providers.GroupMembershipEvaluatorFactory">
<paren mode="AND">
<attribute mode="deepMemberOf" name="Authenticated Users"/>
<attribute mode="deepMemberOf" name="Responder Theme Users"/>
</paren>
</dlm:audience>
</dlm:fragment>
</fragment-definition>
|
Test reports are now left in the build folder. | <?xml version="1.0" standalone="yes" ?>
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="php/bootstrap.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
processIsolation="true"
stopOnError="true"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="true"
verbose="true"
>
<testsuites>
<testsuite name="Full test suite">
<directory>test/src/*Test.php</directory>
</testsuite>
</testsuites>
<logging>
<log
type="coverage-html"
target="reports/phpunit"
charset="UTF-8"
highlight="true"
lowUpperBound="35"
highLowerBound="70"
/>
</logging>
</phpunit> | <?xml version="1.0" standalone="yes" ?>
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="php/bootstrap.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
processIsolation="true"
stopOnError="true"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="true"
verbose="true"
>
<testsuites>
<testsuite name="Full test suite">
<directory>test/src/*Test.php</directory>
</testsuite>
</testsuites>
<logging>
<log
type="coverage-html"
target="../build/reports/phpunit"
charset="UTF-8"
highlight="true"
lowUpperBound="35"
highLowerBound="70"
/>
</logging>
</phpunit>
|
Raise log threshold to ERROR | <?xml version="1.0" encoding="UTF-8"?>
<configuration status="OFF">
<appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
</appenders>
<loggers>
<root level="trace">
<appender-ref ref="Console"/>
</root>
</loggers>
</configuration> | <?xml version="1.0" encoding="UTF-8"?>
<configuration status="OFF">
<appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
</appenders>
<loggers>
<root level="error">
<appender-ref ref="Console"/>
</root>
</loggers>
</configuration> |
Fix MainUi package in preview layout | <?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2018. Louis Cognault Ayeva Derman
~
~ 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.
-->
<splitties.viewdsl.idepreview.UiPreView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="@style/AppTheme.NoActionBar"
app:class_package_name_relative="demo.MainUi"/>
| <?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2018. Louis Cognault Ayeva Derman
~
~ 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.
-->
<splitties.viewdsl.idepreview.UiPreView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="@style/AppTheme.NoActionBar"
app:class_package_name_relative="main.MainUi"/>
|
Bump maven-profiler from 3.1.1 to 3.2 | <?xml version="1.0" encoding="UTF-8"?>
<!--
base-parent (https://github.com/hazendaz/base-parent)
Copyright 2011-2021 Hazendaz.
All rights reserved. This program and the accompanying materials
are made available under the terms of The Apache Software License,
Version 2.0 which accompanies this distribution, and is available at
https://www.apache.org/licenses/LICENSE-2.0.txt
Contributors:
Hazendaz (Jeremy Landis).
-->
<extensions>
<extension>
<groupId>fr.jcgay.maven</groupId>
<artifactId>maven-profiler</artifactId>
<version>3.1.1</version>
</extension>
</extensions>
| <?xml version="1.0" encoding="UTF-8"?>
<!--
base-parent (https://github.com/hazendaz/base-parent)
Copyright 2011-2021 Hazendaz.
All rights reserved. This program and the accompanying materials
are made available under the terms of The Apache Software License,
Version 2.0 which accompanies this distribution, and is available at
https://www.apache.org/licenses/LICENSE-2.0.txt
Contributors:
Hazendaz (Jeremy Landis).
-->
<extensions>
<extension>
<groupId>fr.jcgay.maven</groupId>
<artifactId>maven-profiler</artifactId>
<version>3.2</version>
</extension>
</extensions>
|
Add flash button in example | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="fr.axelpetit.barcodelibraryexample.MainActivity">
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<FrameLayout
android:id="@+id/frame_cam"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout> | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:background="#000"
android:id="@+id/frame_cam"
android:layout_width="match_parent"
android:layout_height="match_parent"></FrameLayout>
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:paddingLeft="50dp"
android:paddingRight="50dp"
tools:ignore="UselessParent">
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="FLASH"/>
</RelativeLayout>
</RelativeLayout> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.