Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Replace English auto-fixes with Spanish ones
<?xml version="1.0" encoding="utf-8"?> <!-- ** ** Copyright 2012, AnySoftKeyboard ** ** 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. */ --> <words> <!-- this dictionary is used for common typing mistakes --> <!-- the attribute 'src' will be replace by the node's value: --> <!-- rght will be converted to right --> <word src="rght">right</word> <word src="riht">right</word> </words>
<?xml version="1.0" encoding="utf-8"?> <!-- ** ** Copyright 2012, AnySoftKeyboard ** ** 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. */ --> <words> <!-- this dictionary is used for common typing mistakes --> <!-- the attribute 'src' will be replace by the node's value: --> <!-- rght will be converted to right --> <word src="ed">es</word> <word src="wn">en</word> </words>
Set relativePath to ../.. to try and get this working with Travis CI
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.fenixinfotech</groupId> <artifactId>java-playpen-parent</artifactId> <version>0.1-SNAPSHOT</version> </parent> <artifactId>supercsv-playpen</artifactId> <packaging>jar</packaging> <name>Super CSV Playpen</name> <dependencies> <dependency> <groupId>net.sf.supercsv</groupId> <artifactId>super-csv</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>com.fenixinfotech</groupId> <artifactId>csv-common-test</artifactId> <version>${project.parent.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.fenixinfotech</groupId> <artifactId>java-playpen-parent</artifactId> <version>0.1-SNAPSHOT</version> <relativePath>../..</relativePath> </parent> <artifactId>supercsv-playpen</artifactId> <packaging>jar</packaging> <name>Super CSV Playpen</name> <dependencies> <dependency> <groupId>net.sf.supercsv</groupId> <artifactId>super-csv</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>com.fenixinfotech</groupId> <artifactId>csv-common-test</artifactId> <version>${project.parent.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
Set allowConnectToRunningServer=false. It is a good reminder when processing pulls to turn off any running servers
<?xml version="1.0" encoding="UTF-8"?> <arquillian xmlns="http://jboss.org/schema/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> <container qualifier="jboss" default="true"> <configuration> <property name="jbossHome">target/jbossas</property> <property name="allowConnectingToRunningServer">true</property> </configuration> </container> </arquillian>
<?xml version="1.0" encoding="UTF-8"?> <arquillian xmlns="http://jboss.org/schema/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> <container qualifier="jboss" default="true"> <configuration> <property name="jbossHome">target/jbossas</property> <!-- Please leave this as false. It is a good, early catch for the reviewers to make sure that they have not left a stale server running when merging pull requests --> <property name="allowConnectingToRunningServer">false</property> </configuration> </container> </arquillian>
Remove refecence of base in xmlid
<?xml version="1.0" encoding="utf-8"?> <odoo> <data> <!-- Declared the same in every module that may need it --> <record id="base.personal_contact_information" model="ir.ui.view"> <field name="name">Personal information page for contacts form</field> <field name="model">res.partner</field> <field name="inherit_id" ref="base.view_partner_form"/> <field name="priority">2</field> <field name="arch" type="xml"> <data> <xpath expr="//page[@name='internal_notes']" position="after"> <page name="personal_information_page" string="Personal Information" attrs="{'invisible': [('is_company','=',True)]}"> <group name="personal_information_group"/> </page> </xpath> </data> </field> </record> </data> </odoo>
<?xml version="1.0" encoding="utf-8"?> <odoo> <data> <!-- Declared the same in every module that may need it --> <record id="personal_information" model="ir.ui.view"> <field name="name">Personal information page for contacts form</field> <field name="model">res.partner</field> <field name="inherit_id" ref="base.view_partner_form"/> <field name="priority">2</field> <field name="arch" type="xml"> <data> <xpath expr="//page[@name='internal_notes']" position="after"> <page name="personal_information_page" string="Personal Information" attrs="{'invisible': [('is_company','=',True)]}"> <group name="personal_information_group"/> </page> </xpath> </data> </field> </record> </data> </odoo>
Fix table 4.8 overlap in compute admin guide
<?xml version="1.0" encoding="UTF-8"?> <para xmlns="http://docbook.org/ns/docbook" version="5.0"> <table rules="all"> <caption>Description of nova.conf file configuration options for live migration</caption> <col width="50%"/> <col width="50%"/> <thead> <tr> <td>Configuration option=Default value</td> <td>(Type) Description</td> </tr> </thead> <tbody><tr> <td> live_migration_bandwidth=0 </td> <td> (IntOpt) Define live migration behavior </td> </tr> <tr> <td> live_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE,VIR_MIGRATE_PEER2PEER </td> <td> (StrOpt) Define live migration behavior. </td> </tr> <tr> <td> live_migration_retry_count=30 </td> <td> (IntOpt) Number of 1 second retries needed in live_migration </td> </tr> <tr> <td> live_migration_uri=qemu+tcp://%s/system </td> <td> (StrOpt) Define protocol used by live_migration feature </td> </tr></tbody> </table> </para>
<?xml version="1.0" encoding="UTF-8"?> <para xmlns="http://docbook.org/ns/docbook" version="5.0"> <table rules="all"> <caption>Description of nova.conf file configuration options for live migration</caption> <col width="60%"/> <col width="40%"/> <thead> <tr> <td>Configuration option=Default value</td> <td>(Type) Description</td> </tr> </thead> <tbody><tr> <td> live_migration_bandwidth=0 </td> <td> (IntOpt) Define live migration behavior </td> </tr> <tr> <td> live_migration_flag= VIR_MIGRATE_UNDEFINE_SOURCE,VIR_MIGRATE_PEER2PEER </td> <td> (StrOpt) Define live migration behavior. </td> </tr> <tr> <td> live_migration_retry_count=30 </td> <td> (IntOpt) Number of 1 second retries needed in live_migration </td> </tr> <tr> <td> live_migration_uri=qemu+tcp://%s/system </td> <td> (StrOpt) Define protocol used by live_migration feature </td> </tr></tbody> </table> </para>
Add string resources for Telemetry
<resources> <string name="app_name">serleena</string> <string name="title_activity_serleena">SerleenaActivity</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <string name="sync_token">Token value</string> <string name="heartDesc">Cuore</string> <string name="heart_rate">140 BPM</string> <string name="compass_value">N</string> <string name="weatherDesc">Indicazione meteo</string> <string name="weather_temperature">15° C</string> <string name="weather_day">06/05/2015</string> <string name="contact_name">Polizia</string> <string name="contact_value">113</string> <string name="telemetry_status">OFF</string> </resources>
<resources> <string name="app_name">serleena</string> <string name="title_activity_serleena">SerleenaActivity</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <string name="sync_token">Token value</string> <string name="heartDesc">Cuore</string> <string name="heart_rate">140 BPM</string> <string name="compass_value">N</string> <string name="weatherDesc">Indicazione meteo</string> <string name="weather_temperature">15° C</string> <string name="weather_day">06/05/2015</string> <string name="contact_name">Polizia</string> <string name="contact_value">113</string> <string name="telemetry_status">OFF</string> <string name="telemetry_image">Pulsante rosso</string> </resources>
Update app version for Webdav impl of files GUI
<?xml version="1.0"?> <info> <id>files</id> <name>Files</name> <description>File Management</description> <licence>AGPL</licence> <author>Robin Appelman, Vincent Petry</author> <shipped>true</shipped> <standalone/> <default_enable/> <version>1.3.0</version> <types> <filesystem/> </types> <dependencies> <owncloud min-version="9.0" /> </dependencies> <documentation> <user>user-files</user> </documentation> </info>
<?xml version="1.0"?> <info> <id>files</id> <name>Files</name> <description>File Management</description> <licence>AGPL</licence> <author>Robin Appelman, Vincent Petry</author> <shipped>true</shipped> <standalone/> <default_enable/> <version>1.4.0</version> <types> <filesystem/> </types> <dependencies> <owncloud min-version="9.0" /> </dependencies> <documentation> <user>user-files</user> </documentation> </info>
Add apache commons language extensions 3.
<!-- ivy.xml Dependency management via Apache Ivy --> <ivy-module version="2.0"> <info organisation="com.github.rsandor" module="solace"/> <dependencies> <dependency org="junit" name="junit-dep" rev="4.8.2"/> <dependency org="org.mockito" name="mockito-all" rev="1.8.4"/> <dependency org="org.json" name="json" rev="20090211"/> <dependency org="com.google.guava" name="guava" rev="12.0" /> <dependency org="org.scala-lang" name="scala-xml" rev="2.11.0-M4"/> <dependency org="org.apache.commons" name="commons-collections4" rev="4.1"/> <dependency org="org.apache.lucene" name="lucene-core" rev="6.6.0"/> <dependency org="org.apache.lucene" name="lucene-queryparser" rev="6.6.0"/> <dependency org="org.apache.lucene" name="lucene-analyzers-common" rev="6.6.0"/> </dependencies> </ivy-module>
<!-- ivy.xml Dependency management via Apache Ivy --> <ivy-module version="2.0"> <info organisation="com.github.rsandor" module="solace"/> <dependencies> <dependency org="junit" name="junit-dep" rev="4.8.2"/> <dependency org="org.mockito" name="mockito-all" rev="1.8.4"/> <dependency org="org.json" name="json" rev="20090211"/> <dependency org="com.google.guava" name="guava" rev="12.0" /> <dependency org="org.scala-lang" name="scala-xml" rev="2.11.0-M4"/> <dependency org="org.apache.commons" name="commons-lang3" rev="3.0"/> <dependency org="org.apache.commons" name="commons-collections4" rev="4.1"/> <dependency org="org.apache.lucene" name="lucene-core" rev="6.6.0"/> <dependency org="org.apache.lucene" name="lucene-queryparser" rev="6.6.0"/> <dependency org="org.apache.lucene" name="lucene-analyzers-common" rev="6.6.0"/> </dependencies> </ivy-module>
Modify testsuite configuration based on latest schema changes.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2016 Red Hat, Inc., and individual contributors ~ as indicated by the @author tags. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <configuration> <authentication-client xmlns="urn:elytron:1.0"> <rules> <rule> <allow-all-sasl-mechanisms /> <set-mechanism-properties> <property key="wildfly.sasl.local-user.quiet-auth" value="true" /> </set-mechanism-properties> </rule> </rules> </authentication-client> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2016 Red Hat, Inc., and individual contributors ~ as indicated by the @author tags. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <configuration> <authentication-client xmlns="urn:elytron:1.0"> <authentication-rules> <rule use-configuration="default" /> </authentication-rules> <authentication-configurations> <configuration name="default"> <allow-all-sasl-mechanisms /> <set-mechanism-properties> <property key="wildfly.sasl.local-user.quiet-auth" value="true" /> </set-mechanism-properties> </configuration> </authentication-configurations> </authentication-client> </configuration>
Remove 'try to' from instructional text
<resources> <string name="app_name">Open Flood</string> <!-- End game activity --> <string name="endgame_win_title">Excellent</string> <string name="endgame_win_text" formatted="false">You flooded the board in %1$d moves</string> <string name="endgame_lose_title">Game Over</string> <string name="endgame_button">New Game</string> <!--Settings Activity--> <string name="settings_settings">Settings</string> <string name="settings_num_colors">Number of Colors</string> <string name="settings_board_size">Board Size</string> <string name="settings_apply_button">Apply</string> <!--Info activity--> <string name="info_license">Released under the MIT License</string> <string name="info_source"><a href="http://github.com/gunshippenguin/open_flood">github.com/gunshippenguin/open_flood</a></string> <string name="info_instructions_title">Gameplay</string> <string name="info_instructions"> You start in the upper left hand corner of the board. Tap the colored buttons along the bottom of the board to flood all adjacent filled cells with that color. The aim of the game is to try to fill the entire board with a single color in less than the maximum number of allowed moves. </string> <string name="info_back">Back</string> </resources>
<resources> <string name="app_name">Open Flood</string> <!-- End game activity --> <string name="endgame_win_title">Excellent</string> <string name="endgame_win_text" formatted="false">You flooded the board in %1$d moves</string> <string name="endgame_lose_title">Game Over</string> <string name="endgame_button">New Game</string> <!--Settings Activity--> <string name="settings_settings">Settings</string> <string name="settings_num_colors">Number of Colors</string> <string name="settings_board_size">Board Size</string> <string name="settings_apply_button">Apply</string> <!--Info activity--> <string name="info_license">Released under the MIT License</string> <string name="info_source"><a href="http://github.com/gunshippenguin/open_flood">github.com/gunshippenguin/open_flood</a></string> <string name="info_instructions_title">Gameplay</string> <string name="info_instructions"> You start in the upper left hand corner of the board. Tap the colored buttons along the bottom of the board to flood all adjacent filled cells with that color. The aim of the game is to fill the entire board with a single color in less than the maximum number of allowed moves. </string> <string name="info_back">Back</string> </resources>
Update sample to use custom attrs
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.github.pengrad.mapscaleview.sample.MainActivity"> <fragment android:id="@+id/mapFragment" class="com.google.android.gms.maps.SupportMapFragment" android:layout_width="match_parent" android:layout_height="match_parent"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="12sp"/> <com.github.pengrad.mapscaleview.MapScaleView android:id="@+id/scaleView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:layout_margin="16dp"/> </FrameLayout>
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.github.pengrad.mapscaleview.sample.MainActivity"> <fragment android:id="@+id/mapFragment" class="com.google.android.gms.maps.SupportMapFragment" android:layout_width="match_parent" android:layout_height="match_parent"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="12sp"/> <com.github.pengrad.mapscaleview.MapScaleView android:id="@+id/scaleView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" app:scale_color="#009" app:scale_strokeWidth="3dp" app:scale_textSize="20sp" android:layout_margin="4dp"/> </FrameLayout>
Make sure test.log is written to target folder
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010 Harald Wellmann Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <configuration> <!-- log to System.out on console --> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <!-- log to file test.log --> <appender name="TEST_LOG" class="ch.qos.logback.core.FileAppender"> <file>test.log</file> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="WARN"> <appender-ref ref="STDOUT" /> <appender-ref ref="TEST_LOG" /> </root> <logger name="org.ops4j.pax.exam" level="INFO" /> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010 Harald Wellmann Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <configuration> <!-- log to System.out on console --> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <!-- log to file test.log --> <appender name="TEST_LOG" class="ch.qos.logback.core.FileAppender"> <file>target/test.log</file> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="WARN"> <appender-ref ref="STDOUT" /> <appender-ref ref="TEST_LOG" /> </root> <logger name="org.ops4j.pax.exam" level="INFO" /> </configuration>
Add meta information about feed.
<!-- category: {{ include.cat }} --> {% for post in site.posts %} {% if post.tags contains include.tag %} <entry> <title>{{ post.title }}</title> <link href="{{ site.production_url }}{{ post.url }}"/> <updated>{{ post.date | date_to_xmlschema }}</updated> <id>{{ site.production_url }}{{ post.id }}</id> <content type="html">{{ post.content | xml_escape | truncatewords: 100 }}</content> </entry> {% endif %} {% endfor %}
<title type='text'>{{ site.name }}</title> <subtitle type='html'></subtitle> <link href="{{ site.baseurl }}" /> <author> <name>Luca Ferrari </name> <email>{{ site.email }}</email> </author> <!-- category: {{ include.cat }} --> {% for post in site.posts %} {% if post.tags contains include.tag %} <entry> <title>{{ post.title }}</title> <link href="{{ site.production_url }}{{ post.url }}"/> <updated>{{ post.date | date_to_xmlschema }}</updated> <id>{{ site.production_url }}{{ post.id }}</id> <content type="html">{{ post.content | xml_escape | truncatewords: 100 }}</content> </entry> {% endif %} {% endfor %}
Update Zanata configuration to 0.8.0.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <config xmlns="http://zanata.org/namespace/config/"> <url>https://translate.jboss.org/</url> <project>uberfire-extensions</project> <project-version>0.7.0</project-version> <project-type>utf8properties</project-type> <locales> <locale>es</locale> <locale>fr</locale> <locale>ja</locale> <locale>de</locale> <locale>pt-BR</locale> <locale map-from="zh_CN">zh-Hans</locale> </locales> </config>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <config xmlns="http://zanata.org/namespace/config/"> <url>https://translate.jboss.org/</url> <project>uberfire-extensions</project> <project-version>0.8.0</project-version> <project-type>utf8properties</project-type> <locales> <locale>es</locale> <locale>fr</locale> <locale>ja</locale> <locale>de</locale> <locale>pt-BR</locale> <locale map-from="zh_CN">zh-Hans</locale> </locales> </config>
Change the version of xml to 1.1 to prevent the javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,39] Message: Premature end of file.
<?xml version="1.0" encoding="UTF-8"?> <ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd" version="3.1"> <enterprise-beans> <session> <ejb-name>SimpleStatelessSessionBean</ejb-name> <ejb-class>org.jboss.as.demos.ejb3.archive.SimpleStatelessSessionBean</ejb-class> <around-invoke> <method-name>aroundInvoke</method-name> </around-invoke> </session> </enterprise-beans> </ejb-jar>
<?xml version="1.1" encoding="UTF-8"?> <ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd" version="3.1"> <enterprise-beans> <session> <ejb-name>SimpleStatelessSessionBean</ejb-name> <ejb-class>org.jboss.as.demos.ejb3.archive.SimpleStatelessSessionBean</ejb-class> <around-invoke> <method-name>aroundInvoke</method-name> </around-invoke> </session> </enterprise-beans> </ejb-jar>
Save position of group profile floater
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <floater height="565" layout="topleft" min_height="565" width="470" can_close="true" can_resize="true" min_width="470"> <panel background_visible="false" top="5" height="560" right="-10" left="5" class="panel_group_info_sidetray" name="panel_group_info_sidetray" filename="panel_group_info_sidetray.xml" /> </floater>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <floater height="565" layout="topleft" min_height="565" width="470" can_close="true" can_resize="true" save_rect="true" min_width="470"> <panel background_visible="false" top="5" height="560" right="-10" left="5" class="panel_group_info_sidetray" name="panel_group_info_sidetray" filename="panel_group_info_sidetray.xml" /> </floater>
Update master.xml file for consolidated PDFs
<productname>Red Hat Process Automation Manager</productname> <productnumber>7.4</productnumber> <subtitle> </subtitle> <abstract> <para>This file contains the entire documentation set for Red Hat Process Automation Manager.</para> </abstract> <xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<productname>Red Hat Process Automation Manager</productname> <productnumber>7.4</productnumber> <subtitle> </subtitle> <abstract> <para>This file contains the entire documentation set for Red Hat Process Automation Manager and is for Red Hat internal use only.</para> </abstract> <xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
Add new dependencies and force compiler to Java 8
<?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>be.gervaisb</groupId> <artifactId>stackexchange-codereview</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.10.2</version> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>be.gervaisb</groupId> <artifactId>stackexchange-codereview</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <!-- For all --> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.10.2</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>
Add sesame-runtime as dependency to query-repository
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.openrdf.alibaba</groupId> <artifactId>alibaba</artifactId> <version>2.0-SNAPSHOT</version> </parent> <artifactId>alibaba-repository-query</artifactId> <name>AliBaba Query Repository</name> <description><![CDATA[ Adds named query storage to a Sesame Repository. ]]> </description> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.openrdf.alibaba</groupId> <artifactId>alibaba</artifactId> <version>2.0-SNAPSHOT</version> </parent> <artifactId>alibaba-repository-query</artifactId> <name>AliBaba Query Repository</name> <description><![CDATA[ Adds named query storage to a Sesame Repository. ]]> </description> <dependencies> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-runtime</artifactId> </dependency> <dependency> <groupId>org.openrdf.alibaba</groupId> <artifactId>alibaba-model</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryparser-sparql</artifactId> </dependency> </dependencies> </project>
Fix for broken API key field reference in manifest
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.raygun.raygun4android.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name="com.raygun.raygun4android.RaygunPostService" android:exported="false" android:permission="android.permission.BIND_JOB_SERVICE" android:process=":raygunpostservice"/> <meta-data android:name="com.mindscapehq.android.raygun4android.apikey" android:value="PASTE_YOUR_API_KEY_HERE" /> </application> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.raygun.raygun4android.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name="com.raygun.raygun4android.RaygunPostService" android:exported="false" android:permission="android.permission.BIND_JOB_SERVICE" android:process=":raygunpostservice"/> <meta-data android:name="com.raygun.raygun4android.apikey" android:value="PASTE_YOUR_API_KEY_HERE" /> </application> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> </manifest>
Replace unused padding with layout_margins in card header
<?xml version="1.0" encoding="utf-8"?> <View xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="1dp" android:background="@color/card_item_divider" android:paddingLeft="10dp" android:paddingRight="10dp" />
<?xml version="1.0" encoding="utf-8"?> <View xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginLeft="16dp" android:layout_marginRight="16dp" android:background="@color/card_item_divider" />
Configure code sniffer for PSR-1 and PSR-2 only
<?xml version="1.0"?> <ruleset> <rule ref="PSR1.Classes.ClassDeclaration"/> <rule ref="PSR1.Files.SideEffects"/> <rule ref="Generic.CodeAnalysis.UnconditionalIfStatement"/> <rule ref="Generic.CodeAnalysis.EmptyStatement"/> <rule ref="Generic.CodeAnalysis.UnnecessaryFinalModifier"/> <rule ref="Generic.CodeAnalysis.UselessOverridingMethod"/> <rule ref="Generic.CodeAnalysis.JumbledIncrementer"/> <rule ref="Generic.Files.ByteOrderMark"/> <rule ref="Generic.NamingConventions.ConstructorName"/> <rule ref="Squiz.Scope.MemberVarScope"/> <rule ref="Squiz.PHP.ForbiddenFunctions"/> <rule ref="Squiz.PHP.CommentedOutCode"/> <rule ref="Squiz.PHP.GlobalKeyword"/> <rule ref="Squiz.Functions.FunctionDuplicateArgument"/> <rule ref="Squiz.Operators.ValidLogicalOperators"/> <rule ref="PSR2.Classes.PropertyDeclaration"/> <rule ref="PSR2.Classes.ClassDeclaration"/> <rule ref="PSR2.Methods.MethodDeclaration"/> <rule ref="PSR2.Namespaces.UseDeclaration"/> <rule ref="PSR2.ControlStructures.SwitchDeclaration"/> </ruleset>
<?xml version="1.0"?> <ruleset> <rule ref="PSR1"/> <rule ref="PSR2"/> </ruleset>
Implement the "add new series" functionality as floating action button
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:context="de.alexanderkohout.seriesreminder.ui.SeriesOverviewFragment" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/White" android:paddingTop="@dimen/padding_edge"> <android.support.v7.widget.RecyclerView android:id="@+id/seriesRecyclerView" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="@dimen/padding_edge" android:paddingRight="@dimen/padding_edge" android:scrollbars="none"/> <ImageButton android:id="@+id/addSeriesButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@android:color/transparent" android:layout_margin="16dp" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:padding="12dp" android:src="@drawable/ic_add"/> </RelativeLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:context="de.alexanderkohout.seriesreminder.ui.SeriesOverviewFragment" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/White" android:paddingTop="@dimen/padding_edge"> <android.support.v7.widget.RecyclerView android:id="@+id/seriesRecyclerView" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="@dimen/padding_edge" android:paddingRight="@dimen/padding_edge" android:scrollbars="none"/> <ImageButton android:id="@+id/addSeriesButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@android:color/transparent" android:elevation="8dp" android:layout_margin="16dp" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:padding="12dp" android:src="@drawable/ic_add"/> </RelativeLayout>
Fix android app name for acl_compressor.
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">MainActivity</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">ACL Compressor</string> </resources>
Change reddit accent to blue
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="colorPrimary">#ff3F51B5</color> <color name="colorPrimaryDark">#ff303F9F</color> <color name="colorAccent">#ffFF4081</color> <color name="mediumAccent">#ff00AB6B</color> <color name="productHuntAccent">#ffff9800</color> <color name="redditAccent">#ffff5700</color> <color name="hackerNewsAccent">#ffff6600</color> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="colorPrimary">#ff3F51B5</color> <color name="colorPrimaryDark">#ff303F9F</color> <color name="colorAccent">#ffFF4081</color> <color name="mediumAccent">#ff00AB6B</color> <color name="productHuntAccent">#ffff9800</color> <color name="redditAccent">#336699</color> <color name="hackerNewsAccent">#ffff6600</color> </resources>
Fix the Lint warning from Gradle.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.barvoy.sensorama" > <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" android:name="com.barvoy.sensorama.SRApp" > <activity android:name=".MainActivity" android:label="@string/app_name" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <receiver android:name=".PowerConnectionReceiver"> <intent-filter> <action android:name="android.intent.action.ACTION_POWER_CONNECTED"/> <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/> </intent-filter> </receiver> </activity> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.barvoy.sensorama" > <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" android:name="com.barvoy.sensorama.SRApp" > <activity android:name=".MainActivity" android:label="@string/app_name" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name=".PowerConnectionReceiver"> <intent-filter> <action android:name="android.intent.action.ACTION_POWER_CONNECTED"/> <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/> </intent-filter> </receiver> </application> </manifest>
Set source encoding to UTF-8
<?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.meurisse.selenium</groupId> <artifactId>jsonConsole</artifactId> <version>1.0-SNAPSHOT</version> <name>jsonConsole for selenium grid</name> <dependencies> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-server</artifactId> <version>2.37.0</version> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.meurisse.selenium</groupId> <artifactId>jsonConsole</artifactId> <version>1.0-SNAPSHOT</version> <name>jsonConsole for selenium grid</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-server</artifactId> <version>2.37.0</version> </dependency> </dependencies> </project>
Reconfigure test php test units
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" > <testsuites> <testsuite name="Package Test Suite"> <directory suffix=".php">./tests/</directory> </testsuite> </testsuites> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" > <testsuites> <testsuite name="Package Test Suite"> <directory suffix=".php">./tests/</directory> </testsuite> </testsuites> </phpunit>
Use unique identifier of this broker as the container id
<connector-services> <connector-service name="amqp-connector"> <factory-class>org.apache.activemq.artemis.integration.amqp.AMQPConnectorServiceFactory</factory-class> <param key="host" value="$QUEUE_SCHEDULER_SERVICE_HOST" /> <param key="port" value="$QUEUE_SCHEDULER_SERVICE_PORT" /> <param key="containerId" value="$GROUP_ID" /> <param key="groupId" value="$GROUP_ID" /> </connector-service> </connector-services>
<connector-services> <connector-service name="amqp-connector"> <factory-class>org.apache.activemq.artemis.integration.amqp.AMQPConnectorServiceFactory</factory-class> <param key="host" value="$QUEUE_SCHEDULER_SERVICE_HOST" /> <param key="port" value="$QUEUE_SCHEDULER_SERVICE_PORT" /> <param key="containerId" value="$CONTAINER_ID" /> <param key="groupId" value="$GROUP_ID" /> </connector-service> </connector-services>
Remove size spec from Livestream URL
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/"> <style> body { margin: 0 !important; padding: 0 !important; } </style> <script src="//code.jquery.com/jquery-2.1.4.min.js" /> <iframe src="http://livestream.com/accounts/4175709/events/4206552/player?width=960&amp;height=540&amp;autoPlay=true&amp;mute=false" width="1440" height="778" frameborder="0" scrolling="no"> </iframe> <script> //alert($(window).height()); </script> </html>
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/"> <style> body { margin: 0 !important; padding: 0 !important; } </style> <script src="//code.jquery.com/jquery-2.1.4.min.js" /> <iframe src="http://livestream.com/accounts/4175709/events/4206552/player?autoPlay=true&amp;mute=false" width="1440" height="778" frameborder="0" scrolling="no"> </iframe> <script> //alert($(window).height()); </script> </html>
Set Tomcat connector to bind late
<?xml version='1.0' encoding='utf-8'?> <!-- Cloud Foundry Java Buildpack Copyright (c) 2013 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. --> <Server port='-1'> <Listener className='org.apache.catalina.core.JasperListener'/> <Service name='Catalina'> <Connector port='${http.port}'/> <Engine defaultHost='localhost' name='Catalina'> <Host name='localhost'> <Listener className="com.gopivotal.buildpack.support.tomcat.ApplicationStartupFailureDetectingLifecycleListener"/> </Host> </Engine> </Service> </Server>
<?xml version='1.0' encoding='utf-8'?> <!-- Cloud Foundry Java Buildpack Copyright (c) 2013 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. --> <Server port='-1'> <Listener className='org.apache.catalina.core.JasperListener'/> <Service name='Catalina'> <Connector port='${http.port}' bindOnInit="false"/> <Engine defaultHost='localhost' name='Catalina'> <Host name='localhost'> <Listener className="com.gopivotal.buildpack.support.tomcat.ApplicationStartupFailureDetectingLifecycleListener"/> </Host> </Engine> </Service> </Server>
Make slideshow images fit the screen
<?xml version="1.0" encoding="utf-8"?> <ImageView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_centerVertical="true" android:layout_centerHorizontal="true" android:contentDescription="@string/title_activity_slideshow" android:scaleType="centerInside" />
<?xml version="1.0" encoding="utf-8"?> <ImageView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_centerVertical="true" android:layout_centerHorizontal="true" android:contentDescription="@string/title_activity_slideshow" android:scaleType="fitCenter" />
Add a title, author, and description
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> <!DOCTYPE nstemplate SYSTEM "nstemplate.dtd"> <!-- XML NS template for making a single-node PlanetLab DevBox experiment --> <nstemplate> <variable name="HWType" default="pc" descr="Hardware Type" /> <variable name="NodeName" default="devbox" descr="Node Name" /> <!-- This hard-codes the image name, but it seems like we have to do that somewhere... --> <variable name="ImageName" default="PLAB-DEVBOX" descr = "Disk Image" /> <nstext> <section><![CDATA[ # plabdevbox.ns - NS script to make a DevBox experiment on Emulab # # February 21, 2006 # # Questions and comments to testbed-ops@emulab.net # # Boilerplate # source tb_compat.tcl set ns [new Simulator] set <NodeName /> [$ns node] tb-set-hardware $<NodeName /> <HWType /> tb-set-node-os $<NodeName /> "<ImageName />" # # Boilerplate # $ns run ]]></section> </nstext> </nstemplate>
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> <!DOCTYPE nstemplate SYSTEM "nstemplate.dtd"> <!-- XML NS template for making a single-node PlanetLab DevBox experiment --> <nstemplate name="PlanetLab DevBox" author="Robert Ricci" authormail="ricci@cs.utah.edu" authoruid="ricci"> <description> This template is for creating a DevBox for building software to run on PlanetLab. You shouldn't need to change any of the defaults. </description> <variable name="HWType" default="pc" descr="Hardware Type" /> <variable name="NodeName" default="devbox" descr="Node Name" /> <!-- This hard-codes the image name, but it seems like we have to do that somewhere... --> <variable name="ImageName" default="PLAB-DEVBOX" descr = "Disk Image" /> <nstext> <section><![CDATA[ # plabdevbox.ns - NS script to make a DevBox experiment on Emulab # # February 21, 2006 # # Questions and comments to testbed-ops@emulab.net # # Boilerplate # source tb_compat.tcl set ns [new Simulator] set <NodeName /> [$ns node] tb-set-hardware $<NodeName /> <HWType /> tb-set-node-os $<NodeName /> "<ImageName />" # # Boilerplate # $ns run ]]></section> </nstext> </nstemplate>
Enable android pay in example app
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example" android:versionCode="1" android:versionName="1.0"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" /> <application android:name=".MainApplication" android:allowBackup="true" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:theme="@style/AppTheme"> <activity android:name=".MainActivity" android:label="@string/app_name" android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:windowSoftInputMode="adjustResize"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> <meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" /> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example" android:versionCode="1" android:versionName="1.0"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" /> <application android:name=".MainApplication" android:allowBackup="true" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:theme="@style/AppTheme"> <meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" /> <activity android:name=".MainActivity" android:label="@string/app_name" android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:windowSoftInputMode="adjustResize"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> <meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" /> </application> </manifest>
Update POM with dependency on core
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>training.time-tracker</groupId> <artifactId>time-tracker-parent</artifactId> <version>0.3.1-SNAPSHOT</version> </parent> <artifactId>time-tracker-web</artifactId> <packaging>war</packaging> <name>Time Tracker (Web)</name> </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> <parent> <groupId>training.time-tracker</groupId> <artifactId>time-tracker-parent</artifactId> <version>0.3.1-SNAPSHOT</version> </parent> <artifactId>time-tracker-web</artifactId> <packaging>war</packaging> <name>Time Tracker (Web)</name> <dependencies> <dependency> <groupId>training.time-tracker</groupId> <artifactId>time-tracker-core</artifactId> <version>${project.version}</version> </dependency> </dependencies> </project>
Allow users of kafka-avro-serializer to use any Scala version.
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.confluent</groupId> <artifactId>kafka-schema-registry-parent</artifactId> <version>0.1-SNAPSHOT</version> </parent> <groupId>io.confluent</groupId> <artifactId>kafka-avro-serializer</artifactId> <packaging>jar</packaging> <name>kafka-avro-serializer</name> <dependencies> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka_${kafka.scala.version}</artifactId> <version>${kafka.version}</version> </dependency> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> <version>${avro.version}</version> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-schema-registry-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </project>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.confluent</groupId> <artifactId>kafka-schema-registry-parent</artifactId> <version>0.1-SNAPSHOT</version> </parent> <groupId>io.confluent</groupId> <artifactId>kafka-avro-serializer</artifactId> <packaging>jar</packaging> <name>kafka-avro-serializer</name> <dependencies> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka_${kafka.scala.version}</artifactId> <version>${kafka.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> <version>${avro.version}</version> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-schema-registry-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </project>
Undo previous config xml test
<?xml version="1.0" encoding="UTF-8"?> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="gr.eworx.wavToAccConverter" version="0.0.1"> <name>WavToAccConverter</name> <description>iOS Wav to AAC converter</description> <license>Apache 2.0</license> <keywords>cordova,ios,audio,wav,aac,converter</keywords> <js-module src="www/wavToAacConverter.js" name="WavToAacConverter"> <clobbers target="window.gr.eworx.WavToAacConverter" /> </js-module> <platform name="ios"> <config-file target="config.xml" parent="/*"> <feature name="WavToAacConverter"> <param name="ios-package" value="WavToAacConverter"/> </feature> </config-file> <header-file src="src/ios/WavToAacConverter.h" /> <source-file src="src/ios/WavToAacConverter.m" /> <!-- <header-file src="src/ios/TPAACAudioConverter.h" /> <source-file src="src/ios/TPAACAudioConverter.m" /> --> </platform> </plugin>
<?xml version="1.0" encoding="UTF-8"?> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="gr.eworx.wavToAccConverter" version="0.0.1"> <name>WavToAccConverter</name> <description>iOS Wav to AAC converter</description> <license>Apache 2.0</license> <keywords>cordova,ios,audio,wav,aac,converter</keywords> <js-module src="www/wavToAacConverter.js" name="WavToAacConverter"> <clobbers target="window.gr.eworx.WavToAacConverter" /> </js-module> <platform name="ios"> <config-file target="config.xml" parent="/*"> <feature name="WavToAacConverter"> <param name="ios-package" value="WavToAacConverter"/> </feature> </config-file> <header-file src="src/ios/WavToAacConverter.h" /> <source-file src="src/ios/WavToAacConverter.m" /> <header-file src="src/ios/TPAACAudioConverter.h" /> <source-file src="src/ios/TPAACAudioConverter.m" /> </platform> </plugin>
Disable some checks on some files
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> <suppressions> </suppressions>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> <suppressions> <suppress files="org/apache/xmlgraphics/image/GraphicsUtil.java" checks="AvoidNestedBlocks"/> <suppress files="org/apache/xmlgraphics/image/codec/png/PNGImageDecoder.java" checks="ConstantName"/> <suppress files="org/apache/xmlgraphics/image/codec/png/PNGRed.java" checks="ConstantName"/> </suppressions>
Fix BGP-FS's BGPActivator bean arguments
<?xml version="1.0" encoding="UTF-8"?> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"> <bean id="flowSpecExtensionContext" class="org.opendaylight.protocol.bgp.flowspec.SimpleFlowspecExtensionProviderContext"/> <bean id="flowSpecActivator" class="org.opendaylight.protocol.bgp.flowspec.FlowspecActivator"> <argument ref="flowSpecExtensionContext"/> </bean> <bean id="BGPActivator" class="org.opendaylight.protocol.bgp.flowspec.BGPActivator"> <argument ref="flowSpecExtensionContext"/> <argument ref="flowSpecActivator"/> </bean> <bean id="RIBActivator" class="org.opendaylight.protocol.bgp.flowspec.RIBActivator"> <argument ref="flowSpecExtensionContext"/> </bean> <service ref="BGPActivator" interface="org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator" odl:type="org.opendaylight.protocol.bgp.flowspec.BGPActivator"/> <service ref="RIBActivator" interface="org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator" odl:type="org.opendaylight.protocol.bgp.flowspec.RIBActivator"/> </blueprint>
<?xml version="1.0" encoding="UTF-8"?> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"> <bean id="flowSpecExtensionContext" class="org.opendaylight.protocol.bgp.flowspec.SimpleFlowspecExtensionProviderContext"/> <bean id="flowSpecActivator" class="org.opendaylight.protocol.bgp.flowspec.FlowspecActivator"> <argument ref="flowSpecExtensionContext"/> </bean> <bean id="BGPActivator" class="org.opendaylight.protocol.bgp.flowspec.BGPActivator"> <argument ref="flowSpecActivator"/> </bean> <bean id="RIBActivator" class="org.opendaylight.protocol.bgp.flowspec.RIBActivator"> <argument ref="flowSpecExtensionContext"/> </bean> <service ref="BGPActivator" interface="org.opendaylight.protocol.bgp.parser.spi.BGPExtensionProviderActivator" odl:type="org.opendaylight.protocol.bgp.flowspec.BGPActivator"/> <service ref="RIBActivator" interface="org.opendaylight.protocol.bgp.rib.spi.RIBExtensionProviderActivator" odl:type="org.opendaylight.protocol.bgp.flowspec.RIBActivator"/> </blueprint>
Add HTML coverage via PHPUnit XML
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="tests/bootstrap.php" colors="true"> <testsuites> <testsuite name="Vfac TMDB Test Suite"> <directory>./tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">./src/</directory> </whitelist> </filter> <logging> <log type="coverage-clover" target="build/logs/clover.xml"/> </logging> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="tests/bootstrap.php" colors="true"> <testsuites> <testsuite name="Vfac TMDB Test Suite"> <directory>./tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">./src/</directory> </whitelist> </filter> <logging> <log type="coverage-clover" target="build/logs/clover.xml"/> <log type="coverage-html" target="logs/build/coverage" lowUpperBound="35" highLowerBound="70"/> </logging> </phpunit>
Set env. variable to pass tests on IDEA 14 EAP
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="All Tests" type="JUnit" factoryName="JUnit"> <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea"> <pattern> <option name="PATTERN" value="com.intellij.aws.cloudformation.tests.*" /> <option name="ENABLED" value="true" /> </pattern> </extension> <module name="CloudFormation" /> <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" /> <option name="ALTERNATIVE_JRE_PATH" value="" /> <option name="PACKAGE_NAME" value="com.intellij.aws.cloudformation.tests" /> <option name="MAIN_CLASS_NAME" value="" /> <option name="METHOD_NAME" value="" /> <option name="TEST_OBJECT" value="package" /> <option name="VM_PARAMETERS" value="-ea" /> <option name="PARAMETERS" value="" /> <option name="WORKING_DIRECTORY" value="file://$PROJECT_DIR$" /> <option name="ENV_VARIABLES" /> <option name="PASS_PARENT_ENVS" value="true" /> <option name="TEST_SEARCH_SCOPE"> <value defaultName="moduleWithDependencies" /> </option> <envs /> <patterns /> <RunnerSettings RunnerId="Run" /> <ConfigurationWrapper RunnerId="Run" /> <method /> </configuration> </component>
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="All Tests" type="JUnit" factoryName="JUnit"> <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea"> <pattern> <option name="PATTERN" value="com.intellij.aws.cloudformation.tests.*" /> <option name="ENABLED" value="true" /> </pattern> </extension> <module name="CloudFormation" /> <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" /> <option name="ALTERNATIVE_JRE_PATH" value="" /> <option name="PACKAGE_NAME" value="com.intellij.aws.cloudformation.tests" /> <option name="MAIN_CLASS_NAME" value="" /> <option name="METHOD_NAME" value="" /> <option name="TEST_OBJECT" value="package" /> <option name="VM_PARAMETERS" value="-ea" /> <option name="PARAMETERS" value="" /> <option name="WORKING_DIRECTORY" value="file://$PROJECT_DIR$" /> <option name="ENV_VARIABLES" /> <option name="PASS_PARENT_ENVS" value="true" /> <option name="TEST_SEARCH_SCOPE"> <value defaultName="moduleWithDependencies" /> </option> <envs> <env name="NO_FS_ROOTS_ACCESS_CHECK" value="1" /> </envs> <patterns /> <RunnerSettings RunnerId="Run" /> <ConfigurationWrapper RunnerId="Run" /> <method /> </configuration> </component>
Add gh-rapid to the list of activating contexts for the plugin.
<atlassian-plugin key="${project.groupId}.${project.artifactId}" name="${project.name}" plugins-version="2"> <plugin-info> <description>${project.description}</description> <version>${project.version}</version> <vendor name="${project.organization.name}" url="${project.organization.url}" /> </plugin-info> <web-resource key="notloggedin" name="notloggedin Resources"> <dependency>jira.webresources:global-static</dependency> <condition class="com.corefiling.jira.plugin.notloggedin.IsNotLoggedInCondition"/> <resource type="download" name="login.js" location="/js/login.js"/> <context>jira.view.issue</context> <context>jira.create.issue</context> </web-resource> </atlassian-plugin>
<atlassian-plugin key="${project.groupId}.${project.artifactId}" name="${project.name}" plugins-version="2"> <plugin-info> <description>${project.description}</description> <version>${project.version}</version> <vendor name="${project.organization.name}" url="${project.organization.url}" /> </plugin-info> <web-resource key="notloggedin" name="notloggedin Resources"> <dependency>jira.webresources:global-static</dependency> <condition class="com.corefiling.jira.plugin.notloggedin.IsNotLoggedInCondition"/> <resource type="download" name="login.js" location="/js/login.js"/> <context>jira.view.issue</context> <context>jira.create.issue</context> <context>gh-rapid</context> </web-resource> </atlassian-plugin>
Upgrade archetype-packaging and maven-archetype-plugin to 2.3
<?xml version='1.0' encoding='UTF-8' ?> <project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <groupId>com.kytkemo</groupId> <artifactId>spring-library</artifactId> <version>1.1.7-SNAPSHOT</version> <packaging>maven-archetype</packaging> <name>spring-library</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </pluginManagement> </build> </project>
<?xml version='1.0' encoding='UTF-8' ?> <project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <groupId>com.kytkemo</groupId> <artifactId>spring-library</artifactId> <version>1.1.7-SNAPSHOT</version> <packaging>maven-archetype</packaging> <name>spring-library</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.3</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </pluginManagement> </build> </project>
Bring down API support to 7
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ph.sakay.gateway" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.SEND_SMS"/> <uses-permission android:name="android.permission.RECEIVE_SMS"/> <uses-permission android:name="android.permission.INTERNET"/> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"> <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> <service android:name=".RoutingService" android:exported="false"></service> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ph.sakay.gateway" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.SEND_SMS"/> <uses-permission android:name="android.permission.RECEIVE_SMS"/> <uses-permission android:name="android.permission.INTERNET"/> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"> <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> <service android:name=".RoutingService" android:exported="false"></service> </application> </manifest>
Enable commit message inspection on IntelliJ IDEA
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="IssueNavigationConfiguration"> <option name="links"> <list> <IssueNavigationLink> <option name="issueRegexp" value="[A-Z]+\-\d+" /> <option name="linkRegexp" value="https://issues.apache.org/jira/browse/$0" /> </IssueNavigationLink> <IssueNavigationLink> <option name="issueRegexp" value="(apache/calcite)?#(\d+)" /> <option name="linkRegexp" value="https://github.com/apache/calcite/pull/$2" /> </IssueNavigationLink> </list> </option> </component> <component name="VcsDirectoryMappings"> <mapping directory="$PROJECT_DIR$" vcs="Git" /> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="CommitMessageInspectionProfile"> <profile version="1.0"> <inspection_tool class="BodyLimit" enabled="true" level="WARNING" enabled_by_default="true" /> <inspection_tool class="SubjectBodySeparation" enabled="true" level="ERROR" enabled_by_default="true" /> <inspection_tool class="SubjectLimit" enabled="true" level="WARNING" enabled_by_default="true" /> </profile> </component> <component name="IssueNavigationConfiguration"> <option name="links"> <list> <IssueNavigationLink> <option name="issueRegexp" value="[A-Z]+\-\d+" /> <option name="linkRegexp" value="https://issues.apache.org/jira/browse/$0" /> </IssueNavigationLink> <IssueNavigationLink> <option name="issueRegexp" value="(apache/calcite)?#(\d+)" /> <option name="linkRegexp" value="https://github.com/apache/calcite/pull/$2" /> </IssueNavigationLink> </list> </option> </component> <component name="VcsDirectoryMappings"> <mapping directory="$PROJECT_DIR$" vcs="Git" /> </component> </project>
Add the canonical form to the <id>URL in the feed
--- layout: nil --- <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>{{ site.title }}</title> <link href="{{ site.url }}/atom.xml" rel="self"/> <link href="{{ site.url }}/"/> <updated>{{ site.time | date_to_xmlschema }}</updated> <id>{{ site.url }}</id> <author> <name>{{ site.name }}</name> </author> {% for post in site.posts %} <entry> <title>{{ post.title | xml_escape }}</title> <link href="{{ site.url }}{{ post.url }}"/> <updated>{{ post.date | date_to_xmlschema }}</updated> <id>{{ site.url }}{{ post.id }}</id> <content type="html">{{ post.content | xml_escape }}</content> {% if post.author and post.author_url %} <author> <name>{{ post.author | xml_escape}}</name> <uri>{{ post.author_url }}</uri> </author> {% endif %} </entry> {% endfor %} </feed>
--- layout: nil --- <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>{{ site.title }}</title> <link href="{{ site.url }}/atom.xml" rel="self"/> <link href="{{ site.url }}/"/> <updated>{{ site.time | date_to_xmlschema }}</updated> <id>{{ site.url }}/</id> <author> <name>{{ site.name }}</name> </author> {% for post in site.posts %} <entry> <title>{{ post.title | xml_escape }}</title> <link href="{{ site.url }}{{ post.url }}"/> <updated>{{ post.date | date_to_xmlschema }}</updated> <id>{{ site.url }}{{ post.id }}</id> <content type="html">{{ post.content | xml_escape }}</content> {% if post.author and post.author_url %} <author> <name>{{ post.author | xml_escape}}</name> <uri>{{ post.author_url }}</uri> </author> {% endif %} </entry> {% endfor %} </feed>
Enable new name resolution engine on nightly by default
<idea-plugin> <extensions defaultExtensionNs="com.intellij"> <experimentalFeature id="org.rust.cargo.build.tool.window" percentOfUsers="100"> <description>Enable Cargo tasks to use Build Tool Window. Requires Rust +1.48.0</description> </experimentalFeature> <experimentalFeature id="org.rust.cargo.test.tool.window" percentOfUsers="100"> <description>Show test results in Test Tool Window</description> </experimentalFeature> <experimentalFeature id="org.rust.cargo.fetch.out.dir" percentOfUsers="0"> <description>Fetch `OUT_DIR` environment variable value. It's needed to make proper name resolution for code included via `include` macro</description> </experimentalFeature> <experimentalFeature id="org.rust.cargo.evaluate.build.scripts" percentOfUsers="0"> <description>Run build scripts while project refresh. It allows collecting information about generated items like `cfg` options, environment variables, etc</description> </experimentalFeature> <experimentalFeature id="org.rust.macros.new.engine" percentOfUsers="100"> <description>Enables new macro expansion engine by default</description> </experimentalFeature> <experimentalFeature id="org.rust.resolve.new.engine" percentOfUsers="0"> <description>Enables experimental resolve engine</description> </experimentalFeature> <experimentalFeature id="org.rust.crates.local.index" percentOfUsers="0"> <description>Enables crates local index</description> </experimentalFeature> </extensions> </idea-plugin>
<idea-plugin> <extensions defaultExtensionNs="com.intellij"> <experimentalFeature id="org.rust.cargo.build.tool.window" percentOfUsers="100"> <description>Enable Cargo tasks to use Build Tool Window. Requires Rust +1.48.0</description> </experimentalFeature> <experimentalFeature id="org.rust.cargo.test.tool.window" percentOfUsers="100"> <description>Show test results in Test Tool Window</description> </experimentalFeature> <experimentalFeature id="org.rust.cargo.fetch.out.dir" percentOfUsers="0"> <description>Fetch `OUT_DIR` environment variable value. It's needed to make proper name resolution for code included via `include` macro</description> </experimentalFeature> <experimentalFeature id="org.rust.cargo.evaluate.build.scripts" percentOfUsers="0"> <description>Run build scripts while project refresh. It allows collecting information about generated items like `cfg` options, environment variables, etc</description> </experimentalFeature> <experimentalFeature id="org.rust.macros.new.engine" percentOfUsers="100"> <description>Enables new macro expansion engine by default</description> </experimentalFeature> <experimentalFeature id="org.rust.resolve.new.engine" percentOfUsers="100"> <description>Enables experimental resolve engine</description> </experimentalFeature> <experimentalFeature id="org.rust.crates.local.index" percentOfUsers="0"> <description>Enables crates local index</description> </experimentalFeature> </extensions> </idea-plugin>
Add domain on account_id field
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="hr_expense_view_form" model="ir.ui.view"> <field name="name">HR Expense Account</field> <field name="model">hr.expense.expense</field> <field name="inherit_id" ref="hr_expense.view_expenses_form" /> <field name="arch" type="xml"> <xpath expr="//field[@name='journal_id']" position="after"> <field name="account_id"/> </xpath> </field> </record> </data> </openerp>
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="hr_expense_view_form" model="ir.ui.view"> <field name="name">HR Expense Account</field> <field name="model">hr.expense.expense</field> <field name="inherit_id" ref="hr_expense.view_expenses_form" /> <field name="arch" type="xml"> <xpath expr="//field[@name='journal_id']" position="after"> <field name="account_id" domain="[('reconcile','=',True)]"/> </xpath> </field> </record> </data> </openerp>
Fix bug on attractions listing - it randomly cut off before
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="match_parent" android:orientation="vertical" > <ListView android:id="@+id/attractionsList" android:layout_width="wrap_content" android:layout_height="380dp" android:clickable="true" > </ListView> </LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="match_parent" android:orientation="vertical" > <ListView android:id="@+id/attractionsList" android:layout_width="wrap_content" android:layout_height="fill_parent" android:clickable="true" > </ListView> </LinearLayout>
Make the run configuration singleton
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Crucible" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin"> <module name="Crucible4IDEA" /> <option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m" /> <option name="PROGRAM_PARAMETERS" value="" /> <log_file path="$USER_HOME$/.IntelliJIdea12/system/plugins-sandbox/system/log/idea.log" checked="false" skipped="true" show_all="false" alias="IDEA LOG" /> <RunnerSettings RunnerId="Debug"> <option name="DEBUG_PORT" value="" /> <option name="TRANSPORT" value="0" /> <option name="LOCAL" value="true" /> </RunnerSettings> <RunnerSettings RunnerId="Run" /> <ConfigurationWrapper RunnerId="Debug" /> <ConfigurationWrapper RunnerId="Run" /> <method /> </configuration> </component>
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Crucible" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin" singleton="true"> <module name="Crucible4IDEA" /> <option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m" /> <option name="PROGRAM_PARAMETERS" value="" /> <log_file path="$USER_HOME$/.IntelliJIdea12/system/plugins-sandbox/system/log/idea.log" checked="false" skipped="true" show_all="false" alias="IDEA LOG" /> <RunnerSettings RunnerId="Debug"> <option name="DEBUG_PORT" value="" /> <option name="TRANSPORT" value="0" /> <option name="LOCAL" value="true" /> </RunnerSettings> <RunnerSettings RunnerId="Run" /> <ConfigurationWrapper RunnerId="Debug" /> <ConfigurationWrapper RunnerId="Run" /> <method /> </configuration> </component>
Revert "FIX: CLO-11636 - Attempt to fix SMB2 on WebLogic."
<plugin id="org.jetel.smb2" version="0.0.0.devel" greedyClassLoader="true" provider-name="Javlin a.s." class="org.jetel.util.protocols.smb2.Activator"> <runtime> <library path="bin/"/> <library path="lib/smbj-0.3.0.jar" /> <library path="lib/mbassador-1.3.0.jar"/> <library path="${cloveretl.smb2.bouncycastle.jar.file}"/> </runtime> <requires engine-version="0.0.0.devel"> </requires> <extension point-id="urlResolver"> <parameter id="className" value="org.jetel.util.protocols.smb2.SMB2PathResolver"/> <parameter id="type" value="SMB2"/> </extension> </plugin>
<plugin id="org.jetel.smb2" version="0.0.0.devel" provider-name="Javlin a.s." class="org.jetel.util.protocols.smb2.Activator"> <runtime> <library path="bin/"/> <library path="lib/smbj-0.3.0.jar" /> <library path="lib/mbassador-1.3.0.jar"/> <library path="${cloveretl.smb2.bouncycastle.jar.file}"/> </runtime> <requires engine-version="0.0.0.devel"> </requires> <extension point-id="urlResolver"> <parameter id="className" value="org.jetel.util.protocols.smb2.SMB2PathResolver"/> <parameter id="type" value="SMB2"/> </extension> </plugin>
Change in scope of FlexInterface object from application to session.
<?xml version="1.0" encoding="UTF-8"?> <service id="remoting-service" class="flex.messaging.services.RemotingService" messageTypes="flex.messaging.messages.RemotingMessage"> <adapters> <adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/> </adapters> <default-channels> <channel ref="my-amf"/> </default-channels> <destination id="cdeService"> <properties> <source>edu.wustl.catissuecore.flex.FlexInterface</source> <scope>application</scope> </properties> </destination> </service>
<?xml version="1.0" encoding="UTF-8"?> <service id="remoting-service" class="flex.messaging.services.RemotingService" messageTypes="flex.messaging.messages.RemotingMessage"> <adapters> <adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/> </adapters> <default-channels> <channel ref="my-amf"/> </default-channels> <destination id="cdeService"> <properties> <source>edu.wustl.catissuecore.flex.FlexInterface</source> <scope>session</scope> </properties> </destination> </service>
Add forum link + license
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <addon id="plugin.video.paktvforum" name="PakTVForum" version="0.0.6" provider-name="Irfan Charania"> <requires> <import addon="xbmc.python" version="2.1.0"/> <import addon="script.module.xbmcswift2" version="2.4.0"/> <import addon="script.module.beautifulsoup" version="3.0.8"/> <import addon="script.module.urlresolver"/> <import addon="script.module.requests"/> </requires> <extension point="xbmc.python.pluginsource" library="addon.py"> <provides>video</provides> </extension> <extension point="xbmc.addon.metadata"> <platform>all</platform> <language></language> <summary>Pakistani Television</summary> <description>Watch Pakistani TV</description> <disclaimer>This addon makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties, including without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights</disclaimer> </extension> </addon>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <addon id="plugin.video.paktvforum" name="PakTVForum" version="0.0.6" provider-name="Irfan Charania"> <requires> <import addon="xbmc.python" version="2.1.0"/> <import addon="script.module.xbmcswift2" version="2.4.0"/> <import addon="script.module.beautifulsoup" version="3.0.8"/> <import addon="script.module.urlresolver"/> <import addon="script.module.requests"/> </requires> <extension point="xbmc.python.pluginsource" library="addon.py"> <provides>video</provides> </extension> <extension point="xbmc.addon.metadata"> <platform>all</platform> <language></language> <summary>Pakistani Television</summary> <description>Watch Pakistani TV</description> <disclaimer>This addon makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties, including without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights</disclaimer> <forum>http://forum.xbmc.org/showthread.php?tid=169443</forum> <license>The MIT License (MIT), 2013</license> </extension> </addon>
Disable camelcase for php variables
<?xml version="1.0"?> <ruleset name="MyStandard"> <description>The PHP Coding Standard description you want.</description> <rule ref="Generic.ControlStructures.InlineControlStructure"/> <rule ref="Generic.Formatting.SpaceAfterCast"/> <!-- Import Zend coding standard (which in turn imports PEAR) --> <rule ref="Zend"> <!-- but exclude their code analyzer --> <exclude name="Zend.Debug.CodeAnalyzer"/> <!-- covered by Squiz ControlSignature, which enforces try/catch as well --> <exclude name="PEAR.ControlStructures.ControlSignature"/> <exclude name="PEAR.Commenting.FunctionComment.SpacingBeforeTags"/> <exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterCloseBracket" /> <!-- do not check line length --> <exclude name="Generic.Files.LineLength"/> </rule> </ruleset>
<?xml version="1.0"?> <ruleset name="MyStandard"> <description>The PHP Coding Standard description you want.</description> <rule ref="Generic.ControlStructures.InlineControlStructure"/> <rule ref="Generic.Formatting.SpaceAfterCast"/> <!-- Import Zend coding standard (which in turn imports PEAR) --> <rule ref="Zend"> <!-- but exclude their code analyzer --> <exclude name="Zend.Debug.CodeAnalyzer"/> <!-- covered by Squiz ControlSignature, which enforces try/catch as well --> <exclude name="PEAR.ControlStructures.ControlSignature"/> <exclude name="PEAR.Commenting.FunctionComment.SpacingBeforeTags"/> <exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterCloseBracket" /> <exclude name="Zend.NamingConventions.ValidVariableName.NotCamelCaps" /> <!-- do not check line length --> <exclude name="Generic.Files.LineLength"/> </rule> </ruleset>
Create custom attribute 'bsp_animateFabIn' to control whether the FAB should animate onto the screen when the time picker is shown.
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="BSP_NumberPadTimePicker"> <!-- Indicates how the NumberPadTimePicker should be laid out. --> <attr name="bsp_numberPadTimePickerLayout" format="enum"> <enum name="alert" value="1" /> <enum name="bottomSheet" value="2" /> </attr> <!-- The background color of the floating action button in the time picker. This attribute is only applied if the time picker is using the bottom sheet layout. This should be a color state list where the enabled state will be used when the button is enabled. --> <attr name="bsp_fabBackgroundColor" format="color" /> </declare-styleable> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="BSP_NumberPadTimePicker"> <!-- Indicates how the NumberPadTimePicker should be laid out. --> <attr name="bsp_numberPadTimePickerLayout" format="enum"> <enum name="alert" value="1" /> <enum name="bottomSheet" value="2" /> </attr> <!-- The background color of the floating action button in the time picker. This attribute is only applied if the time picker is using the bottom sheet layout. This should be a color state list where the enabled state will be used when the button is enabled. --> <attr name="bsp_fabBackgroundColor" format="color" /> <!-- Indicates whether the floating action button should animate onto the screen when the time picker is shown. This attribute is only applied if the time picker is using the bottom sheet layout. --> <attr name="bsp_animateFabIn" format="boolean" /> </declare-styleable> </resources>
Fix warnings on a mod's instance
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <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" /> <list size="1"> <item index="0" class="java.lang.String" itemvalue="cpw.mods.fml.common.Mod.Instance" /> </list> </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>
Update the color inactive navigation icons to be @color/black38
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" android:color="@color/accent50" /> <item android:color="@color/base50" /> </selector>
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" android:color="@color/accent50" /> <item android:color="@color/black38" /> </selector>
Make the application's theme more similar to Settings' one
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="Theme.Application" parent="@style/Theme.AppCompat.Light.DarkActionBar" /> <style name="Theme.Settings" parent="@style/Theme.Application"> <item name="android:windowActionBar">false</item> <item name="android:windowNoTitle">true</item> <item name="toolbarStyle">@style/Widget.Toolbar</item> </style> <style name="Widget.Toolbar" parent="@style/Widget.AppCompat.Toolbar"> <item name="android:background">?attr/colorPrimary</item> <item name="navigationIcon">?attr/homeAsUpIndicator</item> <item name="popupTheme">@style/ThemeOverlay.AppCompat.Light</item> <item name="theme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> </style> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="Theme.Application" parent="@style/Theme.AppCompat.Light.DarkActionBar"> <item name="android:colorBackground">@android:color/white</item> <item name="colorPrimary">@color/material_blue_grey_900</item> <item name="colorPrimaryDark">@color/material_blue_grey_950</item> <item name="colorAccent">@color/material_deep_teal_500</item> </style> <style name="Theme.Settings" parent="@style/Theme.Application"> <item name="android:windowActionBar">false</item> <item name="android:windowNoTitle">true</item> <item name="toolbarStyle">@style/Widget.Toolbar</item> </style> <style name="Widget.Toolbar" parent="@style/Widget.AppCompat.Toolbar"> <item name="android:background">?attr/colorPrimary</item> <item name="navigationIcon">?attr/homeAsUpIndicator</item> <item name="popupTheme">@style/ThemeOverlay.AppCompat.Light</item> <item name="theme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> </style> </resources>
Set updatePeriodMillis > REFRESH_TIME_AUTO since refreshing is not instantaneous
<?xml version="1.0" encoding="utf-8"?> <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" android:initialLayout="@layout/app_widget" android:minHeight="110dp" android:minWidth="110dp" android:resizeMode="horizontal|vertical" android:updatePeriodMillis="3600000" android:widgetCategory="home_screen|keyguard" />
<?xml version="1.0" encoding="utf-8"?> <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" android:initialLayout="@layout/app_widget" android:minHeight="110dp" android:minWidth="110dp" android:resizeMode="horizontal|vertical" android:updatePeriodMillis="7320000" android:widgetCategory="home_screen|keyguard" />
Use Fluido skin, update links
<?xml version="1.0" encoding="UTF-8"?> <project name="Vaadin Add-on ComponentHighlighter"> <body> <links> <item name="Vaadin Directory" href="https://vaadin.com/directory#addon/componenthighlighter" /> <item name="GitHub" href="https://github.com/rolandkrueger/ComponentHighlighter"/> <item name="Blog" href="http://blog.oio.de/"/> </links> <menu ref="reports"/> </body> </project>
<?xml version="1.0" encoding="UTF-8"?> <project name="Vaadin Add-on ComponentHighlighter"> <body> <links> <item name="GitHub" href="https://www.github.com/rolandkrueger/ComponentHighlighter"/> </links> <menu ref="reports"/> </body> <skin> <groupId>org.apache.maven.skins</groupId> <artifactId>maven-fluido-skin</artifactId> <version>1.5</version> </skin> </project>
Set console logging to DEBUG level.
<configuration> <appender name="smockin_appender" class="ch.qos.logback.core.FileAppender"> <file>${user.home}/.smockin/log/smockin.log</file> <encoder> <pattern>%d %-5level [%thread] %logger : %msg%n</pattern> </encoder> </appender> <appender name="mock_traffic_appender" class="ch.qos.logback.core.FileAppender"> <file>${user.home}/.smockin/log/mock_traffic.log</file> <encoder> <pattern>%date:%n%msg%n</pattern> </encoder> </appender> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d %-5level %logger : %msg%n</pattern> </encoder> </appender> <logger name="mock_traffic_logger" level="INFO"> <appender-ref ref="mock_traffic_appender" /> </logger> <logger name="smockin_logger" level="WARN"> <appender-ref ref="smockin_appender" /> </logger> <logger name="com.smockin" level="WARN"> <appender-ref ref="smockin_appender" /> </logger> <root level="WARN"> <appender-ref ref="STDOUT" /> </root> </configuration>
<configuration> <appender name="smockin_appender" class="ch.qos.logback.core.FileAppender"> <file>${user.home}/.smockin/log/smockin.log</file> <encoder> <pattern>%d %-5level [%thread] %logger : %msg%n</pattern> </encoder> </appender> <appender name="mock_traffic_appender" class="ch.qos.logback.core.FileAppender"> <file>${user.home}/.smockin/log/mock_traffic.log</file> <encoder> <pattern>%date:%n%msg%n</pattern> </encoder> </appender> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d %-5level %logger : %msg%n</pattern> </encoder> </appender> <logger name="mock_traffic_logger" level="INFO"> <appender-ref ref="mock_traffic_appender" /> </logger> <logger name="smockin_logger" level="WARN"> <appender-ref ref="smockin_appender" /> </logger> <logger name="com.smockin" level="WARN"> <appender-ref ref="smockin_appender" /> </logger> <root level="DEBUG"> <appender-ref ref="STDOUT" /> </root> </configuration>
Correct the name of the layer.
<?xml version="1.0" ?> <layer-spec xmlns="urn:jboss:galleon:layer-spec:1.0" name="undertow-legacy-https"> <dependencies> <layer name="elytron"/> <layer name="undertow"/> </dependencies> <feature-group name="undertow-https"/> </layer-spec>
<?xml version="1.0" ?> <layer-spec xmlns="urn:jboss:galleon:layer-spec:1.0" name="undertow-https"> <dependencies> <layer name="elytron"/> <layer name="undertow"/> </dependencies> <feature-group name="undertow-https"/> </layer-spec>
Update mysql db idea data source
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="DataSourceManagerImpl" format="xml" multifile-model="true"> <data-source source="LOCAL" name="opendominion@localhost" uuid="0ad1d86b-7095-4be6-aa13-1a177b3b2559"> <driver-ref>mysql</driver-ref> <synchronize>true</synchronize> <jdbc-driver>com.mysql.jdbc.Driver</jdbc-driver> <jdbc-url>jdbc:mysql://localhost:33060/opendominion</jdbc-url> <driver-properties> <property name="autoReconnect" value="true" /> <property name="zeroDateTimeBehavior" value="convertToNull" /> <property name="tinyInt1isBit" value="false" /> <property name="characterEncoding" value="utf8" /> <property name="characterSetResults" value="utf8" /> <property name="yearIsDateType" value="false" /> </driver-properties> </data-source> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="DataSourceManagerImpl" format="xml" multifile-model="true"> <data-source source="LOCAL" name="opendominion@localhost" uuid="0ad1d86b-7095-4be6-aa13-1a177b3b2559"> <driver-ref>mysql</driver-ref> <synchronize>true</synchronize> <jdbc-driver>com.mysql.jdbc.Driver</jdbc-driver> <jdbc-url>jdbc:mysql://localhost:3306/opendominion</jdbc-url> <driver-properties> <property name="autoReconnect" value="true" /> <property name="zeroDateTimeBehavior" value="convertToNull" /> <property name="tinyInt1isBit" value="false" /> <property name="characterEncoding" value="utf8" /> <property name="characterSetResults" value="utf8" /> <property name="yearIsDateType" value="false" /> </driver-properties> </data-source> </component> </project>
Move the condition fields in a new page
<openerp> <data> <record model="ir.ui.view" id="sale_order_form_add_condition"> <field name="name">condition_template.sale.order.form</field> <field name="model">sale.order</field> <field name="inherit_id" ref="sale.view_order_form"/> <field name="arch" type="xml"> <xpath expr="//field[@name='order_line']" position="before"> <label for="note1"/> <field name="note1" colspan="4" /> <group> <div>Use template <field name="condition_template1_id" nolabel="1" class='oe_inline' domain="[('position','=','before_lines')]" on_change="set_note1(condition_template1_id, partner_id)"/> </div> </group> </xpath> <xpath expr="//field[@name='note']" position="replace"> <label for="note"/> <field name="note" colspan="4"/> <label for="note2"/> <field name="note2" colspan="4"/> <group> <div>Use template <field name="condition_template2_id" nolabel="1" class='oe_inline' domain="[('position','=','after_lines')]" on_change="set_note2(condition_template2_id, partner_id)"/> </div> </group> </xpath> </field> </record> </data> </openerp>
<openerp> <data> <record model="ir.ui.view" id="sale_order_form_add_condition"> <field name="name">condition_template.sale.order.form</field> <field name="model">sale.order</field> <field name="inherit_id" ref="sale.view_order_form"/> <field name="arch" type="xml"> <xpath expr="//page[@string='Other Information']" position="after"> <page string="Conditions" name="conditions"> <label string="The conditions will be displayed on the printed document. You can load a predefined template, write your own text or load a template and then modify it only for this document." colspan="2"/> <group string="Top Conditions"> <field name="condition_template1_id" string="Load a template" domain="[('position','=','before_lines')]" context="{'default_position': 'before_lines'}" on_change="set_note1(condition_template1_id, partner_id)"/> <field name="note1" nolabel="1" colspan="2"/> </group> <group string="Bottom Conditions"> <field name="condition_template2_id" string="Load a template" context="{'default_position': 'after_lines'}" domain="[('position','=','after_lines')]" on_change="set_note2(condition_template2_id, partner_id)"/> <field name="note2" nolabel="1" colspan="2"/> </group> </page> </xpath> </field> </record> </data> </openerp>
Update android manifest (version 1.7)
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.rembx.android.sfquizz" android:versionName="1.6.1" android:versionCode="19"> <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4"> </uses-sdk> <supports-screens android:smallScreens="true" android:resizeable="true" android:largeScreens="true" android:anyDensity="true" android:normalScreens="true"/> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name="org.rembx.android.sfquizz.QuizzActivity" android:label="@string/app_name" android:screenOrientation="portrait"> <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="org.rembx.android.sfquizz" android:versionName="1.7" android:versionCode="20"> <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4"> </uses-sdk> <supports-screens android:smallScreens="true" android:resizeable="true" android:largeScreens="true" android:anyDensity="true" android:normalScreens="true"/> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name="org.rembx.android.sfquizz.QuizzActivity" android:label="@string/app_name" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
Fix Google Play submission errors by no longer using uses-permission-sdk-23
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.altbeacon.beacon" > <uses-permission android:name="android.permission.BLUETOOTH" android:required="false"/> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:required="false"/> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> <uses-permission-sdk-23 android:name="android.permission.ACCESS_COARSE_LOCATION"/> <application> <receiver android:name="org.altbeacon.beacon.startup.StartupBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"/> <action android:name="android.intent.action.ACTION_POWER_CONNECTED"/> <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/> </intent-filter> </receiver> <service android:enabled="true" android:exported="false" android:isolatedProcess="false" android:label="beacon" android:name=".service.BeaconService" /> <service android:name=".BeaconIntentProcessor" android:enabled="true" android:exported="false" /> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.altbeacon.beacon" > <uses-permission android:name="android.permission.BLUETOOTH" android:required="false"/> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:required="false"/> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> <application> <receiver android:name="org.altbeacon.beacon.startup.StartupBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"/> <action android:name="android.intent.action.ACTION_POWER_CONNECTED"/> <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/> </intent-filter> </receiver> <service android:enabled="true" android:exported="false" android:isolatedProcess="false" android:label="beacon" android:name=".service.BeaconService" /> <service android:name=".BeaconIntentProcessor" android:enabled="true" android:exported="false" /> </application> </manifest>
Correct the sample layout height
<?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" android:background="#ffffff" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="320x50 Below. Gone until success load." /> <com.tapad.adserving.ui.AdView android:id="@+id/ad_view_top" android:layout_height="51dip" android:layout_width="fill_parent" android:visibility="gone" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="300x250 Below. Gone until success load." /> <com.tapad.adserving.ui.AdView android:id="@+id/ad_view_bottom" android:layout_height="250dip" android:layout_width="fill_parent" android:gravity="bottom" android:visibility="gone" /> </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" android:background="#ffffff" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="320x50 Below. Gone until success load." /> <com.tapad.adserving.ui.AdView android:id="@+id/ad_view_top" android:layout_height="50dip" android:layout_width="fill_parent" android:visibility="gone" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="300x250 Below. Gone until success load." /> <com.tapad.adserving.ui.AdView android:id="@+id/ad_view_bottom" android:layout_height="250dip" android:layout_width="fill_parent" android:gravity="bottom" android:visibility="gone" /> </LinearLayout>
Remove the confidence interval in optimization input file (will be always 0.95)
<?xml version="1.0" encoding="utf-8"?> <input> <!-- Scene path (relative to this file) --> <scene path="cube.dae"/> <!-- print output images and log on "./output" folder --> <output path="output"/> <!-- Optimization variables --> <conditions> <lightInSurface id="EmitiveLight" surface="Ceiling"></lightInSurface> </conditions> <!-- Which aspects of the scene must be optimized --> <objectives> <!-- Maximize radiance on floor surface with 95% and radius of 5 W --> <maximizeRadiance surface="Floor" confidenceIntervalRadius="5" confidence="0.95"></maximizeRadiance> </objectives> </input>
<?xml version="1.0" encoding="utf-8"?> <input> <!-- Scene path (relative to this file) --> <scene path="cube.dae"/> <!-- print output images and log on "./output" folder --> <output path="output"/> <!-- Optimization variables --> <conditions> <lightInSurface id="EmitiveLight" surface="Ceiling"></lightInSurface> </conditions> <!-- Which aspects of the scene must be optimized --> <objectives> <!-- Maximize radiance on floor surface with 95% and radius of 5 W --> <maximizeRadiance surface="Floor" confidenceIntervalRadius="5"></maximizeRadiance> </objectives> </input>
Set java version to 1.8
<?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>de.meldanor</groupId> <artifactId>NeonGenesis</artifactId> <version>0.0.1-SNAPSHOT</version> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.meldanor</groupId> <artifactId>NeonGenesis</artifactId> <version>0.0.1-SNAPSHOT</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </build> </project>
Set the version to 2.4.0 instead of 2.4
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <module name="Dealer4dealer_Xcore" setup_version="2.4"> <sequence> <module name="Magento_Catalog" /> <module name="Magento_Customer" /> <module name="Magento_Sales" /> <module name="Magento_Shipping" /> <module name="Magento_Tax" /> <module name="Magento_Payment" /> <module name="Magento_Store" /> </sequence> </module> </config>
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <module name="Dealer4dealer_Xcore" setup_version="2.4.0"> <sequence> <module name="Magento_Catalog" /> <module name="Magento_Customer" /> <module name="Magento_Sales" /> <module name="Magento_Shipping" /> <module name="Magento_Tax" /> <module name="Magento_Payment" /> <module name="Magento_Store" /> </sequence> </module> </config>
Use fully qualified name for ShareBroadcastReceiver
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.novoda.simplechromecustomtabs.demo"> <application android:name="com.novoda.simplechromecustomtabs.demo.ExtendedDemoApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name="com.novoda.simplechromecustomtabs.demo.ExtendedDemoActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name=".ShareBroadcastReceiver" android:enabled="true" android:exported="false"/> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.novoda.simplechromecustomtabs.demo"> <application android:name="com.novoda.simplechromecustomtabs.demo.ExtendedDemoApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name="com.novoda.simplechromecustomtabs.demo.ExtendedDemoActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name="com.novoda.simplechromecustomtabs.demo.ShareBroadcastReceiver" android:enabled="true" android:exported="false" /> </application> </manifest>
Add token with tool and wrapper version
<macros> <!--<token name="@WRAPPER_VERSION@">@TOOL_VERSION@+galaxy</token> <token name="@TOOL_VERSION@">2.1.3.1</token>--> <xml name="reference_interface"> <conditional name="reference_source"> <param name="ref_selector" type="select" label="Choose the source for the reference genome"> <option value="cached">Locally cached</option> <option value="history">History</option> </param> <when value="cached"> <param argument="--ref" type="select" label="Reference genome"> <options from_data_table="fasta_indexes"> <filter type="data_meta" column="dbkey" key="dbkey" ref="input_sample_file" /> <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file" /> </options> </param> </when> <when value="history"> <param argument="--ref" type="data" format="fasta" label="Reference" help="Reference sequence" /> </when> </conditional> </xml> </macros>
<macros> <token name="@WRAPPER_VERSION@">@TOOL_VERSION@+galaxy0</token> <token name="@TOOL_VERSION@">11.6</token> <xml name="reference_interface"> <conditional name="reference_source"> <param name="ref_selector" type="select" label="Choose the source for the reference genome"> <option value="cached">Locally cached</option> <option value="history">History</option> </param> <when value="cached"> <param argument="--ref" type="select" label="Reference genome"> <options from_data_table="fasta_indexes"> <filter type="data_meta" column="dbkey" key="dbkey" ref="input_sample_file" /> <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file" /> </options> </param> </when> <when value="history"> <param argument="--ref" type="data" format="fasta" label="Reference" help="Reference sequence" /> </when> </conditional> </xml> </macros>
Add wizard in the modeling perspective
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.0"?> <!-- --> <plugin> <extension point="org.eclipse.ui.newWizards"> <!-- @generated workflow --> <category id="org.eclipse.emf.ecore.Wizard.category.ID" name="%_UI_Wizard_category"/> <wizard id="fr.obeo.dsl.workflow.presentation.WorkflowModelWizardID" name="%_UI_WorkflowModelWizard_label" class="fr.obeo.dsl.workflow.presentation.WorkflowModelWizard" category="org.eclipse.emf.ecore.Wizard.category.ID" icon="icons/full/obj16/WorkflowModelFile.gif"> <description>%_UI_WorkflowModelWizard_description</description> <selection class="org.eclipse.core.resources.IResource"/> </wizard> </extension> <extension point="org.eclipse.ui.editors"> <!-- @generated workflow --> <editor id="fr.obeo.dsl.workflow.presentation.WorkflowEditorID" name="%_UI_WorkflowEditor_label" icon="icons/full/obj16/WorkflowModelFile.gif" extensions="workflow" class="fr.obeo.dsl.workflow.presentation.WorkflowEditor" contributorClass="fr.obeo.dsl.workflow.presentation.WorkflowActionBarContributor"> </editor> </extension> </plugin>
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.0"?> <!-- --> <plugin> <extension point="org.eclipse.ui.newWizards"> <!-- @generated workflow --> <category id="org.eclipse.emf.ecore.Wizard.category.ID" name="%_UI_Wizard_category"/> <wizard id="fr.obeo.dsl.workflow.presentation.WorkflowModelWizardID" name="%_UI_WorkflowModelWizard_label" class="fr.obeo.dsl.workflow.presentation.WorkflowModelWizard" category="org.eclipse.emf.ecore.Wizard.category.ID" icon="icons/full/obj16/WorkflowModelFile.gif"> <description>%_UI_WorkflowModelWizard_description</description> <selection class="org.eclipse.core.resources.IResource"/> </wizard> </extension> <extension point="org.eclipse.ui.perspectiveExtensions"> <perspectiveExtension targetID="org.eclipse.sirius.ui.tools.perspective.modeling"> <newWizardShortcut id="fr.obeo.dsl.workflow.presentation.WorkflowModelWizardID"> </newWizardShortcut> </perspectiveExtension> </extension> <extension point="org.eclipse.ui.editors"> <!-- @generated workflow --> <editor id="fr.obeo.dsl.workflow.presentation.WorkflowEditorID" name="%_UI_WorkflowEditor_label" icon="icons/full/obj16/WorkflowModelFile.gif" extensions="workflow" class="fr.obeo.dsl.workflow.presentation.WorkflowEditor" contributorClass="fr.obeo.dsl.workflow.presentation.WorkflowActionBarContributor"> </editor> </extension> </plugin>
Fix ivy settings, so IntelliJ can find the latest versions.
<ivysettings> <settings defaultResolver="default" /> <resolvers> <chain name="default"> <ibiblio name="maven2" root="${maven.central.url}" m2compatible="true" /> </chain> </resolvers> </ivysettings>
<ivysettings> <settings defaultResolver="default" /> <resolvers> <chain name="default"> <ibiblio name="maven2" root="http://repo2.maven.org/maven2" m2compatible="true" /> </chain> </resolvers> </ivysettings>
Move "get stats" to bottom
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:clickable="false" android:weightSum="1"> <Button android:id="@+id/btnDepartureDate" android:layout_width="271dp" android:layout_height="62dp" android:layout_gravity="center_horizontal" android:text="@string/pick_stats" /> <TimePicker style="@style/Widget.AppCompat.Spinner" android:id="@+id/timePicker" android:layout_width="match_parent" android:layout_height="wrap_content" android:foregroundGravity="bottom" android:layout_weight="0.11" android:layout_gravity="bottom" /> <Spinner android:layout_width="match_parent" android:layout_height="wrap_content" android:prompt="@string/day_pick" android:popupBackground="#000000" android:entries="@array/week_day" android:id="@+id/spinner" /> </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:orientation="vertical" android:clickable="false" android:weightSum="1"> <TimePicker style="@style/Widget.AppCompat.Spinner" android:id="@+id/timePicker" android:layout_width="match_parent" android:layout_height="wrap_content" android:foregroundGravity="bottom" android:layout_weight="0.11" android:layout_gravity="bottom" /> <Spinner android:layout_width="match_parent" android:layout_height="wrap_content" android:prompt="@string/day_pick" android:popupBackground="#000000" android:entries="@array/week_day" android:id="@+id/spinner" /> <LinearLayout android:layout_width="match_parent" android:layout_height="fill_parent" android:layout_weight="1" android:orientation="vertical" android:gravity="bottom" > <Button android:id="@+id/btnDepartureDate" android:layout_width="271dp" android:layout_height="62dp" android:layout_gravity="center_horizontal" android:text="@string/pick_stats" /> </LinearLayout> </LinearLayout>
Add X-Kudo-Popular to Ask Fedora
<?xml version="1.0"?> <applications version="0.1"> <application> <!-- Copyright 2014, The Fedora Project --> <id type="webapp">epiphany-askfedora.desktop</id> <name>Ask Fedora</name> <summary>Read instantly in your browser</summary> <icon type="local">/usr/share/icons/hicolor/256x256/apps/fedora-logo-icon.png</icon> <appcategories> <appcategory>System</appcategory> <appcategory>Documentation</appcategory> </appcategories> <keywords> <keyword>help</keyword> <keyword>question</keyword> <keyword>troubleshooting</keyword> </keywords> <url type="homepage">https://ask.fedoraproject.org</url> <description> <p> Ask Fedora is a community knowledge base and support forum and designed to be the primary place for community support in Fedora. </p> </description> <metadata> </metadata> </application> </applications>
<?xml version="1.0"?> <applications version="0.1"> <application> <!-- Copyright 2014, The Fedora Project --> <id type="webapp">epiphany-askfedora.desktop</id> <name>Ask Fedora</name> <summary>Read instantly in your browser</summary> <icon type="local">/usr/share/icons/hicolor/256x256/apps/fedora-logo-icon.png</icon> <appcategories> <appcategory>System</appcategory> <appcategory>Documentation</appcategory> </appcategories> <keywords> <keyword>help</keyword> <keyword>question</keyword> <keyword>troubleshooting</keyword> </keywords> <url type="homepage">https://ask.fedoraproject.org</url> <description> <p> Ask Fedora is a community knowledge base and support forum and designed to be the primary place for community support in Fedora. </p> </description> <metadata> <value key="X-Kudo-Popular"/> </metadata> </application> </applications>
Use a simpler FrameLayout to hold the button
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:clickable="true" android:focusable="true" android:layout_width="match_parent" android:layout_height="48sp" android:background="@drawable/googlepay_button_no_shadow_background" android:padding="2sp" android:contentDescription="@string/save_to_googlepay_button_content_description"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="centerInside" android:duplicateParentState="true" android:src="@drawable/save_to_google_pay_button"/> </RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:clickable="true" android:focusable="true" android:layout_width="match_parent" android:layout_height="48sp" android:background="@drawable/googlepay_button_no_shadow_background" android:padding="2sp" android:contentDescription="@string/save_to_googlepay_button_content_description"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="centerInside" android:duplicateParentState="true" android:src="@drawable/save_to_google_pay_button"/> </FrameLayout>
Simplify fields in product form
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="product_template_form_view" model="ir.ui.view"> <field name="name">product.template.form.inherit.custom</field> <field name="model">product.template</field> <field name="inherit_id" ref="product.product_template_form_view"/> <field name="arch" type="xml"> <field name="description" position="before"> <field name="company_id"/> <separator string="Short Description"/> <field name="description_sale" placeholder="Short note to be displayed on quotations..."/> <separator string="Long description"/> </field> <xpath expr="//page[@string='Inventory']" position="attributes"> <attribute name="invisible">1</attribute> </xpath> </field> </record> </data> </openerp>
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="product_template_form_view" model="ir.ui.view"> <field name="name">product.template.form.inherit.custom</field> <field name="model">product.template</field> <field name="inherit_id" ref="product.product_template_form_view"/> <field name="arch" type="xml"> <xpath expr="//group/field[@name='type']" position="attributes"> <attribute name="invisible">1</attribute> </xpath> <xpath expr="//group/field[@name='ean13']" position="attributes"> <attribute name="invisible">1</attribute> </xpath> <field name="description" position="before"> <separator string="Short Description"/> <field name="description_sale" placeholder="Short note to be displayed on quotations..."/> <separator string="Long description"/> </field> <xpath expr="//page[@string='Inventory']" position="attributes"> <attribute name="invisible">1</attribute> </xpath> <xpath expr="//page[@string='Procurements']" position="attributes"> <attribute name="groups">"purchase.group_purchase_collective_manager"</attribute> </xpath> </field> </record> </data> </openerp>
Add another show poster size for 590dp screens.
<?xml version="1.0" encoding="utf-8"?> <resources> <dimen name="addpager_width">450dp</dimen> <dimen name="widget_item_width">35dp</dimen> <dimen name="widget_text_small">12sp</dimen> <dimen name="widget_text_middle">14sp</dimen> <dimen name="widget_text_large">16sp</dimen> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <dimen name="addpager_width">450dp</dimen> <dimen name="widget_item_width">35dp</dimen> <dimen name="widget_text_small">12sp</dimen> <dimen name="widget_text_middle">14sp</dimen> <dimen name="widget_text_large">16sp</dimen> <dimen name="show_poster_width">184dp</dimen> <dimen name="show_poster_height">276dp</dimen> </resources>
Fix for DIRSERVER-718: updating all nlog4j versions to 1.2.25
<?xml version="1.0" encoding="ISO-8859-1"?> <project> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.directory</groupId> <artifactId>build</artifactId> <version>1.0.5-SNAPSHOT</version> </parent> <groupId>org.apache.directory.daemon</groupId> <artifactId>build</artifactId> <name>Apache Directory Daemon</name> <packaging>pom</packaging> <version>1.0-RC3-SNAPSHOT</version> <description> Reusable framework for daemon applications based on Commons Daemon Jsvc and Procrun. A small installation layout pattern combined with some utility classes allows applications to be come UNIX daemons or Windows NT services. Reusable bootstrappers along with an installer plugin allow for the rapid creation of standalone daemon applications. </description> <modules> <module>bootstrappers</module> <module>plugin</module> </modules> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>nlog4j</artifactId> <version>1.2.24</version> </dependency> <dependency> <groupId>commons-daemon</groupId> <artifactId>commons-daemon</artifactId> <version>1.0.1</version> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="ISO-8859-1"?> <project> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.directory</groupId> <artifactId>build</artifactId> <version>1.0.5-SNAPSHOT</version> </parent> <groupId>org.apache.directory.daemon</groupId> <artifactId>build</artifactId> <name>Apache Directory Daemon</name> <packaging>pom</packaging> <version>1.0-RC3-SNAPSHOT</version> <description> Reusable framework for daemon applications based on Commons Daemon Jsvc and Procrun. A small installation layout pattern combined with some utility classes allows applications to be come UNIX daemons or Windows NT services. Reusable bootstrappers along with an installer plugin allow for the rapid creation of standalone daemon applications. </description> <modules> <module>bootstrappers</module> <module>plugin</module> </modules> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>nlog4j</artifactId> <version>1.2.25</version> </dependency> <dependency> <groupId>commons-daemon</groupId> <artifactId>commons-daemon</artifactId> <version>1.0.1</version> </dependency> </dependencies> </project>
Change app's theme to Holo Light
<resources> <!-- Base application theme for API 14+. This theme completely replaces AppBaseTheme from BOTH res/values/styles.xml and res/values-v11/styles.xml on API 14+ devices. --> <style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar"> <!-- API 14 theme customizations can go here. --> </style> </resources>
<resources> <!-- Base application theme for API 14+. This theme completely replaces AppBaseTheme from BOTH res/values/styles.xml and res/values-v11/styles.xml on API 14+ devices. --> <style name="AppBaseTheme" parent="android:Theme.Holo.Light"> <!-- API 14 theme customizations can go here. --> </style> </resources>
Add whitelist for coverage reporting.
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="phpunit.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="false" syntaxCheck="true" verbose="true" > <testsuites> <testsuite name="Regression Test Suite"> <directory suffix="Test.php">./tests</directory> </testsuite> </testsuites> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="phpunit.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="false" syntaxCheck="true" verbose="true" > <testsuites> <testsuite name="Regression Test Suite"> <directory suffix="Test.php">./tests</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">src</directory> </whitelist> </filter> </phpunit>
Add filter so we can start using code coverage
<?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="Test.php">./tests/</directory> </testsuite> </testsuites> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" > <testsuites> <testsuite name="Package Test Suite"> <directory suffix="Test.php">./tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">src/</directory> </whitelist> </filter> </phpunit>
Add matlab custom keyboard shortcut configuration file
<?xml version="1.0" encoding="utf-8"?> <CustomKeySet derivedfrom="Mac" modifieddefault="false"> <Context id="Global"> <Action id="delete-previous"> <Stroke code="VK_BACK_SPACE"/> <Stroke code="VK_BACK_SPACE" shift="on"/> <Stroke code="VK_H" ctrl="on"/> </Action> <Action id="previous-history-item"> <Stroke code="VK_UP"/> <Stroke code="VK_KP_UP"/> <Stroke code="VK_P" ctrl="on"/> </Action> <Action id="next-history-item"> <Stroke code="VK_DOWN"/> <Stroke code="VK_KP_DOWN"/> <Stroke code="VK_N" ctrl="on"/> </Action> </Context> </CustomKeySet>
Add remote debug run configuration for IntelliJ
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Debug Elasticsearch" type="Remote"> <option name="USE_SOCKET_TRANSPORT" value="true" /> <option name="SERVER_MODE" value="true" /> <option name="SHMEM_ADDRESS" /> <option name="HOST" value="localhost" /> <option name="PORT" value="5005" /> <option name="AUTO_RESTART" value="false" /> <method v="2" /> </configuration> </component>
Add a toplevel POM so everything can build at once
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.bonej</groupId> <artifactId>bonej-aggregator</artifactId> <version>3.1.0-SNAPSHOT</version> <packaging>pom</packaging> <modules> <module>Legacy</module> <module>Modern</module> </modules> </project>
Add new Accent - Golden Kiwi
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright (C) 2017 Citrus-CAF Project ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. ~ --> <resources> <!-- Accent --> <color name="holo_blue_bright">#FFC66D</color> <!-- Ripple effect when long pressed - 30% of accent --> <color name="ripple_material_dark">#4dFFC66D</color> <!-- Ripple effect when long pressed - 30% of accent --> <color name="ripple_material_light">#4dFFC66D</color> </resources>
Add spring configuration for gshell-parser
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, 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. --> <!-- $Rev$ $Date$ --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> <context:annotation-config/> <bean id="commandLineParser" class="org.apache.geronimo.gshell.parser.CommandLineParser"/> </beans>
Add the file missing from the last commit
<assembly name="UnityEditor.EditorTestsRunner"> <member name="M:UnityEditor.EditorTestsRunner.EditorTestsWithLogParser.ExpectLogLineRegex(System.String)"> <parameter name="pattern"> <attribute ctor="M:JetBrains.Annotations.NotNullAttribute.#ctor" /> <attribute ctor="M:JetBrains.Annotations.RegexPatternAttribute.#ctor" /> </parameter> </member> </assembly>
Work on a AlarmClient. Not finished yet.
<?xml version="1.0" encoding="UTF-8"?> <!-- #%L Bitrepository Common $Id: common-test-configuration.xml 111 2011-03-18 10:22:57Z mikis $ $HeadURL: https://sbforge.org/svn/bitrepository/trunk/bitrepository-common/src/test/resources/configuration/xml/common-test-configuration.xml $ %% Copyright (C) 2010 - 2011 The State and University Library, The Royal Library and The State Archives, Denmark %% This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Lesser Public License for more details. You should have received a copy of the GNU General Lesser Public License along with this program. If not, see <http://www.gnu.org/licenses/lgpl-2.1.html>. #L% --> <CommonConfiguration xmlns="http://bitrepository.org/alarm-client/AlarmClientConfiguration.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://bitrepository.org/alarm-client/AlarmClientConfiguration.xsd ../schema/AlarmClientConfiguration.xsd "> <queue>ALARM</queue> <MailingConfiguration> <MailReceiver>test@sandkasse-01.kb.dk</MailReceiver> <MailSender>test@sandkasse-01.kb.dk</MailSender> <MailServer>sandkasse-01.kb.dk</MailServer> </MailingConfiguration> </CommonConfiguration>
Add Ant build file to launch local task
<?xml version="1.0" encoding="UTF-8"?> <project name="hello-hadoop" default="launch-local" basedir="."> <description> Launch LOCAL map reduce job </description> <property name="INPUT_FILE" value="/tmp/MYDATA.txt" /> <property name="OUTPUT_DIR" value="/tmp/OUTPUT" /> <target name="clean" description="Clean output directory"> <delete dir="${OUTPUT_DIR}" verbose="true" /> </target> <target name="launch-local"> <exec executable="./hadoop-1.2.0/bin/hadoop"> <arg value="--config" /> <arg value="conf-local" /> <arg value="jar" /> <arg value="hello-hadoop-0.0.1-SNAPSHOT.jar" /> <arg value="ar.com.datatsunami.hellohadoop.Launcher" /> <arg value="file://${INPUT_FILE}" /> <arg value="file://${OUTPUT_DIR}" /> </exec> </target> <target name="clean-and-launch" depends="clean,launch-local" /> </project>
Remove background color for chat history in AnsaStorm skin for better transparency look
<?xml version="1.0" encoding="UTF-8"?> <fs_chat_history message_header="panel_chat_header.xml" message_separator="panel_chat_separator.xml" left_text_pad="10" right_text_pad="15" left_widget_pad="0" right_widget_pad="10" top_separator_pad="1" bottom_separator_pad="1" top_header_pad="12" bottom_header_pad="5" max_length="67108864" track_bottom="true" name="chat_history" type="string" word_wrap="true" line_spacing.multiple="1.0" font="SansSerif" bg_visible="false"> <more_chat_text mouse_opaque="true" parse_urls="false" word_wrap="true" /> </fs_chat_history>
Add white Add SVG image
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24.0" android:viewportHeight="24.0"> <path android:fillColor="#FFFFFFFF" android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/> </vector>
Test script for multivariate normal prior
<?xml version="1.0" standalone="yes"?> <beast> <matrixParameter id="locations"> <parameter value="0.0 0.0"/> </matrixParameter> <operators id="operators" optimizationSchedule="log"> <randomWalkOperator windowSize="1.0" weight="273"> <matrixParameter idref="locations"/> </randomWalkOperator> </operators> <mcmc id="mcmc" chainLength="10000000" autoOptimize="true"> <posterior id="posterior"> <prior id="prior"> <multivariateNormalPrior id="rootPrior"> <meanParameter> <parameter value="0.0 0.0"/> </meanParameter> <precisionParameter> <matrixParameter> <parameter value="0.04 0.0"/> <parameter value="0.0 0.25"/> </matrixParameter> </precisionParameter> <data> <matrixParameter idref="locations"/> </data> </multivariateNormalPrior> </prior> </posterior> <operators idref="operators"/> <log id="screenLog" logEvery="100000"> <column label="Posterior" dp="4" width="12"> <posterior idref="posterior"/> </column> </log> <log id="fileLog2" logEvery="10000" fileName="testMVN.log"> <matrixParameter idref="locations"/> </log> </mcmc> <report> <property name="timer"> <object idref="mcmc"/> </property> </report> </beast>
Add dictionaries to the repo
<component name="ProjectDictionaryState"> <dictionary name="tasomaniac"> <words> <w>taso</w> <w>tasomaniac</w> </words> </dictionary> </component>
Add a set of queries for the storages module
<query-mapping package='AWA.Storages.Models'> <description> The list of posts for the blog administrator. </description> <query name='storage-get-data'> <comment>Get the data content of the storage object. The query returns a single BLOB column.</comment> <sql> SELECT data.data FROM awa_storage as store INNER JOIN acl ON acl.entity_id = store.workspace_id AND acl.entity_type = :table AND acl.user_id = :user_id INNER JOIN awa_storage_data AS data ON store.storage_id = data.id WHERE store.id = :store_id </sql> </query> <query name='storage-delete-local'> <comment>Delete the local storage data</comment> <sql> DELETE FROM awa_store_local WHERE storage_id = :store_id </sql> </query> </query-mapping>
Add skeleton for AWT common classes.
<?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>imagej</groupId> <artifactId>imagej-pom-ui</artifactId> <version>2.0-SNAPSHOT</version> </parent> <artifactId>ij-awt-common</artifactId> <name>ImageJ Common Classes: AWT</name> <description>Common AWT classes for use with AWT and Swing user interfaces.</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ij-plugin</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ij-util</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <packageName>imagej.awt</packageName> </manifest> </archive> </configuration> </plugin> </plugins> </build> <!-- NB: for project parent, in case of partial checkout --> <repositories> <repository> <id>imagej.releases</id> <url>http://dev.imagejdev.org/maven2/releases</url> </repository> <repository> <id>imagej.snapshots</id> <url>http://dev.imagejdev.org/maven2/snapshots</url> </repository> </repositories> </project>
Add my own CodeSniffer settings
<?xml version="1.0"?> <ruleset name="MyStandard"> <rule ref="PSR2"> <exclude name="Generic.ControlStructures.InlineControlStructure.NotAllowed"/> <exclude name="Generic.Functions.OpeningFunctionBraceBsdAllman.BraceOnSameLine"/> <exclude name="Generic.WhiteSpace.DisallowTabIndent"/> <exclude name="PSR1.Classes.ClassDeclaration.MultipleClasses"/> <exclude name="PSR2.Classes.ClassDeclaration.OpenBraceNewLine"/> <exclude name="Squiz"/> </rule> </ruleset>
Use strict shrinkMode with the proper rules to improve resources shrinking
<?xml version="1.0" encoding="utf-8"?> <resources xmlns:tools="http://schemas.android.com/tools" tools:keep="@drawable/room_*" tools:shrinkMode="strict" />
Add new entry to changelog
<?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 · Fix: Attribute filter now lists non GC attributes\n · Fix: Better GPX file compatibility with Garmin devices\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 · Fix: Attribute filter now lists non GC attributes\n · Fix: Better GPX file compatibility with Garmin devices\n · Fix: Scan GeoKrety QRCodes from internal app\n \n \n </string> </resources>