Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Use JUnit Platform JAR stored in local build target
<component name="libraryTable"> <library name="JUnit 5"> <CLASSES> <root url="jar://$PROJECT_DIR$/.bach/tools/junit-platform-console-standalone/junit-platform-console-standalone-1.4.0.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> </library> </component>
<component name="libraryTable"> <library name="JUnit 5"> <CLASSES> <root url="jar://$PROJECT_DIR$/target/build/junit-platform-console-standalone-1.4.0.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> </library> </component>
Fix a missed package rename.
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2015 The Project Buendia 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 U...
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2015 The Project Buendia 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 U...
Update Android Permissions for Xamarin TestCloud
<?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="FluentXamarinForms.Samples"> <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="21" /> <application android:label="Todo"> </application> ...
<?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="FluentXamarinForms.Samples"> <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="21" /> <application android:label="Todo"> </application> ...
Update logback configuration file for test
<!DOCTYPE configuration> <configuration> <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern> %d{HH:mm:ss.SSS} %highlight(%.-3p) %cyan(%-30.30c{1}): %m %blue(-- %C{1}.%M\(%F:%L\) / %t){}%n </pattern> </encoder> </appe...
<!DOCTYPE configuration> <configuration> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern> %d{HH:mm:ss.SSS} %highlight(%.-3p) %cyan(%-30.30c{1}): %m %blue(-- %C{1}.%M\(%F:%L\) / %t){}%n </pattern> </encoder> </appen...
Remove test no longer needed
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > <suite name="oxTrustServer" parallel="false"> <!-- Appliance Status Test (embedded) --> <test name="Appliance Status Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.ApplianceStatusTest"/> ...
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > <suite name="oxTrustServer" parallel="false"> <!-- Appliance Status Test (embedded) --> <test name="Appliance Status Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.ApplianceStatusTest"/> ...
Update logback pattern to align level. PL-11396.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <!-- Declare the 'CONSOLE' ConsoleAppender. --> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> ...
<?xml version="1.0" encoding="UTF-8"?> <configuration> <!-- Declare the 'CONSOLE' ConsoleAppender. --> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> ...
Use the configured serializer instead of hardcoding jms_serializer
<?xml version="1.0" ?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <parameters> <parameter key="fos_rest.convert...
<?xml version="1.0" ?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <parameters> <parameter key="fos_rest.convert...
Change TextView to Button to make it selectable by keyboard
<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/text1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical" android:minHeight="?android:attr/listPreferredItemHeightSmall" ...
<?xml version="1.0" encoding="utf-8"?> <Button xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/text1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical" android:minHeight="?android:attr/listPreferredItemHeightSmall" a...
Complete the split between JSF and REST.
<?xml version="1.0" encoding="UTF-8"?> <jboss-web> <context-root>/todolist</context-root> </jboss-web>
<?xml version="1.0" encoding="UTF-8"?> <jboss-web> <context-root>/todorest</context-root> </jboss-web>
Add course_id.name and attendee. email into report
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <!--report definition--> <report id="report_session" model="openacademy.session" string="Session Report" name="openacademy.report_session_view" file="openacademy.report_session" ...
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <!--report definition--> <report id="report_session" model="openacademy.session" string="Session Report" name="openacademy.report_session_view" file="openacademy.report_session" ...
Add maven test phase to plugin
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jkiss.d...
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jkiss.d...
Set compiler source to 1.8 as well;
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project default="build_raspi" xmlns:ivy="antlib:org.apache.ivy.ant"> <target name="cleanup"> <delete dir="bin/"/> <delete dir="build/"/> </target> <target name="compile" depends="resolve"> <ivy:cachepath pathid="ivy.cachepath"/> <mkdir dir="b...
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project default="build_raspi" xmlns:ivy="antlib:org.apache.ivy.ant"> <target name="cleanup"> <delete dir="bin/"/> <delete dir="build/"/> </target> <target name="compile" depends="resolve"> <ivy:cachepath pathid="ivy.cachepath"/> <mkdir dir="b...
Disable compatibility Floating Action Button selector transition animation to avoid background crossfading issue.
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" android:enterFadeDuration="@android:integer/config_mediumAnimTime" android:exitFadeDuration="@android:integer/config_mediumAnimTime"> <item android:drawable="@drawable/fab_background_highl...
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/fab_background_highlighted" android:state_pressed="true"/> <item android:drawable="@drawable/fab_background_highlighted" android:state_focused="true"/> <item> ...
Fix column name for publicationStartDate
<?xml version="1.0" encoding="UTF-8" ?> <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.x...
<?xml version="1.0" encoding="UTF-8" ?> <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.x...
Update OLS client stable version.
<ols-stable-versions> <jawis-client-stable>v0_9_3-1</jawis-client-stable> </ols-stable-versions>
<ols-stable-versions> <jawis-client-stable>v0_9_4</jawis-client-stable> </ols-stable-versions>
Make Clock dream default to "dim"
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses...
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses...
Change Log4j log category to INFO
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false"> <!-- ============================== --> <!-- Append messages to the console --> <!-- ============================== --> <a...
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false"> <!-- ============================== --> <!-- Append messages to the console --> <!-- ============================== --> <a...
Update app's profile to match correct owner
<?xml version='1.0' encoding='utf-8'?> <widget id="com.ionicframework.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>HelloCordova</name> <description> An Ionic Framework and Cordova project. </description> <author email="you@exam...
<?xml version='1.0' encoding='utf-8'?> <widget id="com.teerasej.nextflow.myapi" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>MyAPI</name> <description> A starter project for learn Ionic framework and Web API at training.nextflow.in.th </des...
Fix collection datasets output format.
<tool id="hcluster_sg_parser" name="hcluster_sg_parser" version="0.1.1" force_history_refresh="True"> <description>Converts hcluster_sg 3-column output into lists of ids</description> <command> <![CDATA[ perl $__tool_directory__/hcluster_sg_parser.pl $inputFile ]]> </command> <inputs> <param nam...
<tool id="hcluster_sg_parser" name="hcluster_sg_parser" version="0.1.1" force_history_refresh="True"> <description>Converts hcluster_sg 3-column output into lists of ids</description> <command> <![CDATA[ perl $__tool_directory__/hcluster_sg_parser.pl $inputFile ]]> </command> <inputs> <param nam...
Exclude KiTTY Helpers directory in PSDotFiles
<?xml version="1.0" encoding="utf-8"?> <Component xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/ralish/PSDotFiles/master/Metadata.xsd"> <FriendlyName>KiTTY</FriendlyName> <Detection> <Method>FindInPath</Method> <FindInPath...
<?xml version="1.0" encoding="utf-8"?> <Component xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/ralish/PSDotFiles/master/Metadata.xsd"> <FriendlyName>KiTTY</FriendlyName> <Detection> <Method>FindInPath</Method> <FindInPath...
Fix typos in Preferences window
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="Preferences"> <CheckBoxPreference android:title="Wi-Fi Only" android:defaultValue="true" android:summary="Only update subscriptions or download podcasts whi...
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="Preferences"> <CheckBoxPreference android:title="Wi-Fi Only" android:defaultValue="true" android:summary="Only update subscriptions or download podcasts whi...
Fix target in auction export configuration.
<?xml version="1.0"?> <deployment> <cluster hostcount="1" kfactor="0" /> <httpd enabled="true"> <jsonapi enabled="true" /> </httpd> <export> <configuration target="oldfile" enabled="true" type="file"> <property name="type">csv</property> <property name="nonce">MyE...
<?xml version="1.0"?> <deployment> <cluster hostcount="1" kfactor="0" /> <httpd enabled="true"> <jsonapi enabled="true" /> </httpd> <export> <configuration stream="oldfile" enabled="true" type="file"> <property name="type">csv</property> <property name="nonce">MyE...
Add padding to Sydney Opera House
<?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:background="#0c609c" android:gravity="center_vertical" > <ImageView...
<?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:background="#0c609c" android:gravity="center_vertical" > <ImageView...
Fix multiple tabs "contact information"
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="birthdate_date" model="ir.ui.view"> <field name="name">Birthdate Date field</field> <field name="model">res.partner</field> <field name="inherit_id" ref="partner_contact_personal_information_page.personal_information"/> <field name="ar...
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="view_personal_information_birthdate_date" model="ir.ui.view"> <field name="name">Birthdate Date field</field> <field name="model">res.partner</field> <field name="inherit_id" ref="partner_contact_personal_information_page.personal_informat...
Fix multiple tabs "contact information"
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="birthdate_date" model="ir.ui.view"> <field name="name">Birthdate Date field</field> <field name="model">res.partner</field> <field name="inherit_id" ref="partner_contact_personal_information_page.personal_information"/> <field name="ar...
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="view_personal_information_birthdate_date" model="ir.ui.view"> <field name="name">Birthdate Date field</field> <field name="model">res.partner</field> <field name="inherit_id" ref="partner_contact_personal_information_page.personal_informat...
Fix path to generated docs.
<?xml version="1.0"?> <project name="Plop" description="" default="all"> <property name="version" value="0.1.2"/> <property name="email" value="clicky@erebot.net"/> <property name="qa.coverage.force" value="false"/> <fileset dir="src/" id="sources"> <include name="**/*....
<?xml version="1.0"?> <project name="Plop" description="" default="all"> <property name="version" value="0.1.2"/> <property name="email" value="clicky@erebot.net"/> <property name="qa.coverage.force" value="false"/> <fileset dir="src/" id="sources"> <include name="**/*....
Add one permission in the manifest to get the device IPV4
<?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="uk.iankent.ikettle2"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCE...
<?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="uk.iankent.ikettle2"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCE...
Change pdfjs webscript authentication level to none
<webscript> <shortname>pdfjs</shortname> <description>Container for pdf.js viewer</description> <url>/extras/components/preview/pdfjs</url> <format default="html"/> </webscript>
<webscript> <shortname>pdfjs</shortname> <description>Container for pdf.js viewer</description> <url>/extras/components/preview/pdfjs</url> <format default="html"/> <authentication>none</authentication> </webscript>
Add Vendor/Product ID for HID_DMX Nodle R4S
<?xml version="1.0" encoding="UTF-8"?> <component type="addon"> <id>org.qlcplus.QLCPlus.hid</id> <extends>org.qlcplus.QLCPlus</extends> <name>Hid</name> <summary>HID plugin for QLC+</summary> <url type="homepage">https://www.qlcplus.org/</url> <url type="bugtracker">https://github.com/mcallegari/qlcplus/iss...
<?xml version="1.0" encoding="UTF-8"?> <component type="addon"> <id>org.qlcplus.QLCPlus.hid</id> <extends>org.qlcplus.QLCPlus</extends> <name>Hid</name> <summary>HID plugin for QLC+</summary> <url type="homepage">https://www.qlcplus.org/</url> <url type="bugtracker">https://github.com/mcallegari/qlcplus/iss...
Change to white status bar color
<?xml version='1.0' encoding='utf-8'?> <widget id="se.rishie.ccdiff" version="0.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>CCdiff</name> <description> An app for comparing Chinese character strokes between different languages and regions. </description> ...
<?xml version='1.0' encoding='utf-8'?> <widget id="se.rishie.ccdiff" version="0.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>CCdiff</name> <description> An app for comparing Chinese character strokes between different languages and regions. </description> ...
Fix a SDK compilation issue
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="org.matrix.androidsdk"> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission...
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="org.matrix.androidsdk"> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission...
Add link attrs in the main screen
<screen script="js/main.js"> <actionbar showTabsFor="@id/pager"/> <_content layout="activity_main"> <pager> <_page layout="@layout/fragment_alarm_list" icon="@drawable/ic_tab_alarm"> <alarmList> <_item layout="@layout/spacer" count="1"/> ...
<screen script="js/main.js" xmlns:m="http://jimulabs.com/schemas/mirror"> <actionbar showTabsFor="@id/pager"/> <_content layout="activity_main"> <pager> <_page layout="@layout/fragment_alarm_list" icon="@drawable/ic_tab_alarm"> <alarmList m:href="fragment_add_alarm.xml" m:tar...
Fix an unescaped apostrophe in the welsh translation.
<resources> <string name="language_apology_text" translation_description="Apology for missing translations in this language and appeal for help."> Annwyl Seryddwr. Rydym yn ymddiheuro am y geiriau Saesneg yn SkyMap. SkyMap cael ei gynnal gan wirfoddolwyr. Yn anffodus, nid oes gennym cyfieithiadau cy...
<resources> <string name="language_apology_text" translation_description="Apology for missing translations in this language and appeal for help."> Annwyl Seryddwr. Rydym yn ymddiheuro am y geiriau Saesneg yn SkyMap. SkyMap cael ei gynnal gan wirfoddolwyr. Yn anffodus, nid oes gennym cyfieithiadau cy...
Fix typo on previous commit.
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" \> <url> <loc>http://www.juandiana.com/</loc> <lastmod>2014-08-27T05:16:38+00:00</lastmod> </url> <url> <loc>http://www.juandiana.com/about/</loc> <lastmod>2014-08-27T05:16:38+00:00</lastmod> </url...
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>http://www.juandiana.com/</loc> <lastmod>2014-08-27T05:16:38+00:00</lastmod> </url> <url> <loc>http://www.juandiana.com/about/</loc> <lastmod>2014-08-27T05:16:38+00:00</lastmod> </url> ...
Add widget="phone" in tree view, to have an easy-to-read phone number in tree view
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2014 Alexis de Lattre <alexis@via.ecp.fr> The licence is in the file __openerp__.py --> <openerp> <data> <record id="crm_case_form_view_job" model="ir.ui.view"> <field name="name">hr_recruitment_phone.hr_applicant.form</field> <field name="model">h...
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2014 Alexis de Lattre <alexis@via.ecp.fr> The licence is in the file __openerp__.py --> <openerp> <data> <record id="crm_case_form_view_job" model="ir.ui.view"> <field name="name">hr_recruitment_phone.hr_applicant.form</field> <field name="model">h...
Add tracing profile to MQTT adapter.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE xml> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5le...
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE xml> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5le...
Add some basic project & developer info to POM
<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>me.grdryn.lisztomania</groupId> <artifactId>lisztomania</artifact...
<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>me.grdryn.lisztomania</groupId> <artifactId>lisztomani...
Fix different width of id/pw.
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <!-- LoginWidget.ui.xml --> <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui'> <g:HTMLPanel> <form class="compactform" action="#"> Veuillez vous identifier: <br /><br /> <tab...
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <!-- LoginWidget.ui.xml --> <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui'> <g:HTMLPanel> <form class="compactform" action="#"> Veuillez vous identifier: <br /><br /> <tab...
Remove uses-sdk duplicate change minSdkVersion to 9 (and not 8 due to camera.open)
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="tm.android.lampetorche" android:versionCode="1" android:versionName="1.0" android:installLocation="preferExternal"> <uses-sdk android:minSdkVersion="17"/> <uses-sdk android:minSdkVersion="14"/>...
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="tm.android.lampetorche" android:versionCode="1" android:versionName="1.0" android:installLocation="preferExternal"> <uses-sdk android:minSdkVersion="9"/> <uses-permission android:name="androi...
Add course_id.name and attendee.email into report
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <!--Parametro del reporte--> <report id="report_session" model="openacademy.session" string="Session Report" name="openacademy.report_session_view" file="openacademy.report_session" report_type="qweb-pdf" /> <!--Contenido del r...
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <!--Parametro del reporte--> <report id="report_session" model="openacademy.session" string="Session Report" name="openacademy.report_session_view" file="openacademy.report_session" report_type="qweb-pdf" /> <!--Contenido del r...
Fix minor problems in rmi-client subproject
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springfra...
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springfra...
Fix a comment in an initilization file
<?xml version="1.0"?> <initialize name="reset01"> <!-- This file sets up the aircraft to start off from the runway in preparation for takeoff. --> <ubody unit="FT/SEC"> 160.0 </ubody> <latitude unit="DEG"> 47.0 </latitude> <longitude unit="DEG"> 122.0 </longitude> <psi unit="DEG"> 200.0...
<?xml version="1.0"?> <initialize name="reset01"> <!-- This file sets up the aircraft at 8000 feet on a heading of 200 degrees. --> <ubody unit="FT/SEC"> 160.0 </ubody> <latitude unit="DEG"> 47.0 </latitude> <longitude unit="DEG"> 122.0 </longitude> <psi unit="DEG"> 200.0 </psi> <altitu...
Add exclusion rule for line before param, with correct code
<?xml version="1.0"?> <ruleset name="Magento PSR2"> <description>Magento Coding Standards using PSR2.</description> <!-- Exclude paths --> <exclude-pattern>*/lib/*</exclude-pattern> <exclude-pattern>*/node_modules/*</exclude-pattern> <!-- scripts folder is utilized only in development, no need for c...
<?xml version="1.0"?> <ruleset name="Magento PSR2"> <description>Magento Coding Standards using PSR2.</description> <!-- Exclude paths --> <exclude-pattern>*/lib/*</exclude-pattern> <exclude-pattern>*/node_modules/*</exclude-pattern> <!-- scripts folder is utilized only in development, no need for c...
Add android:id for the style of the v21 variant
<!-- ~ Copyright (C) 2021 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required ...
<!-- ~ Copyright (C) 2021 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required ...
Allow Javadoc for undeclared RuntimeExceptions
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> <module name="Checker"> <property name="severity" value="error" /> <module name="TreeWalker"> <module name="SuppressWarningsHolder" /> <module n...
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> <module name="Checker"> <property name="severity" value="error" /> <module name="TreeWalker"> <module name="SuppressWarningsHolder" /> <module n...
Upgrade archetype-packaging and maven-archetype-plugin to 2.4
<?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....
<?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....
Remove map lib dependency in hopes it allows broader install base
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.readystatesoftware.mapviewballoons" android:versionCode="4" android:versionName="1.5.1" > <application> <uses-library android:name="com.google.android.maps" /> </applicat...
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.readystatesoftware.mapviewballoons" android:versionCode="4" android:versionName="1.5.1" > <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7" /> <us...
Use maven central through https
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <profiles> <profile> ...
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <profiles> <profile> ...
Make nvoice in sales order and lines not visible in form view
<?xml version="1.0" encoding="utf-8"?> <terp> <data> <wizard id="wizard_sale_order_make_invoice" keyword="client_action_multi" model="sale.order" name="sale.order.make_invoice" string="Make invoices"/> <wizard id="wizard_sale_order_line_invoice" keyword="client_action_multi" model=...
<?xml version="1.0" encoding="utf-8"?> <terp> <data> <wizard id="wizard_sale_order_make_invoice" keyword="client_action_multi" model="sale.order" name="sale.order.make_invoice" multi="True" string="Make invoices"/> <wizard id="wizard_sale_order_line_invoice...
Add myself to about page and credits
<a:application xmlns:a="http://ajax.org/2005/aml"> <a:window id = "aboutDialog" icon = "" kbclose = "true" center = "true" width = "512" skinset = "help-skin" buttons = "close" skin = "win-help-about" class = "aboutDialogBox"> ...
<a:application xmlns:a="http://ajax.org/2005/aml"> <a:window id = "aboutDialog" icon = "" kbclose = "true" center = "true" width = "512" skinset = "help-skin" buttons = "close" skin = "win-help-about" class = "aboutDialogBox"> ...
Set karaf console REST service URL and auth token from environment variables.
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>ftp-...
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>ftp-...
Set version code back to 1.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.hockeyapp.android.demo" android:versionName="1.0" android:versionCode="3"> <application android:icon="@drawable/icon" android:label="@string/app_name"> ...
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.hockeyapp.android.demo" android:versionName="1.0" android:versionCode="1"> <application android:icon="@drawable/icon" android:label="@string/app_name"> ...
Change navigation bar color to transparent
<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="color...
<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="color...
Include timestamp with logger messages
<!-- ~ Copyright (C) 2009-2016 Lightbend Inc. <https://www.lightbend.com> --> <!-- The default logback configuration that Play uses if no other configuration is provided --> <configuration> <conversionRule conversionWord="coloredLevel" converterClass="play.api.libs.logback.ColoredLevel" /> <appender name=...
<!-- ~ Copyright (C) 2009-2016 Lightbend Inc. <https://www.lightbend.com> --> <!-- The default logback configuration that Play uses if no other configuration is provided --> <configuration> <conversionRule conversionWord="coloredLevel" converterClass="play.api.libs.logback.ColoredLevel" /> <appender name=...
Set OSATE version to 2.3.3-SNAPSHOT
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>osate2</artifa...
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>osate2</artifa...
Disable the peas/flash project temporarily as it causes errors to appear when importing the projects into Eclipse.
<?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> <parent> <groupId>com.googlecode.p...
<?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> <parent> <groupId>com.googlecode.p...
Set default level for application.
<!-- https://www.playframework.com/documentation/latest/SettingsLogger --> <configuration> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>${application.home:-.}/logs/application.log</file> <encoder> <pattern>%date [%level] from %logger in %thread - %message%n%xExc...
<!-- https://www.playframework.com/documentation/latest/SettingsLogger --> <configuration> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>${application.home:-.}/logs/application.log</file> <encoder> <pattern>%date [%level] from %logger in %thread - %message%n%xExc...
Update snapshot version of integration-tests
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>zombielink-it</artifactId> ...
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>zombielink-it</artifactId> ...
Change name of application to include spaces
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">ThoughtAboutYou</string> <string name="action_settings">Settings</string> <string name="hello_world">Hello world!</string> <string name="app_version">0.0.1</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">Thought About You</string> <string name="action_settings">Settings</string> <string name="hello_world">Hello world!</string> <string name="app_version">0.0.1</string> </resources>
Change default player 2 controls
<sidewalk_champion><settings><screen_scale>1</screen_scale><show_box_display>True</show_box_display><player1_keys><heavy_kick>h</heavy_kick><medium_kick>g</medium_kick><light_kick>f</light_kick><up>w</up><back>a</back><down>s</down><start>left ctrl</start><heavy_punch>y</heavy_punch><medium_punch>t</medium_punch><light...
<sidewalk_champion><settings><screen_scale>2</screen_scale><show_box_display>True</show_box_display><player1_keys><heavy_kick>h</heavy_kick><medium_kick>g</medium_kick><light_kick>f</light_kick><up>w</up><back>a</back><down>s</down><start>left ctrl</start><heavy_punch>y</heavy_punch><medium_punch>t</medium_punch><light...
Reorder client image popup options
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/client_image_remove" android:title="Remove photo" /> <item android:id="@+id/client_image_capture" android:title="Take new photo" /> </menu>
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/client_image_capture" android:title="Take new photo" /> <item android:id="@+id/client_image_remove" android:title="Remove photo" /> </menu>
Update dependency com.google.code.gson:gson to v2.8.7
<?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>io.github.thebusybiscuit...
<?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>io.github.thebusybiscuit...
Add `major` kind area config
<?xml version="1.0"?> <areas> <area kind="single">single</area> <area kind="duo">duo</area> <area kind="minor">minor</area> </areas>
<?xml version="1.0"?> <areas> <area kind="single">single</area> <area kind="duo">duo</area> <area kind="minor">minor</area> <area kind="major">major</area> </areas>
Add support for other Jetbrains products, such as PhpStore, PyCharm...
<idea-plugin version="2"> <name>ReviewBoard</name> <description>Post review to review board</description> <version>1.0.1</version> <vendor>YourCompany</vendor> <idea-version since-build="95.627"/> <depends>Subversion</depends> <project-components> <component> <im...
<idea-plugin version="2"> <name>ReviewBoard</name> <description>Post review to review board. Code: https://code.google.com/p/reviewboard-plugin-for-idea/</description> <version>1.0.2</version> <vendor>Kane</vendor> <idea-version since-build="95.627"/> <depends>Subversion</depends> <de...
Whitelist CallState (only) for code-gen (re-re-recorded)
<tp:spec xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0" xmlns:xi="http://www.w3.org/2001/XInclude"> <tp:title>Channel interfaces</tp:title> <xi:include href="../spec/Channel.xml"/> <xi:include href="../spec/Channel_Type_Contact_List.xml"/> <xi:include href="../spec/Channel_Type_Streamed_...
<tp:spec xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0" xmlns:xi="http://www.w3.org/2001/XInclude"> <tp:title>Channel interfaces</tp:title> <xi:include href="../spec/Channel.xml"/> <xi:include href="../spec/Channel_Type_Contact_List.xml"/> <xi:include href="../spec/Channel_Type_Streamed_...
Include i18n in full profile; to catch i18n errors early.
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.4.0//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.5.0/distro-source/core/src/gwt-module.dtd"> <module> <inherits name="org.jboss.errai.enterprise.CDI"/> <inherits name="org.uberfire.UberfireJS"/...
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.4.0//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.5.0/distro-source/core/src/gwt-module.dtd"> <module> <inherits name="org.jboss.errai.enterprise.CDI"/> <inherits name="org.uberfire.UberfireJS"/...
Remove old reference to google play services version
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.recurly.android"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_WI...
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.recurly.android"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_WI...
Fix broken loback info/debug logging
<configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%msg%n</pattern> </encoder> </appender> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>logs/ncdbg.log</file> <append>true</append> ...
<configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <filter class="ch.qos.logback.classic.filter.LevelFilter"> <level>INFO</level> <onMatch>ACCEPT</onMatch> <onMismatch>DENY</onMismatch> </filter> <encoder> <pa...
Bump junit from 4.13 to 4.13.1
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>sepe</groupId> <artifactId>tennis</artifactId> <version>1.0-SNAPSH...
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>sepe</groupId> <artifactId>tennis</artifactId> <version>1.0-SNAPSH...
Add string values for ConnectionProfileActivity layout
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">OpenstackDroid</string> <string name="action_settings">Settings</string> <string name="add_profile">Add</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">OpenstackDroid</string> <string name="action_settings">Settings</string> <string name="add_profile">Add</string> <string name="profile_name">Profile name</string> <string name="endpoint">API endpoint</string> <string name="username"...
Use GNU double-hyphen syntax for CLI options
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. --> <project basedir="." name="dita-cmd"> <description>Defines a dita-cmd macro you can use in your Ant builds. See build-chm-pdf-hybrid.xml for usage.</desc...
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. --> <project basedir="." name="dita-cmd"> <description>Defines a dita-cmd macro you can use in your Ant builds. See build-chm-pdf-hybrid.xml for usage.</desc...
Fix cron expression for email fetcher
<?xml version="1.0" encoding="utf-8"?> <scheduled-jobs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <scheduled-job name="mail.fetcher" active="true" description="fetch new emails on every 5 minutes." job="com.axelor.mail.service.MailFetchJob" cron="*...
<?xml version="1.0" encoding="utf-8"?> <scheduled-jobs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <scheduled-job name="mail.fetcher" active="true" description="fetch new emails on every 5 minutes." job="com.axelor.mail.service.MailFetchJob" cron="0...
Increase Zanata project to 1.4.0.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <config xmlns="http://zanata.org/namespace/config/"> <url>https://translate.zanata.org/</url> <project>ovirt-web-ui</project> <project-version>1.3.0</project-version> <project-type>gettext</project-type> <src-dir>extra/to-zanata</src-dir> ...
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <config xmlns="http://zanata.org/namespace/config/"> <url>https://translate.zanata.org/</url> <project>ovirt-web-ui</project> <project-version>1.4.0</project-version> <project-type>gettext</project-type> <src-dir>extra/to-zanata</src-dir> ...
Add light sensor as requirement
<?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.amitness.photon"> <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" /> ...
<?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.amitness.photon"> <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" /> ...
Change vendor name (JetBrains s.r.o -> JetBrains)
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2000-2020 JetBrains s.r.o. ~ ~ 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...
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2000-2020 JetBrains s.r.o. ~ ~ 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...
Update ngram library to use fix in ArrayTrieCounter serialization
<component name="libraryTable"> <library name="ngram-slp" type="repository"> <properties include-transitive-deps="false" maven-id="org.jetbrains.intellij.deps.completion:ngram-slp:0.0.2" /> <CLASSES> <root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/completion/ngram-slp/0.0.2/ngram-slp-0.0...
<component name="libraryTable"> <library name="ngram-slp" type="repository"> <properties include-transitive-deps="false" maven-id="org.jetbrains.intellij.deps.completion:ngram-slp:0.0.3" /> <CLASSES> <root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/completion/ngram-slp/0.0.3/ngram-slp-0.0...
Remove storage permission for API 19 and up
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2016 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/...
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2016 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/...
Fix typo in tag name.
<sect1 id="zend.date.output"> <title>How to Output Dates</title> <sect2 id="zend.date.output.tostring"> <title>Generating Date Strings Using toString()</title> <para> The <code>toString()</code> method automatically formats the date object according to the conventions of the obje...
<sect1 id="zend.date.output"> <title>How to Output Dates</title> <sect2 id="zend.date.output.tostring"> <title>Generating Date Strings Using toString()</title> <para> The <code>toString()</code> method automatically formats the date object according to the conventions of the obje...
Test dependencies added to Pom.xml
<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>net.raumzeitfalle.nio...
<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>net.raumzeitfalle.nio...
Add JUnit dependency to POM
<?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>ca.dw...
<?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>ca.dw...
Fix missing drawable in xml (unused xml anyways)
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" android:drawable="@drawable/btn_check_on_normal_holo_light" /> <item android:state_checked="false" android:drawable="@drawable/btn_check_off_normal_...
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" android:drawable="@drawable/btn_check_on_normal_holo_dark" /> <item android:state_checked="false" android:drawable="@drawable/btn_check_off_normal_h...
Add bpm and jndi 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>avonbo.snippets</groupId> <artifactId>java</artifactId> <versio...
<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>avonbo.snippets</groupId> <artifactId>java</artifactId> <versio...
Clean up formatting of manifest
<?xml version="1.0" encoding="utf-8"?> <manifest package="org.fitchfamily.android.gsmlocation" xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" android:versionName="0.0.2" > <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="and...
<?xml version="1.0" encoding="utf-8"?> <manifest package="org.fitchfamily.android.gsmlocation" xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" android:versionName="0.0.2" > <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="and...
Change scaning component into whole project
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans ...
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans ...
Set the default URL for android to be the localhost
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="connect_url">https://e-mission.eecs.berkeley.edu</string> <!-- <string name="connect_url">http://10.0.2.2:8080</string> --> <string name="google_webapp_client_id">97387382925-j53gqihf7j4o0h1sp6r5cllhqikfoq6o.apps.googleusercontent.com</string>...
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- <string name="connect_url">https://e-mission.eecs.berkeley.edu</string> --> <string name="connect_url">http://10.0.2.2:8080</string> <string name="google_webapp_client_id">97387382925-j53gqihf7j4o0h1sp6r5cllhqikfoq6o.apps.googleusercontent.com</string>...
Update to the latest GT service security descriptor schema
<securityConfig xmlns="http://www.globus.org"> <auth-method> <GSITransport/> <GSISecureMessage/> <GSISecureConversation/> </auth-method> <authz value="gridmap"/> </securityConfig>
<serviceSecurityConfig xmlns="http://www.globus.org/security/descriptor/service"> <auth-method> <GSISecureConversation/> <GSISecureMessage/> <GSISecureTransport/> </auth-method> <authzChain> <pdps><interceptor name="gridmap"/></pdps> </authzChain> </serviceSecurityConfig>
Use openfl-legacy for full backward compatibility until we are compatible with next
<?xml version="1.0" encoding="utf-8"?> <project> <app preloader="com.haxepunk.Preloader" unless="noHaxepunkPreloader || html5" /> <assets path="assets/graphics" rename="graphics" include="*.png" embed="true" /> <assets path="assets/font" rename="font" include="*.ttf" embed="true" /> <set name="lime-hybrid" unless...
<?xml version="1.0" encoding="utf-8"?> <project> <app preloader="com.haxepunk.Preloader" unless="noHaxepunkPreloader || html5" /> <assets path="assets/graphics" rename="graphics" include="*.png" embed="true" /> <assets path="assets/font" rename="font" include="*.ttf" embed="true" /> <set name="openfl-legacy" unle...
Fix line breaks when tweeting?
--- --- <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>{{ site.title | xml_escape }} - Link Tweets for IFTTT</title> <description>These microblog posts will be cross-posted to Twitter with an external link.</description> <link>{{ site.url }}</...
--- --- <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>{{ site.title | xml_escape }} - Link Tweets for IFTTT</title> <description>These microblog posts will be cross-posted to Twitter with an external link.</description> <link>{{ site.url }}</...
Make the application load immediately
<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> <listener> <listener-class>us.kbase....
<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> <listener> <listener-class>us.kbase....
Move dummy R and TR classes for the library itself to their own package.
<manifest android:versionName="0.1" android:versionCode="1" package="org.positronicnet" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-sdk android:minSdkVersion="7"></uses-sdk> </manifest>
<manifest android:versionName="0.1" android:versionCode="1" package="org.positronicnet.libresources" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-sdk android:minSdkVersion="7"></uses-sdk> </manifest>
Undo rider EAP changes for the time being
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="UserContentModel"> <attachedFolders /> <explicitIncludes /> <explicitExcludes /> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ContentModelUserStore"> <attachedFolders /> <explicitIncludes /> <explicitExcludes /> </component> </project>
Fix history title overlap with completed_date
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="16dp"> <TextView android:id="@+id/title_text" android:textSize="20sp" android:layou...
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="16dp"> <TextView android:id="@+id/title_text" android:textSize="20sp" android:layou...
Add properties to task xml
<!-- ~ Copyright 2012 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...
<!-- ~ Copyright 2012 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...
Stop animated headers from growing too large.
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2017 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 a...
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2017 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 a...
Use '0' instead of 'false' for compatibility with every database
<dataset> <STUDIES id="1" version="0" name="First Study" completed="false"/> <ARMS id="2" version="0" name="Treatment" study_id="1"/> <PERIODS id="1" arm_id="2" version="0" start_day="1" name="Pre-scree...
<dataset> <STUDIES id="1" version="0" name="First Study" completed="0"/> <ARMS id="2" version="0" name="Treatment" study_id="1"/> <PERIODS id="1" arm_id="2" version="0" start_day="1" name="Pre-screening...
Remove contacts permission from manifest
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.rt2zz.reactnativecontacts" > <uses-permission android:name="android.permission.READ_CONTACTS" /> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.rt2zz.reactnativecontacts" > </manifest>
Make sure elemental is included
<module> <inherits name="org.realityforge.arez.Arez"/> <inherits name="org.realityforge.arez.extras.Extras"/> <source path=""/> </module>
<module> <inherits name="org.realityforge.arez.Arez"/> <inherits name="org.realityforge.arez.extras.Extras"/> <inherits name="elemental2.dom.Dom"/> <source path=""/> </module>
Add required functions to allow these tools to be better used in sites for the gateway.
<?xml version="1.0"?> <registration> <!-- <function name="rwiki.create" /> <function name="rwiki.read" /> <function name="rwiki.update" /> <function name="rwiki.delete" /> <function name="rwiki.admin" /> <function name="rwiki.superadmin" /> --> <tool id="sakai.rwiki" title="Wiki" description="For colla...
<?xml version="1.0"?> <registration> <!-- <function name="rwiki.create" /> <function name="rwiki.read" /> <function name="rwiki.update" /> <function name="rwiki.delete" /> <function name="rwiki.admin" /> <function name="rwiki.superadmin" /> --> <tool id="sakai.rwiki" title="Wiki" description="For colla...
Make failing example builds fail the entire build properly.
<?xml version="1.0" encoding="UTF-8"?> <project name="Examples" basedir="."> <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${dir.lib.tools}/ant-contrib-1.0b3.jar"/> <target name="examples" depends="osgi.package" description="Builds the examples"> <mkdir dir="${dir.dist}/example...
<?xml version="1.0" encoding="UTF-8"?> <project name="Examples" basedir="."> <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${dir.lib.tools}/ant-contrib-1.0b3.jar"/> <target name="examples" depends="osgi.package" description="Builds the examples"> <mkdir dir="${dir.dist}/example...
Use grey as accent color for the moment
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- Base application theme. --> <style name="SeriesTrackerTheme" parent="Theme.AppCompat.Light"> <item name="android:actionBarStyle">@style/AppBar</item> <item name="android:editTextBackground"> @drawable/seriestracker_edit_text_hol...
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- Base application theme. --> <style name="SeriesTrackerTheme" parent="Theme.AppCompat.Light"> <item name="android:actionBarStyle">@style/AppBar</item> <item name="android:editTextBackground"> @drawable/seriestracker_edit_text_hol...