Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add support for Maven builds. | <?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>
<groupId>org.prefuse.flare</groupId>
<artifactId>flare</artifactId>
<packaging>swc</packaging>
<version>1.0-SNAPSHOT</version>
<name>prefuse Flare (Juice, Inc.)</name>
<repositories>
<repository>
<id>flex-mojos-repository</id>
<url>http://svn.sonatype.org/flexmojos/repository/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>flex-mojos-repository</id>
<url>http://svn.sonatype.org/flexmojos/repository/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<sourceDirectory>flare/src</sourceDirectory>
<plugins>
<plugin>
<groupId>info.flex-mojos</groupId>
<artifactId>flex-compiler-mojo</artifactId>
<version>2.0M8</version>
<extensions>true</extensions>
<configuration>
<headlessServer>true</headlessServer>
<includeSources>
<source>${project.build.sourceDirectory}/../lib</source>
<source>${project.build.sourceDirectory}</source>
</includeSources>
<locales>
<locale>en_US</locale>
</locales>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>info.flex-mojos</groupId>
<artifactId>asdoc-mojo</artifactId>
<version>2.0M8</version>
<configuration>
<docSources>
<docSource>
${project.build.sourceDirectory}/../lib
</docSource>
<docSource>${project.build.sourceDirectory}</docSource>
</docSources>
<headlessServer>true</headlessServer>
</configuration>
</plugin>
</plugins>
</reporting>
<dependencies>
<!-- Flex SDK dependencies -->
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>flex-framework</artifactId>
<version>3.1.0.2710</version>
<type>pom</type>
</dependency>
</dependencies>
</project>
| |
Check is covered by an existing sniff, but short tag echo is allowed, so mute that error | <?xml version="1.0"?>
<ruleset name="PSR-1">
<description>The PSR-1 coding standard.</description>
<!-- 2. Files -->
<!-- 2.1. PHP Tags -->
<!-- PHP code MUST use the long <?php ?> tags or the short-echo <?= ?> tags; it MUST NOT use the other tag variations. -->
<!-- 2.2. Character Encoding -->
<!-- PHP code MUST use only UTF-8 without BOM. -->
<rule ref="Generic.Files.ByteOrderMark"/>
<!-- 2.3. Side Effects -->
<!-- A file SHOULD declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it SHOULD execute logic with side effects, but SHOULD NOT do both. -->
<!-- 3. Namespace and Class Names -->
<!-- Namespaces and classes MUST follow PSR-0. -->
<!-- This means each class is in a file by itself, and is in a namespace of at least one level: a top-level vendor name. -->
<!-- Class names MUST be declared in StudlyCaps. -->
<!-- 4. Class Constants, Properties, and Methods -->
<!-- 4.1. Constants -->
<!-- Class constants MUST be declared in all upper case with underscore separators. -->
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
<!-- 4.3. Methods -->
<!-- Method names MUST be declared in camelCase(). -->
<rule ref="Generic.NamingConventions.CamelCapsFunctionName"/>
</ruleset>
| <?xml version="1.0"?>
<ruleset name="PSR-1">
<description>The PSR-1 coding standard.</description>
<!-- 2. Files -->
<!-- 2.1. PHP Tags -->
<!-- PHP code MUST use the long <?php ?> tags or the short-echo <?= ?> tags; it MUST NOT use the other tag variations. -->
<rule ref="Generic.PHP.DisallowShortOpenTag.EchoFound">
<severity>0</severity>
</rule>
<!-- 2.2. Character Encoding -->
<!-- PHP code MUST use only UTF-8 without BOM. -->
<rule ref="Generic.Files.ByteOrderMark"/>
<!-- 2.3. Side Effects -->
<!-- A file SHOULD declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it SHOULD execute logic with side effects, but SHOULD NOT do both. -->
<!-- 3. Namespace and Class Names -->
<!-- Namespaces and classes MUST follow PSR-0. -->
<!-- This means each class is in a file by itself, and is in a namespace of at least one level: a top-level vendor name. -->
<!-- Class names MUST be declared in StudlyCaps. -->
<!-- 4. Class Constants, Properties, and Methods -->
<!-- 4.1. Constants -->
<!-- Class constants MUST be declared in all upper case with underscore separators. -->
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
<!-- 4.3. Methods -->
<!-- Method names MUST be declared in camelCase(). -->
<rule ref="Generic.NamingConventions.CamelCapsFunctionName"/>
</ruleset>
|
Configure versions plugin to ignore alpha, beta, and rc releases. | <!--
Copyright 2016 Google Inc. All Rights Reserved.
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.
-->
<ruleset comparisonMethod="maven"
xmlns="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0 http://mojo.codehaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd">
<ignoreVersions>
<ignoreVersion type="regex">.*-alpha.*</ignoreVersion>
<ignoreVersion type="regex">.*-beta.*</ignoreVersion>
<ignoreVersion type="regex">.*-b[0-9]*</ignoreVersion>
<ignoreVersion type="regex">.*-rc(-)?[0-9]*</ignoreVersion>
</ignoreVersions>
</ruleset>
| |
Define test suite and exclude fund transfer as we really don't want to clog up statements with transfers back and forth. | <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>
| <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="integration">
<directory>tests/Integration</directory>
<exclude>tests/Integration/Accounts/TransferFundsTest.php
</exclude>
</testsuite>
</testsuites>
</phpunit>
|
Add xml template for OP get certificate application request | <?xml version="1.0" encoding="UTF-8"?>
<CertApplicationRequest xmlns="http://op.fi/mlp/xmldata/">
<CustomerId></CustomerId>
<Timestamp></Timestamp>
<Environment></Environment>
<SoftwareId></SoftwareId>
<Compression>false</Compression>
<Service></Service>
<Content></Content>
<TransferKey></TransferKey>
</CertApplicationRequest>
| |
Add Stroom Node 2 run configuration | <component name="ProjectRunConfigurationManager">
<configuration default="false" name="Stroom Node 2" type="Application" factoryName="Application">
<option name="ALTERNATIVE_JRE_PATH" value="12" />
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
<option name="MAIN_CLASS_NAME" value="stroom.app.App" />
<module name="stroom.stroom-app.main" />
<option name="PROGRAM_PARAMETERS" value="server ../local2.yml" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/stroom-app" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component> | |
Add XML query to get information about an image | <query-mapping package='AWA.Images.Models'>
<description>
Information about an image
</description>
<class name="AWA.Images.Models.Image_Bean" bean="yes">
<comment>The information about an image.</comment>
<property type='Identifier' name="folder_id">
<comment>the image folder identifier.</comment>
</property>
<property type='String' name="folder_name">
<comment>the image folder name.</comment>
</property>
<property type='Identifier' name="id">
<comment>the image file identifier.</comment>
</property>
<property type='String' name="name">
<comment>the image file name.</comment>
</property>
<property type='Date' name="create_date">
<comment>the file creation date.</comment>
</property>
<property type='String' name="uri">
<comment>the file storage URI.</comment>
</property>
<property type='AWA.Storages.Models.Storage_Type' name="storage">
<comment>the file storage URI.</comment>
</property>
<property type='String' name="mime_type">
<comment>the file mime type.</comment>
</property>
<property type='Integer' name="file_size">
<comment>the file size.</comment>
</property>
<property type='Boolean' name="is_public">
<comment>whether the image is public.</comment>
</property>
<property type='Integer' name="width">
<comment>the image width.</comment>
</property>
<property type='Integer' name="height">
<comment>the image height.</comment>
</property>
<method name="load">
<comment>load the bean</comment>
</method>
</class>
<query name='image-info'>
<comment>Get the description of an image.</comment>
<sql>
SELECT
folder.id,
folder.name,
file.id,
file.name,
file.create_date,
file.uri,
file.storage,
file.mime_type,
file.file_size,
file.is_public,
image.width,
image.height
FROM awa_storage AS file
INNER JOIN awa_acl AS acl ON acl.entity_id = file.workspace_id AND acl.entity_type = :table AND acl.user_id = :user_id
INNER JOIN awa_storage_folder AS folder ON folder.id = file.folder_id
INNER JOIN awa_image AS image ON file.id = image.storage_id
WHERE file.id = :file_id
</sql>
</query>
</query-mapping>
| |
Revert "Removing Uneccessary build files" | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="1.8" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
</project> | |
Add spelling distionary for GoLand | <component name="ProjectDictionaryState">
<dictionary name="project">
<words>
<w>abcdefghijklmnopqrstuvwxyz</w>
<w>cdrom</w>
<w>cdroms</w>
<w>datastore</w>
<w>datastores</w>
<w>esxi</w>
<w>hashicorp</w>
<w>mozilla</w>
<w>sata</w>
<w>scancode</w>
<w>vcenter</w>
<w>vmware</w>
<w>vmxnet</w>
<w>vsphere</w>
</words>
</dictionary>
</component>
| |
Add tool for manipulating the proper_pair tag | <tool id="allow_dovetailing" name="Allow dovetailing" version="0.1.3">
<description>modifies proper_pair flag in bam files</description>
<requirements>
<requirement type="package" version="0.1.3">tag_reads</requirement>
</requirements>
<command detect_errors="aggressive"><![CDATA[
allow_dovetailing -i '$input' -o '$output'
]]></command>
<inputs>
<param name="input" argument="--input_path" type="data" format="bam"/>
</inputs>
<outputs>
<data name="output" format="bam"/>
</outputs>
<tests>
<test>
<param name="input" value="dm6_a_pasteurianus.bam" ftype="bam"/>
<output name="output" file="dm6_a_pasteurianus.bam" ftype="bam"/>
</test>
</tests>
<help><![CDATA[
::
usage: allow_dovetailing [-h] -i INPUT_PATH -o OUTPUT_PATH
Allow dovetailing.
optional arguments:
-h, --help show this help message and exit
-i INPUT_PATH, --input_path INPUT_PATH
Input alignment file to manipulate
-o OUTPUT_PATH, --output_path OUTPUT_PATH
Output alignment file
]]></help>
</tool>
| |
Add missing menu from source code. | <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/action_settings"
android:title="@string/activity_settings"
android:showAsAction="never" />
</menu> | |
Add menu folder to allowed resources | <?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
<default>
<system>
<media_storage_configuration>
<allowed_resources>
<menu_images_folder>menu</menu_images_folder>
</allowed_resources>
</media_storage_configuration>
</system>
</default>
</config>
| |
Add layout for runtime permissions unsupported dialog | <?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="32dp">
<TextView
android:id="@+id/txtSubtitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"/>
<TextView
android:id="@+id/txtDescription"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:textSize="18sp"/>
</LinearLayout>
</ScrollView>
| |
Add a missing locale file for Admin Dashboard Notification | <?xml version="1.0" encoding="UTF-8"?>
<i18n baseKey="m.rbs.admin.dashboard" lcid="fr_FR">
<key id="notifications">notifications</key>
<key id="notification-new">nouvelles</key>
<key id="notification-read">lues</key>
</i18n> | |
Add an iiop-openjdk layer to make it easier to test in isolation. | <?xml version="1.0" ?>
<layer-spec xmlns="urn:jboss:galleon:layer-spec:1.0" name="iiop-openjdk">
<dependencies>
<layer name="base-server"/>
<layer name="naming"/>
</dependencies>
<feature spec="interface">
<param name="interface" value="unsecure"/>
<param name="inet-address" value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</feature>
<feature spec="socket-binding-group">
<param name="socket-binding-group" value="standard-sockets" />
<param name="port-offset" value="${jboss.socket.binding.port-offset:0}"/>
<param name="default-interface" value="public"/>
<feature-group name="iiop-sockets"/>
</feature>
<feature-group name="iiop-openjdk"/>
</layer-spec> | |
Add debian package generation in line with existing openhab bindings | <?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">
<parent>
<groupId>org.openhab.bundles</groupId>
<artifactId>binding</artifactId>
<version>1.5.0-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolicName>org.openhab.binding.k8055</bundle.symbolicName>
<bundle.namespace>org.openhab.binding.k8055</bundle.namespace>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.openhab.binding</groupId>
<artifactId>org.openhab.binding.k8055</artifactId>
<name>openHAB k8055 Binding</name>
<packaging>eclipse-plugin</packaging>
<version>1.5.0-SNAPSHOT</version>
</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">
<parent>
<groupId>org.openhab.bundles</groupId>
<artifactId>binding</artifactId>
<version>1.5.0-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolicName>org.openhab.binding.k8055</bundle.symbolicName>
<bundle.namespace>org.openhab.binding.k8055</bundle.namespace>
<deb.name>openhab-addon-binding-k8055</deb.name>
<deb.description>${name}</deb.description>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>org.openhab.binding</groupId>
<artifactId>org.openhab.binding.k8055</artifactId>
<name>openHAB k8055 Binding</name>
<packaging>eclipse-plugin</packaging>
<version>1.5.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.vafer</groupId>
<artifactId>jdeb</artifactId>
</plugin>
</plugins>
</build>
</project>
|
Add new scope to ease code style runs. | <component name="DependencyValidationManager">
<scope name="All Code" pattern="file[JMPDCommAndroid]:*/||file[JMPDCommJava]:*/||file[MPDroid]:src/main/res//*||file[MPDroid]:src/main/java//*||file[MPDroid]:src/main//*||file[MPDroid]:src/foss/java//*||file[dmix]:settings.gradle||file[dmix]:build.gradle" />
</component> | |
Add cast context error layout | <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2018 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.
-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:textSize="20sp"
android:text="@string/cast_context_error"/>
| |
Add access security on product module | <?xml version="1.0"?>
<terp>
<data noupdate="1">
<record model="res.groups" id="group_product_manager">
<field name="name">Product Manager</field>
</record>
<!-- Purchase order security -->
<record model="ir.model.access" id="access_product">
<field name="name">Product</field>
<field name="model_id" model="ir.model" search="[('model', '=', 'product.product')]"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="False"/>
<field name="perm_create" eval="False"/>
<field name="perm_unlink" eval="False"/>
</record>
<record model="ir.model.access" id="access_product_manager">
<field name="name">Product</field>
<field name="model_id" model="ir.model" search="[('model', '=', 'product.product')]"/>
<field name="group_id" ref="group_product_manager"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="True"/>
<field name="perm_create" eval="True"/>
<field name="perm_unlink" eval="True"/>
</record>
<record model="ir.model.access" id="access_product_admin">
<field name="name">Product</field>
<field name="model_id" model="ir.model" search="[('model', '=', 'product.product')]"/>
<field name="group_id" ref="base.group_admin"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="True"/>
<field name="perm_create" eval="True"/>
<field name="perm_unlink" eval="True"/>
</record>
</data>
</terp>
| |
Add Google Hangout XML configuration file | <?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="ViSH Viewer">
<Require feature="rpc" />
<Require feature="views" />
</ModulePrefs>
<Content type="html"><![CDATA[
<html>
<body>
<script src="//plus.google.com/hangouts/_/api/v1/hangout.js"></script>
<script src="//vishub.org/apis/iframe_api.js"></script>
<iframe class="vishEditorIframe" id="presentation_iframe" src="" width="100%" height="99%" style="border:0; height: 99% !important;" iframeborder="0" frameborder="0" iframeElement.frameBorder = 0;></iframe>
<script>
window.onload = function(){
gapi.hangout.onApiReady.add(function(eventObj) {
if (eventObj.isApiReady) {
try {
gapi.hangout.data.onMessageReceived.add(onMessageReceived);
var url;
var appData = gadgets.views.getParams()['appData'];
if(typeof appData == "string"){
gapi.hangout.data.setValue('url', appData);
url = appData;
} else {
url = gapi.hangout.data.getValue('url');
}
var VEiframe = document.getElementById("presentation_iframe");
VEiframe.onload = function(){
VISH.IframeAPI.init({preventDefault: true, callback: onConnect});
VISH.IframeAPI.registerCallback("onMessage",function(VEMessage,origin){
var VEMessageObject = JSON.parse(VEMessage);
if(typeof VEMessageObject.sent !== "boolean"){
VEMessageObject.sent = true;
VEMessage = JSON.stringify(VEMessageObject);
gapi.hangout.data.sendMessage(VEMessage);
}
});
}
VEiframe.src = url;
} catch (e) {
// console.log(e);
}
}
});
};
/** Get a message from GHangouts.
* @param {MessageReceievedEvent} event An event.
*/
function onMessageReceived(event) {
try {
var data = JSON.parse(event.message);
VISH.IframeAPI.sendMessage(event.message,"*");
} catch (e) {
// console.log(e);
}
}
/**
* Connect with ViSH Editor instance callback
*/
function onConnect(origin){
// console.log("Communication stablished with " + origin);
}
</script>
</body>
]]>
</Content>
</Module> | |
Add example of an ant build using the Compiler task. | <project name="test">
<taskdef name="dubyc" classname="org.jruby.duby.ant.Compile"/>
<target name="blah">
<dubyc src="examples/fib.duby" target="build"/>
</target>
</project>
| |
Add generic osids for special devices. | <osid>
<attribute name="magic">
<value></value>
</attribute>
<attribute name="features">
<value>vlans</value>
</attribute>
<attribute name="version">
<value>1.1</value>
</attribute>
<attribute name="reboot_waittime">
<value>60</value>
</attribute>
<attribute name="description">
<value>A fake OSID for a fake node representing a device</value>
</attribute>
<attribute name="mustclean">
<value>1</value>
</attribute>
<attribute name="shared">
<value>1</value>
</attribute>
<attribute name="op_mode">
<value>ALWAYSUP</value>
</attribute>
<attribute name="pid">
<value>emulab-ops</value>
</attribute>
<attribute name="osname">
<value>GENERICDEV</value>
</attribute>
<attribute name="OS">
<value>Other</value>
</attribute>
</osid>
<osid>
<attribute name="magic">
<value></value>
</attribute>
<attribute name="features">
<value>mlinks,vlans</value>
</attribute>
<attribute name="version">
<value>1.X</value>
</attribute>
<attribute name="reboot_waittime">
<value>60</value>
</attribute>
<attribute name="description">
<value>A fake OSID for a fake VM node representing a device</value>
</attribute>
<attribute name="mustclean">
<value>1</value>
</attribute>
<attribute name="shared">
<value>0</value>
</attribute>
<attribute name="op_mode">
<value>ALWAYSUP</value>
</attribute>
<attribute name="pid">
<value>emulab-ops</value>
</attribute>
<attribute name="osname">
<value>GENERICDEV-VM</value>
</attribute>
<attribute name="OS">
<value>Other</value>
</attribute>
<attribute name="nextosid">
<value>emulab-ops,GENERICDEV</value>
</attribute>
</osid>
| |
Add migration script for removing unused gmc_states. | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 Compassion (http://www.compassion.ch)
@author Emanuel Cino <ecino@compassion.ch>
The licence is in the file __openerp__.py
-->
<openerp>
<data noupdate='1'>
<function model="recurring.contract" name="migrate_contracts"/>
</data>
</openerp> | |
Add in missing resources folder for iam-server. | <!--
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.
-->
<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"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd"
>
<bean id="AclGroupDaoImpl" class="org.apache.cloudstack.iam.server.dao.AclGroupDaoImpl" />
<bean id="AclPolicyDaoImpl" class="org.apache.cloudstack.iam.server.dao.AclPolicyDaoImpl" />
<bean id="AclGroupAccountMapDaoImpl" class="org.apache.cloudstack.iam.server.dao.AclGroupAccountMapDaoImpl" />
<bean id="AclGroupPolicyMapDaoImpl" class="org.apache.cloudstack.iam.server.dao.AclGroupPolicyMapDaoImpl" />
<bean id="AclPolicyPermissionDaoImpl" class="org.apache.cloudstack.iam.server.dao.AclPolicyPermissionDaoImpl" />
<bean id="IAMServiceImpl" class="org.apache.cloudstack.iam.server.IAMServiceImpl" />
</beans>
| |
Add style unread message drawable. | <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="@color/colorAccent" />
<corners
android:radius="6dp" />
</shape> | |
Revert "Removing Uneccessary build files" | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" />
<module fileurl="file://$PROJECT_DIR$/helloPush.iml" filepath="$PROJECT_DIR$/helloPush.iml" />
</modules>
</component>
</project> | |
Add xml file to execute the TestNGSimpleTest class | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite1">
<test name="test1">
<classes>
<class name="TestNGSimpleTest" />
</classes>
</test>
</suite> | |
Add RSS feed for Mozilla related posts | ---
layout: none
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.theme.name | xml_escape }} - Mozilla</title>
<description>Posts categorized as Mozilla'</description>
<link>{{ site.url }}</link>
<atom:link href="{{ site.url }}/feed.mozilla.xml" rel="self" type="application/rss+xml" />
{% for post in site.categories.mozilla limit:10 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
</item>
{% endfor %}
</channel>
</rss>
| |
Add mediawords.sql as DDL data source | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="SqlDataSourceStorage">
<option name="dataSources">
<list>
<State>
<option name="id" value="c523b731-cf4c-4c28-92b5-fc746b47430e" />
<option name="name" value="DDL data source" />
<option name="urls">
<array>
<option value="file://$PROJECT_DIR$/.idea/mediawords.sql" />
</array>
</option>
</State>
</list>
</option>
</component>
</project> | |
Add a test logging configuration that supports wire logging | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<!-- uncomment the next two lines to enable wire logging -->
<!--<logger name="org.apache.http" level="DEBUG"/>-->
<!--<logger name="org.apache.http.wire" level="ERROR"/>-->
</configuration> | |
Configure web.xml to support utf-8 | How to configure Web Application with SpringMVC supports UTF-8?
------------------------------------------------
Make sure you register Spring's CharacterEncodingFilter in your web.xml
<filter>
<filter-name>characterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping> | |
Add custom lifecycle mappings to IzPack Maven plugin | <!--
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.
-->
<component-set>
<components>
<component>
<role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
<role-hint>izpack-jar</role-hint>
<implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation>
<configuration>
<lifecycles>
<lifecycle>
<id>default</id>
<!-- START SNIPPET: izpack-lifecycle -->
<phases>
<process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
<compile>org.apache.maven.plugins:maven-compiler-plugin:compile</compile>
<process-test-resources>org.apache.maven.plugins:maven-resources-plugin:testResources</process-test-resources>
<test-compile>org.apache.maven.plugins:maven-compiler-plugin:testCompile</test-compile>
<test>org.apache.maven.plugins:maven-surefire-plugin:test</test>
<package>org.codehaus.izpack:izpack-maven-plugin:izpack</package>
<install>org.apache.maven.plugins:maven-install-plugin:install</install>
<deploy>org.apache.maven.plugins:maven-deploy-plugin:deploy</deploy>
</phases>
<!-- END SNIPPET: izpack-lifecycle -->
</lifecycle>
</lifecycles>
</configuration>
</component>
<component>
<role>org.apache.maven.artifact.handler.ArtifactHandler</role>
<role-hint>izpack</role-hint>
<implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
<configuration>
<type>izpack</type>
<includesDependencies>false</includesDependencies>
<language>java</language>
<extension>jar</extension>
<addedToClasspath>true</addedToClasspath>
<packaging>izpack-jar</packaging>
</configuration>
</component>
</components>
</component-set>
| |
Use INFO logging in server tests to prevent Travis errors. | <!--
~ Copyright 2015 the original author or authors.
~
~ 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
-->
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
</pattern>
</encoder>
</appender>
<root level="DEBUG">
<appender-ref ref="STDOUT" />
</root>
</configuration> | <!--
~ Copyright 2015 the original author or authors.
~
~ 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
-->
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="STDOUT" />
</root>
</configuration> |
Update incorrect file path causing error on rider solution load | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/.idea.osu.Desktop/riderModule.iml" filepath="$PROJECT_DIR$/.idea/.idea.osu.Desktop/riderModule.iml" />
</modules>
</component>
</project> | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/.idea.osu.Desktop/.idea/.idea.osu.Desktop.iml" filepath="$PROJECT_DIR$/.idea/.idea.osu.Desktop/.idea/.idea.osu.Desktop.iml" />
<module fileurl="file://$PROJECT_DIR$/.idea/.idea.osu.Desktop/riderModule.iml" filepath="$PROJECT_DIR$/.idea/.idea.osu.Desktop/riderModule.iml" />
</modules>
</component>
</project> |
Revert "add inc enumerate signatures to signature box" | <?!= include("inc_dr_start", data, {
director_or_member:"Member",
article_pursuant:data.article_allowing_shareholders_resolution_in_writing,
r_num: 1,
chapter_header:"Authority to Issue Shares",
skip_resolved:true,
}) ?>
<?!= include("inc_resolved_mr", data) ?>
<a_left_sidehead>Ordinary Resolution -- Authority to Issue Securities</a_left_sidehead>
<?!= include("mr_authority_to_issue_shares", data) ?>
<?!= include("inc_additional_resolutions", data, { header:"a_left_sidehead", prefix:"members_resolution" } ) ?>
<? if (data.explanatory_statement) { ?>
<chapter_header>Explanatory Statement</chapter_header>
<para_1><?!= data.explanatory_statement ?>
</para_1>
<? } ?>
<chapter_header>Signatures</chapter_header>
<?!= include("inc_dr_end", "inc_enumerate_signatures", data, { director_or_member:"Member", butWaitTheresMore:true}) ?>
<?!= include("inc_additional_resolutions", data, {
prefix:"members_annex" } ) ?>
</Story_Main>
<Bottom_Box delete_if_empty="true" />
</Root>
| <?!= include("inc_dr_start", data, {
director_or_member:"Member",
article_pursuant:data.article_allowing_shareholders_resolution_in_writing,
r_num: 1,
chapter_header:"Authority to Issue Shares",
skip_resolved:true,
}) ?>
<?!= include("inc_resolved_mr", data) ?>
<a_left_sidehead>Ordinary Resolution -- Authority to Issue Securities</a_left_sidehead>
<?!= include("mr_authority_to_issue_shares", data) ?>
<?!= include("inc_additional_resolutions", data, { header:"a_left_sidehead", prefix:"members_resolution" } ) ?>
<? if (data.explanatory_statement) { ?>
<chapter_header>Explanatory Statement</chapter_header>
<para_1><?!= data.explanatory_statement ?>
</para_1>
<? } ?>
<chapter_header>Signatures</chapter_header>
<?!= include("inc_dr_end", data, { director_or_member:"Member", butWaitTheresMore:true}) ?>
<?!= include("inc_additional_resolutions", data, {
prefix:"members_annex" } ) ?>
</Story_Main>
<Bottom_Box delete_if_empty="true" />
</Root>
|
Prepare for next development iteration | <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.kurento</groupId>
<artifactId>kmf-parent-pom</artifactId>
<version>4.0.0</version>
</parent>
<groupId>com.kurento.kmf</groupId>
<artifactId>kmf-media-connector</artifactId>
<packaging>jar</packaging>
<name>kmf-media-connector</name>
<dependencies>
<dependency>
<groupId>com.kurento.kmf</groupId>
<artifactId>kmf-jsonrpcconnector</artifactId>
<version>${kmf-jsonrpcconnector.version}</version>
</dependency>
<dependency>
<groupId>com.kurento.kmf</groupId>
<artifactId>kmf-thrift-interface</artifactId>
<version>${kmf-thrift-interface.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<scm><tag>kmf-media-connector-4.0.0</tag></scm></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.kurento</groupId>
<artifactId>kmf-parent-pom</artifactId>
<version>4.0.1-SNAPSHOT</version>
</parent>
<groupId>com.kurento.kmf</groupId>
<artifactId>kmf-media-connector</artifactId>
<packaging>jar</packaging>
<name>kmf-media-connector</name>
<dependencies>
<dependency>
<groupId>com.kurento.kmf</groupId>
<artifactId>kmf-jsonrpcconnector</artifactId>
<version>${kmf-jsonrpcconnector.version}</version>
</dependency>
<dependency>
<groupId>com.kurento.kmf</groupId>
<artifactId>kmf-thrift-interface</artifactId>
<version>${kmf-thrift-interface.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Fix color for mood filter | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:weightSum="1"
android:background="#333333">
<Spinner
android:id="@+id/select_mood"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="14dp"
android:textAlignment="center"
android:entries="@array/mood_array"
android:background="@color/popup_background"/>
<Button
android:id="@+id/filter"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@id/select_mood"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@color/popup_background"
android:elevation="4dp"
android:text="Filter"
android:textSize="12sp"
android:textColor="@color/popup_text"
android:textAllCaps="false"/>
</RelativeLayout> | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:weightSum="1"
android:background="#333333">
<Spinner
android:id="@+id/select_mood"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="14dp"
android:textAlignment="center"
android:entries="@array/mood_array"
android:background="@color/popup_background"
android:popupBackground="@color/popup_background"/>
<Button
android:id="@+id/filter"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@id/select_mood"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@color/popup_background"
android:elevation="4dp"
android:text="Filter"
android:textSize="12sp"
android:textColor="@color/popup_text"
android:textAllCaps="false"/>
</RelativeLayout> |
Add links to feed and entries | <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>{{ baseUrl }}</id>
<title>{{ name }}</title>
<updated>{{ "now"|date('c') }}</updated>
<author>
{% if author.name is defined %}
<name>{{ author.name }}</name>
{% endif %}
{% if author.email is defined %}
<email>{{ author.email }}</email>
{% endif %}
</author>
{% for url in urls %}
<entry>
<id>{{ url.loc}}</id>
<updated>{{ url.updated }}</updated>
<title>{{ url.title }}</title>
</entry>
{% endfor %}
</feed>
| <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<link rel="self" type="application/atom+xml" href="{{ baseUrl }}/atom.xml"/>
<id>{{ baseUrl }}</id>
<title>{{ name }}</title>
<updated>{{ "now"|date('c') }}</updated>
<author>
{% if author.name is defined %}
<name>{{ author.name }}</name>
{% endif %}
{% if author.email is defined %}
<email>{{ author.email }}</email>
{% endif %}
</author>
{% for url in urls %}
<entry>
<id>{{ url.loc}}</id>
<link rel="alternate" type="text/html" href="{{ url.loc }}"/>
<updated>{{ url.updated }}</updated>
<title>{{ url.title }}</title>
</entry>
{% endfor %}
</feed>
|
Set min sdk to 15 | <?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="info.korzeniowski.walletplus" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<application
android:name=".WalletPlus_"
android:allowBackup="true"
android:icon="@drawable/ic_launcher_walletplus"
android:label="@string/appName"
android:theme="@style/Theme.AppCompat.Light" >
<activity
android:name=".MainActivity_"
android:label="@string/appName">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="info.korzeniowski.walletplus" >
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="19" />
<application
android:name=".WalletPlus_"
android:allowBackup="true"
android:icon="@drawable/ic_launcher_walletplus"
android:label="@string/appName"
android:theme="@style/Theme.AppCompat.Light" >
<activity
android:name=".MainActivity_"
android:label="@string/appName">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
|
Add padding to spinner dropdown textview | <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
/> | <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:textSize="20sp"
/> |
Make sure the app is enabled by default | <?xml version="1.0"?>
<info>
<id>gallery</id>
<name>Gallery</name>
<description>Media gallery for ownCloud with the following features:
- Support for large selection of media types (depending on ownCloud setup)
- Large, zoomable previews
- Sort images by name or date
- Per album description and copyright statement
- A la carte features
- Image download straight from the slideshow or the gallery
- Seamlessly jump between the gallery and the files view
- Ignore folders containing a ".nomedia" file
- Native SVG support
- Mobile support
Provides a dedicated view of all images in a grid, adds image viewing capabilities to the
files app and adds a gallery view to public links.
Compatible with Firefox, Chrome and Internet Explorer 9+
</description>
<licence>AGPL</licence>
<author>Olivier Paroz, Robin Appelman</author>
<version>14.0.0</version>
<namespace>Gallery</namespace>
<category>Multimedia</category>
<dependencies>
<php min-version="5.4" max-version="7"/>
<owncloud min-version="8.1" max-version="8.2.99"/>
</dependencies>
</info>
| <?xml version="1.0"?>
<info>
<id>gallery</id>
<name>Gallery</name>
<description>Media gallery for ownCloud with the following features:
- Support for large selection of media types (depending on ownCloud setup)
- Large, zoomable previews
- Sort images by name or date
- Per album description and copyright statement
- A la carte features
- Image download straight from the slideshow or the gallery
- Seamlessly jump between the gallery and the files view
- Ignore folders containing a ".nomedia" file
- Native SVG support
- Mobile support
Provides a dedicated view of all images in a grid, adds image viewing capabilities to the
files app and adds a gallery view to public links.
Compatible with Firefox, Chrome and Internet Explorer 9+
</description>
<licence>AGPL</licence>
<author>Olivier Paroz, Robin Appelman</author>
<version>14.0.0</version>
<namespace>Gallery</namespace>
<category>Multimedia</category>
<dependencies>
<php min-version="5.4" max-version="7"/>
<owncloud min-version="8.1" max-version="8.2.99"/>
</dependencies>
<default_enable />
<shipped>true</shipped>
</info>
|
Remove dependency on commons-build Switch to use maven-build.dtd via http | <?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE org.apache.commons.menus SYSTEM '../../commons-build/menus/menus.dtd'>
<project name="IO">
<title>IO</title>
<body>
<links>
<item name="Jakarta Commons" href="http://jakarta.apache.org/commons/"/>
</links>
<menu name="Commons IO">
<item name="Overview" href="/index.html"/>
<item name="Download" href="http://jakarta.apache.org/site/downloads/downloads_commons-io.cgi"/>
<item name="Users guide" href="/description.html"/>
<item name="Best practices" href="/bestpractices.html"/>
<!--item name="History" href="/history.html"/-->
<item name="Javadoc (1.2 release)" href="api-release/index.html"/>
</menu>
<menu name="Development">
<item name="Building" href="/building.html"/>
<item name="Mailing lists" href="/mail-lists.html"/>
<item name="Team" href="/team-list.html"/>
<item name="Tasks" href="/tasks.html"/>
<item name="Proposal" href="/proposal.html"/>
<item name="SVN repository" href="http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/io/trunk/"/>
<item name="Javadoc (SVN latest)" href="apidocs/index.html"/>
</menu>
&commons;
</body>
</project>
| <?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE org.apache.commons.menus SYSTEM 'http://jakarta.apache.org/commons/build/maven-build.dtd'>
<project name="IO">
<title>IO</title>
<body>
<links>
<item name="Jakarta Commons" href="http://jakarta.apache.org/commons/"/>
</links>
<menu name="Commons IO">
<item name="Overview" href="/index.html"/>
<item name="Download" href="http://jakarta.apache.org/site/downloads/downloads_commons-io.cgi"/>
<item name="Users guide" href="/description.html"/>
<item name="Best practices" href="/bestpractices.html"/>
<!--item name="History" href="/history.html"/-->
<item name="Javadoc (1.2 release)" href="api-release/index.html"/>
</menu>
<menu name="Development">
<item name="Building" href="/building.html"/>
<item name="Mailing lists" href="/mail-lists.html"/>
<item name="Team" href="/team-list.html"/>
<item name="Tasks" href="/tasks.html"/>
<item name="Proposal" href="/proposal.html"/>
<item name="SVN repository" href="http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/io/trunk/"/>
<item name="Javadoc (SVN latest)" href="apidocs/index.html"/>
</menu>
&commons;
</body>
</project>
|
Fix definition of sequence table | <?xml version="1.0" encoding="UTF-8"?>
<hibernate-mapping default-cascade="none">
<class name="ADO.Model.Sequence" table="sequence" dynamic-insert="true" dynamic-update="true"
model="">
<comment>Sequence generator</comment>
<id name="name" type="String" unsaved-value="0">
<comment>the sequence name</comment>
<column name="name" not-null="true" unique="false" sql-type="VARCHAR(127)"/>
<generator class="none"/>
</id>
<version name="version" type="int" column="version">
<comment>the sequence record version</comment>
</version>
<property name="value" type="ADO.Identifier">
<comment>the sequence value</comment>
<column name="value" not-null="false" unique="false" sql-type="BIGINT"/>
</property>
<property name="block_size" type="ADO.Identifier">
<comment>the sequence block size</comment>
<column name="block_size" not-null="false" unique="false" sql-type="BIGINT"/>
</property>
</class>
</hibernate-mapping>
| <?xml version="1.0" encoding="UTF-8"?>
<hibernate-mapping default-cascade="none">
<class name="ADO.Model.Sequence" table="sequence" dynamic-insert="true" dynamic-update="true"
model="">
<comment>Sequence generator</comment>
<id name="name" type="String" unsaved-value="0">
<comment>the sequence name</comment>
<column name="name" not-null="true" unique="true" sql-type="VARCHAR(127)"/>
<generator class="none"/>
</id>
<version name="version" type="int" column="version">
<comment>the sequence record version</comment>
</version>
<property name="value" type="ADO.Identifier">
<comment>the sequence value</comment>
<column name="value" not-null="true" unique="false" sql-type="BIGINT"/>
</property>
<property name="block_size" type="ADO.Identifier">
<comment>the sequence block size</comment>
<column name="block_size" not-null="true" unique="false" sql-type="BIGINT"/>
</property>
</class>
</hibernate-mapping>
|
Add focusableInTouchMode to widget labels | <?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright (C) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/address_text_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dip"
android:layout_marginLeft="3dip"
android:textColor="?android:attr/textColorPrimary" />
| <?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright (C) 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/address_text_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dip"
android:layout_marginLeft="3dip"
android:textColor="?android:attr/textColorPrimary"
android:focusableInTouchMode="true" />
|
Add password toggle on region move dialog | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="20dp">
<android.support.v7.widget.AppCompatEditText
android:id="@+id/move_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:hint="@string/password"
android:inputType="textWebPassword"
android:layout_gravity="center_horizontal"
android:textSize="15sp"/>
</LinearLayout> | <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:padding="20dp"
app:hintEnabled="false">
<android.support.v7.widget.AppCompatEditText
android:id="@+id/move_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:hint="@string/password"
android:inputType="textWebPassword"
android:layout_gravity="center_horizontal"
android:textSize="15sp"/>
</android.support.design.widget.TextInputLayout> |
Address 'This application has no plugins' on PhoneGap build | <?xml version='1.0' encoding='utf-8'?>
<widget id="com.phonegap.helloworld" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:gap="http://phonegap.com/ns/1.0">
<feature name="Camera">
<param name="browser-package" value="Camera" />
</feature>
<feature name="Device">
<param name="browser-package" value="Device" />
</feature>
<name>Hello World</name>
<description>
Hello World sample application that responds to the deviceready event.
</description>
<author email="support@phonegap.com" href="http://phonegap.com">
PhoneGap Team
</author>
<content src="index.html" />
<icon src="icon.png" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="14" />
</widget>
| <?xml version='1.0' encoding='utf-8'?>
<widget id="com.phonegap.helloworld" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:gap="http://phonegap.com/ns/1.0">
<feature name="Camera">
<param name="browser-package" value="Camera" />
</feature>
<feature name="Device">
<param name="browser-package" value="Device" />
</feature>
<name>Hello World</name>
<description>
Hello World sample application that responds to the deviceready event.
</description>
<author email="support@phonegap.com" href="http://phonegap.com">
PhoneGap Team
</author>
<content src="index.html" />
<icon src="icon.png" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="14" />
<plugin name="cordova-plugin-geolocation" source="npm" spec="~2.1.0" />
</widget>
|
Add Spring Security step 1 | <?xml version="1.0" encoding="ISO-8859-1" ?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>HelloWorld Application</display-name>
<description>
This is a simple web application with a source code organization
based on the recommendations of the Application Developer's Guide.
</description>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app> | <?xml version="1.0" encoding="ISO-8859-1" ?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>HelloWorld Application</display-name>
<description>
This is a simple web application with a source code organization
based on the recommendations of the Application Developer's Guide.
</description>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
</param-value>
</context-param>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy
</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app> |
Add automatic module name as a manifest entry | <?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>io.github.i49</groupId>
<artifactId>cascade-parent</artifactId>
<version>3.2.0-SNAPSHOT</version>
</parent>
<artifactId>cascade</artifactId>
<packaging>jar</packaging>
<dependencies>
</dependencies>
<name>Cascade</name>
<scm>
<connection>scm:git:https://github.com/i49/cascade.git</connection>
<developerConnection>scm:git@github.com:i49/cascade.git</developerConnection>
<url>https://github.com/i49/cascade</url>
</scm>
</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>io.github.i49</groupId>
<artifactId>cascade-parent</artifactId>
<version>3.2.0-SNAPSHOT</version>
</parent>
<artifactId>cascade</artifactId>
<packaging>jar</packaging>
<dependencies>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>io.github.i49.cascade</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<name>Cascade</name>
<scm>
<connection>scm:git:https://github.com/i49/cascade.git</connection>
<developerConnection>scm:git@github.com:i49/cascade.git</developerConnection>
<url>https://github.com/i49/cascade</url>
</scm>
</project>
|
Update composer.phar when it is older than 30 days | <?xml version="1.0" encoding="UTF-8"?>
<project name="PHPUnit_MockObjects">
<target name="clean" description="Cleanup build artifacts">
<delete dir="${basedir}/vendor"/>
<delete file="${basedir}/composer.lock"/>
<delete>
<fileset dir="${basedir}/build">
<include name="**/*.phar" />
</fileset>
</delete>
</target>
<target name="composer" depends="clean" description="Install dependencies with Composer">
<get src="https://getcomposer.org/composer.phar" dest="${basedir}/composer.phar" skipexisting="true"/>
<exec executable="php">
<arg value="composer.phar"/>
<arg value="install"/>
</exec>
</target>
<target name="phpab" description="Generate autoloader script">
<exec executable="phpab">
<arg value="--output" />
<arg path="tests/autoload.php" />
<arg path="tests" />
</exec>
</target>
<target name="phpcs" description="Find coding standard violations using PHP_CodeSniffer">
<exec executable="phpcs">
<arg value="--standard=PSR2" />
<arg value="--extensions=php" />
<arg path="${basedir}/src" />
<arg path="${basedir}/tests" />
</exec>
</target>
</project>
| <?xml version="1.0" encoding="UTF-8"?>
<project name="PHPUnit_MockObjects">
<target name="clean" description="Cleanup build artifacts">
<delete dir="${basedir}/vendor"/>
<delete file="${basedir}/composer.lock"/>
<delete>
<fileset dir="${basedir}/build">
<include name="**/*.phar" />
</fileset>
</delete>
</target>
<target name="composer" depends="clean" description="Install dependencies with Composer">
<tstamp>
<format property="thirty.days.ago" pattern="MM/dd/yyyy hh:mm aa" offset="-30" unit="day"/>
</tstamp>
<delete>
<fileset dir="${basedir}">
<include name="composer.phar" />
<date datetime="${thirty.days.ago}" when="before"/>
</fileset>
</delete>
<get src="https://getcomposer.org/composer.phar" dest="${basedir}/composer.phar" skipexisting="true"/>
<exec executable="php">
<arg value="composer.phar"/>
<arg value="install"/>
</exec>
</target>
<target name="phpab" description="Generate autoloader script">
<exec executable="phpab">
<arg value="--output" />
<arg path="tests/autoload.php" />
<arg path="tests" />
</exec>
</target>
<target name="phpcs" description="Find coding standard violations using PHP_CodeSniffer">
<exec executable="phpcs">
<arg value="--standard=PSR2" />
<arg value="--extensions=php" />
<arg path="${basedir}/src" />
<arg path="${basedir}/tests" />
</exec>
</target>
</project>
|
Fix embedded media loading on BB10 | <?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets"
xmlns:rim="http://www.blackberry.com/ns/widgets"
version="0.0.1.0" id="BBLJ">
<name>BBLJ</name>
<author>LeoZ</author>
<description>BlackBerry LiveJournal Client</description>
<icon src="images/icon.png"/>
<content src="index.html"/>
<rim:permissions>
<rim:permit>use_camera</rim:permit>
<rim:permit>access_shared</rim:permit>
</rim:permissions>
<access uri="http://www.livejournal.com/" subdomains="true" />
</widget>
| <?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets"
xmlns:rim="http://www.blackberry.com/ns/widgets"
version="0.0.1.0" id="BBLJ">
<name>BBLJ</name>
<author>LeoZ</author>
<description>BlackBerry LiveJournal Client</description>
<icon src="images/icon.png"/>
<content src="index.html"/>
<rim:permissions>
<rim:permit>use_camera</rim:permit>
<rim:permit>access_shared</rim:permit>
</rim:permissions>
<access uri="http://www.livejournal.com/" subdomains="true" />
<access subdomains="true" uri="*" />
</widget>
|
Reduce header lines to better focus on content | <?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="header_max_lines">5</integer>
</resources> | <?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="header_max_lines">3</integer>
</resources> |
Revert setting navigation bar color | <?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LightTheme" parent="Theme.AppCompat.Light">
<item name="android:actionButtonStyle">@style/NotificationNotesActionButtonStyle</item>
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
<item name="android:navigationBarColor">?android:colorPrimary</item>
</style>
<style name="DarkTheme" parent="Theme.AppCompat">
<item name="android:actionButtonStyle">@style/NotificationNotesActionButtonStyle</item>
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
<item name="android:navigationBarColor">?android:colorPrimary</item>
</style>
<style name="NotificationNotesActionButtonStyle">
<item name="android:textSize">14sp</item>
<item name="android:textStyle">normal</item>
<item name="android:minWidth">70dp</item>
</style>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LightTheme" parent="Theme.AppCompat.Light">
<item name="android:actionButtonStyle">@style/NotificationNotesActionButtonStyle</item>
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
</style>
<style name="DarkTheme" parent="Theme.AppCompat">
<item name="android:actionButtonStyle">@style/NotificationNotesActionButtonStyle</item>
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
</style>
<style name="NotificationNotesActionButtonStyle">
<item name="android:textSize">14sp</item>
<item name="android:textStyle">normal</item>
<item name="android:minWidth">70dp</item>
</style>
</resources>
|
Decrease width of status indicator | <?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="widgetDimension">40dp</dimen>
<dimen name="statusIndicatorHeight">10dp</dimen>
<dimen name="statusIndicatorWidth">20dp</dimen>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="widgetDimension">40dp</dimen>
<dimen name="statusIndicatorHeight">10dp</dimen>
<dimen name="statusIndicatorWidth">15dp</dimen>
</resources>
|
Adjust the namespace on the MainActivity | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.smbarne.lazyflickr"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.lazyflickr.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest> | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.smbarne.lazyflickr"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.smbarne.lazyflickr.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> |
Make options in drawer visible | <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="24sp">
</TextView> | <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:textSize="24sp">
</TextView> |
Bump commons-io from 2.5 to 2.7 in /2016/primeirafase/competicao/I | <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.ucsal.maratona</groupId>
<artifactId>I</artifactId>
<version>1.0</version>
<name>I</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>br.ucsal.maratona</groupId>
<artifactId>I</artifactId>
<version>1.0</version>
<name>I</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Increment version in preparation for release. | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sh.jay.xposed.whatsapp"
android:versionCode="6"
android:versionName="1.2.3" >
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposeddescription"
android:value="WhatsApp modifications and features. Remove camera/voice shortcuts, and add the 'back to contacts list' flow which is was missing." />
<meta-data
android:name="xposedminversion"
android:value="30" />
<activity
android:name="sh.jay.xposed.whatsapp.SettingsActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
</intent-filter>
</activity>
</application>
</manifest>
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sh.jay.xposed.whatsapp"
android:versionCode="130"
android:versionName="1.3.0-beta">
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposeddescription"
android:value="WhatsApp modifications and features. Remove camera/voice shortcuts, and add the 'back to contacts list' flow which is was missing." />
<meta-data
android:name="xposedminversion"
android:value="30" />
<activity
android:name="sh.jay.xposed.whatsapp.SettingsActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
</intent-filter>
</activity>
</application>
</manifest>
|
Add string resurces for introActivity | <resources>
<string name="app_name">Shark</string>
<string name="option_one">Display your QR code</string>
<string name="option_two">Scan QR code</string>
<string name="share_activity_name">Share OR Code</string>
<string name="register_activity_name">Register</string>
<string name="scan_activity_name">Scan QR Code</string>
<string name="sign_activity_name">Sign Key</string>
<string name="email_hint">Email address</string>
<string name="name_hint">Name</string>
<string name="public_key_hint">Select public key file</string>
<string name="private_key_hint">Select private key file</string>
<string name="scanned_public_key_hint">Public key</string>
<string name="scanned_private_key_hint">Private key</string>
<string name="sign_button_text">Sign scanned user\'s\nkey with your key</string>
</resources>
| <resources>
<string name="app_name">Shark</string>
<string name="option_one">Display your QR code</string>
<string name="option_two">Scan QR code</string>
<string name="share_activity_name">Share OR Code</string>
<string name="register_activity_name">Register</string>
<string name="scan_activity_name">Scan QR Code</string>
<string name="sign_activity_name">Sign Key</string>
<string name="email_hint">Email address</string>
<string name="name_hint">Name</string>
<string name="public_key_hint">Select public key file</string>
<string name="private_key_hint">Select private key file</string>
<string name="scanned_public_key_hint">Public key</string>
<string name="scanned_private_key_hint">Private key</string>
<string name="sign_button_text">Sign scanned user\'s\nkey with your key</string>
<string name="slide1title">Welcome!</string>
<string name="slide1description">Shark provides an easy way to share and sign PGP public keys.</string>
<string name="slide2title">Permissions</string>
<string name="slide2description">We require the use of your device\'s camera to scan QR codes and read-only access to device storage in order to access your key files. Please grant these permissions when prompted.</string>
<string name="slide3title">Permissions</string>
<string name="slide3description">Also, we use your device\'s Internet connection in order to store/retrieve public keys on our server.</string>
<string name="slide4title">Let\'s get started!</string>
<string name="slide4description">Press DONE to proceed.</string>
</resources>
|
Put the TRACE level back to ERROR. | <?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="TEST.CONSOLE" class="org.apache.log4j.ConsoleAppender">
<param name="Target" value="System.err"/>
<param name="Threshold" value="TRACE"/>
<layout class="org.apache.log4j.PatternLayout">
<!-- The default pattern: Date Priority [Category] Message\n -->
<param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
</layout>
</appender>
<category name="org.torquebox">
<priority value="DEBUG"/>
</category>
<root>
<priority value="TRACE"/>
<appender-ref ref="TEST.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="TEST.CONSOLE" class="org.apache.log4j.ConsoleAppender">
<param name="Target" value="System.err"/>
<param name="Threshold" value="TRACE"/>
<layout class="org.apache.log4j.PatternLayout">
<!-- The default pattern: Date Priority [Category] Message\n -->
<param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
</layout>
</appender>
<category name="org.torquebox">
<priority value="DEBUG"/>
</category>
<root>
<priority value="ERROR"/>
<appender-ref ref="TEST.CONSOLE"/>
</root>
</log4j:configuration>
|
Move settings to overflow menu. | <menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_refresh"
android:icon="@drawable/ic_refresh"
android:orderInCategory="100"
android:showAsAction="always"
android:title="@string/action_refresh"/>
<item
android:id="@+id/action_settings"
android:icon="@drawable/ic_settings"
android:orderInCategory="100"
android:showAsAction="ifRoom"
android:title="@string/settings_title"/>
<item
android:id="@+id/action_list_votes"
android:icon="@drawable/ic_edit"
android:orderInCategory="100"
android:showAsAction="ifRoom"
android:title="@string/edit_votes_title"/>
</menu> | <menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_refresh"
android:icon="@drawable/ic_refresh"
android:orderInCategory="100"
android:showAsAction="always"
android:title="@string/action_refresh"/>
<item
android:id="@+id/action_list_votes"
android:icon="@drawable/ic_edit"
android:orderInCategory="100"
android:showAsAction="ifRoom"
android:title="@string/edit_votes_title"/>
<item
android:id="@+id/action_settings"
android:icon="@drawable/ic_settings"
android:orderInCategory="100"
android:showAsAction="never"
android:title="@string/settings_title"/>
</menu> |
Update URI of docbook 5.0 schema | <?xml version="1.0" encoding="UTF-8"?>
<!--
ex:ts=2:sw=42sts=2:et
-*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
-->
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V5.0//EN"
"http://www.docbook.org/xml/5.0/dtd/docbook.dtd" [
<!ENTITY chapter-vty SYSTEM "../common/chapters/vty.xml" >
<!ENTITY sections-vty SYSTEM "generated/docbook_vty.xml" >
]>
<book>
<info>
<revhistory>
<revision>
<revnumber>v1</revnumber>
<date>13th October 2016</date>
<authorinitials>hw</authorinitials>
<revremark>Initial</revremark>
</revision>
</revhistory>
<title>OsmoBTS VTY Reference</title>
<copyright>
<year>2016</year>
</copyright>
<legalnotice>
<para>This work is copyright by <orgname>sysmocom - s.f.m.c. GmbH</orgname>. All rights reserved.
</para>
</legalnotice>
</info>
<!-- Main chapters-->
&chapter-vty;
</book>
| <?xml version="1.0" encoding="UTF-8"?>
<!--
ex:ts=2:sw=42sts=2:et
-*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
-->
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML 5.0//EN"
"http://docbook.org/xml/5.0/dtd/docbook.dtd" [
<!ENTITY chapter-vty SYSTEM "../common/chapters/vty.xml" >
<!ENTITY sections-vty SYSTEM "generated/docbook_vty.xml" >
]>
<book>
<info>
<revhistory>
<revision>
<revnumber>v1</revnumber>
<date>13th October 2016</date>
<authorinitials>hw</authorinitials>
<revremark>Initial</revremark>
</revision>
</revhistory>
<title>OsmoBTS VTY Reference</title>
<copyright>
<year>2016</year>
</copyright>
<legalnotice>
<para>This work is copyright by <orgname>sysmocom - s.f.m.c. GmbH</orgname>. All rights reserved.
</para>
</legalnotice>
</info>
<!-- Main chapters-->
&chapter-vty;
</book>
|
Add internet access to manifest. | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eic.beike.projectx" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eic.beike.projectx" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
|
Fix inconsistent indentation in the FreeDesktop MIME type XML | <?xml version="1.0"?>
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
<mime-type type="application/x-godot-project">
<comment>Godot Engine project</comment>
<icon name="godot" />
<glob pattern="*.godot" weight="100" />
</mime-type>
</mime-info>
| <?xml version="1.0"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<mime-type type="application/x-godot-project">
<comment>Godot Engine project</comment>
<icon name="godot" />
<glob pattern="*.godot" weight="100" />
</mime-type>
</mime-info>
|
Fix crash on tablet layout | <LinearLayout 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"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:baselineAligned="false"
android:divider="?android:attr/dividerHorizontal"
android:orientation="horizontal"
android:showDividers="middle"
tools:context=".BooksListActivity">
<!--
This layout is a two-pane layout for the Eateries
master/detail flow.
See res/values-large/refs.xml and
res/values-sw600dp/refs.xml for an example of layout aliases
that replace the single-pane version of the layout with
this two-pane version.
For more on layout aliases, see:
http://developer.android.com/training/multiscreen/screensizes.html#TaskUseAliasFilters
-->
<include
layout="@layout/books_list_activity"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
tools:layout="@android:layout/list_content" />
<FrameLayout
android:id="@+id/book_details_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3" />
</LinearLayout>
| <LinearLayout 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"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:baselineAligned="false"
android:divider="?android:attr/dividerHorizontal"
android:orientation="horizontal"
android:showDividers="middle"
tools:context=".BooksListActivity">
<!--
This layout is a two-pane layout for the Eateries
master/detail flow.
See res/values-large/refs.xml and
res/values-sw600dp/refs.xml for an example of layout aliases
that replace the single-pane version of the layout with
this two-pane version.
For more on layout aliases, see:
http://developer.android.com/training/multiscreen/screensizes.html#TaskUseAliasFilters
-->
<fragment
android:id="@+id/book_list_container"
android:name="com.verybadalloc.designlib.views.BooksListFragment"
tools:context=".BooksListFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"/>
<FrameLayout
android:id="@+id/book_details_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3" />
</LinearLayout>
|
Add correct Android package name. | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="Joey.Joey">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" />
<application android:label="Joey" android:theme="@style/Theme.App">
</application>
</manifest> | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.toggl.android">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" />
<application android:label="Joey" android:theme="@style/Theme.App">
</application>
</manifest> |
Increment version to 1.0.1 after bug fixes. | <?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://plugin.powerschool.pearson.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
description="Online Student Registration for PowerSchool"
name="Approve Enrollment"
version="1.0.0"
xsi:schemaLocation="http://plugin.powerschool.pearson.com plugin.xsd">
<publisher name="Iron County School District Data Team">
<contact email="data@ironmail.org"/>
</publisher>
<oauth></oauth>
</plugin>
| <?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://plugin.powerschool.pearson.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
description="Online Student Registration for PowerSchool"
name="Approve Enrollment"
version="1.0.1"
xsi:schemaLocation="http://plugin.powerschool.pearson.com plugin.xsd">
<publisher name="Iron County School District Data Team">
<contact email="data@ironmail.org"/>
</publisher>
<oauth></oauth>
</plugin>
|
Fix parent of Skip Heuristics Planner. | <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>
<artifactId>cloud-plugin-planner-skip-heuristics</artifactId>
<name>Cosmic Plugin - Skip Heuristics Planner</name>
<parent>
<groupId>cloud.cosmic</groupId>
<artifactId>cosmic-plugins</artifactId>
<version>5.1.0.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
</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>
<artifactId>cloud-plugin-planner-skip-heuristics</artifactId>
<name>Cosmic Plugin - Skip Heuristics Planner</name>
<parent>
<groupId>cloud.cosmic</groupId>
<artifactId>cosmic-core</artifactId>
<version>5.1.0.1-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>cloud.cosmic</groupId>
<artifactId>cloud-api</artifactId>
<version>5.1.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>cloud.cosmic</groupId>
<artifactId>cloud-server</artifactId>
<version>5.1.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
|
Fix default USB permissions for T265 (Android) | <?xml version="1.0" encoding="utf-8"?>
<resources>
<usb-device vendor-id="0x08086" />
</resources> | <?xml version="1.0" encoding="utf-8"?>
<resources>
<usb-device vendor-id="0x08086" />
<usb-device vendor-id="0x08087" />
<usb-device vendor-id="0x003E7" />
</resources> |
Use tilde in plugin versions | <?xml version='1.0' encoding='utf-8'?>
<widget id="net.appdevdesigns.phonegap-demo" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>PhoneGap Demo</name>
<description>A prototype Apache Cordova application that demos saving CanJS models to a local SQLite database.</description>
<author href="http://www.appdevdesigns.net">AppDev Designs</author>
<content src="index.html" />
<access origin="*" />
<engine name="android" spec="^4.1.0" />
<engine name="ios" spec="^3.9.0" />
<engine name="browser" spec="^3.6.0" />
<plugin name="cordova-plugin-console" spec="^1.0.1" />
<plugin name="cordova-plugin-whitelist" spec="^1.0.0" />
<plugin name="io.litehelpers.cordova.sqlite" spec="^0.7.7" />
</widget>
| <?xml version='1.0' encoding='utf-8'?>
<widget id="net.appdevdesigns.phonegap-demo" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>PhoneGap Demo</name>
<description>A prototype Apache Cordova application that demos saving CanJS models to a local SQLite database.</description>
<author href="http://www.appdevdesigns.net">AppDev Designs</author>
<content src="index.html" />
<access origin="*" />
<engine name="android" spec="^4.1.0" />
<engine name="ios" spec="^3.9.0" />
<engine name="browser" spec="^3.6.0" />
<plugin name="cordova-plugin-console" spec="~1.0.1" />
<plugin name="cordova-plugin-whitelist" spec="~1.0.0" />
<plugin name="io.litehelpers.cordova.sqlite" spec="~0.7.7" />
</widget>
|
Fix PreferenceActivity entry in manifest file. | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.apps.picview"
android:versionCode="1" android:versionName="0.1">
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:debuggable="true"
android:minSdkVersion="4"
android:maxSdkVersion="11"
android:hardwareAccelerated="true">
<activity
android:name="com.google.android.apps.picview.PicView"
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="com.google.android.apps.picview.activities.PhotoListActivity"></activity>
<activity android:name="com.google.android.apps.picview.activities.PhotoViewActivity"></activity>
<activity android:name="activities.PicViewPreferencesActivityPicViewPreferencesActivityties.PicViewPreferencesActivity"></activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.apps.picview"
android:versionCode="1" android:versionName="0.1">
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:debuggable="true"
android:minSdkVersion="4"
android:maxSdkVersion="11"
android:hardwareAccelerated="true">
<activity
android:name=".activities.PicView"
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="com.google.android.apps.picview.activities.PhotoListActivity"></activity>
<activity android:name="com.google.android.apps.picview.activities.PhotoViewActivity"></activity>
<activity android:name="com.google.android.apps.picview.activities.PicViewPreferencesActivity"></activity>
</application>
</manifest>
|
Change logging from stdout to stderr for importers | <?xml version="1.0" encoding="UTF-8"?>
<Configuration>
<Properties>
<Property name="catalina.base">.</Property>
</Properties>
<Appenders>
<Console name="STDOUT" target="SYSTEM_OUT">
<PatternLayout pattern="%d{ISO8601} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
<File name="File" fileName="${sys:catalina.base}/logs/vcopyImporterServlet.log">
<PatternLayout pattern="%d{ISO8601} [%t] %-5level %logger{36} - %msg%n"/>
</File>
</Appenders>
<Loggers>
<Root level="info">
<AppenderRef ref="STDOUT"/>
<AppenderRef ref="File" />
</Root>
</Loggers>
</Configuration>
| <?xml version="1.0" encoding="UTF-8"?>
<Configuration>
<Properties>
<Property name="catalina.base">.</Property>
</Properties>
<Appenders>
<Console name="STDERR" target="SYSTEM_ERR">
<PatternLayout pattern="%d{ISO8601} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
<File name="File" fileName="${sys:catalina.base}/logs/vcopyImporterServlet.log">
<PatternLayout pattern="%d{ISO8601} [%t] %-5level %logger{36} - %msg%n"/>
</File>
</Appenders>
<Loggers>
<Root level="info">
<AppenderRef ref="STDERR"/>
<AppenderRef ref="File" />
</Root>
</Loggers>
</Configuration>
|
FIX : Prevent auto-opening keyboard at sample startup | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.matpag.sample">
<application
android:name=".AppApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.matpag.sample">
<application
android:name=".AppApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:label="@string/app_name"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning, AllowBackup">
<activity
android:windowSoftInputMode="stateHidden"
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>
|
Remove the entry for hibernate which is not used in the project. | <!--
Copyright 2016 SEARCH-The National Consortium for Justice Information and Statistics
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.
-->
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<logger name="org.springframework" level="ERROR"/>
<logger name="org.hibernate" level="ERROR"/>
</configuration>
| <!--
Copyright 2016 SEARCH-The National Consortium for Justice Information and Statistics
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.
-->
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<logger name="org.springframework" level="ERROR"/>
</configuration>
|
Improve settings picker item layout | <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable name="textId" type="int"/>
<variable name="isChecked" type="boolean" />
</data>
<RadioButton
android:id="@+id/settingsPickingDialogOption"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:paddingLeft="16dp"
android:paddingStart="16dp"
android:paddingEnd="8dp"
android:paddingRight="8dp"
android:text="@{textId}"
android:textSize="16sp"
android:checked="@{isChecked}"
tools:text="Grupa taryfowa"/>
</layout> | <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable name="textId" type="int"/>
<variable name="isChecked" type="boolean" />
</data>
<RadioButton
android:id="@+id/settingsPickingDialogOption"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="24dp"
android:layout_marginStart="24dp"
android:layout_marginTop="4dp"
android:checked="@{isChecked}"
android:paddingBottom="12dp"
android:paddingEnd="8dp"
android:paddingLeft="16dp"
android:paddingRight="8dp"
android:paddingStart="16dp"
android:paddingTop="12dp"
android:text="@{textId}"
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
tools:text="Grupa taryfowa"/>
</layout> |
Remove appender-ref CONSOLE. Can cause shitty log when the application is run as a war in tomcat | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/defaults.xml" />
<include resource="org/springframework/boot/logging/logback/console-appender.xml" />
<appender name="LOGFILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>logs/app.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>logs/app-%d{yyyy-MM-dd}.log</fileNamePattern>
</rollingPolicy>
<encoder>
<pattern>${FILE_LOG_PATTERN}</pattern>
</encoder>
</appender>
<logger name="org.apache" level="WARN" />
<logger name="org.springframework" level="INFO" />
<root level="INFO">
<appender-ref ref="CONSOLE" />
<appender-ref ref="LOGFILE" />
</root>
</configuration>
| <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/defaults.xml" />
<include resource="org/springframework/boot/logging/logback/console-appender.xml" />
<appender name="LOGFILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>logs/app.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>logs/app-%d{yyyy-MM-dd}.log</fileNamePattern>
</rollingPolicy>
<encoder>
<pattern>${FILE_LOG_PATTERN}</pattern>
</encoder>
</appender>
<logger name="org.apache" level="WARN" />
<logger name="org.springframework" level="INFO" />
<root level="INFO">
<appender-ref ref="LOGFILE" />
</root>
</configuration>
|
Remove version ranges on artifact dependencies | <?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">
<parent>
<artifactId>heroku-sdk-parent</artifactId>
<groupId>com.heroku.sdk</groupId>
<version>0.1.10-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>Heroku Deployer</name>
<description>
Standalone tool and library for deploying to Heroku
</description>
<artifactId>heroku-deploy</artifactId>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>[2.3.0,)</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>[2.3.0,)</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>[1.5,)</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</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">
<parent>
<artifactId>heroku-sdk-parent</artifactId>
<groupId>com.heroku.sdk</groupId>
<version>0.1.10-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>Heroku Deployer</name>
<description>
Standalone tool and library for deploying to Heroku
</description>
<artifactId>heroku-deploy</artifactId>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
</project> |
Set default log level for tests to DEBUG | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<logger name="io.github.bonigarcia" level="TRACE" />
<logger name="org" level="WARN" />
<logger name="com" level="WARN" />
<root level="INFO">
<appender-ref ref="STDOUT" />
</root>
</configuration> | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<logger name="io.github.bonigarcia" level="DEBUG" />
<logger name="org" level="WARN" />
<logger name="com" level="WARN" />
<root level="INFO">
<appender-ref ref="STDOUT" />
</root>
</configuration> |
Make tab fill screen width | <LinearLayout 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"
android:orientation="vertical"
tools:context=".ui.base.TabFragment">
<android.support.design.widget.TabLayout
style="@style/AppTheme.TabLayout"
android:id="@+id/tab" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" />
</LinearLayout>
| <LinearLayout 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"
android:orientation="vertical"
tools:context=".ui.base.TabFragment">
<android.support.design.widget.TabLayout
style="@style/AppTheme.TabLayout"
android:id="@+id/tab"
app:tabGravity="fill"
app:tabMaxWidth="0dp" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" />
</LinearLayout>
|
Remove spring-boot-starter dependency in spring-data-mongodb 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>io.github.web</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.0.0</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</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>io.github.web</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.0.0</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
</dependencies>
</project>
|
Use GoldenRod for NS Accent color | <?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ns_primary">#7FFF00</color>
<color name="ns_primaryDark">#00FFFF</color>
<color name="ns_accent">#33B5E5</color>
</resources> | <?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ns_primary">#7FFF00</color>
<color name="ns_primaryDark">#00FFFF</color>
<color name="ns_accent">#DAA520</color>
</resources> |
Remove log config for non boot things | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="org.springframework.cloud.zookeeper" level="DEBUG"/>
</configuration> | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
</configuration> |
Prepare for new development cycle | <?xml version='1.0' encoding='UTF-8' ?>
<project xmlns='http://maven.apache.org/POM/4.0.0'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:schemaLocation='http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd'>
<modelVersion>4.0.0</modelVersion>
<groupId>com.kytkemo</groupId>
<artifactId>spring-library</artifactId>
<version>1.1.3</version>
<packaging>maven-archetype</packaging>
<name>spring-library</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>2.2</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
| <?xml version='1.0' encoding='UTF-8' ?>
<project xmlns='http://maven.apache.org/POM/4.0.0'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:schemaLocation='http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd'>
<modelVersion>4.0.0</modelVersion>
<groupId>com.kytkemo</groupId>
<artifactId>spring-library</artifactId>
<version>1.1.4-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>spring-library</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>2.2</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
|
Remove inherit that comes from WebPoller | <module>
<inherits name='replicant.Replicant'/>
<inherits name='org.realityforge.gwt.webpoller.WebPoller'/>
<inherits name='com.google.gwt.http.HTTP'/>
<inherits name='com.google.gwt.user.RemoteService'/>
<source path='client' includes='*.java'/>
<source path='client/gwt'/>
<source path='client/transport'/>
<source path='shared'/>
</module>
| <module>
<inherits name='replicant.Replicant'/>
<inherits name='org.realityforge.gwt.webpoller.WebPoller'/>
<inherits name='com.google.gwt.user.RemoteService'/>
<source path='client' includes='*.java'/>
<source path='client/gwt'/>
<source path='client/transport'/>
<source path='shared'/>
</module>
|
Update button domain to allow create partner. | <?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_partner_form" model="ir.ui.view">
<field name="name">res.partner.vat.inherit</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base_vat.view_partner_form"/>
<field name="arch" type="xml">
<label for="vat" position="replace"/>
<div name="vat_info" position="replace">
<field name="vat" on_change="base_vat.vat_change(vat)" placeholder="e.g. BE0477472701" class="oe_inline"/>
<button name="button_get_partner_data" attrs="{'invisible': [ ('is_company', '=', False )]}" colspan="2" string="Get Partner Datas" context="{'active_id': active_id}" type="object" icon="gtk-execute"/>
<field name="vat_subjected" class="oe_inline"/>
</div>
</field>
</record>
</data>
</openerp>
| <?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_partner_form" model="ir.ui.view">
<field name="name">res.partner.vat.inherit</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base_vat.view_partner_form"/>
<field name="arch" type="xml">
<xpath expr="//sheet" position="before">
<header>
<button name="button_get_partner_data" attrs="{'invisible': ['|',('vat', '=', False),('is_company', '=', False )]}" colspan="2" string="Get Partner Datas" context="{'active_id': active_id}" type="object" icon="gtk-execute"/>
</header>
</xpath>
<label for="vat" position="replace"/>
<div name="vat_info" position="replace">
<field name="vat" on_change="base_vat.vat_change(vat)" placeholder="e.g. BE0477472701" class="oe_inline"/>
<field name="vat_subjected" class="oe_inline"/>
</div>
</field>
</record>
</data>
</openerp>
|
Revert "The project is registered as "xrl", not "XRL" on GH." | <?xml version="1.0"?>
<project name="xrl" description="" default="all">
<property name="qa.coverage.force" value="false"/>
<!--
Override subfile for PHPUnit as
XRL does not use a bootstrap file.
-->
<property name="subfile.phpunit" value="phing/phpunit.xml"/>
<fileset dir="src/" id="sources">
<include name="**/*.php"/>
</fileset>
<fileset dir="tests/" id="tests">
<include name="**/*.php"/>
</fileset>
<target name="all"/>
<!--
The buildenv sets the copyright line to "Erebot".
We override the target to fix that.
-->
<target name="doc_enduser" description="Generate end-user documentation in HTML format">
<property name="doc_release" value=""/>
<tstamp prefix="sphinx">
<format property="year" pattern="%Y" locale="C"/>
</tstamp>
<exec command="SPHINX_VERSION=${version} SPHINX_RELEASE=${version}${doc_release} SPHINX_PROJECT=${phing.project.name} sphinx-build -c buildenv/sphinx/ -b html -D html_use_opensearch=http://erebot.github.com/${phing.project.name} -D copyright='${sphinx.year}, The XRL Team' -d docs/enduser/doctrees docs/src docs/enduser/html"
passthru="true" checkreturn="true" logoutput="true"/>
</target>
<import file="buildenv/build.xml"/>
</project>
| <?xml version="1.0"?>
<project name="XRL" description="" default="all">
<property name="qa.coverage.force" value="false"/>
<!--
Override subfile for PHPUnit as
XRL does not use a bootstrap file.
-->
<property name="subfile.phpunit" value="phing/phpunit.xml"/>
<fileset dir="src/" id="sources">
<include name="**/*.php"/>
</fileset>
<fileset dir="tests/" id="tests">
<include name="**/*.php"/>
</fileset>
<target name="all"/>
<!--
The buildenv sets the copyright line to "Erebot".
We override the target to fix that.
-->
<target name="doc_enduser" description="Generate end-user documentation in HTML format">
<property name="doc_release" value=""/>
<tstamp prefix="sphinx">
<format property="year" pattern="%Y" locale="C"/>
</tstamp>
<exec command="SPHINX_VERSION=${version} SPHINX_RELEASE=${version}${doc_release} SPHINX_PROJECT=${phing.project.name} sphinx-build -c buildenv/sphinx/ -b html -D html_use_opensearch=http://erebot.github.com/${phing.project.name} -D copyright='${sphinx.year}, The XRL Team' -d docs/enduser/doctrees docs/src docs/enduser/html"
passthru="true" checkreturn="true" logoutput="true"/>
</target>
<import file="buildenv/build.xml"/>
</project>
|
Remove the XCode Project reference. | <assembly>
<id>source</id>
<formats>
<format>tar.gz</format>
<format>tar.bz2</format>
<format>zip</format>
</formats>
<files>
<file>
<source>autogen.sh</source>
<outputDirectory>/</outputDirectory>
<filtered>false</filtered>
<fileMode>0755</fileMode>
</file>
</files>
<fileSets>
<fileSet>
<includes>
<include>KEYS</include>
<include>doxygen.cfg</include>
<include>activemq-cpp.pc.in</include>
<include>activemqcpp-config.in</include>
<include>*.txt</include>
<include>*.win</include>
<include>*.ac</include>
<include>*.am</include>
</includes>
</fileSet>
<fileSet>
<directory>src</directory>
</fileSet>
<fileSet>
<directory>doc</directory>
</fileSet>
<fileSet>
<directory>m4</directory>
</fileSet>
<fileSet>
<directory>activemq-cpp.xcodeproj</directory>
</fileSet>
<fileSet>
<directory>vs2005-build</directory>
</fileSet>
</fileSets>
</assembly>
| <assembly>
<id>source</id>
<formats>
<format>tar.gz</format>
<format>tar.bz2</format>
<format>zip</format>
</formats>
<files>
<file>
<source>autogen.sh</source>
<outputDirectory>/</outputDirectory>
<filtered>false</filtered>
<fileMode>0755</fileMode>
</file>
</files>
<fileSets>
<fileSet>
<includes>
<include>KEYS</include>
<include>doxygen.cfg</include>
<include>activemq-cpp.pc.in</include>
<include>activemqcpp-config.in</include>
<include>*.txt</include>
<include>*.win</include>
<include>*.ac</include>
<include>*.am</include>
</includes>
</fileSet>
<fileSet>
<directory>src</directory>
</fileSet>
<fileSet>
<directory>doc</directory>
</fileSet>
<fileSet>
<directory>m4</directory>
</fileSet>
<fileSet>
<directory>vs2005-build</directory>
</fileSet>
</fileSets>
</assembly>
|
Use generic _qualifier_ version to cope with future evolutions | <?xml version="1.0" encoding="UTF-8"?>
<site>
<feature url="features/fr.inria.diverse.kcvl.sdk_0.1.0.201410301836.jar" id="fr.inria.diverse.kcvl.sdk" version="0.1.0.201410301836">
<category name="KCVL"/>
</feature>
<category-def name="KCVL" label="KCVL">
<description>
Implementation of the Common Variability Language by DiverSE
</description>
</category-def>
</site>
| <?xml version="1.0" encoding="UTF-8"?>
<site>
<feature url="features/fr.inria.diverse.kcvl.sdk_0.1.0.qualifier.jar" id="fr.inria.diverse.kcvl.sdk" version="0.1.0.qualifier">
<category name="KCVL"/>
</feature>
<category-def name="KCVL" label="KCVL">
<description>
Implementation of the Common Variability Language by DiverSE
</description>
</category-def>
</site>
|
Add "build_artifacts.xml" to the Ant build panel | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AntConfiguration">
<buildFile url="file://$PROJECT_DIR$/update_dependencies.xml" />
<buildFile url="file://$PROJECT_DIR$/download_android_sdk.xml" />
</component>
</project> | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AntConfiguration">
<buildFile url="file://$PROJECT_DIR$/update_dependencies.xml" />
<buildFile url="file://$PROJECT_DIR$/download_android_sdk.xml" />
<buildFile url="file://$PROJECT_DIR$/build_artifacts.xml" />
</component>
</project> |
Set buttons dialog parent ViewGroup to wrap_content | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<LinearLayout
android:gravity="center"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/konami_button_a"
android:background="@drawable/btn_selector_a"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/konami_button_b"
android:background="@drawable/btn_selector_b"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<Button
android:id="@+id/konami_button_start"
android:background="@drawable/btn_selector_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout> | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/linearLayout">
<Button
android:id="@+id/konami_button_a"
android:background="@drawable/btn_selector_a"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/konami_button_b"
android:background="@drawable/btn_selector_b"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<Button
android:id="@+id/konami_button_start"
android:background="@drawable/btn_selector_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout> |
Add generator tag to Atom feed. | ---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title | xml_escape }}</title>
<link href="{{ site.url }}/atom.xml" rel="self"/>
<link href="{{ site.url }}/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}/</id>
<author>
<name>{{ site.author | xml_escape }}</name>
{% if site.email %}
<email>{{ site.email | xml_escape }}</email>
{% endif %}
</author>
{% for post in site.posts limit: 20 %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url }}{{ post.id }}</id>
<content type="html">{{ post.content | expand_urls: site.url | xml_escape }}</content>
</entry>
{% endfor %}
</feed>
| ---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title | xml_escape }}</title>
<link href="{{ site.url }}/atom.xml" rel="self"/>
<link href="{{ site.url }}/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}/</id>
<author>
<name>{{ site.author | xml_escape }}</name>
{% if site.email %}
<email>{{ site.email | xml_escape }}</email>
{% endif %}
</author>
<generator uri="http://octopress.org/">Octopress</generator>
{% for post in site.posts limit: 20 %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url }}{{ post.id }}</id>
<content type="html">{{ post.content | expand_urls: site.url | xml_escape }}</content>
</entry>
{% endfor %}
</feed>
|
Update android Manifest with correct configuration to upload to Play store | <?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="1.0.0" android:windowSoftInputMode="adjustPan" package="com.elasticpath.mobile" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:debuggable="true" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="ElasticPathMobile" android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
</manifest>
| <?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1000" android:versionName="1.0.0" android:windowSoftInputMode="adjustPan" package="com.elasticpath.mobile" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="ElasticPathMobile" android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
</manifest>
|
Modify pebble plug-in. Fix Lint.xml | <?xml version="1.0" encoding="UTF-8"?>
<lint>
</lint> | <?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="MissingTranslation" severity="warning" />
</lint> |
Bump junit from 4.12 to 4.13.1 in /mavengem-protocol | <?xml version="1.0"?>
<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>
<artifactId>mavengem</artifactId>
<groupId>org.torquebox.mojo</groupId>
<version>1.0.4-SNAPSHOT</version>
</parent>
<artifactId>mavengem-protocol</artifactId>
<packaging>jar</packaging>
<name>Protocol Handler for Mavengem:</name>
<dependencies>
<dependency>
<groupId>org.torquebox.mojo</groupId>
<artifactId>rubygems-tools</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby</artifactId>
<version>${jruby.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
| <?xml version="1.0"?>
<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>
<artifactId>mavengem</artifactId>
<groupId>org.torquebox.mojo</groupId>
<version>1.0.4-SNAPSHOT</version>
</parent>
<artifactId>mavengem-protocol</artifactId>
<packaging>jar</packaging>
<name>Protocol Handler for Mavengem:</name>
<dependencies>
<dependency>
<groupId>org.torquebox.mojo</groupId>
<artifactId>rubygems-tools</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby</artifactId>
<version>${jruby.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Exclude org.uberfire.backend.server.LockClientNotifier that was causing system.git to be initialized ahead of kie-config-cli expecting it to be available. | <beans xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:weld="http://jboss.org/schema/weld/beans"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee http://docs.jboss.org/cdi/beans_1_0.xsd
http://jboss.org/schema/weld/beans http://jboss.org/schema/weld/beans_1_1.xsd">
<weld:scan>
<weld:exclude name="org.jbpm.kie.services.impl.form.FormProviderServiceImpl"/>
<weld:exclude name="org.guvnor.structure.backend.repositories.git.GitRepositoryFactoryHelper"/>
</weld:scan>
<alternatives>
<class>org.kie.config.cli.CliIdentity</class>
</alternatives>
</beans> | <beans xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:weld="http://jboss.org/schema/weld/beans"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee http://docs.jboss.org/cdi/beans_1_0.xsd
http://jboss.org/schema/weld/beans http://jboss.org/schema/weld/beans_1_1.xsd">
<weld:scan>
<weld:exclude name="org.jbpm.kie.services.impl.form.FormProviderServiceImpl"/>
<weld:exclude name="org.guvnor.structure.backend.repositories.git.GitRepositoryFactoryHelper"/>
<weld:exclude name="org.uberfire.backend.server.LockClientNotifier"/>
</weld:scan>
<alternatives>
<class>org.kie.config.cli.CliIdentity</class>
</alternatives>
</beans> |
Rename to new directory structure after split-up | <?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.drools</groupId>
<artifactId>drools-docs</artifactId>
<version>5.2.0-SNAPSHOT</version>
</parent>
<artifactId>drools-docs-planner</artifactId>
<packaging>jdocbook</packaging>
<name>Drools Planner documentation</name>
<description>Drools Planner 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.drools</groupId>
<artifactId>drools-docs</artifactId>
<version>5.2.0-SNAPSHOT</version>
</parent>
<artifactId>drools-planner-docs</artifactId>
<packaging>jdocbook</packaging>
<name>Drools Planner documentation</name>
<description>Drools Planner documentation</description>
</project>
|
Add homepage to ivy.xml, thanks to advice by Xavier Hanin | <ivy-module version="1.3">
<info organization="@GROUP@"
module="@ARTIFACT@"
revision="@VERSION@"
publication="@DATE@">
<license name="@LICENSE@"
url="@LICENSE_URL@"/>
<description>@DESCRIPTION@</description>
</info>
<publications>
<artifact name="@ARTIFACT@" type="@TYPE@"/>
</publications>
</ivy-module>
| <ivy-module version="1.3">
<info organization="@GROUP@"
module="@ARTIFACT@"
revision="@VERSION@"
publication="@DATE@">
<license name="@LICENSE@"
url="@LICENSE_URL@"/>
<description homepage="http://xmlunit.sourceforge.net/">@DESCRIPTION@</description>
</info>
<publications>
<artifact name="@ARTIFACT@" type="@TYPE@"/>
</publications>
</ivy-module>
|
Fix calendar location and bugs | <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="edu.byu.cs456.journall.social_journal.JournalCalendar">
<CalendarView
android:id="@+id/calendar"
android:layout_width="384dp"
android:layout_height="511dp"
tools:layout_editor_absoluteY="-2dp"
tools:layout_editor_absoluteX="0dp" />
</android.support.constraint.ConstraintLayout>
| <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="edu.byu.cs456.journall.social_journal.JournalCalendar">
<CalendarView
android:id="@+id/calendar"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginBottom="16dp"
android:layout_marginTop="16dp" />
</android.support.constraint.ConstraintLayout>
|
Update module name for VueGWT beta-3 | <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.0//EN"
"http://gwtproject.org/doctype/2.8.0/gwt-module.dtd">
<module rename-to="VueGwtDemo">
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.axellience.vuegwt.VueGwt'/>
<!-- Specify the app entry point class. -->
<entry-point class='com.axellience.vuegwtdemo.client.VueGwtDemoApp'/>
<set-configuration-property name="CssResource.enableGss" value="true"/>
</module> | <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.0//EN"
"http://gwtproject.org/doctype/2.8.0/gwt-module.dtd">
<module rename-to="VueGwtDemo">
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.axellience.vuegwt.VueGWT'/>
<!-- Specify the app entry point class. -->
<entry-point class='com.axellience.vuegwtdemo.client.VueGwtDemoApp'/>
<set-configuration-property name="CssResource.enableGss" value="true"/>
</module> |
Integrate XML DataSource UI Into Birt | <?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
id="org.eclipse.birt.report.data.oda.xml.ui"
name="Ui Plug-in"
version="1.0.0"
provider-name=""
class="org.eclipse.birt.report.data.oda.xml.ui.UiPlugin">
<runtime>
<library name="ui.jar">
<export name="*"/>
</library>
</runtime>
<requires>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.core.runtime"/>
</requires>
</plugin>
| <?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
id="org.eclipse.birt.report.data.oda.xml.ui"
name="BIRT XML UI Plug-in"
version="1.0.1"
provider-name="Eclipse.org"
class="org.eclipse.birt.report.data.oda.xml.ui.UiPlugin">
<runtime>
<library name="xmlui.jar">
<export name="*"/>
</library>
</runtime>
<requires>
<import plugin="org.eclipse.birt.report.data.oda.xml"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.birt.report.designer.ui"/>
<import plugin="org.eclipse.birt.report.model"/>
<import plugin="org.eclipse.birt.core"/>
<import plugin="org.eclipse.datatools.connectivity.oda"/>
</requires>
<extension
point="org.eclipse.birt.report.designer.ui.odadatasource">
<odaDataSourceUI id="org.eclipse.birt.report.data.oda.xml">
<newDataSourceWizard class="org.eclipse.birt.report.data.oda.xml.ui.wizards.XmlDataSourceConnectionWizard"/>
<dataSourceEditorPage
class="org.eclipse.birt.report.data.oda.xml.ui.wizards.XmlDataSourcePage"
displayName="xml DataSource"
name="selectFolder"
path="/"/>
</odaDataSourceUI>
<odaDataSetUI id="org.eclipse.birt.report.data.oda.xml.dataSet">
<newDataSetWizard class="org.eclipse.birt.report.data.oda.xml.ui.wizards.XmlDataSetWizard"/>
<dataSetEditorPage
class="org.eclipse.birt.report.data.oda.xml.ui.wizards.XmlDataSetSelectionPage"
displayName="Xml DataSet"
name="selectColumns"/>
<dataSetEditorPage
class="org.eclipse.birt.report.data.oda.xml.ui.wizards.XPathChoosePage"
displayName="XPath"
name="selectColumns"/>
<dataSetEditorPage
class="org.eclipse.birt.report.data.oda.xml.ui.wizards.ColumnMappingPage"
displayName="Column Mapping"
name="selectColumns"/>
</odaDataSetUI>
</extension>
</plugin> |
Enable messaging widget on lockscreen | <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2010, Google Inc. -->
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="220dp"
android:minHeight="220dp"
android:updatePeriodMillis="0"
android:initialLayout="@layout/widget"
android:resizeMode="horizontal|vertical">
</appwidget-provider>
| <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2010, Google Inc. -->
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="220dp"
android:minHeight="220dp"
android:updatePeriodMillis="0"
android:initialLayout="@layout/widget"
android:resizeMode="horizontal|vertical"
android:widgetCategory="home_screen|keyguard"
android:widgetFeatures="none">
</appwidget-provider>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.