Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Use package instead of install phase
<?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"> <parent> <groupId>io.enmasse</groupId> <artifactId>artemis</artifactId> <version>0.16-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jmx_exporter</artifactId> <dependencies> <dependency> <groupId>io.prometheus.jmx</groupId> <artifactId>jmx_prometheus_javaagent</artifactId> <version>0.1.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>install</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <parent> <groupId>io.enmasse</groupId> <artifactId>artemis</artifactId> <version>0.16-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jmx_exporter</artifactId> <dependencies> <dependency> <groupId>io.prometheus.jmx</groupId> <artifactId>jmx_prometheus_javaagent</artifactId> <version>0.1.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
Revert Arquillian appDeployTimeout to 600 seconds
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://jboss.org/schema/arquillian" xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> <engine> <property name="deploymentExportPath">target/</property> </engine> <container qualifier="websphere" default="true"> <configuration> <property name="wlpHome">target/wlp</property> <property name="serverName">websocketServer</property> <property name="httpPort">9080</property> <property name="outputToConsole">true</property> <property name="appDeployTimeout">60</property> </configuration> </container> </arquillian>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://jboss.org/schema/arquillian" xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> <engine> <property name="deploymentExportPath">target/</property> </engine> <container qualifier="websphere" default="true"> <configuration> <property name="wlpHome">target/wlp</property> <property name="serverName">websocketServer</property> <property name="httpPort">9080</property> <property name="outputToConsole">true</property> <property name="appDeployTimeout">600</property> </configuration> </container> </arquillian>
Add UTC timestamp to logs.
<!-- https://stackoverflow.com/questions/5731162/xml-schema-or-dtd-for-logback-xml --> <!--suppress ALL --> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%-5marker [%level] %msg%n</pattern> </encoder> </appender> <root level="info"> <appender-ref ref="STDOUT"/> </root> </configuration>
<!-- https://stackoverflow.com/questions/5731162/xml-schema-or-dtd-for-logback-xml --> <!--suppress ALL --> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%-5marker %date{"yyyy-MM-dd'T'HH:mm:ss,SSSXXX", UTC} [%level] %msg%n</pattern> </encoder> </appender> <root level="info"> <appender-ref ref="STDOUT"/> </root> </configuration>
Create new testsuite for chess API
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="bootstrap/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false"> <testsuites> <testsuite name="Application Test Suite"> <directory>./tests/</directory> </testsuite> </testsuites> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> <env name="DB_DRIVER" value="sqlite" /> </php> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="bootstrap/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false"> <testsuites> <testsuite name="Application Test Suite"> <directory>./tests/</directory> </testsuite> <testsuite name="Chess API"> <file>./tests/squareTest.php</file> <file>./tests/MoveTest.php</file> <file>./tests/PositionTest.php</file> </testsuite> </testsuites> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> <env name="DB_DRIVER" value="sqlite" /> </php> </phpunit>
Change settings to use Java 8
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="EntryPointsManager"> <entry_points version="2.0" /> </component> <component name="ProjectKey"> <option name="state" value="project://e2804f05-5315-4fc6-a121-c522a6c26470" /> </component> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <output url="file://$PROJECT_DIR$/out" /> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="EntryPointsManager"> <entry_points version="2.0" /> </component> <component name="ProjectKey"> <option name="state" value="project://e2804f05-5315-4fc6-a121-c522a6c26470" /> </component> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <output url="file://$PROJECT_DIR$/out" /> </component> </project>
Move settings to top, show if room & add icon
<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:context="com.gmail.alexellingsen.g2theming.MainActivity"> <item android:id="@+id/action_reset_default" android:showAsAction="never" android:title="@string/action_reset_default"/> <item android:id="@+id/action_enable_debugging" android:checkable="true" android:showAsAction="never" android:title="@string/enable_debugging"/> <item android:id="@+id/action_settings" android:showAsAction="never" android:title="@string/settings"/> </menu>
<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:context="com.gmail.alexellingsen.g2theming.MainActivity"> <item android:id="@+id/action_settings" android:icon="@android:drawable/ic_menu_preferences" android:showAsAction="ifRoom" android:title="@string/settings"/> <item android:id="@+id/action_enable_debugging" android:checkable="true" android:showAsAction="never" android:title="@string/enable_debugging"/> <item android:id="@+id/action_reset_default" android:showAsAction="never" android:title="@string/action_reset_default"/> </menu>
Disable suggestions for search input.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res/com.peer1.internetmap" android:id="@+id/LinearLayout1" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/orange" > <EditText android:id="@+id/searchEdit" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:ems="10" android:hint="@string/searchHint" > <requestFocus /> </EditText> <Button android:id="@+id/closeBtn" style="?android:attr/buttonStyleSmall" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="dismissSearchPopup" android:text="X" /> </LinearLayout> <ListView android:id="@+id/searchResultsView" android:layout_width="match_parent" android:layout_height="wrap_content" > </ListView> </LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res/com.peer1.internetmap" android:id="@+id/LinearLayout1" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/orange" > <EditText android:id="@+id/searchEdit" android:layout_width="0dip" android:layout_height="wrap_content" android:layout_weight="1" android:ems="10" android:hint="@string/searchHint" android:inputType="textNoSuggestions|textVisiblePassword" > <requestFocus /> </EditText> <Button android:id="@+id/closeBtn" style="?android:attr/buttonStyleSmall" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="dismissSearchPopup" android:text="X" /> </LinearLayout> <ListView android:id="@+id/searchResultsView" android:layout_width="match_parent" android:layout_height="wrap_content" > </ListView> </LinearLayout>
Update the cookie path for the sample Tomcat7 configuration file
<Context sessionCookiePath="/"> <!-- JDBC datasource --> <Resource name="jdbc/ontrack" auth="Container" type="javax.sql.DataSource" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" maxActive="20" minIdle="5" maxIdle="10" maxWait="1000" maxAge="1200000" removeAbandoned="true" removeAbandonedTimeout="60" testWhileIdle="true" validationQuery="SELECT 1" timeBetweenEvictionRunsMillis="60000" logAbandoned="true" defaultAutoCommit="false" username="ontrack" password="ontrack" driverClassName="org.h2.Driver" url="jdbc:h2:file:/opt/ontrack/db/data;AUTOCOMMIT=OFF;MVCC=true;MODE=MySQL" /> </Context>
<Context sessionCookiePath="/ontrack"> <!-- JDBC datasource --> <Resource name="jdbc/ontrack" auth="Container" type="javax.sql.DataSource" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" maxActive="20" minIdle="5" maxIdle="10" maxWait="1000" maxAge="1200000" removeAbandoned="true" removeAbandonedTimeout="60" testWhileIdle="true" validationQuery="SELECT 1" timeBetweenEvictionRunsMillis="60000" logAbandoned="true" defaultAutoCommit="false" username="ontrack" password="ontrack" driverClassName="org.h2.Driver" url="jdbc:h2:file:/opt/ontrack/db/data;AUTOCOMMIT=OFF;MVCC=true;MODE=MySQL" /> </Context>
Revert "Migrated deprecated PHP Unit schema"
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" > <testsuites> <testsuite name="Package Test Suite"> <directory suffix=".php">./tests/</directory> </testsuite> </testsuites> <coverage processUncoveredFiles="true"> <include> <directory suffix=".php">./src/PanelTraits/</directory> <file>./src/CrudPanel.php</file> </include> <exclude> <file>./src/PanelTraits/AutoFocus.php</file> <file>./src/PanelTraits/Errors.php</file> <file>./src/PanelTraits/Filters.php</file> <file>./src/PanelTraits/Query.php</file> <file>./src/PanelTraits/Reorder.php</file> <file>./src/PanelTraits/Views.php</file> <file>./src/PanelTraits/ViewsAndRestoresRevisions.php</file> </exclude> </coverage> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" > <testsuites> <testsuite name="Package Test Suite"> <directory suffix=".php">./tests/</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src/PanelTraits/</directory> <file>./src/CrudPanel.php</file> <exclude> <file>./src/PanelTraits/AutoFocus.php</file> <file>./src/PanelTraits/Errors.php</file> <file>./src/PanelTraits/Filters.php</file> <file>./src/PanelTraits/Query.php</file> <file>./src/PanelTraits/Reorder.php</file> <file>./src/PanelTraits/Views.php</file> <file>./src/PanelTraits/ViewsAndRestoresRevisions.php</file> </exclude> </whitelist> </filter> </phpunit>
Update all versions to beta-1-SNAPSHOT
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>maven-plugin-parent</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.0-alpha-3</version> </parent> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.0-alpha-4-SNAPSHOT</version> <packaging>maven-plugin</packaging> <name>Maven Eclipse Plugin</name> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0-alpha-3</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact-manager</artifactId> <version>2.0-alpha-3</version> <scope>test</scope> </dependency> <dependency> <groupId>plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.0-alpha-3</version> </dependency> <dependency> <groupId>plexus</groupId> <artifactId>plexus-container-default</artifactId> <version>1.0-alpha-4</version> <scope>test</scope> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>maven-plugin-parent</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.0-beta-1-SNAPSHOT</version> </parent> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.0-beta-1-SNAPSHOT</version> <packaging>maven-plugin</packaging> <name>Maven Eclipse Plugin</name> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0-beta-1-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact-manager</artifactId> <version>2.0-beta-1-SNAPSHOT</version> <scope>test</scope> </dependency> <dependency> <groupId>plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.0-alpha-3</version> </dependency> <dependency> <groupId>plexus</groupId> <artifactId>plexus-container-default</artifactId> <version>1.0-alpha-4</version> <scope>test</scope> </dependency> </dependencies> </project>
Use xinclude to import the vorbis-over-rtp internet draft text. This only works on xsltproc. Saxon and Xalan implement a different extension, which is given in a comment.
<?xml version="1.0" ?> <appendix id="vorbis-over-rtp"> <appendixinfo> <releaseinfo> <emphasis>$Id: a2-encapsulation_rtp.xml,v 1.1 2002/10/16 22:46:44 giles Exp $</emphasis> </releaseinfo> </appendixinfo> <title>Vorbis encapsulation in RTP</title> <screen> <!-- the draft-rtp entity must be declared in the enclosing document. currently it points to the internet draft text file --> <![CDATA[ &draft-rtp; ]]> </screen> </appendix> <!-- end rtp appendix -->
<?xml version="1.0" ?> <appendix id="vorbis-over-rtp"> <appendixinfo> <releaseinfo> <emphasis>$Id: a2-encapsulation_rtp.xml,v 1.2 2002/10/26 13:21:35 giles Exp $</emphasis> </releaseinfo> </appendixinfo> <title>Vorbis encapsulation in RTP</title> <literallayout class="monospaced"> <!-- this works with extensions implemented in Saxon and Xalan <textobject><textdata fileref="../draft-moffitt-vorbis-rtp-00.txt"/></textobject> --> <!-- this works with xinclude, implemented in xsltproc --> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../draft-moffitt-vorbis-rtp-00.txt" parse="text"/> </literallayout> </appendix> <!-- end rtp appendix -->
Fix model name in l10n_nl_tax_statement
<?xml version="1.0" encoding="utf-8"?> <odoo> <report id="action_report_tax_statement" model="l10n.nl.vat.statement" string="NL Tax Statement" report_type="qweb-pdf" name="l10n_nl_tax_statement.report_tax_statement" file="l10n_nl_tax_statement.report_tax_statement" /> <record id="paperformat_nl_tax_statement" model="report.paperformat"> <field name="name">Dutch Tax Statement qweb paperformat</field> <field name="default" eval="True" /> <field name="format">A4</field> <field name="page_height">0</field> <field name="page_width">0</field> <field name="orientation">Portrait</field> <field name="margin_top">12</field> <field name="margin_bottom">8</field> <field name="margin_left">5</field> <field name="margin_right">5</field> <field name="header_line" eval="False" /> <field name="header_spacing">10</field> <field name="dpi">110</field> </record> <record id="action_report_tax_statement" model="ir.actions.report.xml"> <field name="paperformat_id" ref="paperformat_nl_tax_statement"/> </record> </odoo>
<?xml version="1.0" encoding="utf-8"?> <odoo> <report id="action_report_tax_statement" model="l10n.nl.vat.statement" string="NL Tax Statement" report_type="qweb-pdf" name="l10n_nl_tax_statement.report_tax_statement" file="l10n_nl_tax_statement.report_tax_statement" /> <record id="paperformat_nl_tax_statement" model="report.paperformat"> <field name="name">Dutch Tax Statement qweb paperformat</field> <field name="default" eval="True" /> <field name="format">A4</field> <field name="page_height">0</field> <field name="page_width">0</field> <field name="orientation">Portrait</field> <field name="margin_top">12</field> <field name="margin_bottom">8</field> <field name="margin_left">5</field> <field name="margin_right">5</field> <field name="header_line" eval="False" /> <field name="header_spacing">10</field> <field name="dpi">110</field> </record> <record id="action_report_tax_statement" model="ir.actions.report"> <field name="paperformat_id" ref="paperformat_nl_tax_statement"/> </record> </odoo>
Add Eugene Semenov to the Jarvis Test Bot
<?xml version="1.0"?> <configuration> <account> <login>jarvis.systeme@gmail.com</login> <password>jarvispowered</password> </account> <whitelist> <id>nephilim.seraphin@gmail.com</id> <id>laurene.syx@gmail.com</id> <id>guillaume.lacouque@gmail.com</id> <id>claire.beaufils@gmail.com</id> </whitelist> <botname>JARVIS</botname> </configuration>
<?xml version="1.0"?> <configuration> <account> <login>jarvis.systeme@gmail.com</login> <password>jarvispowered</password> </account> <whitelist> <id>nephilim.seraphin@gmail.com</id> <id>truestealth117@gmail.com</id> </whitelist> <botname>JARVIS</botname> </configuration>
Handle additional config changes to avoid activity restart
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.sonelli.juicessh.performancemonitor"> <uses-permission android:name="com.sonelli.juicessh.api.v1.permission.READ_CONNECTIONS" /> <uses-permission android:name="com.sonelli.juicessh.api.v1.permission.OPEN_SESSIONS" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/Theme.AppCompat.Light"> <activity android:name=".activities.MainActivity" android:configChanges="orientation|screenSize|keyboardHidden" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".activities.AboutActivity" android:label="@string/title_activity_about" android:parentActivityName=".activities.MainActivity"> <meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".activities.MainActivity" /> </activity> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.sonelli.juicessh.performancemonitor"> <uses-permission android:name="com.sonelli.juicessh.api.v1.permission.READ_CONNECTIONS" /> <uses-permission android:name="com.sonelli.juicessh.api.v1.permission.OPEN_SESSIONS" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/Theme.AppCompat.Light"> <activity android:name=".activities.MainActivity" android:configChanges="orientation|screenSize|keyboardHidden|keyboard|screenLayout|smallestScreenSize" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".activities.AboutActivity" android:label="@string/title_activity_about" android:parentActivityName=".activities.MainActivity"> <meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".activities.MainActivity" /> </activity> </application> </manifest>
Use basic scaling with maximum of one instance.
<?xml version="1.0" encoding="utf-8"?> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> <threadsafe>false</threadsafe> <sessions-enabled>true</sessions-enabled> <runtime>java8</runtime> <static-files> <!-- prevent unwanted caching when accessing via the web preview server --> <include path="/**" expiration="0s" /> </static-files> <manual-scaling> <instances>1</instances> </manual-scaling> <env-variables> <env-var name="DOWNLOAD_QUEUE_ID" value="download-queue" /> <env-var name="LOCATION_ID" value="us-central1" /> </env-variables> </appengine-web-app>
<?xml version="1.0" encoding="utf-8"?> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> <threadsafe>false</threadsafe> <sessions-enabled>true</sessions-enabled> <runtime>java8</runtime> <static-files> <!-- prevent unwanted caching when accessing via the web preview server --> <include path="/**" expiration="0s" /> </static-files> <instance-class>B1</instance-class> <basic-scaling> <max-instances>1</max-instances> <idle-timeout>1m</idle-timeout> </basic-scaling> <env-variables> <env-var name="DOWNLOAD_QUEUE_ID" value="download-queue" /> <env-var name="LOCATION_ID" value="us-central1" /> </env-variables> </appengine-web-app>
Set storage minsdk to 14, to be consistent with rest of androidx
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright (C) 2020 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="androidx.test.services.storage" > <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="30" /> </manifest>
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright (C) 2020 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="androidx.test.services.storage" > <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="30" /> </manifest>
Add a new line at the end of the file.
<component name="CopyrightManager"> <copyright> <option name="allowReplaceKeyword" value="2000-" /> <option name="myName" value="TeamDev Open-Source" /> <option name="notice" value="Copyright 2016, TeamDev Ltd. All rights reserved.&#10;&#10;Redistribution and use in source and/or binary forms, with or without&#10;modification, must retain the above copyright notice and the following&#10;disclaimer.&#10;&#10;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&#10;&quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&#10;LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&#10;A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT&#10;OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,&#10;SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT&#10;LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,&#10;DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY&#10;THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT&#10;(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE&#10;OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." /> </copyright> </component>
<component name="CopyrightManager"> <copyright> <option name="allowReplaceKeyword" value="2000-" /> <option name="myName" value="TeamDev Open-Source" /> <option name="notice" value="Copyright 2016, TeamDev Ltd. All rights reserved.&#10;&#10;Redistribution and use in source and/or binary forms, with or without&#10;modification, must retain the above copyright notice and the following&#10;disclaimer.&#10;&#10;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&#10;&quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&#10;LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&#10;A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT&#10;OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,&#10;SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT&#10;LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,&#10;DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY&#10;THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT&#10;(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE&#10;OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." /> </copyright> </component>
Make search box text color white
<?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="match_parent" android:orientation="vertical"> <EditText android:id="@+id/search_edit" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10"> <requestFocus /> </EditText> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <EditText android:id="@+id/search_edit" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@android:color/white" android:ems="10"> <requestFocus /> </EditText> </LinearLayout>
Add switch menu thai or english
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item android:id="@+id/short_by_latest" android:title="@string/short_by_latest" app:showAsAction="never" /> <item android:id="@+id/short_by_name" android:title="@string/short_by_name" app:showAsAction="never" /> <item android:id="@+id/short_by_position" android:title="@string/short_by_position" app:showAsAction="never" /> </menu>
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item android:title="" android:id="@+id/setting" android:icon="@drawable/ic_setting" app:showAsAction="always"> <menu> <item android:id="@+id/change_to_english" android:title="@string/change_to_english" app:showAsAction="never" /> <item android:id="@+id/change_to_thai" android:title="@string/change_to_thai" app:showAsAction="never" /> </menu> </item> <item android:id="@+id/short_by_latest" android:title="@string/short_by_latest" app:showAsAction="never" /> <item android:id="@+id/short_by_name" android:title="@string/short_by_name" app:showAsAction="never" /> <item android:id="@+id/short_by_position" android:title="@string/short_by_position" app:showAsAction="never" /> </menu>
Bump maven-profiler from 3.0 to 3.1.1
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2009-2020 the original author or authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <extensions> <extension> <groupId>fr.jcgay.maven</groupId> <artifactId>maven-profiler</artifactId> <version>3.0</version> </extension> </extensions>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2009-2020 the original author or authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <extensions> <extension> <groupId>fr.jcgay.maven</groupId> <artifactId>maven-profiler</artifactId> <version>3.1.1</version> </extension> </extensions>
Update to Felix module related to recent artifactId, package, and other renaming: o org.osgi to org.osgi.core in dependency manager
<project> <parent> <groupId>org.apache.felix</groupId> <artifactId>felix</artifactId> <version>0.8.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>osgi-bundle</packaging> <name>Apache Felix Dependency Manager</name> <artifactId>org.apache.felix.dependencymanager</artifactId> <dependencies> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>org.osgi</artifactId> <version>${pom.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix.plugins</groupId> <artifactId>maven-osgi-plugin</artifactId> <version>${pom.version}</version> <extensions>true</extensions> <configuration> <osgiManifest> <bundleName>Dependency Manager</bundleName> <bundleVendor>Apache Software Foundation</bundleVendor> <bundleDescription> A bundle that provides a run-time service dependency manager. </bundleDescription> <importPackage> org.osgi.framework </importPackage> <exportPackage> org.apache.felix.dependencymanager </exportPackage> </osgiManifest> </configuration> </plugin> </plugins> </build> </project>
<project> <parent> <groupId>org.apache.felix</groupId> <artifactId>felix</artifactId> <version>0.8.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>osgi-bundle</packaging> <name>Apache Felix Dependency Manager</name> <artifactId>org.apache.felix.dependencymanager</artifactId> <dependencies> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>org.osgi.core</artifactId> <version>${pom.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix.plugins</groupId> <artifactId>maven-osgi-plugin</artifactId> <version>${pom.version}</version> <extensions>true</extensions> <configuration> <osgiManifest> <bundleName>Dependency Manager</bundleName> <bundleVendor>Apache Software Foundation</bundleVendor> <bundleDescription> A bundle that provides a run-time service dependency manager. </bundleDescription> <importPackage> org.osgi.framework </importPackage> <exportPackage> org.apache.felix.dependencymanager </exportPackage> </osgiManifest> </configuration> </plugin> </plugins> </build> </project>
Bring step 1 up to date.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE programlisting PUBLIC "-//OASIS//DTD DocBook V5.0//EN" "http://docbook.org/xml/5.0/dtd/docbook.dtd"> <programlisting id="ball-01-Makefile.am" xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en" xmlns:xi="http://www.w3.org/2001/XInclude"><!-- Tutorial: libguac-client-ball Step: 1 File: Makefile.am --><![CDATA[ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 AM_CFLAGS = -Werror -Wall -pedantic -Iinclude lib_LTLIBRARIES = libguac-client-ball.la # All source files of libguac-client-ball libguac_client_ball_la_SOURCES = src/ball_client.c # libtool versioning information libguac_client_ball_la_LDFLAGS = -version-info 0:0:0 ]]></programlisting>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE programlisting PUBLIC "-//OASIS//DTD DocBook V5.0//EN" "http://docbook.org/xml/5.0/dtd/docbook.dtd"> <programlisting id="ball-01-Makefile.am" xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en" xmlns:xi="http://www.w3.org/2001/XInclude"><!-- Tutorial: libguac-client-ball Step: 1 File: Makefile.am --><![CDATA[ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 AM_CFLAGS = -Werror -Wall -pedantic lib_LTLIBRARIES = libguac-client-ball.la # All source files of libguac-client-ball libguac_client_ball_la_SOURCES = src/ball_client.c # libtool versioning information libguac_client_ball_la_LDFLAGS = -version-info 0:0:0 ]]></programlisting>
Fix formatting in xml fixtures
<?xml version="1.0" encoding="UTF-8"?> <issues format="3" by="lint 21.1"> <issue id="DefaultLocale" severity="Warning" message="Implicitly ..." category="Correctness" priority="6" summary="Finds ..." explanation="Calling ..." url="http://developer.android.com/reference/java/util/Locale.html#default_locale"> <location file="path/to/File.class"/> </issue> <issue id="DefaultLocale" severity="Warning" message="Implicitly ..." category="Correctness" priority="6" summary="Finds ..." explanation="Calling ..." url="http://developer.android.com/reference/java/util/Locale.html#default_locale"> <location file="path/to/AnotherFile.class"/> </issue> <issue id="NewApi" severity="Error" message="Call ..." category="Correctness" priority="6" summary="Finds ..." explanation="This ..." quickfix="adt"> <location file="path/to/File.class"/> </issue> </issues>
<?xml version="1.0" encoding="UTF-8"?> <issues format="3" by="lint 21.1"> <issue id="DefaultLocale" severity="Warning" message="Implicitly ..." category="Correctness" priority="6" summary="Finds ..." explanation="Calling ..." url="http://developer.android.com/reference/java/util/Locale.html#default_locale"> <location file="path/to/File.class"/> </issue> <issue id="DefaultLocale" severity="Warning" message="Implicitly ..." category="Correctness" priority="6" summary="Finds ..." explanation="Calling ..." url="http://developer.android.com/reference/java/util/Locale.html#default_locale"> <location file="path/to/AnotherFile.class"/> </issue> <issue id="NewApi" severity="Error" message="Call ..." category="Correctness" priority="6" summary="Finds ..." explanation="This ..." quickfix="adt"> <location file="path/to/File.class"/> </issue> </issues>
Add patch-management to "patch" feature as dependency
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2005-2015 Red Hat, Inc. Red Hat licenses this file to you under the Apache License, version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <features name="patch-${project.version}"> <feature name="patch" version="${project.version}" resolver="(obr)"> <bundle>mvn:io.fabric8.patch/patch-core/${project.version}</bundle> <bundle>mvn:io.fabric8.patch/patch-commands/${project.version}</bundle> </feature> </features>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2005-2015 Red Hat, Inc. Red Hat licenses this file to you under the Apache License, version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <features name="patch-${project.version}"> <feature name="patch" version="${project.version}" resolver="(obr)"> <bundle>mvn:io.fabric8.patch/patch-core/${project.version}</bundle> <bundle>mvn:io.fabric8.patch/patch-commands/${project.version}</bundle> <bundle dependency="true">mvn:io.fabric8.patch/patch-management/${project.version}</bundle> </feature> </features>
Update Google Maps API key
<?xml version="1.0" encoding="utf-8"?> <manifest package="mn.devfest" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.INTERNET"/> <application android:name=".DevFestApplication" android:allowBackup="true" android:fullBackupContent="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/Theme.DevFestMn"> <activity android:name=".MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <activity android:name=".sessions.details.SessionDetailsActivity"/> <activity android:name=".sessions.rating.RateSessionActivity"/> <activity android:name=".speakers.SpeakerDetailsActivity"/> <!-- TODO extract all of this nonsense --> <meta-data android:name="com.google.android.geo.API_KEY" android:value="AIzaSyC5NntnpnPY_pYLDyZivim9JnR0jhgU8zM"/> <meta-data android:name="io.fabric.ApiKey" android:value="987e4f84ca50f911291eb02e5ae47c021127d78c" /> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest package="mn.devfest" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.INTERNET"/> <application android:name=".DevFestApplication" android:allowBackup="true" android:fullBackupContent="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/Theme.DevFestMn"> <activity android:name=".MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <activity android:name=".sessions.details.SessionDetailsActivity"/> <activity android:name=".sessions.rating.RateSessionActivity"/> <activity android:name=".speakers.SpeakerDetailsActivity"/> <!-- TODO extract all of this nonsense --> <meta-data android:name="com.google.android.geo.API_KEY" android:value="AIzaSyAHzau9kLj7UiLi9w8lkxN-fNpP4UxjM8A"/> <meta-data android:name="io.fabric.ApiKey" android:value="987e4f84ca50f911291eb02e5ae47c021127d78c" /> </application> </manifest>
Add app color palette to wearable app
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="background">#000000</color> <color name="background2">#000088</color> <color name="digital_text">#ffffff</color> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="background">#000000</color> <color name="background2">#000088</color> <color name="digital_text">#ffffff</color> <color name="white">#FFFFFF</color> <color name="grey">#cccccc</color> <color name="grey_700">#646464</color> <color name="black">#000000</color> <!-- using the "Light Blue" Material Palette --> <color name="primary">#03A9F4</color> <!-- 500 --> <color name="primary_dark">#0288D1</color> <!-- 700 --> <color name="primary_light">#B3E5FC</color> <!-- 100 --> <color name="accent">#FFD740</color> <color name="primary_text">#212121</color> <color name="secondary_text">#727272</color> <!-- our detail accent colors --> <color name="detail_accent_pane_background">#455A64</color> <color name="detail_accent_label">#90A4AE</color> <!-- the activated state color --> <color name="activated">#E0E0E0</color> <!-- the color used for the low temperature in the forecast list --> <color name="forecast_low_text">#607D8B</color> </resources>
Add PostgreSQL to .tar.gz assembly.
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> <id>dist</id> <baseDirectory>${project.artifactId}-${project.version}</baseDirectory> <!-- Output tar.gz --> <formats> <format>tar.gz</format> </formats> <!-- Include all implementations --> <fileSets> <!-- MySQL implementation --> <fileSet> <outputDirectory>/mysql/schema</outputDirectory> <directory>modules/guacamole-auth-jdbc-mysql/schema</directory> </fileSet> <fileSet> <directory>modules/guacamole-auth-jdbc-mysql/target/extension</directory> <outputDirectory>/mysql</outputDirectory> <includes> <include>*.jar</include> </includes> </fileSet> </fileSets> </assembly>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> <id>dist</id> <baseDirectory>${project.artifactId}-${project.version}</baseDirectory> <!-- Output tar.gz --> <formats> <format>tar.gz</format> </formats> <!-- Include all implementations --> <fileSets> <!-- MySQL implementation --> <fileSet> <outputDirectory>/mysql/schema</outputDirectory> <directory>modules/guacamole-auth-jdbc-mysql/schema</directory> </fileSet> <fileSet> <directory>modules/guacamole-auth-jdbc-mysql/target/extension</directory> <outputDirectory>/mysql</outputDirectory> <includes> <include>*.jar</include> </includes> </fileSet> <!-- PostgreSQL implementation --> <fileSet> <outputDirectory>/postgresql/schema</outputDirectory> <directory>modules/guacamole-auth-jdbc-postgresql/schema</directory> </fileSet> <fileSet> <directory>modules/guacamole-auth-jdbc-postgresql/target/extension</directory> <outputDirectory>/postgresql</outputDirectory> <includes> <include>*.jar</include> </includes> </fileSet> </fileSets> </assembly>
Add precicion and default value for shedlock liquibase script
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.10.xsd"> <changeSet author="schneider" id="add-shedlock"> <preConditions> <not> <tableExists tableName="shedlock"/> </not> </preConditions> <createTable tableName="shedlock"> <column name="name" type="VARCHAR(64)"> <constraints nullable="false" primaryKey="true"/> </column> <column name="lock_until" type="TIMESTAMP"> <constraints nullable="false"/> </column> <column name="locked_at" type="TIMESTAMP"> <constraints nullable="false"/> </column> <column name="locked_by" type="VARCHAR(255)"> <constraints nullable="false"/> </column> </createTable> </changeSet> </databaseChangeLog>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.10.xsd"> <changeSet author="schneider" id="add-shedlock"> <validCheckSum>8:8d3e6aaeff0d8838d329ebbaa95bc096</validCheckSum> <preConditions> <not> <tableExists tableName="shedlock"/> </not> </preConditions> <createTable tableName="shedlock"> <column name="name" type="VARCHAR(64)"> <constraints nullable="false" primaryKey="true"/> </column> <column name="lock_until" type="TIMESTAMP(3)"> <constraints nullable="false"/> </column> <column name="locked_at" type="TIMESTAMP(3)" defaultValueDate="NOW(3)"> <constraints nullable="false"/> </column> <column name="locked_by" type="VARCHAR(255)"> <constraints nullable="false"/> </column> </createTable> </changeSet> </databaseChangeLog>
Set a default app key to make tests pass
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="bootstrap/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="Application Test Suite"> <directory>./tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">app/</directory> </whitelist> </filter> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> </php> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="bootstrap/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="Application Test Suite"> <directory>./tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">app/</directory> </whitelist> </filter> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> <env name="APP_KEY" value="SomeRandomStringWith32Characters"/> </php> </phpunit>
Print all failures when running PHPUnit
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd" > <testsuites> <testsuite name="all"> <directory>./tests/</directory> </testsuite> </testsuites> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd" > <testsuites> <testsuite name="all"> <directory>./tests/</directory> </testsuite> </testsuites> </phpunit>
Hide application in Play Store for devices running Android 4.4 or higher.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.michalmazur.orphanedtexts" android:versionCode="16" android:versionName="1.4" > <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="11"/> <uses-permission android:name="android.permission.READ_SMS"/> <uses-permission android:name="android.permission.WRITE_SMS"/> <uses-permission android:name="android.permission.READ_CONTACTS"/> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <activity android:label="@string/app_name" android:name=".OrphanedTextsActivity" > <intent-filter > <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.michalmazur.orphanedtexts" android:versionCode="17" android:versionName="1.4.1" > <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="11" android:maxSdkVersion="18"/> <uses-permission android:name="android.permission.READ_SMS"/> <uses-permission android:name="android.permission.WRITE_SMS"/> <uses-permission android:name="android.permission.READ_CONTACTS"/> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <activity android:label="@string/app_name" android:name=".OrphanedTextsActivity" > <intent-filter > <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
Add intent-filter for app link
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.kaqui"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme" android:fullBackupContent="@xml/backup_descriptor"> <activity android:name="org.kaqui.MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="org.kaqui.QuizzActivity" android:parentActivityName=".MainActivity" /> <activity android:name=".settings.KanjiSelectionActivity" android:parentActivityName=".MainActivity" /> <activity android:name=".settings.KanaSelectionActivity" android:parentActivityName=".MainActivity" /> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.kaqui"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme" android:fullBackupContent="@xml/backup_descriptor"> <activity android:name="org.kaqui.MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="https" android:host="kaqui.org" android:pathPrefix="/kaquiAppLink" /> </intent-filter> </activity> <activity android:name="org.kaqui.QuizzActivity" android:parentActivityName=".MainActivity" /> <activity android:name=".settings.KanjiSelectionActivity" android:parentActivityName=".MainActivity" /> <activity android:name=".settings.KanaSelectionActivity" android:parentActivityName=".MainActivity" /> </application> </manifest>
Fix mutation test plugin for build-tools module
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.jbb</groupId> <artifactId>jbb-build-tools</artifactId> <version>DEV-SNAPSHOT</version> <name>jBB Build Tools</name> <description>Custom configurations for maven plugins executed during jBB build</description> </project>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.jbb</groupId> <artifactId>jbb-build-tools</artifactId> <version>DEV-SNAPSHOT</version> <name>jBB Build Tools</name> <description>Custom configurations for maven plugins executed during jBB build</description> <build> <plugins> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <configuration> <!-- not needed to run mutation tests for this module --> <skip>true</skip> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>org.jbb</groupId> <artifactId>jbb-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> </project>
Stop trying to read GTFS schedule or frequency when not available.
<?xml version="1.0" encoding="utf-8"?> <resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation"> <integer name="gtfs_rts_db_version">20141027</integer> <string name="gtfs_rts_authority">org.mtransit.android.ca_lanaudiere_crtl_bus.gtfs</string> <string name="gtfs_status_for_poi_authority">@string/gtfs_rts_authority</string> <integer name="gtfs_rts_agency_type">3</integer> <string name="gtfs_rts_timezone">America/Montreal</string> <string name="gtfs_rts_area_min_lat">45.5896918011</string> <string name="gtfs_rts_area_max_lat">46.6840634802</string> <string name="gtfs_rts_area_min_lng">-74.2264320002</string> <string name="gtfs_rts_area_max_lng">-73.1705423597</string> <string name="gtfs_rts_color">0058AD</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation"> <integer name="gtfs_rts_db_version">20141027</integer> <string name="gtfs_rts_authority">org.mtransit.android.ca_lanaudiere_crtl_bus.gtfs</string> <string name="gtfs_status_for_poi_authority">@string/gtfs_rts_authority</string> <integer name="gtfs_rts_agency_type">3</integer> <bool name="gtfs_rts_schedule_available">true</bool> <bool name="gtfs_rts_frequency_available">false</bool> <!-- no frequencies --> <string name="gtfs_rts_timezone">America/Montreal</string> <string name="gtfs_rts_area_min_lat">45.5896918011</string> <string name="gtfs_rts_area_max_lat">46.6840634802</string> <string name="gtfs_rts_area_min_lng">-74.2264320002</string> <string name="gtfs_rts_area_max_lng">-73.1705423597</string> <string name="gtfs_rts_color">0058AD</string> </resources>
Reset log level for HikariCP
<?xml version="1.0" encoding="UTF-8"?> <configuration> <timestamp key="timestamp" datePattern="yyyy-MM-dd'T'HH_mm_ss"/> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>logs/report-${timestamp}.log</file> <encoder> <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="INFO"> <appender-ref ref="CONSOLE"/> <appender-ref ref="FILE"/> </root> <logger name="org.terasology" level="DEBUG" /> <logger name="org.jooq.Constants" level="WARN" /> <logger name="com.zaxxer.hikari" level="DEBUG" /> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <timestamp key="timestamp" datePattern="yyyy-MM-dd'T'HH_mm_ss"/> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>logs/report-${timestamp}.log</file> <encoder> <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="INFO"> <appender-ref ref="CONSOLE"/> <appender-ref ref="FILE"/> </root> <logger name="org.terasology" level="DEBUG" /> <logger name="org.jooq.Constants" level="WARN" /> </configuration>
Package kotlinx.dom into Anko IDEA plugin
<component name="ArtifactManager"> <artifact name="Plugin"> <output-path>$PROJECT_DIR$/out/artifacts/Plugin</output-path> <root id="root"> <element id="directory" name="lib"> <element id="archive" name="dsl-preview-plugin.jar"> <element id="module-output" name="idea-plugin" /> <element id="module-output" name="attrs" /> <element id="module-output" name="xml-converter" /> <element id="file-copy" path="$PROJECT_DIR$/preview/attrs.json" /> <element id="file-copy" path="$PROJECT_DIR$/preview/views.json" /> <element id="module-output" name="intentions" /> </element> <element id="library" level="project" name="asm" /> <element id="library" level="project" name="KotlinJavaRuntime" /> </element> </root> </artifact> </component>
<component name="ArtifactManager"> <artifact name="Plugin"> <output-path>$PROJECT_DIR$/out/artifacts/Plugin</output-path> <root id="root"> <element id="directory" name="lib"> <element id="archive" name="dsl-preview-plugin.jar"> <element id="module-output" name="idea-plugin" /> <element id="module-output" name="attrs" /> <element id="module-output" name="xml-converter" /> <element id="file-copy" path="$PROJECT_DIR$/preview/attrs.json" /> <element id="file-copy" path="$PROJECT_DIR$/preview/views.json" /> <element id="module-output" name="intentions" /> </element> <element id="library" level="project" name="asm" /> <element id="library" level="project" name="KotlinJavaRuntime" /> <element id="library" level="project" name="kotlinx.dom" /> </element> </root> </artifact> </component>
Reorder buttons in the button bar
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="?attr/buttonBarStyle" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@color/colorPrimary" android:orientation="horizontal" android:visibility="visible"> <Button android:id="@+id/createBarButton" style="?attr/buttonBarButtonStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/create_bar_button_text" android:textColor="@android:color/white" /> <Button android:id="@+id/cancelBarButton" style="?attr/buttonBarButtonStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/cancel_bar_button_text" android:textColor="@android:color/white" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="?attr/buttonBarStyle" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@color/colorPrimary" android:orientation="horizontal" android:visibility="visible"> <Button android:id="@+id/cancelBarButton" style="?attr/buttonBarButtonStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/cancel_bar_button_text" android:textColor="@android:color/white" /> <Button android:id="@+id/createBarButton" style="?attr/buttonBarButtonStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/create_bar_button_text" android:textColor="@android:color/white" /> </LinearLayout>
Change port for database connection
<?xml version="1.0" encoding="UTF-8"?> <Context path="/courses"> <Resource name="jdbc/coursedb" auth="Container" type="javax.sql.DataSource" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://devproserv.com/coursedb" username="javauser" password="zSxcvb" initialSize="10" maxActive="20" maxIdle="10" minIdle="5" maxWait="10000" testOnBorrow="true" testOnConnect="true" testOnReturn="true" testWhileIdle="true" validationQuery="SELECT 1" validationInterval="60000" minEvictableIdleTimeMillis="60000" timeBetweenEvictionRunsMillis="60000" removeAbandoned="true" removeAbandonedTimeout="60" logAbandoned="true" /> </Context>
<?xml version="1.0" encoding="UTF-8"?> <Context path="/courses"> <Resource name="jdbc/coursedb" auth="Container" type="javax.sql.DataSource" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://devproserv.com:54406/coursedb" username="javauser" password="zSxcvb" initialSize="10" maxActive="20" maxIdle="10" minIdle="5" maxWait="10000" testOnBorrow="true" testOnConnect="true" testOnReturn="true" testWhileIdle="true" validationQuery="SELECT 1" validationInterval="60000" minEvictableIdleTimeMillis="60000" timeBetweenEvictionRunsMillis="60000" removeAbandoned="true" removeAbandonedTimeout="60" logAbandoned="true" /> </Context>
Revert production runtime configuration Secret has been changed in production
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="FafApiApplication" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot" nameIsGenerated="true"> <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea"> <pattern> <option name="PATTERN" value="com.faforever.api.config.*" /> <option name="ENABLED" value="true" /> </pattern> </extension> <option name="SPRING_BOOT_MAIN_CLASS" value="com.faforever.api.FafApiApplication" /> <option name="VM_PARAMETERS" value="-Xmx128m" /> <option name="ALTERNATIVE_JRE_PATH" /> <module name="faf-api_main" /> <envs> <env name="GITHUB_WEBHOOK_SECRET" value="BrslzHzBHY" /> <env name="GITHUB_DEPLOYMENT_ENVIRONMENT" value="production" /> </envs> <method /> </configuration> </component>
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="FafApiApplication" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot" nameIsGenerated="true"> <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea"> <pattern> <option name="PATTERN" value="com.faforever.api.config.*" /> <option name="ENABLED" value="true" /> </pattern> </extension> <option name="SPRING_BOOT_MAIN_CLASS" value="com.faforever.api.FafApiApplication" /> <option name="VM_PARAMETERS" value="-Xmx128m" /> <option name="ALTERNATIVE_JRE_PATH" /> <module name="faf-api_main" /> <envs /> <method /> </configuration> </component>
Bump jackson.version from 2.11.3 to 2.12.0
<?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>au.gov.qld.pub</groupId> <artifactId>orders</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Queensland Government Ordering service</name> <description>Online order processor</description> <properties> <maven.build.timestamp.format>h:mm a, d MMMM yyyy</maven.build.timestamp.format> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <spring.version>5.2.9.RELEASE</spring.version> <jackson.version>2.11.3</jackson.version> </properties> <modules> <module>orders-core</module> <module>orders-war</module> </modules> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>au.gov.qld.pub</groupId> <artifactId>orders</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Queensland Government Ordering service</name> <description>Online order processor</description> <properties> <maven.build.timestamp.format>h:mm a, d MMMM yyyy</maven.build.timestamp.format> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <spring.version>5.2.9.RELEASE</spring.version> <jackson.version>2.12.0</jackson.version> </properties> <modules> <module>orders-core</module> <module>orders-war</module> </modules> </project>
Fix the application name by escaping the single quotes
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">Para 'n' Droid</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">Para \'n\' Droid</string> </resources>
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 this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <assembly> <id>src</id> <formats> <format>tar.gz</format> <format>zip</format> </formats> <baseDirectory>${project.artifactId}-${project.version}-src</baseDirectory> <fileSets> <fileSet> <includes> <include>build.xml</include> <include>checkstyle.xml</include> <include>LICENSE.txt</include> <include>license-header.txt</include> <include>NOTICE.txt</include> <include>pom.xml</include> <include>README.txt</include> <include>RELEASE-NOTES.txt</include> <include>findbugs-exclude-filter.xml</include> </includes> </fileSet> <fileSet> <directory>src</directory> </fileSet> </fileSets> </assembly>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <assembly> <id>src</id> <formats> <format>tar.gz</format> <format>zip</format> </formats> <baseDirectory>${project.artifactId}-${project.version}-src</baseDirectory> <fileSets> <fileSet> <includes> <include>build.xml</include> <include>checkstyle.xml</include> <include>LICENSE.txt</include> <include>license-header.txt</include> <include>NOTICE.txt</include> <include>pom.xml</include> <include>README.txt</include> <include>RELEASE-NOTES.txt</include> <include>findbugs-exclude-filter.xml</include> <include>build.properties.sample</include> </includes> </fileSet> <fileSet> <directory>src</directory> </fileSet> </fileSets> </assembly>
Fix a few things to do with the RSS feed
<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule"> <channel> <title>{{ section.title|escape }} - chilts.org</title> <link>http://www.{{ "Naked Domain"|cfg }}/</link> <description>{{ section.description|escape }}</description> <language>en</language> <copyright>Copyright www.{{ "Naked Domain"|cfg }}</copyright> <pubDate>{{ section.updated }}</pubDate> <lastBuildDate>{{ section.updated }}</lastBuildDate> {% for node in nodes %} <item> <title>{{ node.title|escape }}</title> <link>http://www.{{ "Naked Domain"|cfg }}{{ section.path|escape }}{{ node.name|escape }}.html</link> <description> {{ node.content_html }} </description> <guid isPermaLink="true">http://www.{{ "Naked Domain"|cfg }}{{ section.path|escape }}{{ node.name|escape }}.html</guid> <pubDate>{{ node.updated }}</pubDate> </item> {% endfor %} </channel> </rss>
<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule"> <channel> <title>{{ section.title|escape }} - chilts.org</title> <link>http://www.{{ "Naked Domain"|cfg }}/</link> <description>{{ section.description|escape }}</description> <language>en</language> <copyright>Copyright www.{{ "Naked Domain"|cfg }}</copyright> <pubDate>{{ section.updated|date:"D, d M Y H:m:s T" }}</pubDate> <lastBuildDate>{% now "D, d M Y H:m:s" %}</lastBuildDate> {% for node in nodes %} <item> <title>{{ node.title|escape }}</title> <link>http://www.{{ "Naked Domain"|cfg }}{{ section.path|escape }}{{ node.name|escape }}.html</link> <description> {{ node.content_html|escape }} </description> <guid isPermaLink="true">http://www.{{ "Naked Domain"|cfg }}{{ section.path|escape }}{{ node.name|escape }}.html</guid> <pubDate>{{ node.updated|date:"D, d M Y H:m:s T" }}</pubDate> </item> {% endfor %} </channel> </rss>
Fix target version on sample
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.example.download_example"> <uses-sdk android:minSdkVersion="15" /> <!-- You have to add this permission when setting `PathNameForDownloadedFile`. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> --> <application android:label="Download Example"> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.example.download_example"> <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="24" /> <!-- You have to add this permission when setting `PathNameForDownloadedFile`. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> --> <application android:label="Download Example"></application> </manifest>
Add default threshold for VBASIC
<?xml version="1.0" encoding="utf-8" ?> <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=CSHARP/@EntryIndexedValue">20</s:Int64> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=CPP/@EntryIndexedValue">20</s:Int64> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=JAVA_SCRIPT/@EntryIndexedValue">20</s:Int64> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=TYPE_SCRIPT/@EntryIndexedValue">20</s:Int64> </wpf:ResourceDictionary>
<?xml version="1.0" encoding="utf-8" ?> <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=CSHARP/@EntryIndexedValue">20</s:Int64> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=CPP/@EntryIndexedValue">20</s:Int64> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=JAVA_SCRIPT/@EntryIndexedValue">20</s:Int64> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=TYPE_SCRIPT/@EntryIndexedValue">20</s:Int64> <s:Int64 x:Key="/Default/CodeInspection/CyclomaticComplexityAnalysis/Thresholds/=VBASIC/@EntryIndexedValue">20</s:Int64> </wpf:ResourceDictionary>
Correct Surf/Aikau template type definition
<?xml version="1.0" encoding="UTF-8"?> <template-type> <title>Better Trash Management Full Page</title> <description>This template-type references the "full-page" WebScript to render a complete page of Dojo based widgets</description> <family>Better Trash Management</family> <processor mode="view"> <id>webscript</id> <url>/templates/better-trash-management/full-page</url> </processor> </template-type>
<?xml version="1.0" encoding="UTF-8"?> <template-type> <title>Better Trash Management Full Page</title> <description>This template-type references the "full-page" WebScript to render a complete page of Dojo based widgets</description> <family>Better Trash Management</family> <processor mode="view"> <id>webscript</id> <uri>/templates/better-trash-management/full-page</uri> </processor> </template-type>
Fix the LatinIME on devices with 240dpi.
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.inputmethod.latin" android:sharedUserId="android.uid.shared"> <uses-permission android:name="android.permission.VIBRATE"/> <uses-permission android:name="android.permission.READ_USER_DICTIONARY" /> <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" /> <application android:label="@string/english_ime_name"> <service android:name="LatinIME" android:label="@string/english_ime_name" android:permission="android.permission.BIND_INPUT_METHOD"> <intent-filter> <action android:name="android.view.InputMethod" /> </intent-filter> <meta-data android:name="android.view.im" android:resource="@xml/method" /> </service> <activity android:name="LatinIMESettings" android:label="@string/english_ime_settings"> <intent-filter> <action android:name="android.intent.action.MAIN"/> </intent-filter> </activity> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.inputmethod.latin" android:sharedUserId="android.uid.shared"> <uses-permission android:name="android.permission.VIBRATE"/> <uses-permission android:name="android.permission.READ_USER_DICTIONARY" /> <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" /> <application android:label="@string/english_ime_name"> <supports-density android:density="120" /> <supports-density android:density="160" /> <supports-density android:density="240" /> <service android:name="LatinIME" android:label="@string/english_ime_name" android:permission="android.permission.BIND_INPUT_METHOD"> <intent-filter> <action android:name="android.view.InputMethod" /> </intent-filter> <meta-data android:name="android.view.im" android:resource="@xml/method" /> </service> <activity android:name="LatinIMESettings" android:label="@string/english_ime_settings"> <intent-filter> <action android:name="android.intent.action.MAIN"/> </intent-filter> </activity> </application> </manifest>
Update changelog - PR batch 1
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- changelog for the master branch --> <string name="changelog_master" translatable="false"> <b>Next feature release:</b>\n · New: Backup for app settings\n · New: Remember setting for distance circles on map\n · New: Move offline related settings to offline data setting menu\n \n \n </string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- changelog for the master branch --> <string name="changelog_master" translatable="false"> <b>Next feature release:</b>\n · New: Backup for app settings\n · New: Remember setting for distance circles on map\n · New: Move offline related settings to offline data setting menu\n · New: Show cache name inline with log text in trackable log\n · New: New Locus API version\n · Fix: Have dot markers for compact map icons in better resolution\n \n \n </string> </resources>
Use vector checked icon in add indicator.
<?xml version="1.0" encoding="utf-8"?> <merge xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <!-- tint XML attribute uses SRC_ATOP for compat, so make sure to use a white drawable. --> <ImageView android:id="@+id/imageViewAddIndicator" android:layout_width="match_parent" android:layout_height="match_parent" android:background="?attr/selectableItemBackgroundBorderless" android:contentDescription="@string/action_shows_add" android:focusable="false" android:scaleType="centerInside" android:tint="?attr/sgColorIcon" app:srcCompat="@drawable/ic_add_white_24dp" /> <!-- Content description is set in code. --> <ImageView android:id="@+id/imageViewAddIndicatorAdded" android:layout_width="match_parent" android:layout_height="match_parent" android:contentDescription="@null" android:scaleType="centerInside" android:src="?attr/drawableWatched" /> <ProgressBar android:id="@+id/progressBarAddIndicator" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="@dimen/default_padding" /> </merge>
<?xml version="1.0" encoding="utf-8"?> <merge xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <!-- tint XML attribute uses SRC_ATOP for compat, so make sure to use a white drawable. --> <ImageView android:id="@+id/imageViewAddIndicator" android:layout_width="match_parent" android:layout_height="match_parent" android:background="?attr/selectableItemBackgroundBorderless" android:contentDescription="@string/action_shows_add" android:focusable="false" android:scaleType="centerInside" android:tint="?attr/sgColorIcon" app:srcCompat="@drawable/ic_add_white_24dp" /> <!-- Content description is set in code. --> <ImageView android:id="@+id/imageViewAddIndicatorAdded" android:layout_width="match_parent" android:layout_height="match_parent" android:contentDescription="@null" android:scaleType="centerInside" app:srcCompat="@drawable/ic_watched_24dp" /> <ProgressBar android:id="@+id/progressBarAddIndicator" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="@dimen/default_padding" /> </merge>
Move a bunch of Ant junk into its own folder.
<!-- build.xml Ant build file for LOCI Checkstyle checks project. Download Apache Ant from http://ant.apache.org/. Type "ant -p" for a list of targets. --> <project name="checks" default="jar" basedir="."> <description>Build file for LOCI Checkstyle checks project</description> <property name="root.dir" location="../.."/> <import file="${root.dir}/components/java.xml"/> <property file="build.properties"/> </project>
<!-- build.xml Ant build file for LOCI Checkstyle checks project. Download Apache Ant from http://ant.apache.org/. Type "ant -p" for a list of targets. --> <project name="checks" default="jar" basedir="."> <description>Build file for LOCI Checkstyle checks project</description> <property name="root.dir" location="../.."/> <import file="${root.dir}/ant/java.xml"/> <property file="build.properties"/> </project>
Change ok cancel button positions
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ListView android:id="@+id/settings_list" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="0dp" /> <View android:layout_width="wrap_content" android:layout_height="1dp" android:background="?attr/customDivider" > </View> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"> <Button android:text="@string/ok" style="?android:attr/buttonBarButtonStyle" android:id="@+id/settings_ok" android:layout_weight="1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <Button android:text="@string/cancel" style="?android:attr/buttonBarButtonStyle" android:id="@+id/settings_cancel" android:layout_weight="1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ListView android:id="@+id/settings_list" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="0dp" /> <View android:layout_width="wrap_content" android:layout_height="1dp" android:background="?attr/customDivider" > </View> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"> <Button android:text="@string/cancel" style="?android:attr/buttonBarButtonStyle" android:id="@+id/settings_cancel" android:layout_weight="1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <Button android:text="@string/ok" style="?android:attr/buttonBarButtonStyle" android:id="@+id/settings_ok" android:layout_weight="1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout> </LinearLayout>
Add a listview to the fragment
<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:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity$PlaceholderFragment"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" /> </RelativeLayout>
<FrameLayout 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:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity$PlaceholderFragment"> <ListView android:id="@+id/listview_forecast" android:layout_width="match_parent" android:layout_height="match_parent"> </ListView> </FrameLayout>
Update IntelliJ run configuration to npm
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Artemis (Client)" type="js.build_tools.npm"> <package-json value="$PROJECT_DIR$/package.json" /> <command value="run" /> <scripts> <script value="webpack:dev" /> </scripts> <node-interpreter value="project" /> <envs /> <method v="2"> <option name="NpmBeforeRunTask" enabled="true"> <package-json value="$PROJECT_DIR$/package.json" /> <command value="install" /> <node-interpreter value="project" /> <envs /> </option> </method> </configuration> </component>
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Artemis (Client)" type="js.build_tools.npm"> <package-json value="$PROJECT_DIR$/package.json" /> <command value="run" /> <scripts> <script value="webpack:dev" /> </scripts> <node-interpreter value="project" /> <package-manager value="npm" /> <envs /> <method v="2"> <option name="NpmBeforeRunTask" enabled="true"> <package-json value="$PROJECT_DIR$/package.json" /> <command value="install" /> <node-interpreter value="project" /> <envs /> </option> </method> </configuration> </component>
Add group on cron field to avoid access error when user does not have the right to read crons.
<?xml version="1.0" encoding="utf-8"?> <odoo> <record id="sql_export_mail_view_form" model="ir.ui.view"> <field name="model">sql.export</field> <field name="inherit_id" ref="sql_export.sql_export_view_form" /> <field name="arch" type="xml"> <button name="export_sql_query" position="after"> <button name="create_cron" string="Create Cron" type="object" groups="base.group_system" attrs="{'invisible': ['|', ('state', '=', 'draft'), ('mail_user_ids', '=', [(6, False, [])])]}"/> </button> <field name="copy_options" position="after"> <field name="mail_condition" attrs="{'invisible': [('cron_ids', '=', [(6, False, [])])]}"/> </field> <group name="parameters" position="after"> <group groups="sql_request_abstract.group_sql_request_user"> <group string="Users Notified by e-mail"> <field name="mail_user_ids" nolabel="1"/> </group> <group string="Crons" groups="base.group_system"> <field name="cron_ids" nolabel="1" domain="[('function', '=', '_run_all_sql_export_for_cron')]"/> </group> </group> </group> </field> </record> </odoo>
<?xml version="1.0" encoding="utf-8"?> <odoo> <record id="sql_export_mail_view_form" model="ir.ui.view"> <field name="model">sql.export</field> <field name="inherit_id" ref="sql_export.sql_export_view_form" /> <field name="arch" type="xml"> <button name="export_sql_query" position="after"> <button name="create_cron" string="Create Cron" type="object" groups="base.group_system" attrs="{'invisible': ['|', ('state', '=', 'draft'), ('mail_user_ids', '=', [(6, False, [])])]}"/> </button> <field name="copy_options" position="after"> <field name="mail_condition" attrs="{'invisible': [('cron_ids', '=', [(6, False, [])])]}"/> </field> <group name="parameters" position="after"> <group groups="sql_request_abstract.group_sql_request_user"> <group string="Users Notified by e-mail"> <field name="mail_user_ids" nolabel="1"/> </group> <group string="Crons" groups="base.group_system"> <field name="cron_ids" nolabel="1" domain="[('function', '=', '_run_all_sql_export_for_cron')]" groups="base.group_system"/> </group> </group> </group> </field> </record> </odoo>
Correct authentication format for Thunderbird
<?xml version="1.0" encoding="UTF-8"?> <clientConfig version="1.1"> <emailProvider id="%EMAILDOMAIN%"> <domain>%EMAILDOMAIN%</domain> <displayName>%EMAILADDRESS%</displayName> <displayShortName>%EMAILLOCALPART%</displayShortName> <incomingServer type="imap"> <hostname>imap.%EMAILDOMAIN%</hostname> <port>993</port> <socketType>SSL</socketType> <authentication>password-encrypted</authentication> <username>%EMAILADDRESS%</username> </incomingServer> <outgoingServer type="smtp"> <hostname>smtp.%EMAILDOMAIN%</hostname> <port>587</port> <socketType>SSL</socketType> <authentication>password-encrypted</authentication> <username>%EMAILADDRESS%</username> </outgoingServer> </emailProvider> </clientConfig>
<?xml version="1.0" encoding="UTF-8"?> <clientConfig version="1.1"> <emailProvider id="%EMAILDOMAIN%"> <domain>%EMAILDOMAIN%</domain> <displayName>%EMAILADDRESS%</displayName> <displayShortName>%EMAILLOCALPART%</displayShortName> <incomingServer type="imap"> <hostname>imap.%EMAILDOMAIN%</hostname> <port>993</port> <socketType>SSL</socketType> <authentication>password-cleartext</authentication> <username>%EMAILADDRESS%</username> </incomingServer> <outgoingServer type="smtp"> <hostname>smtp.%EMAILDOMAIN%</hostname> <port>587</port> <socketType>SSL</socketType> <authentication>password-cleartext</authentication> <username>%EMAILADDRESS%</username> </outgoingServer> </emailProvider> </clientConfig>
Add missing PHPUnit testsuite name
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" bootstrap="vendor/autoload.php"> <testsuites> <testsuite> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">src</directory> </whitelist> </filter> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" bootstrap="vendor/autoload.php"> <testsuites> <testsuite name="DateTime tests"> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">src</directory> </whitelist> </filter> </phpunit>
Add the new transition type to the res.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- Trip tracking machine states and transitions --> <string name="state_start">local.state.start</string> <string name="state_waiting_for_trip_start">local.state.waiting_for_trip_start</string> <string name="state_ongoing_trip">local.state.ongoing_trip</string> <string name="state_tracking_stopped">local.state.tracking_stopped</string> <string name="transition_initialize">local.transition.initialize</string> <string name="transition_exited_geofence">local.transition.exited_geofence</string> <string name="transition_stopped_moving">local.transition.stopped_moving</string> <string name="transition_stop_tracking">local.transition.stop_tracking</string> <string name="transition_start_tracking">local.transition.start_tracking</string> <!-- <string name="transition_actions_started">local.transition.actions_started</string> <string name="transition_actions_complete">local.transition.actions_complete</string> --> <string name="broadcast_extra_key_old_state">broadcast.extra.key.old_state</string> <string name="broadcast_extra_key_new_state">broadcast.extra.key.new_state</string> <string name="curr_state_key">TripDiaryCurrState</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- Trip tracking machine states and transitions --> <string name="state_start">local.state.start</string> <string name="state_waiting_for_trip_start">local.state.waiting_for_trip_start</string> <string name="state_ongoing_trip">local.state.ongoing_trip</string> <string name="state_tracking_stopped">local.state.tracking_stopped</string> <string name="transition_initialize">local.transition.initialize</string> <string name="transition_exited_geofence">local.transition.exited_geofence</string> <string name="transition_stopped_moving">local.transition.stopped_moving</string> <string name="transition_stop_tracking">local.transition.stop_tracking</string> <string name="transition_start_tracking">local.transition.start_tracking</string> <string name="transition_tracking_error">local.transition.tracking_error</string> <!-- <string name="transition_actions_started">local.transition.actions_started</string> <string name="transition_actions_complete">local.transition.actions_complete</string> --> <string name="broadcast_extra_key_old_state">broadcast.extra.key.old_state</string> <string name="broadcast_extra_key_new_state">broadcast.extra.key.new_state</string> <string name="curr_state_key">TripDiaryCurrState</string> </resources>
Set log level to ERROR to rid of SpringBootTestContextBootstrapper logs
<?xml version="1.0" encoding="UTF-8"?> <configuration> <include resource="org/springframework/boot/logging/logback/base.xml"/> <logger name="org.springframework" level="INFO"/> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <include resource="org/springframework/boot/logging/logback/base.xml"/> <logger name="org.springframework" level="ERROR"/> <logger name="com.drumonii.loltrollbuild.test" level="ERROR"/> </configuration>
Upgrade the description of the `metrics-jetty` module
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-parent</artifactId> <version>4.0.0-SNAPSHOT</version> </parent> <artifactId>metrics-jetty9</artifactId> <name>Metrics Integration for Jetty 9.1 and higher</name> <packaging>bundle</packaging> <description> A set of extensions for Jetty 9.1 and higher which provide instrumentation of thread pools, connector metrics, and application latency and utilization. </description> <dependencies> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${jetty9.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <version>${jetty9.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-parent</artifactId> <version>4.0.0-SNAPSHOT</version> </parent> <artifactId>metrics-jetty9</artifactId> <name>Metrics Integration for Jetty 9.3 and higher</name> <packaging>bundle</packaging> <description> A set of extensions for Jetty 9.3 and higher which provide instrumentation of thread pools, connector metrics, and application latency and utilization. </description> <dependencies> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${jetty9.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <version>${jetty9.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
Fix name in type definition
<?xml version="1.0" encoding="UTF-8"?> <object xmlns:i18n="http://xml.zope.org/namespaces/i18n" name="tn.bulletino.html_page" meta_type="Dexterity FTI" > <property name="behaviors"> <element value="plone.app.content.interfaces.INameFromTitle" /> <element value="tn.plonemailing.behaviors.INewsletterFromContent" /> <element value="tn.plonehtmlimagecache.behaviors.IHTMLImageCacheableFromContent" /> </property> <action title="tn.bulletino-send-action-title" action_id="send" category="object" condition_expr="" url_expr="string:${object_url}/send" visible="True" > <permission value="tn.bulletino: Send content" /> </action> </object>
<?xml version="1.0" encoding="UTF-8"?> <object xmlns:i18n="http://xml.zope.org/namespaces/i18n" name="tn.plonehtmlpage.html_page" meta_type="Dexterity FTI" > <property name="behaviors"> <element value="plone.app.content.interfaces.INameFromTitle" /> <element value="tn.plonemailing.behaviors.INewsletterFromContent" /> <element value="tn.plonehtmlimagecache.behaviors.IHTMLImageCacheableFromContent" /> </property> <action title="tn.bulletino-send-action-title" action_id="send" category="object" condition_expr="" url_expr="string:${object_url}/send" visible="True" > <permission value="tn.bulletino: Send content" /> </action> </object>
Remove the 'elytron' supplement from the Remoting subsystem template.
<?xml version='1.0' encoding='UTF-8'?> <!-- See src/resources/configuration/ReadMe.txt for how the configuration assembly works --> <config default-supplement="default"> <extension-module>org.jboss.as.remoting</extension-module> <subsystem xmlns="urn:jboss:domain:remoting:4.0"> <endpoint/> <?CONNECTOR?> </subsystem> <supplement name="default"> <replacement placeholder="CONNECTOR"> <http-connector name="http-remoting-connector" connector-ref="default" security-realm="ApplicationRealm"/> </replacement> </supplement> <supplement name="elytron"> <replacement placeholder="CONNECTOR"> <http-connector name="http-remoting-connector" connector-ref="default" sasl-authentication-factory="application-sasl-authentication"/> </replacement> </supplement> </config>
<?xml version='1.0' encoding='UTF-8'?> <!-- See src/resources/configuration/ReadMe.txt for how the configuration assembly works --> <config> <extension-module>org.jboss.as.remoting</extension-module> <subsystem xmlns="urn:jboss:domain:remoting:4.0"> <endpoint/> <http-connector name="http-remoting-connector" connector-ref="default" security-realm="ApplicationRealm"/> </subsystem> </config>
Fix an oops in package depends
<package> <description brief="bugs"> bugs </description> <author>Ethan Miller</author> <license>BSD</license> <review status="unreviewed" notes=""/> <url>http://ros.org/wiki/bugs</url> <depend package="robot_mover"/> <depend package="geometry_msgs"/> <depend package="rospy"/> <depend package="roscpp"/> </package>
<package> <description brief="bugs"> bugs </description> <author>Ethan Miller</author> <license>BSD</license> <review status="unreviewed" notes=""/> <url>http://ros.org/wiki/bugs</url> <depend package="geometry_msgs"/> <depend package="rospy"/> <depend package="roscpp"/> </package>
Make password preference text editor hide password
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > <EditTextPreference android:key="host" android:title="Relay Host"/> <EditTextPreference android:key="port" android:title="Relay Port"/> <EditTextPreference android:key="password" android:title="Relay Password"/> <CheckBoxPreference android:key="autoconnect" android:summary="Connect as soon as app is launched" android:title="Connect Automatically"/> <CheckBoxPreference android:key="reconnect" android:summary="Reconnect automatically. Exits if disabled" android:title="Automatically Reconnect"/> <CheckBoxPreference android:summary="Note: May be slow when changing" android:title="Show colors in chat" android:key="chatview_colors" android:defaultValue="true"/> <CheckBoxPreference android:summary="Whether to display timestamps in chat. Saves space when disabled." android:title="Show timestamps" android:key="chatview_timestamps" android:defaultValue="true"/> <CheckBoxPreference android:summary="If enabled, messages that were filtered will be hidden.(e.g. irc_smart_filter)" android:title="Filter messages" android:key="chatview_filters" android:defaultValue="true"/> <CheckBoxPreference android:summary="Use default notification sound when a private message or highlight is received" android:title="Notification Sound" android:key="notification_sounds" android:defaultValue="false"/> </PreferenceScreen>
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > <EditTextPreference android:key="host" android:title="Relay Host"/> <EditTextPreference android:key="port" android:title="Relay Port"/> <EditTextPreference android:key="password" android:title="Relay Password" android:password="true"/> <CheckBoxPreference android:key="autoconnect" android:summary="Connect as soon as app is launched" android:title="Connect Automatically"/> <CheckBoxPreference android:key="reconnect" android:summary="Reconnect automatically. Exits if disabled" android:title="Automatically Reconnect"/> <CheckBoxPreference android:summary="Note: May be slow when changing" android:title="Show colors in chat" android:key="chatview_colors" android:defaultValue="true"/> <CheckBoxPreference android:summary="Whether to display timestamps in chat. Saves space when disabled." android:title="Show timestamps" android:key="chatview_timestamps" android:defaultValue="true"/> <CheckBoxPreference android:summary="If enabled, messages that were filtered will be hidden.(e.g. irc_smart_filter)" android:title="Filter messages" android:key="chatview_filters" android:defaultValue="true"/> <CheckBoxPreference android:summary="Use default notification sound when a private message or highlight is received" android:title="Notification Sound" android:key="notification_sounds" android:defaultValue="false"/> </PreferenceScreen>
Remove minter bean from integration test configuration
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <context:property-placeholder/> <!-- Context that houses JAX-RS Resources that compose the API as well as some utility gear. --> <context:annotation-config/> <bean class="org.fcrepo.http.commons.session.SessionFactory"/> <!-- Mints PIDs--> <bean class="org.fcrepo.mint.UUIDPidMinter"/> <!-- Identifier translation chain --> <util:list id="translationChain" value-type="org.fcrepo.kernel.api.identifiers.InternalIdentifierConverter"> <bean class="org.fcrepo.kernel.modeshape.identifiers.HashConverter"/> <bean class="org.fcrepo.kernel.modeshape.identifiers.NamespaceConverter"/> </util:list> <context:component-scan base-package="org.fcrepo" /> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <context:property-placeholder/> <!-- Context that houses JAX-RS Resources that compose the API as well as some utility gear. --> <context:annotation-config/> <bean class="org.fcrepo.http.commons.session.SessionFactory"/> <!-- Identifier translation chain --> <util:list id="translationChain" value-type="org.fcrepo.kernel.api.identifiers.InternalIdentifierConverter"> <bean class="org.fcrepo.kernel.modeshape.identifiers.HashConverter"/> <bean class="org.fcrepo.kernel.modeshape.identifiers.NamespaceConverter"/> </util:list> <context:component-scan base-package="org.fcrepo" /> </beans>
Add Details menu to examples module section.
<?xml version="1.0" encoding="utf-8"?> <project> <body> <menu ref="parent" /> <menu ref="reports" /> </body> </project>
<?xml version="1.0" encoding="utf-8"?> <project> <body> <menu ref="parent" /> <menu name="Details"> <item name="Transformers" href="../transformers/transformers.html" /> <item name="JSON Transformers" href="../transformers/json-transformers.html" /> <item name="Transformer Builders" href="../transformers/transformer-builders.html" /> <item name="Stream Builders" href="../streams/stream-builders.html" /> <item name="Updater Builders" href="../updaters/updater-builders.html" /> <item name="Messaging" href="../messaging/messaging.html" /> </menu> <menu ref="reports" /> </body> </project>
Remove process isolution in tests
<?xml version="1.0" encoding="UTF-8"?> <phpunit convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" colors="true" processIsolation="true" stopOnFailure="false" backupGlobals="false" bootstrap="vendor/autoload.php"> <testsuites> <testsuite name="Afrihost BaseCommandBundle Test Suite"> <directory suffix=".php">./Tests/</directory> <exclude>./Tests/Command/BaseCommandHardenedContainerTest.php</exclude> </testsuite> </testsuites> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" colors="true" processIsolation="false" stopOnFailure="false" backupGlobals="false" bootstrap="vendor/autoload.php"> <testsuites> <testsuite name="Afrihost BaseCommandBundle Test Suite"> <directory suffix=".php">./Tests/</directory> <exclude>./Tests/Command/BaseCommandHardenedContainerTest.php</exclude> </testsuite> </testsuites> </phpunit>
Remove bootstrap file from tests
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="tests/bootstrap.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="false" syntaxCheck="true" verbose="true" > <testsuites> <testsuite name="AllTests"> <directory>./tests</directory> </testsuite> </testsuites> <php> <ini name="display_errors" value="On" /> <ini name="display_startup_errors" value="On" /> </php> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="false" syntaxCheck="true" verbose="true" > <testsuites> <testsuite name="AllTests"> <directory>./tests</directory> </testsuite> </testsuites> <php> <ini name="display_errors" value="On" /> <ini name="display_startup_errors" value="On" /> </php> </phpunit>
Revert "fix java compiler version. "
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>so-c.com.github.junit4.12-categories-configuration-sample</groupId> <artifactId>junit4.12-categories-configuration-sample</artifactId> <version>0.0.1-SNAPSHOT</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>so-c.com.github.junit4.12-categories-configuration-sample</groupId> <artifactId>junit4.12-categories-configuration-sample</artifactId> <version>0.0.1-SNAPSHOT</version> </project>
Use Clojure 1.0 as dependency
<ivy-module version="2.0"> <info organisation="de.kotka" module="vimclojure" status="integration"/> <configurations> <conf name="default"/> <conf name="dev" extends="default"/> <conf name="build" visibility="private"/> </configurations> <publications> <artifact name="vimclojure" type="jar" conf="default"/> <artifact name="vimclojure-source" type="jar" conf="dev"/> </publications> <dependencies> <dependency org="org.clojure" name="clojure-lang" rev="1349" conf="build->dev; default"/> <dependency org="org.clojure" name="clojure-contrib" rev="666" conf="build->source; default->def,pprint,stacktrace"/> </dependencies> </ivy-module>
<ivy-module version="2.0"> <info organisation="de.kotka" module="vimclojure" status="integration"/> <configurations> <conf name="default"/> <conf name="dev" extends="default"/> <conf name="build" visibility="private"/> </configurations> <publications> <artifact name="vimclojure" type="jar" conf="default"/> <artifact name="vimclojure-source" type="jar" conf="dev"/> </publications> <dependencies> <dependency org="org.clojure" name="clojure-lang" rev="1.0.0" conf="build->dev; default"/> <dependency org="org.clojure" name="clojure-contrib" rev="757" conf="build->source; default->def,pprint,stacktrace"/> </dependencies> </ivy-module>
Use same opiwidget ID as original
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension point="org.csstudio.opibuilder.widget"> <widget category="Monitors" description="Display a Data Browser 3 configuration" editpart_class="org.csstudio.trends.databrowser3.opiwidget.DataBrowserWidgedEditPart" icon="icons/databrowser.png" model_class="org.csstudio.trends.databrowser3.opiwidget.DataBrowserWidgedModel" name="Data Browser 3" typeId="org.csstudio.trends.databrowser3.opiwidget"> </widget> </extension> </plugin>
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension point="org.csstudio.opibuilder.widget"> <widget category="Monitors" description="Display a Data Browser configuration" editpart_class="org.csstudio.trends.databrowser3.opiwidget.DataBrowserWidgedEditPart" icon="icons/databrowser.png" model_class="org.csstudio.trends.databrowser3.opiwidget.DataBrowserWidgedModel" name="Data Browser" typeId="org.csstudio.trends.databrowser.opiwidget"> </widget> </extension> </plugin>
Add needed permission to GDK as of XE16. Update sdk version min/target to 19 in manifest.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.luisdelarosa.helloglass" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="15" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <uses-library android:name="com.google.android.glass" android:required="true" /> <activity android:name="com.luisdelarosa.helloglass.MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="com.google.android.glass.action.VOICE_TRIGGER" /> </intent-filter> <meta-data android:name="com.google.android.glass.VoiceTrigger" android:resource="@xml/glass_voice_trigger" /> </activity> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.luisdelarosa.helloglass" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" /> <!-- Necessary permission since XE16. See: http://stackoverflow.com/questions/23097828/why-is-my-voice-command-missing-from-the-ok-glass-menu-in-xe16 --> <uses-permission android:name="com.google.android.glass.permission.DEVELOPMENT" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <uses-library android:name="com.google.android.glass" android:required="true" /> <activity android:name="com.luisdelarosa.helloglass.MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="com.google.android.glass.action.VOICE_TRIGGER" /> </intent-filter> <meta-data android:name="com.google.android.glass.VoiceTrigger" android:resource="@xml/glass_voice_trigger" /> </activity> </application> </manifest>
Add INTERNET permission for uploading stuff
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.stackallocated.imageupload" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".UploadActivity" android:theme="@android:style/Theme.NoDisplay"> <intent-filter> <action android:name="android.intent.action.SEND"/> <data android:mimeType="image/*"/> </intent-filter> <intent-filter> <action android:name="android.intent.action.SEND_MULTIPLE" /> <data android:mimeType="image/*" /> </intent-filter> </activity> <service android:name=".UploadService" /> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.stackallocated.imageupload" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" /> <uses-permission android:name="android.permission.INTERNET"/> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".UploadActivity" android:theme="@android:style/Theme.NoDisplay"> <intent-filter> <action android:name="android.intent.action.SEND"/> <data android:mimeType="image/*"/> </intent-filter> <intent-filter> <action android:name="android.intent.action.SEND_MULTIPLE" /> <data android:mimeType="image/*" /> </intent-filter> </activity> <service android:name=".UploadService" /> </application> </manifest>
Add server.xml file back in as it was missed.
<!-- Copyright (c) 2016,17 IBM Corp. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.--> <server description="MicroProfile server snippet"> <featureManager> <feature>microprofile-1.0</feature> </featureManager> </server>
Add test case for Collection to schema validation
<?xml version="1.0"?> <Collection> <Link> <Name> <Component ccnbencoding="base64Binary">d2hhdCdjaHU=</Component> <Component ccnbencoding="base64Binary">bG9va2luJw==</Component> <Component ccnbencoding="base64Binary">YXQ=</Component> <Component ccnbencoding="base64Binary">V2lsbGlzPw==</Component> </Name> <Label>label string</Label> <LinkAuthenticator> <PublisherPublicKeyDigest ccnbencoding="base64Binary">KjIqNCo2KjgqMCoyKjQqNio4KjAqMio0KjYqOCowKjI=</PublisherPublicKeyDigest> <NameComponentCount>2</NameComponentCount> <Timestamp ccnbencoding="base64Binary">BHsH3Mq8</Timestamp> <Type ccnbencoding="base64Binary">LINK</Type> <ContentDigest ccnbencoding="base64Binary">MzIgYnl0ZSBzdHJpbmcgb2NjdXJzIG9wdGlvbmFsbHk=</ContentDigest> </LinkAuthenticator> </Link> <Link> <Name> <Component ccnbencoding="base64Binary">d2hhdCdjaHU=</Component> <Component ccnbencoding="base64Binary">bG9va2luJw==</Component> <Component ccnbencoding="base64Binary">YXQ=</Component> <Component ccnbencoding="base64Binary">V2lsbGlzPw==</Component> </Name> <Label>label string</Label> <LinkAuthenticator> <PublisherPublicKeyDigest ccnbencoding="base64Binary">KjIqNCo2KjgqMCoyKjQqNio4KjAqMio0KjYqOCowKjI=</PublisherPublicKeyDigest> <NameComponentCount>2</NameComponentCount> <Timestamp ccnbencoding="base64Binary">BHsH3Mq8</Timestamp> <Type ccnbencoding="base64Binary">LINK</Type> <ContentDigest ccnbencoding="base64Binary">MzIgYnl0ZSBzdHJpbmcgb2NjdXJzIG9wdGlvbmFsbHk=</ContentDigest> </LinkAuthenticator> </Link> </Collection>
Allow any 1.6 revision of android.jar.
<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>com.jayway.android.robotium</groupId> <artifactId>robotium-solo</artifactId> <version>1.6.1-SNAPSHOT</version> <packaging>jar</packaging> <name>Robotium :: Solo</name> <parent> <groupId>com.jayway.android.robotium</groupId> <artifactId>robotium</artifactId> <version>1.6.1-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>android</groupId> <artifactId>android</artifactId> <version>[1.6_r1,]</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.jayway.android.robotium</groupId> <artifactId>robotium-solo</artifactId> <version>1.6.1-SNAPSHOT</version> <packaging>jar</packaging> <name>Robotium :: Solo</name> <parent> <groupId>com.jayway.android.robotium</groupId> <artifactId>robotium</artifactId> <version>1.6.1-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>android</groupId> <artifactId>android</artifactId> <version>[1.6_r1,1.7)</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>
Create a maven file used to obtain the libraries needed to compile this project.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.sparkcaller</groupId> <artifactId>sparkcaller</artifactId> <version>1.0</version> <packaging>jar</packaging> <repositories> <repository> <id>128</id> <name>mvn.128.no</name> <url>https://mvn.128.no/maven2</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>org.apache.spark</exclude> </excludes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-core_2.10</artifactId> <version>1.5.1</version> <!--<scope>provided</scope>--> </dependency> <!-- https://mvnrepository.com/artifact/org.reflections/reflections --> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.9-RC1</version> </dependency> <!-- https://mvnrepository.com/artifact/com.github.broadinstitute/picard --> <dependency> <groupId>com.github.broadinstitute</groupId> <artifactId>picard</artifactId> <version>2.4.1</version> </dependency> <dependency> <groupId>org.broadinstitute.gatk</groupId> <artifactId>gatk-package-distribution</artifactId> <version>3.6</version> <exclusions> <exclusion> <groupId>org.seqdoop</groupId> <artifactId>hadoop-bam</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>
Add Git info to IDEA.
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="VcsDirectoryMappings"> <mapping directory="$PROJECT_DIR$" vcs="Git" /> </component> </project>
Add a project code style
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectCodeStyleSettingsManager"> <option name="PER_PROJECT_SETTINGS"> <value /> </option> <option name="USE_PER_PROJECT_SETTINGS" value="true" /> </component> </project>
Add default servlet handler to spring dispatcher to support index.jsp
<?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" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation= "http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd" default-lazy-init="false"> <mvc:annotation-driven/> <context:component-scan base-package="ca.intelliware.ihtsdo.mlds" /> <mvc:default-servlet-handler/> <!-- <mvc:resources mapping="/styles/**" location="/styles/" /> <mvc:resources mapping="/js/**" location="/js/" /> <mvc:resources mapping="/images/**" location="/images/" /> <mvc:resources mapping="/static/**" location="/static/" /> <mvc:resources mapping="/partials/**" location="/partials/" /> <mvc:resources mapping="/bower_components/**" location="/bower_components/" /> <mvc:resources mapping="/index.html" location="/index.html" /> <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver"/> <bean class="org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver"/> --> <!-- <bean id="filenameController" class="org.springframework.web.servlet.mvc.UrlFilenameViewController"/> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="maxUploadSize" value="50000000" /> </bean> <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basename" value="messages"/> </bean> --> </beans>
Allow two lines of text on dialog buttons.
<?xml version="1.0" encoding="utf-8"?> <merge xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingLeft="@dimen/large_padding" android:paddingRight="@dimen/large_padding" android:paddingBottom="@dimen/large_padding" android:measureWithLargestChild="true" android:gravity="end" android:orientation="horizontal"> <Button android:id="@+id/buttonNegative" style="?android:attr/borderlessButtonStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:maxLines="1" tools:text="Button Negative" /> <Button android:id="@+id/buttonPositive" style="?android:attr/borderlessButtonStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:maxLines="1" tools:text="Button Positive" /> </LinearLayout> </merge>
<?xml version="1.0" encoding="utf-8"?> <merge xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingLeft="@dimen/large_padding" android:paddingRight="@dimen/large_padding" android:paddingBottom="@dimen/large_padding" android:measureWithLargestChild="true" android:gravity="end" android:orientation="horizontal"> <Button android:id="@+id/buttonNegative" style="?android:attr/borderlessButtonStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" tools:text="Button Negative" /> <Button android:id="@+id/buttonPositive" style="?android:attr/borderlessButtonStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" tools:text="Button Positive" /> </LinearLayout> </merge>
Add the Gump project definition of Tapestry into the Tapestry repository.
<module name="jakarta-tapestry"> <!-- $Id$ --> <url href="http://jakarta.apache.org/proposals/tapestry/index.html"/> <description> Component-based web application framework organized around insanely high levels of resuse. </description> <cvs repository="jakarta"/> <project name="jakarta-tapestry"> <package>org.apache.tapestry</package> <ant basedir="framework"> <property name="framework.version" value="@@DATE@@"/> <property name="jetty.dir" reference="home" project="jetty"/> <!-- Tapestry uses the J2EE libraries inside the JBoss distro to build. Under Gump this isn't relevant. --> <property name="jboss.dir" value="jboss-not-available"/> <property name="exists.jboss.dir" value="yes"/> </ant> <!-- framework --> <depend project="ant" inherit="runtime"/> <depend project="commons-beanutils"/> <depend project="commons-digester"/> <depend project="commons-fileupload"/> <depend project="commons-logging"/> <depend project="commons-lang"/> <depend project="jakarta-bcel"/> <depend project="jakarta-bsf"/> <depend project="jakarta-oro"/> <depend project="jakarta-servletapi-4"/> <depend project="ognl"/> <depend project="xml-xerces"/> <depend project="jakarta-servletapi"/> <depend project="jakarta-oro"/> <depend project="commons-digester"/> <depend project="commons-lang"/> <depend project="commons-fileupload"/> <depend project="jakarta-bsf"/> <depend project="ognl"/> <!-- contrib --> <work nested="framework/classes"/> <depend project="ejb"/> <!-- examples --> <work nested="contrib/classes"/> <depend project="jcharts"/> <!-- examples/Vlib --> <work nested="examples/VlibBeans/classes"/> <jar name="lib/tapestry-@@DATE@@.jar"/> <license name="LICENSE.txt"/> <nag from="Howard M. Lewis Ship &lt;hlship@apache.org&gt;" to="tapestry-dev@jakarta.apache.org"/> </project> <project name="ognl"> <package>ognl</package> <url href="http://www.ognl.org"/> <!-- This needs to be kept up-to-date as we update to later versions of OGNL. --> <jar name="lib/ext/ognl-2.4.2.jar"/> <license name="lib/ext/LICENSE.ognl.txt"/> </project> <project name="jcharts"> <package>org.jCharts</package> <url href="http://jcharts.sourceforge.net/"/> <jar name="examples/Workbench/lib/jCharts-0.6.0.jar"/> <license name="examples/Workbench/lib/LICENSE.jCharts.txt"/> </project> </module>
Create library project and make it web application
<?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> <groupId>slbedu</groupId> <artifactId>library</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>war</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <build> <finalName>library</finalName> <plugins> <plugin> <artifactId>maven-war-plugin</artifactId> <version>2.4</version> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration> </plugin> </plugins> </build> </project>
Add app cast for v0.1
<?xml version="1.0"?> <rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"> <channel> <title>BibDeskWrapper Changelog</title> <link>http://zmdns.sourceforge.net/bibdeskwrapper/appcast.xml</link> <description>Most recent changes with links to updates.</description> <language>en</language> <item> <title>BibDeskWrapper 0.1</title> <sparkle:releaseNotesLink>http://zmdns.sourceforge.net/bibdeskwrapper/release-notes.html#version-0.1</sparkle:releaseNotesLink> <pubDate>Fri, 09 Aug 2013 21:28:11 +1000</pubDate> <enclosure url="http://sourceforge.net/projects/zmdns/files/BibDeskWrapper-0.1.zip/download" sparkle:version="4" sparkle:shortVersionString="0.1" type="application/octet-stream" length="2201000" sparkle:dsaSignature="MCwCFDkkTOIFZQ/6pJyr1eWPXTh+MtflAhRn9a3E4b8QXGyiWIbSMR5FBYJNHw=="/> </item> </channel> </rss>
Add Spanish translations to sample
<resources> <!-- Main Strings --> <string name="app_name">Ejemplos de AppIntro</string> <string name="drawer_header">Cabecera del Drawer</string> <string name="launch_demo">Iniciar Demo</string> <!-- 1st Tab Group --> <string name="default_intro">Este es el ejemplo más sencillo posible de la librería AppIntro. Puede llevarse a cabo con muy pocas líneas de código, y está disponible con dos layouts distintos. Pulsa en el botón de abajo para iniciar la demo.</string> <string name="default_intro2">Este es el segundo ejemplo de la librería AppIntro. Puede llevarse a cabo con muy pocas líneas de código, y este es el segundo tipo de layout que ofrece la librería. Pulsa en el botón de abajo para iniciar la demo.</string> <string name="custom_layout_intro">Aquí se demuestra como se puede usar un layout personalizado en la librería para tener un mayor nivel de personalización. Pulsa en el botón de abajo para iniciar la demo.</string> <string name="custom_background_intro">This demonstrates the ability to set custom backgrounds for different slides. Useful if you want images vs. colors in your backgrounds. Tap the button below to launch the demo.</string> <string name="custom_background_intro">Aquí se demuestra como se puede poner un fondo personalizado para cada slide. Esto es util si quieres usar colores contrastando con imagenes para tus fondos. Pulsa en el botón de abajo para iniciar la demo.</string> <!-- 2nd Tab Group --> <string name="perms_intro1">Aquí se demuestra como pedir permisos del sistema en cualquiera de las slides. Pulsa en el botón para iniciar la demo.</string> <string name="perms_intro2">Aquí se demuestra como pedir permisos del sistema en cualquiera de las slides, usando el segundo layout. Pulsa en el botón para iniciar la demo.</string> <!-- 3rd Tab Group --> </resources>
Add initial empty override attribute xml file.
<!-- IBM_PROLOG_BEGIN_TAG --> <!-- This is an automatically generated prolog. --> <!-- --> <!-- $Source: src/import/chips/p9/procedures/xml/attribute_info/memory_override_attributes.xml $ --> <!-- --> <!-- OpenPOWER HostBoot Project --> <!-- --> <!-- Contributors Listed Below - COPYRIGHT 2016,2019 --> <!-- [+] International Business Machines Corp. --> <!-- --> <!-- --> <!-- Licensed under the Apache License, Version 2.0 (the "License"); --> <!-- you may not use this file except in compliance with the License. --> <!-- You may obtain a copy of the License at --> <!-- --> <!-- http://www.apache.org/licenses/LICENSE-2.0 --> <!-- --> <!-- Unless required by applicable law or agreed to in writing, software --> <!-- distributed under the License is distributed on an "AS IS" BASIS, --> <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or --> <!-- implied. See the License for the specific language governing --> <!-- permissions and limitations under the License. --> <!-- --> <!-- IBM_PROLOG_END_TAG --> <!-- Empty xml for HB to mirror and ease rebase for adding attributes --> <attributes> </attributes>
Add light on button pressed
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@color/ColorPrimaryLight" android:state_pressed="true" /> <item android:drawable="@color/colorPrimary" /> </selector>
Add a model config file for testing
<?xml version="1.0" encoding="UTF-8"?> <!-- Heat model parameter values --> <model> <nRows>10</nRows> <nCols>20</nCols> <dx>1.0</dx> <dy>1.0</dy> <xStart>0.0</xStart> <yStart>0.0</yStart> <alpha>1.0</alpha> </model>
Add maven support for bitcoinj.
<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.google</groupId> <artifactId>bitcoinj</artifactId> <version>0.0.1-SNAPSHOT</version> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>tests</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.2</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <findbugsXmlWithMessages>true</findbugsXmlWithMessages> <xmlOutput>true</xmlOutput> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.1</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> </project>
Add list-item_forecast layout with textview
<?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"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Today-Sunny-88/63" android:id="@+id/list_item_forecast_textview"/> </LinearLayout>
Create a shadow pom file to allow for dependency downloads for start.sh
<?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.rhq.metrics.build</groupId> <artifactId>rhq-metrics-build</artifactId> <version>0.2.6-SNAPSHOT</version> <packaging>pom</packaging> <name>RHQ Metrics</name> <description>RHQ Metrics is a metrics collection, aggregation, visualization framework.</description> <url>https://community.jboss.org/en/rhq/rhq-metrics</url> <organization> <name>Red Hat, Inc.</name> <url>http://redhat.com/</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencyManagement> <dependencies> <dependency> <groupId>org.rhq.metrics</groupId> <artifactId>rest-servlet</artifactId> <version>0.2.5</version> </dependency> <dependency> <groupId>org.rhq.metrics</groupId> <artifactId>metrics-console</artifactId> <version>0.2.5</version> </dependency> <dependency> <groupId>org.rhq.metrics</groupId> <artifactId>explorer</artifactId> <version>0.2.5</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.9</version> </plugin> </plugins> </pluginManagement> </build> </project>
Add Visual Studio code style
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectCodeStyleSettingsManager"> <option name="PER_PROJECT_SETTINGS"> <value> <XML> <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" /> </XML> </value> </option> <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default (1)" /> </component> </project>
Add R posts only RSS feed.
--- layout: none --- <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"> <title type="text">{{ site.title }}</title> <generator uri="https://github.com/mojombo/jekyll">Jekyll</generator> <link rel="self" type="application/atom+xml" href="{{ site.url }}/feed.xml" /> <link rel="alternate" type="text/html" href="{{ site.url }}" /> <updated>{{ site.time | date_to_xmlschema }}</updated> <id>{{ site.url }}/</id> <author> <name>{{ site.owner.name }}</name> <uri>{{ site.url }}/</uri> <email>{{ site.owner.email }}</email> </author> {% for post in site.tags.R limit:20 %} <entry> <title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title> <link rel="alternate" type="text/html" href="{% if post.link %}{{ post.link }}{% else %}{{ site.url }}{{ post.url }}{% endif %}"/> <id>{{ site.url }}{{ post.id }}</id> {% if post.modified %}<updated>{{ post.modified | to_xmlschema }}T00:00:00-00:00</updated> <published>{{ post.date | date_to_xmlschema }}</published> {% else %}<published>{{ post.date | date_to_xmlschema }}</published> <updated>{{ post.date | date_to_xmlschema }}</updated>{% endif %} <author> <name>{{ site.owner.name }}</name> <uri>{{ site.url }}</uri> <email>{{ site.owner.email }}</email> </author> <content type="html">{{ post.content | xml_escape }} &lt;p&gt;&lt;a href=&quot;{{ site.url }}{{ post.url }}&quot;&gt;{{ post.title }}&lt;/a&gt; was originally published by {{ site.owner.name }} at &lt;a href=&quot;{{ site.url }}&quot;&gt;{{ site.title }}&lt;/a&gt; on {{ post.date | date: "%B %d, %Y" }}.&lt;/p&gt;</content> </entry> {% endfor %} </feed>
Move error xml to the right place.
<!-- IBM_PROLOG_BEGIN_TAG --> <!-- This is an automatically generated prolog. --> <!-- --> <!-- $Source: chips/p9/procedures/ipl/hwp/p9_pm_ocb_init_errors.xml $ --> <!-- --> <!-- IBM CONFIDENTIAL --> <!-- --> <!-- EKB Project --> <!-- --> <!-- COPYRIGHT 2015 --> <!-- [+] International Business Machines Corp. --> <!-- --> <!-- --> <!-- The source code for this program is not published or otherwise --> <!-- divested of its trade secrets, irrespective of what has been --> <!-- deposited with the U.S. Copyright Office. --> <!-- --> <!-- IBM_PROLOG_END_TAG --> <!-- Error definitions for p9_pm_ocb_init procedure --> <hwpErrors> <!-- ******************************************************************** --> <hwpError> <rc>RC_PM_OCBINIT_BAD_MODE</rc> <description>Unknown mode passed to p9_pm_ocb_init. </description> </hwpError> <!-- ******************************************************************** --> <hwpError> <rc>RC_PM_OCBINIT_BAD_Q_LENGTH_PARM</rc> <description>Bad Queue Length Passed to p9_pm_ocb_init. </description> </hwpError> <!-- ******************************************************************** --> <hwpError> <rc>RC_PM_OCBINIT_BAD_ITP_TYPE_PARM</rc> <description>Bad Interrupt Type Passed to p9_pm_ocb_init. </description> </hwpError> <!-- ******************************************************************** --> <hwpError> <rc>RC_PM_OCBINIT_BAD_Q_OVER_UNDERFLOW_PARM</rc> <description>Bad Queue Over/Underflow Enable Passed to p9_pm_ocb_init. </description> </hwpError> <!-- ******************************************************************** --> <hwpError> <rc>RC_PM_OCBINIT_BAD_CHAN_NUM_PARM</rc> <description>Bad Channel Number Passed to p9_pm_ocb_init. </description> </hwpError> <!-- ******************************************************************** --> <hwpError> <rc>RC_PM_OCBINIT_BAD_CHAN_TYPE_PARM</rc> <description>Bad Channel Type Passed to p9_pm_ocb_init. </description> </hwpError> <!-- ******************************************************************** --> <hwpError> <rc>RC_PM_OCBINIT_BAD_CHAN3_TYPE_PARM</rc> <description>Bad Channel Type for Channel3 Passed to p9_pm_ocb_init. </description> </hwpError> <!-- ********************************************************************* --> </hwpErrors>
Update App layer config files for Concept authority to fit the groupfield paradigm.
<record id="preferredCA" in-recordlist="no" separate-record="false"> <hassoftdelete>true</hassoftdelete> <section> <!-- List containing this item's preferred term and any non-preferred terms --> <repeat id="conceptTermGroupList/conceptTermGroup"> <!-- Fields common across all authority items --> <field id="termDisplayName" ui-search="repeatable" in-title="yes" display-name="yes" mini="summary,number,search,list,relate"> <title-selector>titleBar-displayName</title-selector> </field> <field id="termName"/> <field id="termType" ui-search="repeatable" mini="summary,search,list,relate"> <options> <option id="">Please select a value</option> <option id="descriptor">descriptor</option> <option id="alternate descriptor">alternate descriptor</option> <option id="used for term">used for term</option> </options> </field> <field id="termStatus" ui-search="repeatable" seperate_ui_container="true" mini="search,list,relate"> <options> <option id="provisional" default="yes">Provisional</option> <option id="under review">Under Review</option> <option id="accepted">Accepted</option> <option id="rejected">Rejected</option> </options> </field> <field id="termQualifier"/> <field id="termLanguage" autocomplete="vocab-languages" ui-type="enum"> <enum> <default>eng</default> </enum> </field> <field id="termPrefForLang" datatype="boolean"/> <!-- termSource will be a Citation Authority autocomplete field when that service is implemented --> <field id="termSource"/> <field id="termSourceDetail"/> <field id="termSourceID"/> <field id="termSourceNote"/> <!-- Fields specific to Concept terms --> <field id="historicalStatus"> <options> <option id="current" default="yes">Current</option> <option id="historical">Historical</option> <option id="both">Both</option> </options> </field> </repeat> </section> </record>
Add a standard config for a slave HC
<?xml version='1.0' encoding='UTF-8'?> <host xmlns="urn:jboss:domain:1.1"> <management> <security-realms> <security-realm name="ManagementRealm"> <authentication> <properties path="mgmt-users.properties" relative-to="jboss.domain.config.dir"/> </authentication> </security-realm> </security-realms> <management-interfaces> <native-interface security-realm="ManagementRealm"> <socket interface="management" port="19999"/> </native-interface> </management-interfaces> </management> <domain-controller> <remote host="${jboss.domain.controller.address}" port="${jboss.domain.controller.port:9999}"/> </domain-controller> <interfaces> <interface name="management"> <inet-address value="${jboss.bind.address.management:127.0.0.1}"/> </interface> <interface name="public"> <inet-address value="${jboss.bind.address:127.0.0.1}"/> </interface> </interfaces> <jvms> <jvm name="default"> <heap size="64m" max-size="128m"/> </jvm> </jvms> <servers> <server name="server-one" group="main-server-group"/> <server name="server-two" group="other-server-group"> <!-- server-two avoids port conflicts by incrementing the ports in the default socket-group declared in the server-group --> <socket-binding-group ref="standard-sockets" port-offset="150"/> </server> </servers> </host>
Add contentDescription attribute on image
<?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:gravity="center" android:orientation="vertical" android:padding="30dp"> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:src="@drawable/feedhenry_redhat" /> </LinearLayout>
<?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:gravity="center" android:orientation="vertical" android:padding="30dp"> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:src="@drawable/feedhenry_redhat" android:contentDescription="@string/feedhenry_logo"/> </LinearLayout>
Add a lifecycle mapping for m2e that disables plugin execution (for now)
<?xml version="1.0" encoding="UTF-8"?> <!-- * (C) Copyright Uwe Schindler (Generics Policeman) and others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. --> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <goals> <goal>check</goal> <goal>testCheck</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata>
Add console config file for logger
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration debug="false" xmlns:log4j='http://jakarta.apache.org/log4j/'> <appender name="console" class="org.apache.log4j.ConsoleAppender"> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n" /> </layout> </appender> <appender name="file" class="org.apache.log4j.RollingFileAppender"> <param name="append" value="true" /> <param name="maxFileSize" value="2MB" /> <param name="maxBackupIndex" value="10" /> <param name="file" value="/Users/neiro/Projects/IntelliJIdea/work/gmZbxLogrt/logging.log" /> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n" /> </layout> </appender> <root> <level value="DEBUG" /> <appender-ref ref="file" /> </root> </log4j:configuration>
Add attribute to control the number of messages for Synopsys FW
<!-- IBM_PROLOG_BEGIN_TAG --> <!-- This is an automatically generated prolog. --> <!-- --> <!-- $Source: src/import/chips/ocmb/odyssey/procedures/xml/attribute_info/ody_attributes.xml $ --> <!-- --> <!-- OpenPOWER HostBoot Project --> <!-- --> <!-- Contributors Listed Below - COPYRIGHT 2018,2022 --> <!-- [+] International Business Machines Corp. --> <!-- --> <!-- --> <!-- Licensed under the Apache License, Version 2.0 (the "License"); --> <!-- you may not use this file except in compliance with the License. --> <!-- You may obtain a copy of the License at --> <!-- --> <!-- http://www.apache.org/licenses/LICENSE-2.0 --> <!-- --> <!-- Unless required by applicable law or agreed to in writing, software --> <!-- distributed under the License is distributed on an "AS IS" BASIS, --> <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or --> <!-- implied. See the License for the specific language governing --> <!-- permissions and limitations under the License. --> <!-- --> <!-- IBM_PROLOG_END_TAG --> <!-- --> <!-- @file ody_attributes.xml --> <!-- @brief Attribute xml for odyssey attributes --> <!-- --> <!-- *HWP HWP Owner: Louis Stermole <stermole@us.ibm.com> --> <!-- *HWP HWP Backup: Stephen Glancy <sglancy@us.ibm.com> --> <!-- *HWP Team: Memory --> <!-- *HWP Level: 2 --> <!-- *HWP Consumed by: FSP:HB --> <!-- --> <attributes> <attribute> <id>ATTR_ODY_DRAMINIT_VERBOSITY</id> <targetType>TARGET_TYPE_OCMB_CHIP</targetType> <description> Controls the number of debug messages sent by the Odyssey PHY firmware based on verbosity field (HdtCtrl) in the training Message Block </description> <valueType>uint8</valueType> <enum> MAX_DEBUG = 0x04, DETAILED_DEBUG = 0x05, COARSE_DEBUG = 0x0A, STAGE_COMPLETE = 0xC8, ASSERTION = 0xC9, FW_COMPLETE = 0xFF </enum> <default>DETAILED_DEBUG</default> <writeable/> <mssAccessorName>ody_draminit_verbosity</mssAccessorName> </attribute> </attributes>
Add the french translation file
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- general --> <string name="app_name">Geocar</string> <string name="action_settings">Paramètres</string> <!-- Home page --> <string name="hint_username">Pseudo</string> <string name="hint_password">Mot de passe</string> <string name="button_home">Envoyer</string> </resources>