Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add missing _ in extension category name | <?xml version="1.0"?>
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
<OpenGLAPI>
<category name="GL_ARB_seamless_cubemap" number="65">
<enum name="TEXTURE_CUBE_MAP_SEAMLESS" count="1" value="0x88F4">
<size name="Get" mode="get"/>
</enum>
</category>
</OpenGLAPI>
| <?xml version="1.0"?>
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
<OpenGLAPI>
<category name="GL_ARB_seamless_cube_map" number="65">
<enum name="TEXTURE_CUBE_MAP_SEAMLESS" count="1" value="0x88F4">
<size name="Get" mode="get"/>
</enum>
</category>
</OpenGLAPI>
|
Update the title of splash screen | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
android:paddingBottom="@d... | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@c... |
Update to safe version of JUnit | <?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.junit.contrib</groupId>
... | <?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.junit.contrib</groupId>
... |
Update skill detail list (fix centering) | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listitem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingRight="... | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listitem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingRight="... |
Convert Timeline activity to RelativeLayout from 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="mat... | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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=... |
Fix hibernate maping for AttributeValue. | <?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="cn.net.openid.domain">
<class name="AttributeValue" table="openid_attribute_value">
<composite-id>
<key-many-to-one name=... | <?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="cn.net.openid.domain">
<class name="AttributeValue" table="openid_attribute_value">
<composite-id>
<key-many-to-one name=... |
Disable search tab for now | <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/navigation_featured"
android:icon="@drawable/ic_featured"
android:title="@string/title_featured" />
<item
android:id="@+id/navigation_popular"
... | <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/navigation_featured"
android:icon="@drawable/ic_featured"
android:title="@string/title_featured" />
<item
android:id="@+id/navigation_popular"
... |
Use jar:install as default goal | <?xml version="1.0"?>
<!--
Copyright 2004-2005 The Apache Software Foundation or its licensors,
as applicable.
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
... | <?xml version="1.0"?>
<!--
Copyright 2004-2005 The Apache Software Foundation or its licensors,
as applicable.
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
... |
Change status bar color to primary | <resources>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">?attr/colorPrimaryDark</item>
</style>
</resources>
| <resources>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">?attr/colorPrimary</item>
</style>
</resources>
|
Remove obsolete info from debug 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.alexstyl.specialdates"
android:installLocation="auto">
<application
android:name="com.alexstyl.specialdates.DebugApplication"
android:... | <?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.alexstyl.specialdates">
<application
android:name="com.alexstyl.specialdates.DebugApplication"
tools:replace="android:name">
<activi... |
Add appender for debug logs | <Configuration xmlns="http://logging.apache.org/log4j/2.0/config">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
<File name="Pixels" fileName="logs/pixels.log">
<Patt... | <Configuration xmlns="http://logging.apache.org/log4j/2.0/config">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
<File name="Pixels" fileName="logs/pixels.log">
<Patt... |
Whitelist to allow code coverage stats to be produced | <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processI... | <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processI... |
Allow user to click on cancel button | <?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record id="view_base_module_upgrade" model="ir.ui.view">
<field name="model">base.module.upgrade</field>
<field name="inherit_id" ref="base.view_base_module_upgrade"/>
<field name="arch" type="xml">
<field name="module_i... | <?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record id="view_base_module_upgrade" model="ir.ui.view">
<field name="model">base.module.upgrade</field>
<field name="inherit_id" ref="base.view_base_module_upgrade"/>
<field name="arch" type="xml">
<field name="module_i... |
Clarify comment to fileProvider path | <?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com.apk/res/android">
<!-- path is relative to app_data/files/ -->
<files-path name="packages" path="../app_data/packages/" />
</paths>
| <?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com.apk/res/android">
<!-- path is relative to /data/data/com.tavultesoft.kmapro/files/ -->
<files-path name="packages" path="../app_data/packages/" />
</paths>
|
Enable the httpd port for the deletes app | <?xml version="1.0"?>
<deployment>
<cluster hostcount="1" sitesperhost="2" leader="localhost" kfactor="0"/>
<paths>
<voltdbroot path="/tmp"/>
</paths>
</deployment>
| <?xml version="1.0"?>
<deployment>
<cluster hostcount="1" sitesperhost="2" leader="localhost" kfactor="0"/>
<paths>
<voltdbroot path="/tmp"/>
</paths>
<httpd/>
</deployment>
|
Remove accidental changes of settings | <?xml version="1.0" encoding="UTF-8"?>
<settings>
<parameter name="autosave" value="false" />
<parameter name="message_verbosity" value="info" />
<parameter name="print_final_average_luminance" value="false" />
<parameter name="rendering_threads" value="auto" />
<parameter name="sampling_mode" value... | <?xml version="1.0" encoding="UTF-8"?>
<settings>
<parameter name="autosave" value="false" />
<parameter name="message_verbosity" value="info" />
<parameter name="print_final_average_luminance" value="false" />
<parameter name="rendering_threads" value="auto" />
<parameter name="sampling_mode" value... |
Update manifest for 1.2 release | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mobile.SEC"
android:versionCode="3"
android:versionName="1.2" >
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
<uses-permission android:name="android.permissio... | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mobile.SEC"
android:versionCode="4"
android:versionName="1.2" >
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
<uses-permission android:name="android.permissio... |
Update plugin jdk for latest version of IntelliJ (fixes org.iq80.snappy NoClassDefFoundError) | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="EntryPointsManager">
<entry_points version="2.0" />
</component>
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
<OptionsSetting value="true" id="Add" />
<OptionsSetting value="true" id="Remove" />
... | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="EntryPointsManager">
<entry_points version="2.0" />
</component>
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
<OptionsSetting value="true" id="Add" />
<OptionsSetting value="true" id="Remove" />
... |
Update and file to make repeatable builds | <project name="protobuf-java" default="jar" basedir="..">
<property name="srcdir" value="src" />
<property name="javadir" value="java" />
<property name="javasrcdir" value="${javadir}/src" />
<property name="targetdir" value="${javadir}/target" />
<property name="classesdir" value="${targetdir}/clas... | <project name="protobuf-java" default="jar" basedir="..">
<property name="srcdir" value="src" />
<property name="javadir" value="java" />
<property name="javasrcdir" value="${javadir}/src" />
<property name="targetdir" value="${javadir}/target" />
<property name="classesdir" value="${targetdir}/clas... |
Make view id naming consistent using "." instead of "_". | <?xml version="1.0" encoding="UTF-8"?>
<plugin>
<extension point="org.blueberry.ui.views">
<view id="org_mitk_views_pharmacokinetics_mri"
name="DCE MR Perfusion Datafit View"
category="Perfusion"
class="MRPerfusionView"
icon="resources/icon.svg" />
</extension>
</plugin>
| <?xml version="1.0" encoding="UTF-8"?>
<plugin>
<extension point="org.blueberry.ui.views">
<view id="org.mitk.views.pharmacokinetics.mri"
name="DCE MR Perfusion Datafit View"
category="Perfusion"
class="MRPerfusionView"
icon="resources/icon.svg" />
</extension>
</plugin>
|
Allow to split a partially available picking | <?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_picking_form" model="ir.ui.view">
<field name="name">Stock picking out Split button</field>
<field name="model">stock.picking</field>
<field name="inherit_id" ref="stock.view_picking_form" />
<field name="arch" type="... | <?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_picking_form" model="ir.ui.view">
<field name="name">Stock picking out Split button</field>
<field name="model">stock.picking</field>
<field name="inherit_id" ref="stock.view_picking_form" />
<field name="arch" type="... |
Mark editor as unimportant for autofill (should prevent related crashes) | <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/markdown_edit_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.wbrawner.simplemarkdown.view.fragment.EditFragme... | <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/markdown_edit_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.wbrawner.simplemarkdown.view.fragment.EditFragme... |
Change name to "ProxerTv Alpha" | <resources>
<string name="app_name">ProxerTv</string>
<string name="row_my_list">My List</string>
<string name="row_top_access">Top Access</string>
<string name="row_top_rating">Top Rating</string>
<string name="row_airing">Airing</string>
<string name="row_streams">Streams</string>
<string ... | <resources>
<string name="app_name">ProxerTv Alpha</string>
<string name="row_my_list">My List</string>
<string name="row_top_access">Top Access</string>
<string name="row_top_rating">Top Rating</string>
<string name="row_airing">Airing</string>
<string name="row_streams">Streams</string>
<s... |
Mark app_name as not translatable | <resources>
<string name="app_name">Equiv</string>
<string name="activity_title_add_product">Add product</string>
<string name="action_settings">Settings</string>
<string name="action_new_day">New day</string>
<string name="meal_name_breakfast">B.fast</string>
<string name="meal_name_lunch">L... | <resources>
<string name="app_name" translatable="false">Equiv</string>
<string name="activity_title_add_product">Add product</string>
<string name="action_settings">Settings</string>
<string name="action_new_day">New day</string>
<string name="meal_name_breakfast">B.fast</string>
<string nam... |
Remove unnecessary attributes from the manifest | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.rubensousa.bottomsheetbuilder">
<application
android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true">
</application>
</manifest>
| <manifest package="com.github.rubensousa.bottomsheetbuilder">
</manifest>
|
Update DB version for new POIProvider columns "actions type". | <?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="gtfs_rts_db_version">20141002</integer>
<string name="gtfs_rts_label">AMT Bus</string>
<string name="gtfs_rts_authority">org.mtransit.android.ca_montreal_amt_bus.gtfs</string>
<string name="gtfs_status_for_poi_authority">org.mtransit.andr... | <?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="gtfs_rts_db_version">20141003</integer>
<string name="gtfs_rts_label">AMT Bus</string>
<string name="gtfs_rts_authority">org.mtransit.android.ca_montreal_amt_bus.gtfs</string>
<string name="gtfs_status_for_poi_authority">org.mtransit.andr... |
Enable fast scrolling for cache lists | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout style="@style/action_bar" >
<include layout="@layout/actionbar_t... | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout style="@style/action_bar" >
<include layout="@layout/actionbar_t... |
Comment not really necessary permission | <?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.github.javiersantos.piracychecker.demo">
<uses-permission android:name="com.android.vending.CHECK_LICENSE"/>
<application
... | <?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.github.javiersantos.piracychecker.demo">
<!-- <uses-permission android:name="com.android.vending.CHECK_LICENSE"/> -->
<app... |
Make this work with the current release of Maven, 1.0-rc2. | <?xml version="1.0"?>
<!--
Copyright 2003-2004 The Apache Software Foundation.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by a... | <?xml version="1.0"?>
<!--
Copyright 2003-2004 The Apache Software Foundation.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by a... |
Update TeamDev open source xml | <component name="CopyrightManager">
<copyright>
<option name="allowReplaceRegexp" value="2017" />
<option name="myName" value="TeamDev Open-Source" />
<option name="notice" value="Copyright 2018, TeamDev Ltd. All rights reserved. Redistribution and use in source and/or binary forms, with or witho... | <component name="CopyrightManager">
<copyright>
<option name="allowReplaceRegexp" value="2017" />
<option name="myName" value="TeamDev Open-Source" />
<option name="notice" value="Copyright 2018, TeamDev. All rights reserved. Redistribution and use in source and/or binary forms, with or without&#... |
Remove reference to version number. | <?xml version="1.0"?>
<!--
Copyright 2002-2005 The Apache Software Foundation or its licensors,
as applicable.
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/... | <?xml version="1.0"?>
<!--
Copyright 2002-2005 The Apache Software Foundation or its licensors,
as applicable.
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/... |
Declare MediaButtonReceiver for support-mediarouter-v7 testing am: 34bde96f69 | <?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/LIC... | <?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/LIC... |
Apply theme to play icon | <?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2016 Hippo Seven
~
~ 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 2016 Hippo Seven
~
~ 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
~
... |
Add transition to base state and from base to idle with normal key. | <?xml version="1.0" encoding="UTF-8"?>
<scxml xmlns="http://www.coin3d.org/scxml/coin/1.0" initialstate="idle">
<state id="idle">
<transition event="KeyboardEvent.DOWN.A" target="exit"/>
</state>
<state id="base">
<transition event="KeyboardEvent.DOWN.Alt" target="interact"/>
<transition event="Keyboa... | <?xml version="1.0" encoding="UTF-8"?>
<scxml xmlns="http://www.coin3d.org/scxml/coin/1.0" initialstate="idle">
<state id="idle">
<transition event="KeyboardEvent.DOWN.B" target="exit"/>
<transition event="KeyboardEvent.DOWN.V" target="base"/>
</state>
<state id="base">
<transition event="KeyboardEven... |
Add bit to map JNDI from JBoss name to Java 'standard' name. | <?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<context-root>ticketmanor</context-root>
</jboss-web>
| <?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<context-root>ticketmanor</context-root>
<!-- Map the JBoss-specific JNDI name to the generic JDBC/JNDI name -->
<resource-ref>
<res-ref-name>jdbc/TicketManorDB</res-ref-name>
<jndi-name>java:/jdbc/TicketManorDB</jndi-name>
</resource-ref>
</jboss-web>
|
Build compatibility for maven 1 | <assembly>
<id>bin</id>
<formats>
<format>tar.gz</format>
<format>tar.bz2</format>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>README*</include>
<include>LICENSE*</include>
<include>N... | <assembly>
<id>bin</id>
<formats>
<format>tar.gz</format>
<format>tar.bz2</format>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>README*</include>
<include>LICENSE*</include>
<include>N... |
Update typography in search screen | <?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="wrap_content"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@... | <?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="wrap_content"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@... |
Use 1dp instead of 2px | <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="@android:color/white" />
<corners android:radius="1dp" />
<stroke
android:width="2px"
android:color="@color/lightOrange" />
</shap... | <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="@android:color/white" />
<corners android:radius="1dp" />
<stroke
android:width="1dp"
android:color="@color/lightOrange" />
</shap... |
Remove Browser directory from test suites | <?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions=... | <?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNotic... |
Make the species list text larger | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/common_name"
android:layout... | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/common_name"
android:layout... |
Remove java 1.7 dependency. Should now work for java 1.6 | <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.com... | <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.com... |
Fix duplicate dependency warning && missing opensaml version error | <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>oxcore-saml</artifactId>
<name>oxSaml</name>
<packaging>jar</p... | <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>oxcore-saml</artifactId>
<name>oxSaml</name>
<packaging>jar</p... |
Replace tab character with spaces | <?xml version="1.0" encoding="UTF-8" ?>
<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="core23.... | <?xml version="1.0" encoding="UTF-8" ?>
<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>
<p... |
Set background of file picker to white | <?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.support.design.widget.AppBarLayout
android:id="@+id/id_appba... | <?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="#ffffff">
<android.support.design.widget.AppBarLayout
... |
Include sample build.properties in source distro. | <!--
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 ... | <!--
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 ... |
Rename application from TrackerActivity to Calindora Tracker. | <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">TrackerActivity</string>
</resources>
| <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Calindora Tracker</string>
</resources>
|
Remove padding from list to see toolbar on top effect | <?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_drawer"
android:layout_width="match_parent"
android:layout_he... | <?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_drawer"
android:layout_width="match_parent"
android:layout_he... |
Put api behind spring security. | <?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springfra... | <?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springfra... |
Add upgrade link in services settings. | <?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<Preference
android:key="clearGetGlueCredentials"
android:summary="@string/clearGetGlueCredentialssummary"
android:title="@string/clearGetGlueCredentials" />
<Preferenc... | <?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<Preference
android:key="com.battlelancer.seriesguide.upgrade"
android:title="@string/upgrade_title" >
<intent
android:targetClass="com.battlelancer.seriesguide.... |
Add scrolling effect to `SettingActivity` | <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/app_bar_layout"... | <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="matc... |
Test log level now set to INFO | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss} %-5level %logger{36} - %msg%n
</pattern>
</encoder>
</appender>
<logger name="com.github.dandelion" level="DEBUG" />
<lo... | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss} %-5level %logger{36} - %msg%n
</pattern>
</encoder>
</appender>
<logger name="com.github.dandelion" level="INFO" />
<log... |
Revert accidental android:targetSdkVersion commit back to 15 (had been set to 14 when initially experimenting). | <?xml version="1.0" encoding="utf-8"?>
<!-- BEGIN_INCLUDE(manifest) -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eegeo"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="14"
android:targetSdkVersion="14"/>
... | <?xml version="1.0" encoding="utf-8"?>
<!-- BEGIN_INCLUDE(manifest) -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eegeo"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="14"
android:targetSdkVersion="15"/>
... |
Use HTTPS endpoint for lang pack repository | <?xml version="1.0" encoding="UTF-8"?>
<config>
<module>
<enabled>true</enabled>
<visible>true</visible>
<icon>flash</icon>
<category>admin</category>
</module>
<project>
<entry name="langpackrepository">http://update.rbschange.fr</entry>
</project>
<!-- Add this to project.xml in 'config/project/modul... | <?xml version="1.0" encoding="UTF-8"?>
<config>
<module>
<enabled>true</enabled>
<visible>true</visible>
<icon>flash</icon>
<category>admin</category>
</module>
<project>
<entry name="langpackrepository">https://update.rbschange.fr</entry>
</project>
<!-- Add this to project.xml in 'config/project/modu... |
Change package name for linking purposes | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.ayoubdev.rnac"
android:versionCode="1"
android:versionName="1.1">
</manifest>
| <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.ayoubdev.rnak"
android:versionCode="1"
android:versionName="1.1">
</manifest>
|
Disable scrollbar on reading story, as the scrollbar wobbles, and stops the user from being distracted by their progress through the story | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.bloople.stories.ReadingStoryActivity"
android:b... | <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.bloople.stories.ReadingStoryActivity"
android:b... |
Include debug repo in CE build | <?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
... | <?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>
... |
Correct ant build to filter out test classes and benchmark code from the runnable jar. | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project MutabilityDetector">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<property name="project.bas... | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project MutabilityDetector">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<property name="project.bas... |
Reduce text file font size. | <?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"
android:layout_alignParentTop="true"
android:orientation="vertical" >
<TextView
android:id="@+id/IdgamesText... | <?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"
android:layout_alignParentTop="true"
android:orientation="vertical" >
<TextView
android:id="@+id/IdgamesText... |
Add tint to nav image | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/nav_header_height"
android:background="@mipmap/side_nav_bar"
android:orientation="vertical"
android:paddingStart="@dimen/a... | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/nav_header_height"
android:background="@mipmap/side_nav_bar"
android:backgroundTint="@color/color_accent"
android:backgrou... |
Add alternatives to bob databrowser widget | <?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension-point id="widgets" name="Display Builder Widget Model"/>
<extension
point="org.csstudio.display.builder.model.widgets">
<widget
category="PLOT"
class="org.csstudio.trends.databrowser3.bobwid... | <?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension-point id="widgets" name="Display Builder Widget Model"/>
<extension
point="org.csstudio.display.builder.model.widgets">
<widget
category="PLOT"
class="org.csstudio.trends.databrowser3.bobwid... |
Convert slashes to portable form. | <!--
Copyright (C) 2014 Dell, 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... | <!--
Copyright (C) 2014 Dell, 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... |
Fix load of css in l10n_nl_tax_statement | <?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="assets_specific" inherit_id="report.assets_common">
<xpath expr="." position="inside">
<link href="/l10n_nl_tax_statement/static/src/css/report.css" rel="stylesheet"/>
</xpath>
</template>
<template id="l10n_nl_tax_sta... | <?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="assets_common" name="l10n_nl_tax_statement pdf assets" inherit_id="web.report_assets_common">
<xpath expr="." position="inside">
<link href="/l10n_nl_tax_statement/static/src/css/report.css" rel="stylesheet"/>
</xpath>
</te... |
Include usage pages for Javadoc | <project>
<target name="doc" description="generate documentation">
<javadoc destdir="${doc.dir}"
overview="${overview}"
windowtitle="Cronet API"
nohelp="yes"
notree="yes"
nodeprecated="yes"
linkoffline="https://developer.a... | <project>
<target name="doc" description="generate documentation">
<javadoc destdir="${doc.dir}"
overview="${overview}"
windowtitle="Cronet API"
nohelp="yes"
notree="yes"
nodeprecated="yes"
linkoffline="https://developer.a... |
Fix JAX-RS provider issue with WF 11. | <?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">
<welcome-file-list>
<welcome-file>index.jsp</... | <?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">
<welcome-file-list>
<welcome-file>index.jsp</... |
Add light parameters, command, description | <tool id="metaplan2" name="Taxonomic profiling">
<description>with MetaPhlAn</description>
<macros>
</macros>
<requirements>
</requirements>
<stdio>
</stdio>
<version_command></version_command>
<!--<command>-->
<command>
metaphlan2/metaphlan2.py $input_file $output... | |
Include Legacy in aggregator 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>org.bonej</gro... | <?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>org.bonej</gro... |
Add repository information so we don't need the project module on disk for be able to build | <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.graphwalker</groupId>
... | <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.graphwalker</groupId>
... |
Update to use Java 1.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>net.mikera</groupId>
<artifactId>magic</artifactId>
<version>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>
<groupId>net.mikera</groupId>
<artifactId>magic</artifactId>
<version>0.0.1... |
Move namespace definitions to root element and collapse empty tags | <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<opc:getCertificatein xmlns:opc="http://mlp.op.fi/OPCertificateService">
<opc:RequestHeader>
<opc:SenderId></opc:SenderId>
<opc:RequestId></opc:RequestId>
<opc:Timestamp></opc:Timestamp>
... | <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:opc="http://mlp.op.fi/OPCertificateService">
<env:Header/>
<env:Body>
<opc:getCertificatein>
<opc:RequestHeader>
<opc:SenderId/>
<opc:RequestId/>
<opc:Timestamp/>
</opc:RequestHeader>
... |
Update ModAnalyzer to build with Forge 7.8.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>
<groupId>agaricus.mods</groupId>
<artifactId>ModAnalyzer</artifactId>
<v... | <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>agaricus.mods</groupId>
<artifactId>ModAnalyzer</artifactId>
<v... |
Increase edit summary height to three lines. | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/edit_summary_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/... | <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/edit_summary_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/... |
Introduce legacy-clients build profile for applet client | <?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>org.openecar... | <?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>org.openecard</... |
Update to support new search api | <?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Connexions</ShortName>
<Description>Connexions</Description>
<Tags>educational open content</Tags>
<Contact>cnx@cnx.org</Contact>
<Url type="text/html" method="get" template="http://cnx.org/c... | <?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Connexions</ShortName>
<Description>Connexions</Description>
<Tags>educational open content</Tags>
<Contact>cnx@cnx.org</Contact>
<Url type="text/html" method="get" template="http://cnx.org/s... |
Add Missing Dependency for build | <?xml version="1.0"?>
<!-- This file is only used to enable the building librealsense -->
<!-- as a debian package for use with ROS (http://ros.org) -->
<!-- via catkin_make (which invokes cmake) -->
<package format="2">
<name>librealsense</name>
<!-- The version tag needs to be updated with each new release of l... | <?xml version="1.0"?>
<!-- This file is only used to enable the building librealsense -->
<!-- as a debian package for use with ROS (http://ros.org) -->
<!-- via catkin_make (which invokes cmake) -->
<package format="2">
<name>librealsense</name>
<!-- The version tag needs to be updated with each new release of l... |
Include common annotations in the annotations bundle | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>net.spals.appbuilder</groupId>
<artifactId>spals-appbuilder-parent</ar... | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>net.spals.appbuilder</groupId>
<artifactId>spals-appbuilder-parent</ar... |
Update Zeppelin version on Ambari-2.5 from 0.6.2 to 0.7.0 (Prabhjyot Singh via r-kamath) | <?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(... | <?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(... |
Change Atom template: use url for single instance installation | <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"
xmlns:fh="http://purl.org/syndication/history/1.0"
xmlns:dct="http://purl.org/dc/terms/">
<id>{{feed_id}}</id>
<updated>{{last_updated}}</updated>
<fh:complete/>
<title xml:lang="sv">{{feed_title}}</title>
<aut... | <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"
xmlns:fh="http://purl.org/syndication/history/1.0"
xmlns:dct="http://purl.org/dc/terms/">
<id>{{feed_id}}</id>
<updated>{{last_updated}}</updated>
<fh:complete/>
<title xml:lang="sv">{{feed_title}}</title>
<aut... |
Add Linux to addin build platforms | <AddinProject appVersion="5.0">
<Project platforms="Win32 Mac">
<AddinFile>bin/Debug/MonoDevelop.AddinMaker.dll</AddinFile>
<BuildFile>MonoDevelop.AddinMaker.sln</BuildFile>
<BuildConfiguration>Debug</BuildConfiguration>
</Project>
</AddinProject>
| <AddinProject appVersion="5.0">
<Project platforms="Win32 Mac Linux">
<AddinFile>bin/Debug/MonoDevelop.AddinMaker.dll</AddinFile>
<BuildFile>MonoDevelop.AddinMaker.sln</BuildFile>
<BuildConfiguration>Debug</BuildConfiguration>
</Project>
</AddinProject>
|
Make test logs not append | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="TESTFILE" class="ch.qos.logback.core.FileAppender">
<file>${log.file:-build/test.log}</file>
<append>true</append>
<encoder>
<pattern>%-5level %logger{24} - %msg%n</pattern>
</encoder>
</appender>
<appender name="CONSOLE... | <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="TESTFILE" class="ch.qos.logback.core.FileAppender">
<file>${log.file:-build/test.log}</file>
<append>false</append>
<encoder>
<pattern>%-5level %logger{24} - %msg%n</pattern>
</encoder>
</appender>
<appender name="CONSOL... |
Move registration of App plugin from config.xml -> code | <?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Versi... | <?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Versi... |
Update version code and name | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.peo3.android.intentspooler"
android:versionCode="3"
android:versionName="1.2" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
... | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.peo3.android.intentspooler"
android:versionCode="4"
android:versionName="1.3" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
... |
Remove `subscribers_last_week` field from XML template. | <podcasts>
{% for podcast in podcasts %}
<podcast>
<title>{{ podcast.title|default:"" }}</title>
<url>{{ podcast.url }}</url>
<website>{{ podcast.website|default:"" }}</website>
<mygpo_link>{{ podcast.mygpo_link }}</mygpo_link>
<author>{{ podcast.author|default:"" }}</author>
<description>{{ podcast.descr... | <podcasts>
{% for podcast in podcasts %}
<podcast>
<title>{{ podcast.title|default:"" }}</title>
<url>{{ podcast.url }}</url>
<website>{{ podcast.website|default:"" }}</website>
<mygpo_link>{{ podcast.mygpo_link }}</mygpo_link>
<author>{{ podcast.author|default:"" }}</author>
<description>{{ podcast.descr... |
Remove vestiges of Subversion; switch to Git. | <?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AntConfiguration">
<defaultAnt bundledAnt="true" />
<buildFile url="file://$PROJECT_DIR$/rearranger.xml">
<additionalClassPath />
<antReference projectDefault="true" />
<customJdkName value="" />
<maximumHeap... | <?xml version="1.0" encoding="UTF-8"?>
<project version="4" /> |
Make labels more legible on large lists of devices | <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/shaded_background"/>
<padding
android:bottom="4dp"
android:left="12dp"
android:right="12dp"
android:top="4dp"/>
<corners
android:radi... | <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#8222"/>
<padding
android:bottom="4dp"
android:left="12dp"
android:right="12dp"
android:top="4dp"/>
<corners
android:radius="2dp"/>
</shape> |
Fix content description on the nav rail. | <?xml version="1.0" encoding="utf-8"?>
<!--
~ 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/l... | <?xml version="1.0" encoding="utf-8"?>
<!--
~ 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/l... |
Remove the snmp-config.xml overriding parameters. Best use of these are when used to create a specific package that collects from an addtional agent on systems and the snmp-confg parameters need to be overridden. | <?xml version="1.0"?>
<?castor class-name="org.opennms.netmgt.collectd.CollectdConfiguration"?>
<collectd-configuration
threads="50">
<package name="example1">
<filter>IPADDR IPLIKE *.*.*.*</filter>
<specific>0.0.0.0</specific>
<include-range begin="1.1.1.1" end="254.254.254.254"/>
<include-url>file:@inst... | <?xml version="1.0"?>
<?castor class-name="org.opennms.netmgt.collectd.CollectdConfiguration"?>
<collectd-configuration
threads="50">
<package name="example1">
<filter>IPADDR IPLIKE *.*.*.*</filter>
<specific>0.0.0.0</specific>
<include-range begin="1.1.1.1" end="254.254.254.254"/>
<include-url>file:@inst... |
Add text for Refresh button | <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Sunshine</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragm... | <?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Sunshine</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragm... |
Add ignore for new getLock method in JobLockService. | <differences>
<!-- We've intentionally added new getter methods to ServiceRegistry -->
<difference>
<className>**/ServiceRegistry</className>
<field>**</field>
<method>* get*</method>
<differenceType>7012</differenceType>
</difference>
<!-- getBlocklist method was added t... | <differences>
<!-- We've intentionally added new getter methods to ServiceRegistry -->
<difference>
<className>**/ServiceRegistry</className>
<field>**</field>
<method>* get*</method>
<differenceType>7012</differenceType>
</difference>
<!-- getBlocklist method was added t... |
Update restx.io version to 0.32 | <?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.v... | <?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.v... |
Add SLF4J simple dependency to POM file | <project>
<modelVersion>4.0.0</modelVersion>
<groupId>groupId</groupId>
<artifactId>job-scheduler</artifactId>
<version>1</version>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
... | <project>
<modelVersion>4.0.0</modelVersion>
<groupId>groupId</groupId>
<artifactId>job-scheduler</artifactId>
<version>1</version>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
... |
Update Maven version for API 7.x development | <?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.h... | <?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.h... |
Fix wrong dependency injection of ShariffShareBlockService | <?xml version="1.0" encoding="UTF-8"?>
<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">
<services>
<service id="core23_shariff.block.s... | <?xml version="1.0" encoding="UTF-8"?>
<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">
<services>
<service id="core23_shariff.block.s... |
Add INTERNET permission so that getInetAddress() works | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cc.mvdan.libaccesspointexample"
android:installLocation="auto"
>
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-permission android:name="android.pe... | <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cc.mvdan.libaccesspointexample"
android:installLocation="auto"
>
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-permission android:name="android.pe... |
Remove locationbar_height value, and increace actionbar_height slightly | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2011 That Amazing Web Ltd.
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 2011 That Amazing Web Ltd.
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
... |
Whitelist all network traffic for testing in simulator | <?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>Environmental Hazards</name>
<description>
An application for tracking environmental hazards in your area.
</descrip... | <?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>Environmental Hazards</name>
<description>
An application for tracking environmental hazards in your area.
</descrip... |
Fix view. * Add col-xs-12 to input | <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2016 LasLabs Inc.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<template id="patient_detail" inherit_id="website_portal_medical_patient.patient_detail">
<xpath expr="//div[div[label[@for='gender']]]" position="after">
... | <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2016 LasLabs Inc.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<template id="patient_detail" inherit_id="website_portal_medical_patient.patient_detail">
<xpath expr="//div[div[label[@for='gender']]]" position="after">
... |
Make suggestion text smaller and ellipsize it if too long | <?xml version="1.0" encoding="utf-8"?>
<com.gh4a.widget.StyleableTextView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?selectableItemBackground"
... | <?xml version="1.0" encoding="utf-8"?>
<com.gh4a.widget.StyleableTextView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?selectableItemBackground"
... |
Move zanata-rest-client from common/ to client/ | <?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>
<artifactId>common</artifactId>
<na... | <?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>
<artifactId>common</artifactId>
<na... |
Update platform 0.9.0 to 0.9.1 | <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>
<groupId>com.axelor</groupId>
<artifactId>axelor-erp-parent</artifactId>
<version>0.9.0-SNAPSHOT<... | <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>
<groupId>com.axelor</groupId>
<artifactId>axelor-erp-parent</artifactId>
<version>0.9.1-SNAPSHOT<... |
Remove ES configs from BDB & Persistit assemblies | <assembly>
<id>${distribution.assembly.name}-${project.version}</id>
<baseDirectory>titan-${distribution.assembly.name}-${project.version}</baseDirectory>
<formats>
<format>zip</format>
<format>tar.bz2</format>
</formats>
<componentDescriptors>
<componentDescriptor>common.c... | <assembly>
<id>${distribution.assembly.name}-${project.version}</id>
<baseDirectory>titan-${distribution.assembly.name}-${project.version}</baseDirectory>
<formats>
<format>zip</format>
<format>tar.bz2</format>
</formats>
<componentDescriptors>
<componentDescriptor>common.c... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.