Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Use JUnit Platform JAR stored in local build target
<component name="libraryTable"> <library name="JUnit 5"> <CLASSES> <root url="jar://$PROJECT_DIR$/.bach/tools/junit-platform-console-standalone/junit-platform-console-standalone-1.4.0.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> </library> </component>
<component name="libraryTable"> <library name="JUnit 5"> <CLASSES> <root url="jar://$PROJECT_DIR$/target/build/junit-platform-console-standalone-1.4.0.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> </library> </component>
Fix a missed package rename.
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2015 The Project Buendia Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 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 specific language governing permissions and limitations under the License. --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:showDividers="middle" android:divider="?android:dividerHorizontal" android:dividerPadding="0dp"> <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/fragment_patient_list_swipe_to_refresh" android:layout_width="match_parent" android:layout_height="match_parent"> <org.projectbuendia.records.widget.GroupedListView android:id="@+id/fragment_patient_list" android:layout_width="match_parent" android:layout_height="wrap_content" android:childDivider="#00000000" android:dividerHeight="2dp"/> </android.support.v4.widget.SwipeRefreshLayout> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2015 The Project Buendia Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 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 specific language governing permissions and limitations under the License. --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:showDividers="middle" android:divider="?android:dividerHorizontal" android:dividerPadding="0dp"> <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/fragment_patient_list_swipe_to_refresh" android:layout_width="match_parent" android:layout_height="match_parent"> <org.projectbuendia.client.widget.GroupedListView android:id="@+id/fragment_patient_list" android:layout_width="match_parent" android:layout_height="wrap_content" android:childDivider="#00000000" android:dividerHeight="2dp"/> </android.support.v4.widget.SwipeRefreshLayout> </LinearLayout>
Update Android Permissions for Xamarin TestCloud
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="FluentXamarinForms.Samples"> <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="21" /> <application android:label="Todo"> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="FluentXamarinForms.Samples"> <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="21" /> <application android:label="Todo"> </application> <uses-permission android:name="android.permission.INTERNET" /> </manifest>
Update logback configuration file for test
<!DOCTYPE configuration> <configuration> <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern> %d{HH:mm:ss.SSS} %highlight(%.-3p) %cyan(%-30.30c{1}): %m %blue(-- %C{1}.%M\(%F:%L\) / %t){}%n </pattern> </encoder> </appender> <logger name="net.rakugakibox.spring.boot.orika" level="debug" additivity="false"> <appender-ref ref="console" /> </logger> <root level="info"> <appender-ref ref="console" /> </root> </configuration>
<!DOCTYPE configuration> <configuration> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern> %d{HH:mm:ss.SSS} %highlight(%.-3p) %cyan(%-30.30c{1}): %m %blue(-- %C{1}.%M\(%F:%L\) / %t){}%n </pattern> </encoder> </appender> <logger name="net.rakugakibox.spring.boot.orika" level="debug" additivity="false"> <appender-ref ref="CONSOLE" /> </logger> <root level="info"> <appender-ref ref="CONSOLE" /> </root> </configuration>
Remove test no longer needed
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > <suite name="oxTrustServer" parallel="false"> <!-- Appliance Status Test (embedded) --> <test name="Appliance Status Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.ApplianceStatusTest"/> </classes> </test> <!-- Group Service Test (embedded) --> <test name="Group Service Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.GroupServiceTest" /> </classes> </test> <!-- Person Service Test (embedded) --> <test name="Person Service Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.PersonServiceTest" /> </classes> </test> <!-- Post Logout Redirect Service Test (embedded) --> <test name="Post Logout Redirect Service Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.PostLogoutRedirectUriTest" /> </classes> </test> <!-- SCIM User Extension Service Test (embedded) <test name="SCIM User Extension Service Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.UserExtensionsTest" /> </classes> </test> --> </suite>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > <suite name="oxTrustServer" parallel="false"> <!-- Appliance Status Test (embedded) --> <test name="Appliance Status Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.ApplianceStatusTest"/> </classes> </test> <!-- Group Service Test (embedded) --> <test name="Group Service Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.GroupServiceTest" /> </classes> </test> <!-- Person Service Test (embedded) --> <test name="Person Service Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.PersonServiceTest" /> </classes> </test> <!-- Post Logout Redirect Service Test (embedded) --> <test name="Post Logout Redirect Service Test (embedded)" enabled="true"> <classes> <class name="org.gluu.oxtrust.service.test.PostLogoutRedirectUriTest" /> </classes> </test> </suite>
Update logback pattern to align level. PL-11396.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <!-- Declare the 'CONSOLE' ConsoleAppender. --> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> <pattern>[%date] [%level] [%thread] [%logger{32}] %msg%n</pattern> </encoder> </appender> <logger name="com.amee" level="DEBUG"/> <!-- The root logger --> <root level="INFO"> <appender-ref ref="CONSOLE" /> </root> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <!-- Declare the 'CONSOLE' ConsoleAppender. --> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> <pattern>[%date] [%-5level] [%thread] [%logger{32}] %msg%n</pattern> </encoder> </appender> <logger name="com.amee" level="DEBUG"/> <!-- The root logger --> <root level="INFO"> <appender-ref ref="CONSOLE" /> </root> </configuration>
Use the configured serializer instead of hardcoding jms_serializer
<?xml version="1.0" ?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <parameters> <parameter key="fos_rest.converter.request_body.class">FOS\RestBundle\Request\RequestBodyParamConverter</parameter> </parameters> <services> <service id="fos_rest.converter.request_body" class="%fos_rest.converter.request_body.class%"> <argument type="service" id="jms_serializer"/> <tag name="request.param_converter" converter="fos_rest.request_body" /> </service> </services> </container>
<?xml version="1.0" ?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <parameters> <parameter key="fos_rest.converter.request_body.class">FOS\RestBundle\Request\RequestBodyParamConverter</parameter> </parameters> <services> <service id="fos_rest.converter.request_body" class="%fos_rest.converter.request_body.class%"> <argument type="service" id="fos_rest.serializer"/> <tag name="request.param_converter" converter="fos_rest.request_body" /> </service> </services> </container>
Change TextView to Button to make it selectable by keyboard
<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/text1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical" android:minHeight="?android:attr/listPreferredItemHeightSmall" android:textAppearance="@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem" style="@style/Widget.GDG.Spinner" android:textColor="@color/white" />
<?xml version="1.0" encoding="utf-8"?> <Button xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/text1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical" android:minHeight="?android:attr/listPreferredItemHeightSmall" android:textAppearance="@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem" style="@style/Widget.GDG.Spinner" android:textColor="@color/white" />
Complete the split between JSF and REST.
<?xml version="1.0" encoding="UTF-8"?> <jboss-web> <context-root>/todolist</context-root> </jboss-web>
<?xml version="1.0" encoding="UTF-8"?> <jboss-web> <context-root>/todorest</context-root> </jboss-web>
Add course_id.name and attendee. email into report
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <!--report definition--> <report id="report_session" model="openacademy.session" string="Session Report" name="openacademy.report_session_view" file="openacademy.report_session" report_type="qweb-pdf" /> <!--report template--> <template id="report_session_view"> <t t-call="report.html_container"> <t t-foreach="docs" t-as="doc"> <!--<t t-call="report.external_layout">--> <div class="page"> <h2 t-field="doc.name"/> <p>From <span t-field="doc.start_date"/> to <span t-field="doc.end_date"/></p> <h3>Attendees:</h3> <ul> <t t-foreach="doc.attendee_ids" t-as="attendee"> <li><span t-field="attendee.name"/></li> </t> </ul> </div> <!--</t>--> </t> </t> </template> </data> </openerp>
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <!--report definition--> <report id="report_session" model="openacademy.session" string="Session Report" name="openacademy.report_session_view" file="openacademy.report_session" report_type="qweb-pdf" /> <!--report template--> <template id="report_session_view"> <t t-call="report.html_container"> <t t-foreach="docs" t-as="doc"> <!--<t t-call="report.external_layout">--> <div class="page"> <h2 t-field="doc.name"/> <h2 t-field="doc.course_id.name"/> <p>From <span t-field="doc.start_date"/> to <span t-field="doc.end_date"/></p> <h3>Attendees:</h3> <ul> <t t-foreach="doc.attendee_ids" t-as="attendee"> <li><span t-field="attendee.name"/> <ul> <li><span t-field="attendee.email"/></li> </ul> </li> </t> </ul> </div> </t> <!--</t>--> </t> </template> </data> </openerp>
Add maven test phase to plugin
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jkiss.dbeaver</groupId> <artifactId>plugins</artifactId> <version>1.0.0-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <artifactId>org.jkiss.dbeaver.ext.greenplum</artifactId> <version>1.0.1-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jkiss.dbeaver</groupId> <artifactId>plugins</artifactId> <version>1.0.0-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <artifactId>org.jkiss.dbeaver.ext.greenplum</artifactId> <version>1.0.1-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12.4</version> <executions> <execution> <id>test</id> <phase>test</phase> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <executions> <execution> <id>compiletests</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
Set compiler source to 1.8 as well;
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project default="build_raspi" xmlns:ivy="antlib:org.apache.ivy.ant"> <target name="cleanup"> <delete dir="bin/"/> <delete dir="build/"/> </target> <target name="compile" depends="resolve"> <ivy:cachepath pathid="ivy.cachepath"/> <mkdir dir="bin/"/> <javac srcdir="src/" excludes="tests/**" source="1.7" classpathref="ivy.cachepath" destdir="bin/" target="1.8" debug="true" debuglevel="lines,source" includeantruntime="false"/> </target> <target name="build" depends="compile"> <mkdir dir="build/"/> <jar destfile="build/utils.jar"> <fileset dir="bin"/> </jar> <jar destfile="build/utils-src.jar"> <fileset dir="src" excludes="**/tests/**"/> </jar> </target> <target name="resolve"> <ivy:resolve /> </target> <target name="publish" depends="build, resolve"> <ivy:publish resolver="shared" pubrevision="1.3" overwrite="true" update="true"> <artifacts pattern="build/[artifact].[ext]"/> </ivy:publish> </target> <extension-point name="build_raspi" depends="cleanup, build, publish"/> </project>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project default="build_raspi" xmlns:ivy="antlib:org.apache.ivy.ant"> <target name="cleanup"> <delete dir="bin/"/> <delete dir="build/"/> </target> <target name="compile" depends="resolve"> <ivy:cachepath pathid="ivy.cachepath"/> <mkdir dir="bin/"/> <javac srcdir="src/" excludes="tests/**" source="1.8" classpathref="ivy.cachepath" destdir="bin/" target="1.8" debug="true" debuglevel="lines,source" includeantruntime="false"/> </target> <target name="build" depends="compile"> <mkdir dir="build/"/> <jar destfile="build/utils.jar"> <fileset dir="bin"/> </jar> <jar destfile="build/utils-src.jar"> <fileset dir="src" excludes="**/tests/**"/> </jar> </target> <target name="resolve"> <ivy:resolve /> </target> <target name="publish" depends="build, resolve"> <ivy:publish resolver="shared" pubrevision="1.3" overwrite="true" update="true"> <artifacts pattern="build/[artifact].[ext]"/> </ivy:publish> </target> <extension-point name="build_raspi" depends="cleanup, build, publish"/> </project>
Disable compatibility Floating Action Button selector transition animation to avoid background crossfading issue.
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" android:enterFadeDuration="@android:integer/config_mediumAnimTime" android:exitFadeDuration="@android:integer/config_mediumAnimTime"> <item android:drawable="@drawable/fab_background_highlighted" android:state_pressed="true"/> <item android:drawable="@drawable/fab_background_highlighted" android:state_focused="true"/> <item> <shape android:shape="oval"> <solid android:color="@color/color_accent"/> </shape> </item> </selector>
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/fab_background_highlighted" android:state_pressed="true"/> <item android:drawable="@drawable/fab_background_highlighted" android:state_focused="true"/> <item> <shape android:shape="oval"> <solid android:color="@color/color_accent"/> </shape> </item> </selector>
Fix column name for publicationStartDate
<?xml version="1.0" encoding="UTF-8" ?> <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"> <entity name="Integrated\Bundle\ChannelBundle\Model\Config" repository-class="Integrated\Bundle\ChannelBundle\Model\ConfigRepository" table="channel_connector_config"> <id name="id" type="integer"> <generator strategy="AUTO" /> </id> <field name="name" type="string" /> <field name="adapter" type="string" /> <field name="options" type="object" nullable="true" /> <field name="channels" type="json_array" /> <field name="publicationStartDate" type="datetime" /> <field name="created" type="datetime" /> <field name="updated" type="datetime" /> </entity> </doctrine-mapping>
<?xml version="1.0" encoding="UTF-8" ?> <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"> <entity name="Integrated\Bundle\ChannelBundle\Model\Config" repository-class="Integrated\Bundle\ChannelBundle\Model\ConfigRepository" table="channel_connector_config"> <id name="id" type="integer"> <generator strategy="AUTO" /> </id> <field name="name" type="string" /> <field name="adapter" type="string" /> <field name="options" type="object" nullable="true" /> <field name="channels" type="json_array" /> <field name="publicationStartDate" column="publication_start_date" type="datetime" /> <field name="created" type="datetime" /> <field name="updated" type="datetime" /> </entity> </doctrine-mapping>
Update OLS client stable version.
<ols-stable-versions> <jawis-client-stable>v0_9_3-1</jawis-client-stable> </ols-stable-versions>
<ols-stable-versions> <jawis-client-stable>v0_9_4</jawis-client-stable> </ols-stable-versions>
Make Clock dream default to "dim"
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/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. --> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" android:title="@string/app_label"> <ListPreference android:key="screensaver_clock_style" android:title="@string/clock_style" android:entries="@array/clock_style_entries" android:entryValues="@array/clock_style_values" android:defaultValue="@string/default_clock_style" android:dialogTitle="@string/clock_style" /> <CheckBoxPreference android:key="screensaver_night_mode" android:title="@string/night_mode_title" android:summary="@string/night_mode_summary" android:defaultValue="false" /> </PreferenceScreen>
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/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. --> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" android:title="@string/app_label"> <ListPreference android:key="screensaver_clock_style" android:title="@string/clock_style" android:entries="@array/clock_style_entries" android:entryValues="@array/clock_style_values" android:defaultValue="@string/default_clock_style" android:dialogTitle="@string/clock_style" /> <CheckBoxPreference android:key="screensaver_night_mode" android:title="@string/night_mode_title" android:summary="@string/night_mode_summary" android:defaultValue="true" /> </PreferenceScreen>
Change Log4j log category to INFO
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false"> <!-- ============================== --> <!-- Append messages to the console --> <!-- ============================== --> <appender name="saida" class="org.apache.log4j.ConsoleAppender"> <param name="Target" value="System.out"/> <layout class="org.apache.log4j.PatternLayout"> <!-- The default pattern: Date Priority [Category] Message\n --> <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/> </layout> </appender> <category name="com.obomprogramador" additivity="false"> <priority value="DEBUG" /> <appender-ref ref="saida" /> </category> <root> <priority value="DEBUG" /> <appender-ref ref="saida"/> </root> </log4j:configuration>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false"> <!-- ============================== --> <!-- Append messages to the console --> <!-- ============================== --> <appender name="saida" class="org.apache.log4j.ConsoleAppender"> <param name="Target" value="System.out"/> <layout class="org.apache.log4j.PatternLayout"> <!-- The default pattern: Date Priority [Category] Message\n --> <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/> </layout> </appender> <category name="com.obomprogramador" additivity="false"> <priority value="DEBUG" /> <appender-ref ref="saida" /> </category> <root> <priority value="INFO" /> <appender-ref ref="saida"/> </root> </log4j:configuration>
Update app's profile to match correct owner
<?xml version='1.0' encoding='utf-8'?> <widget id="com.ionicframework.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>HelloCordova</name> <description> An Ionic Framework and Cordova project. </description> <author email="you@example.com" href="http://example.com.com/"> Your Name Here </author> <content src="index.html" /> <access origin="*" /> <preference name="webviewbounce" value="false" /> <preference name="UIWebViewBounce" value="false" /> <preference name="DisallowOverscroll" value="true" /> <preference name="SplashScreenDelay" value="2000" /> <preference name="FadeSplashScreenDuration" value="2000"/> <!-- Ionic supports Android Jellybean and up --> <preference name="android-minSdkVersion" value="16" /> <!-- Don't store local data in an iCloud backup. Turn this to "cloud" to enable storage to be sent to iCloud. Note: enabling this could result in Apple rejecting your app. --> <preference name="BackupWebStorage" value="none" /> <feature name="StatusBar"> <param name="ios-package" value="CDVStatusBar" onload="true" /> </feature> </widget>
<?xml version='1.0' encoding='utf-8'?> <widget id="com.teerasej.nextflow.myapi" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>MyAPI</name> <description> A starter project for learn Ionic framework and Web API at training.nextflow.in.th </description> <author email="teerasej@nextflow.in.th" href="http://training.nextflow.in.th/"> Teerasej Jiraphatchandej </author> <content src="index.html" /> <access origin="*" /> <preference name="webviewbounce" value="false" /> <preference name="UIWebViewBounce" value="false" /> <preference name="DisallowOverscroll" value="true" /> <preference name="SplashScreenDelay" value="2000" /> <preference name="FadeSplashScreenDuration" value="2000"/> <!-- Ionic supports Android Jellybean and up --> <preference name="android-minSdkVersion" value="16" /> <!-- Don't store local data in an iCloud backup. Turn this to "cloud" to enable storage to be sent to iCloud. Note: enabling this could result in Apple rejecting your app. --> <preference name="BackupWebStorage" value="none" /> <feature name="StatusBar"> <param name="ios-package" value="CDVStatusBar" onload="true" /> </feature> </widget>
Fix collection datasets output format.
<tool id="hcluster_sg_parser" name="hcluster_sg_parser" version="0.1.1" force_history_refresh="True"> <description>Converts hcluster_sg 3-column output into lists of ids</description> <command> <![CDATA[ perl $__tool_directory__/hcluster_sg_parser.pl $inputFile ]]> </command> <inputs> <param name="inputFile" type="data" format="tabular" label="hcluster output file in 3-column format" help="3-columns format: cluster_id cluster-size cluster-members" /> </inputs> <outputs> <collection name="ids_lists" type="list" label="${tool.name} on ${on_string}"> <discover_datasets pattern="(?P&lt;designation&gt;.+)_output\.txt" format="txt" /> </collection> </outputs> <tests> <test> <param name="inputFile" ftype="tabular" value="hcluster_sg.tabular" /> <output_collection name="ids_lists" type="list"> <element name="0" file="0_output.txt" /> <element name="1" file="1_output.txt" /> <element name="2" file="2_output.txt" /> <element name="3" file="3_output.txt" /> </output_collection> </test> </tests> <help> <![CDATA[ Simple wrapper for hcluster_sg output parser. ]]> </help> <citations> </citations> </tool>
<tool id="hcluster_sg_parser" name="hcluster_sg_parser" version="0.1.1" force_history_refresh="True"> <description>Converts hcluster_sg 3-column output into lists of ids</description> <command> <![CDATA[ perl $__tool_directory__/hcluster_sg_parser.pl $inputFile ]]> </command> <inputs> <param name="inputFile" type="data" format="tabular" label="hcluster output file in 3-column format" help="3-columns format: cluster_id cluster-size cluster-members" /> </inputs> <outputs> <collection name="ids_lists" type="list" label="${tool.name} on ${on_string}"> <discover_datasets pattern="(?P&lt;designation&gt;.+)_output\.txt" ext="txt" /> </collection> </outputs> <tests> <test> <param name="inputFile" ftype="tabular" value="hcluster_sg.tabular" /> <output_collection name="ids_lists" type="list"> <element name="0" file="0_output.txt" ftype="txt" /> <element name="1" file="1_output.txt" ftype="txt" /> <element name="2" file="2_output.txt" ftype="txt" /> <element name="3" file="3_output.txt" ftype="txt" /> </output_collection> </test> </tests> <help> <![CDATA[ Simple wrapper for hcluster_sg output parser. ]]> </help> <citations> </citations> </tool>
Exclude KiTTY Helpers directory in PSDotFiles
<?xml version="1.0" encoding="utf-8"?> <Component xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/ralish/PSDotFiles/master/Metadata.xsd"> <FriendlyName>KiTTY</FriendlyName> <Detection> <Method>FindInPath</Method> <FindInPath>putty</FindInPath> </Detection> <InstallPath> <SpecialFolder>ApplicationData</SpecialFolder> <Destination>KiTTY</Destination> </InstallPath> </Component>
<?xml version="1.0" encoding="utf-8"?> <Component xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/ralish/PSDotFiles/master/Metadata.xsd"> <FriendlyName>KiTTY</FriendlyName> <Detection> <Method>FindInPath</Method> <FindInPath>putty</FindInPath> </Detection> <InstallPath> <SpecialFolder>ApplicationData</SpecialFolder> <Destination>KiTTY</Destination> </InstallPath> <IgnorePaths> <Path>Helpers</Path> </IgnorePaths> </Component>
Fix typos in Preferences window
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="Preferences"> <CheckBoxPreference android:title="Wi-Fi Only" android:defaultValue="true" android:summary="Only update subscriptions or download podcasts while connected to a Wi-Fi network" android:key="wifiPref" /> <CheckBoxPreference android:title="Stop When Wired Headphones Are Unplugged" android:defaultValue="true" android:summary="When checked, playback will stop when headphones are disconnected." android:key="stopOnHeadphonePref" /> <CheckBoxPreference android:title="Stop When Bluetooth Headphones Are Unplugged" android:defaultValue="true" android:summary="When checked, playback will stop when blueooth headphones are disconnected." android:key="stopOnBluetoothPref" /> <CheckBoxPreference android:title="Send Usage Data to Podax Server" android:defaultValue="true" android:summary="Send anonymous usage data improve Podax" android:key="usageDataPref" /> </PreferenceCategory> </PreferenceScreen>
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="Preferences"> <CheckBoxPreference android:title="Wi-Fi Only" android:defaultValue="true" android:summary="Only update subscriptions or download podcasts while connected to a Wi-Fi network" android:key="wifiPref" /> <CheckBoxPreference android:title="Stop When Wired Headphones Are Unplugged" android:defaultValue="true" android:summary="When checked, playback will stop when headphones are disconnected." android:key="stopOnHeadphonePref" /> <CheckBoxPreference android:title="Stop When Bluetooth Headphones Are Unplugged" android:defaultValue="true" android:summary="When checked, playback will stop when bluetooth headphones are disconnected." android:key="stopOnBluetoothPref" /> <CheckBoxPreference android:title="Send Usage Data to Podax Server" android:defaultValue="true" android:summary="Send anonymous usage data to improve Podax" android:key="usageDataPref" /> </PreferenceCategory> </PreferenceScreen>
Fix target in auction export configuration.
<?xml version="1.0"?> <deployment> <cluster hostcount="1" kfactor="0" /> <httpd enabled="true"> <jsonapi enabled="true" /> </httpd> <export> <configuration target="oldfile" enabled="true" type="file"> <property name="type">csv</property> <property name="nonce">MyExport</property> <property name="period">5</property> </configuration> <configuration target="newfile" enabled="true" type="file"> <property name="type">csv</property> <property name="nonce">Bids</property> <property name="period">3</property> </configuration> </export> </deployment>
<?xml version="1.0"?> <deployment> <cluster hostcount="1" kfactor="0" /> <httpd enabled="true"> <jsonapi enabled="true" /> </httpd> <export> <configuration stream="oldfile" enabled="true" type="file"> <property name="type">csv</property> <property name="nonce">MyExport</property> <property name="period">5</property> </configuration> <configuration stream="newfile" enabled="true" type="file"> <property name="type">csv</property> <property name="nonce">Bids</property> <property name="period">3</property> </configuration> </export> </deployment>
Add padding to Sydney Opera House
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#0c609c" android:gravity="center_vertical" > <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/welcome_copyright" android:adjustViewBounds="true" android:layout_gravity="center" android:id="@+id/imageView" /> <TextView android:layout_width="295dp" android:layout_height="wrap_content" android:maxWidth="240dp" android:text="@string/tutorial_4_text" android:layout_gravity="center" android:textStyle="bold" android:textAlignment="center" android:paddingTop="24dp" android:gravity="center_horizontal" android:textColor="@android:color/white" /> <TextView android:layout_width="278dp" android:layout_height="wrap_content" android:maxWidth="240dp" android:text="@string/tutorial_4_subtext" android:layout_gravity="center" android:textAlignment="textStart" android:paddingTop="16dp" android:gravity="start" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#0c609c" android:gravity="center_vertical" > <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingLeft="24dp" android:paddingRight="24dp" android:src="@drawable/sydney_opera_house" android:adjustViewBounds="true" android:layout_gravity="center" android:id="@+id/imageView" /> <TextView android:layout_width="295dp" android:layout_height="wrap_content" android:maxWidth="240dp" android:text="@string/tutorial_4_text" android:layout_gravity="center" android:textStyle="bold" android:textAlignment="center" android:paddingTop="24dp" android:gravity="center_horizontal" android:textColor="@android:color/white" /> <TextView android:layout_width="278dp" android:layout_height="wrap_content" android:maxWidth="240dp" android:text="@string/tutorial_4_subtext" android:layout_gravity="center" android:textAlignment="textStart" android:paddingTop="16dp" android:gravity="start" /> </LinearLayout>
Fix multiple tabs "contact information"
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="birthdate_date" model="ir.ui.view"> <field name="name">Birthdate Date field</field> <field name="model">res.partner</field> <field name="inherit_id" ref="partner_contact_personal_information_page.personal_information"/> <field name="arch" type="xml"> <data> <xpath expr="//group[@name='personal_information_group']"> <field name="birthdate_date"/> </xpath> </data> </field> </record> </data> </openerp>
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="view_personal_information_birthdate_date" model="ir.ui.view"> <field name="name">Birthdate Date field</field> <field name="model">res.partner</field> <field name="inherit_id" ref="partner_contact_personal_information_page.personal_information"/> <field name="arch" type="xml"> <data> <xpath expr="//group[@name='personal_information_group']"> <field name="birthdate_date"/> </xpath> </data> </field> </record> </data> </openerp>
Fix multiple tabs "contact information"
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="birthdate_date" model="ir.ui.view"> <field name="name">Birthdate Date field</field> <field name="model">res.partner</field> <field name="inherit_id" ref="partner_contact_personal_information_page.personal_information"/> <field name="arch" type="xml"> <data> <xpath expr="//group[@name='personal_information_group']"> <field name="birthdate_date"/> </xpath> </data> </field> </record> </data> </openerp>
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="view_personal_information_birthdate_date" model="ir.ui.view"> <field name="name">Birthdate Date field</field> <field name="model">res.partner</field> <field name="inherit_id" ref="partner_contact_personal_information_page.personal_information"/> <field name="arch" type="xml"> <data> <xpath expr="//group[@name='personal_information_group']"> <field name="birthdate_date"/> </xpath> </data> </field> </record> </data> </openerp>
Fix path to generated docs.
<?xml version="1.0"?> <project name="Plop" description="" default="all"> <property name="version" value="0.1.2"/> <property name="email" value="clicky@erebot.net"/> <property name="qa.coverage.force" value="false"/> <fileset dir="src/" id="sources"> <include name="**/*.php"/> </fileset> <fileset dir="tests/" id="tests"> <include name="**/*.php"/> </fileset> <target name="doc_html" description=""> <exec command="doxygen" dir="." passthru="true" checkreturn="true"/> </target> <target name="doc_pdf" description=""> <exec command="doxygen Doxyfile_latex" dir="." passthru="true" checkreturn="true"/> <exec command="make" dir="doc/latex" passthru="true"/> </target> <import file="buildenv/build.xml"/> </project>
<?xml version="1.0"?> <project name="Plop" description="" default="all"> <property name="version" value="0.1.2"/> <property name="email" value="clicky@erebot.net"/> <property name="qa.coverage.force" value="false"/> <fileset dir="src/" id="sources"> <include name="**/*.php"/> </fileset> <fileset dir="tests/" id="tests"> <include name="**/*.php"/> </fileset> <target name="doc_html" description=""> <exec command="doxygen" dir="." passthru="true" checkreturn="true"/> </target> <target name="doc_pdf" description=""> <exec command="doxygen Doxyfile_latex" dir="." passthru="true" checkreturn="true"/> <exec command="make" dir="docs/latex" passthru="true"/> </target> <import file="buildenv/build.xml"/> </project>
Add one permission in the manifest to get the device IPV4
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="uk.iankent.ikettle2"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <application android:allowBackup="true" android:icon="@mipmap/kettle" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme" tools:replace="android:icon,android:theme"> <activity android:name=".Home" android:label="@string/app_name" android:theme="@style/AppTheme.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".AddIKettle2" /> <activity android:name=".UseIKettle2" /> <activity android:name=".ChooseNewExistingKettle" /> <activity android:name=".ConfigureIKettle2" /> <activity android:name=".CalibrateIKettle"></activity> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="uk.iankent.ikettle2"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <application android:allowBackup="true" android:icon="@mipmap/kettle" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme" tools:replace="android:icon,android:theme"> <activity android:name=".Home" android:label="@string/app_name" android:theme="@style/AppTheme.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".AddIKettle2" /> <activity android:name=".UseIKettle2" /> <activity android:name=".ChooseNewExistingKettle" /> <activity android:name=".ConfigureIKettle2" /> <activity android:name=".CalibrateIKettle"></activity> </application> </manifest>
Change pdfjs webscript authentication level to none
<webscript> <shortname>pdfjs</shortname> <description>Container for pdf.js viewer</description> <url>/extras/components/preview/pdfjs</url> <format default="html"/> </webscript>
<webscript> <shortname>pdfjs</shortname> <description>Container for pdf.js viewer</description> <url>/extras/components/preview/pdfjs</url> <format default="html"/> <authentication>none</authentication> </webscript>
Add Vendor/Product ID for HID_DMX Nodle R4S
<?xml version="1.0" encoding="UTF-8"?> <component type="addon"> <id>org.qlcplus.QLCPlus.hid</id> <extends>org.qlcplus.QLCPlus</extends> <name>Hid</name> <summary>HID plugin for QLC+</summary> <url type="homepage">https://www.qlcplus.org/</url> <url type="bugtracker">https://github.com/mcallegari/qlcplus/issues/new?title=[hid]:</url> <metadata_license>CC-BY-SA-3.0</metadata_license> <project_license>Apache-2.0</project_license> <provides> <modalias>usb:v04B4p0F1Fd*</modalias> <modalias>usb:v16C0p088Bd*</modalias> <modalias>usb:v16D0p0830d*</modalias> </provides> </component>
<?xml version="1.0" encoding="UTF-8"?> <component type="addon"> <id>org.qlcplus.QLCPlus.hid</id> <extends>org.qlcplus.QLCPlus</extends> <name>Hid</name> <summary>HID plugin for QLC+</summary> <url type="homepage">https://www.qlcplus.org/</url> <url type="bugtracker">https://github.com/mcallegari/qlcplus/issues/new?title=[hid]:</url> <metadata_license>CC-BY-SA-3.0</metadata_license> <project_license>Apache-2.0</project_license> <provides> <modalias>usb:v04B4p0F1Fd*</modalias> <modalias>usb:v16C0p088Bd*</modalias> <modalias>usb:v16D0p0830d*</modalias> <modalias>usb:v16D0p0833d*</modalias> </provides> </component>
Change to white status bar color
<?xml version='1.0' encoding='utf-8'?> <widget id="se.rishie.ccdiff" version="0.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>CCdiff</name> <description> An app for comparing Chinese character strokes between different languages and regions. </description> <author email="rishie_88@hotmail.com" href="http://ccdiff.rishie.se"> Rishie Sharma </author> <content src="index.html" /> <access origin="*" /> <preference name="StatusBarOverlaysWebView" value="false" /> <preference name="StatusBarStyle" value="default" /> <preference name="DisallowOverscroll" value="true" /> <plugin name="org.apache.cordova.statusbar" spec="0.1.4" source="pgb" /> </widget>
<?xml version='1.0' encoding='utf-8'?> <widget id="se.rishie.ccdiff" version="0.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>CCdiff</name> <description> An app for comparing Chinese character strokes between different languages and regions. </description> <author email="rishie_88@hotmail.com" href="http://ccdiff.rishie.se"> Rishie Sharma </author> <content src="index.html" /> <access origin="*" /> <preference name="StatusBarOverlaysWebView" value="false" /> <preference name="StatusBarStyle" value="default" /> <preference name="StatusBarBackgroundColor" value="#FFFFFF" /> <preference name="DisallowOverscroll" value="true" /> <plugin name="org.apache.cordova.statusbar" spec="0.1.4" source="pgb" /> </widget>
Fix a SDK compilation issue
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="org.matrix.androidsdk"> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.VIBRATE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_CONTACTS" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_LOGS" /> <uses-permission android:name="android.permission.REORDER_TASKS" /> <!-- libjingle is designed for API >= 15 but the app should work from API >= 11 --> <uses-sdk tools:overrideLibrary="io.pristine.libjingle"/> <application android:allowBackup="true" android:label="@string/matrix_sdk_app_name"> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="org.matrix.androidsdk"> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.VIBRATE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_CONTACTS" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_LOGS" /> <uses-permission android:name="android.permission.REORDER_TASKS" /> <!-- libjingle is designed for API >= 15 but the app should work from API >= 11 --> <uses-sdk tools:overrideLibrary="io.pristine.libjingle"/> <application tools:replace="label" android:label="@string/matrix_sdk_app_name"> </application> </manifest>
Add link attrs in the main screen
<screen script="js/main.js"> <actionbar showTabsFor="@id/pager"/> <_content layout="activity_main"> <pager> <_page layout="@layout/fragment_alarm_list" icon="@drawable/ic_tab_alarm"> <alarmList> <_item layout="@layout/spacer" count="1"/> <items include="alarms.xml" /> </alarmList> </_page> <_page layout="@layout/fragment_clock" icon="@drawable/ic_tab_time"> <hoursMinutes>22:07</hoursMinutes> <seconds>15</seconds> <date>Sun, February 2</date> </_page> <_page layout="@layout/fragment_stopwatch" icon="@drawable/ic_tab_stopwatch"> </_page> </pager> </_content> </screen>
<screen script="js/main.js" xmlns:m="http://jimulabs.com/schemas/mirror"> <actionbar showTabsFor="@id/pager"/> <_content layout="activity_main"> <pager> <_page layout="@layout/fragment_alarm_list" icon="@drawable/ic_tab_alarm"> <alarmList m:href="fragment_add_alarm.xml" m:target="_blank" m:animEnter="@anim/dialog_enter" m:animExit="@anim/dialog_exit" m:event="bezelSwipe"> <_item layout="@layout/spacer" count="1"/> <items include="alarms.xml" /> </alarmList> </_page> <_page layout="@layout/fragment_clock" icon="@drawable/ic_tab_time"> <hoursMinutes>22:07</hoursMinutes> <seconds>15</seconds> <date>Sun, February 2</date> </_page> <_page layout="@layout/fragment_stopwatch" icon="@drawable/ic_tab_stopwatch"> </_page> </pager> </_content> </screen>
Fix an unescaped apostrophe in the welsh translation.
<resources> <string name="language_apology_text" translation_description="Apology for missing translations in this language and appeal for help."> Annwyl Seryddwr. Rydym yn ymddiheuro am y geiriau Saesneg yn SkyMap. SkyMap cael ei gynnal gan wirfoddolwyr. Yn anffodus, nid oes gennym cyfieithiadau cyflawn ym mhob iaith. Os allwch helpu yn eich iaith, rydym yn croesawu cyfieithiadau cyflawn neu cywiriadau i'r cyfieithiadau </string> </resources>
<resources> <string name="language_apology_text" translation_description="Apology for missing translations in this language and appeal for help."> Annwyl Seryddwr. Rydym yn ymddiheuro am y geiriau Saesneg yn SkyMap. SkyMap cael ei gynnal gan wirfoddolwyr. Yn anffodus, nid oes gennym cyfieithiadau cyflawn ym mhob iaith. Os allwch helpu yn eich iaith, rydym yn croesawu cyfieithiadau cyflawn neu cywiriadau i\'r cyfieithiadau </string> </resources>
Fix typo on previous commit.
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" \> <url> <loc>http://www.juandiana.com/</loc> <lastmod>2014-08-27T05:16:38+00:00</lastmod> </url> <url> <loc>http://www.juandiana.com/about/</loc> <lastmod>2014-08-27T05:16:38+00:00</lastmod> </url> </urlset>
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>http://www.juandiana.com/</loc> <lastmod>2014-08-27T05:16:38+00:00</lastmod> </url> <url> <loc>http://www.juandiana.com/about/</loc> <lastmod>2014-08-27T05:16:38+00:00</lastmod> </url> </urlset>
Add widget="phone" in tree view, to have an easy-to-read phone number in tree view
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2014 Alexis de Lattre <alexis@via.ecp.fr> The licence is in the file __openerp__.py --> <openerp> <data> <record id="crm_case_form_view_job" model="ir.ui.view"> <field name="name">hr_recruitment_phone.hr_applicant.form</field> <field name="model">hr.applicant</field> <field name="inherit_id" ref="hr_recruitment.crm_case_form_view_job"/> <field name="arch" type="xml"> <field name="partner_phone" position="attributes"> <attribute name="widget">phone</attribute> </field> <field name="partner_mobile" position="attributes"> <attribute name="widget">phone</attribute> </field> </field> </record> </data> </openerp>
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2014 Alexis de Lattre <alexis@via.ecp.fr> The licence is in the file __openerp__.py --> <openerp> <data> <record id="crm_case_form_view_job" model="ir.ui.view"> <field name="name">hr_recruitment_phone.hr_applicant.form</field> <field name="model">hr.applicant</field> <field name="inherit_id" ref="hr_recruitment.crm_case_form_view_job"/> <field name="arch" type="xml"> <field name="partner_phone" position="attributes"> <attribute name="widget">phone</attribute> </field> <field name="partner_mobile" position="attributes"> <attribute name="widget">phone</attribute> </field> </field> </record> <record id="crm_case_tree_view_job" model="ir.ui.view"> <field name="name">hr_recruitment_phone.hr_applicant.tree</field> <field name="model">hr.applicant</field> <field name="inherit_id" ref="hr_recruitment.crm_case_tree_view_job"/> <field name="arch" type="xml"> <field name="partner_phone" position="attributes"> <attribute name="widget">phone</attribute> </field> </field> </record> </data> </openerp>
Add tracing profile to MQTT adapter.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE xml> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="INFO"> <appender-ref ref="STDOUT" /> </root> <springProfile name="dev"> <logger name="org.eclipse.hono.adapter" level="DEBUG"/> <logger name="org.eclipse.hono.client" level="DEBUG"/> <logger name="org.eclipse.hono.client.impl.AbstractRequestResponseClient" level="DEBUG"/> <logger name="org.eclipse.hono.connection" level="DEBUG"/> <logger name="org.eclipse.hono.service.auth.device" level="DEBUG"/> </springProfile> <springProfile name="prod"> <logger name="org.eclipse.hono" level="INFO"/> </springProfile> <logger name="io.netty.handler.logging.LoggingHandler" level="INFO"/> <logger name="io.vertx.proton.impl" level="INFO"/> <logger name="io.vertx.core.net.impl" level="INFO"/> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE xml> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="INFO"> <appender-ref ref="STDOUT" /> </root> <springProfile name="trace"> <logger name="org.eclipse.hono.adapter" level="TRACE"/> </springProfile> <springProfile name="dev"> <logger name="org.eclipse.hono.adapter" level="DEBUG"/> <logger name="org.eclipse.hono.client" level="DEBUG"/> <logger name="org.eclipse.hono.client.impl.AbstractRequestResponseClient" level="DEBUG"/> <logger name="org.eclipse.hono.connection" level="DEBUG"/> <logger name="org.eclipse.hono.service.auth.device" level="DEBUG"/> </springProfile> <springProfile name="prod"> <logger name="org.eclipse.hono" level="INFO"/> </springProfile> <logger name="io.netty.handler.logging.LoggingHandler" level="INFO"/> <logger name="io.vertx.proton.impl" level="INFO"/> <logger name="io.vertx.core.net.impl" level="INFO"/> </configuration>
Add some basic project & developer info to POM
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>me.grdryn.lisztomania</groupId> <artifactId>lisztomania</artifactId> <version>0.0.0-SNAPSHOT</version> <name>Lisztomania</name> <description>Lists and stuff</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>me.grdryn.lisztomania</groupId> <artifactId>lisztomania</artifactId> <version>0.0.0-SNAPSHOT</version> <name>Lisztomania</name> <description>Lists and stuff</description> <inceptionYear>2014</inceptionYear> <developers> <developer> <id>grdryn</id> <name>Gerard Ryan</name> <email>gerard@ryan.lt</email> <url>https://blog.grdryn.me</url> <timezone>GMT</timezone> <properties> <twitter>@grdryn</twitter> </properties> </developer> </developers> </project>
Fix different width of id/pw.
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <!-- LoginWidget.ui.xml --> <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui'> <g:HTMLPanel> <form class="compactform" action="#"> Veuillez vous identifier: <br /><br /> <table> <tr><td><label>id</label></td><td><g:TextBox ui:field="loginid"/></td></tr> <tr><td><label>mot de passe</label></td><td><g:PasswordTextBox ui:field="password"/></td></tr> </table> <div class="actions" id="loginActionsContainer"> <g:Button ui:field="entrer">entrer</g:Button> </div> </form> </g:HTMLPanel> </ui:UiBinder>
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <!-- LoginWidget.ui.xml --> <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui'> <g:HTMLPanel> <form class="compactform" action="#"> Veuillez vous identifier: <br /><br /> <table> <tr><td><label>id</label></td><td><g:TextBox ui:field="loginid" visibleLength="14"/></td></tr> <tr><td><label>mot de passe</label></td><td><g:PasswordTextBox ui:field="password" visibleLength="14"/></td></tr> </table> <div class="actions" id="loginActionsContainer"> <g:Button ui:field="entrer">entrer</g:Button> </div> </form> </g:HTMLPanel> </ui:UiBinder>
Remove uses-sdk duplicate change minSdkVersion to 9 (and not 8 due to camera.open)
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="tm.android.lampetorche" android:versionCode="1" android:versionName="1.0" android:installLocation="preferExternal"> <uses-sdk android:minSdkVersion="17"/> <uses-sdk android:minSdkVersion="14"/> <uses-permission android:name="android.permission.CAMERA" android:required="false"/> <uses-feature android:name="android.hardware.camera.flash" android:required="false"/> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> <activity android:screenOrientation="nosensor" android:name=".Torche" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <activity android:screenOrientation="nosensor" android:name=".ScreenActivity"> <intent-filter> <action android:name="android.intent.action.MAIN"/> </intent-filter> </activity> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="tm.android.lampetorche" android:versionCode="1" android:versionName="1.0" android:installLocation="preferExternal"> <uses-sdk android:minSdkVersion="9"/> <uses-permission android:name="android.permission.CAMERA" android:required="false"/> <uses-feature android:name="android.hardware.camera.flash" android:required="false"/> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> <activity android:screenOrientation="nosensor" android:name=".Torche" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <activity android:screenOrientation="nosensor" android:name=".ScreenActivity"> <intent-filter> <action android:name="android.intent.action.MAIN"/> </intent-filter> </activity> </application> </manifest>
Add course_id.name and attendee.email into report
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <!--Parametro del reporte--> <report id="report_session" model="openacademy.session" string="Session Report" name="openacademy.report_session_view" file="openacademy.report_session" report_type="qweb-pdf" /> <!--Contenido del reporte--> <template id="report_session_view"> <t t-call="report.html_container"> <t t-foreach="docs" t-as="doc"> <!--<t t-call="report.external_layout">--> <div class="page"> <h2 t-field="doc.name"/> <p>From <span t-field="doc.start_date"/> to <span t-field="doc.end_date"/></p> <p t-esc="formatLang(time.strftime('%Y-%m-%d %H:%M:%S'), date_time=True)"/> <h3>Attendees:</h3> <ul> <t t-foreach="doc.attendee_ids" t-as="attendee"> <li><span t-field="attendee.name"/></li> </t> </ul> </div> <!--</t>--> </t> </t> </template> </data> </openerp>
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <!--Parametro del reporte--> <report id="report_session" model="openacademy.session" string="Session Report" name="openacademy.report_session_view" file="openacademy.report_session" report_type="qweb-pdf" /> <!--Contenido del reporte--> <template id="report_session_view"> <t t-call="report.html_container"> <t t-foreach="docs" t-as="doc"> <!--<t t-call="report.external_layout">--> <div class="page"> <h2 t-field="doc.name"/> <h2 t-field="doc.course_id.name"/> <p>From <span t-field="doc.start_date"/> to <span t-field="doc.end_date"/></p> <p t-esc="formatLang(time.strftime('%Y-%m-%d %H:%M:%S'), date_time=True)"/> <h3>Attendees:</h3> <ul> <t t-foreach="doc.attendee_ids" t-as="attendee"> <li><span t-field="attendee.name"/></li> <li><span t-field="attendee.email"/></li> </t> </ul> </div> <!--</t>--> </t> </t> </template> </data> </openerp>
Fix minor problems in rmi-client subproject
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean name="databaseManager" class="org.springframework.remoting.rmi.RmiProxyFactoryBean" p:serviceUrl="rmi://localhost/DatabaseManager" p:serviceInterface="cyberwaste.kuzoff.core.DatabaseManager" /> <bean name="rmiClient" class="cyberwaste.kuzoff.client.rmi.RmiClientManager"> <property name="databaseManager" ref="databaseManager" /> </bean> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean name="databaseManager" class="org.springframework.remoting.rmi.RmiProxyFactoryBean" p:serviceUrl="rmi://localhost/DatabaseManager" p:serviceInterface="cyberwaste.kuzoff.core.DatabaseManager" /> <bean name="rmiClient" class="cyberwaste.kuzoff.rmi.client.RmiClientManager"> <property name="databaseManager" ref="databaseManager" /> </bean> </beans>
Fix a comment in an initilization file
<?xml version="1.0"?> <initialize name="reset01"> <!-- This file sets up the aircraft to start off from the runway in preparation for takeoff. --> <ubody unit="FT/SEC"> 160.0 </ubody> <latitude unit="DEG"> 47.0 </latitude> <longitude unit="DEG"> 122.0 </longitude> <psi unit="DEG"> 200.0 </psi> <altitude unit="FT"> 8000.0 </altitude> </initialize>
<?xml version="1.0"?> <initialize name="reset01"> <!-- This file sets up the aircraft at 8000 feet on a heading of 200 degrees. --> <ubody unit="FT/SEC"> 160.0 </ubody> <latitude unit="DEG"> 47.0 </latitude> <longitude unit="DEG"> 122.0 </longitude> <psi unit="DEG"> 200.0 </psi> <altitude unit="FT"> 8000.0 </altitude> </initialize>
Add exclusion rule for line before param, with correct code
<?xml version="1.0"?> <ruleset name="Magento PSR2"> <description>Magento Coding Standards using PSR2.</description> <!-- Exclude paths --> <exclude-pattern>*/lib/*</exclude-pattern> <exclude-pattern>*/node_modules/*</exclude-pattern> <!-- scripts folder is utilized only in development, no need for cs --> <exclude-pattern>./scripts/*</exclude-pattern> <!-- Rules --> <rule ref="./lib/Ebanx/vendor/magento-ecg/coding-standard/Ecg" /> <rule ref="PSR2"> <exclude name="PSR2.Namespaces" /> </rule> <rule ref="Generic.Arrays.DisallowShortArraySyntax.Found" /> <rule ref="PEAR.Commenting.FunctionComment" /> <rule ref="Generic.Commenting"> <exclude-pattern>*.phtml</exclude-pattern> <exclude name="Generic.Commenting.DocComment.MissingShort" /> <exclude name="Generic.Commenting.DocComment.FirstTag" /> </rule> <!-- Excludes --> <rule ref="PSR1.Classes.ClassDeclaration"> <exclude name="PSR1.Classes.ClassDeclaration" /> </rule> <rule ref="Squiz.Classes.ValidClassName"> <exclude name="Squiz.Classes.ValidClassName" /> </rule> </ruleset>
<?xml version="1.0"?> <ruleset name="Magento PSR2"> <description>Magento Coding Standards using PSR2.</description> <!-- Exclude paths --> <exclude-pattern>*/lib/*</exclude-pattern> <exclude-pattern>*/node_modules/*</exclude-pattern> <!-- scripts folder is utilized only in development, no need for cs --> <exclude-pattern>./scripts/*</exclude-pattern> <!-- Rules --> <rule ref="./lib/Ebanx/vendor/magento-ecg/coding-standard/Ecg" /> <rule ref="PSR2"> <exclude name="PSR2.Namespaces" /> </rule> <rule ref="Generic.Arrays.DisallowShortArraySyntax.Found" /> <rule ref="PEAR.Commenting.FunctionComment" /> <rule ref="Generic.Commenting"> <exclude-pattern>*.phtml</exclude-pattern> <exclude name="Generic.Commenting.DocComment.MissingShort" /> <exclude name="Generic.Commenting.DocComment.SpacingBeforeTags" /> </rule> <!-- Excludes --> <rule ref="PSR1.Classes.ClassDeclaration"> <exclude name="PSR1.Classes.ClassDeclaration" /> </rule> <rule ref="Squiz.Classes.ValidClassName"> <exclude name="Squiz.Classes.ValidClassName" /> </rule> </ruleset>
Add android:id for the style of the v21 variant
<!-- ~ Copyright (C) 2021 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required 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. --> <!-- Having styles for v21 because specifying android:attr/colorBackground used in the drawables requires API level 21 --> <resources> <style name="Widget.AppWidget.AppWidget.Container" parent="android:Widget"> <item name="android:padding">?attr/appWidgetPadding</item> <item name="android:background">@drawable/app_widget_background</item> </style> <style name="Widget.AppWidget.AppWidget.InnerView" parent="android:Widget"> <item name="android:padding">?attr/appWidgetPadding</item> <item name="android:background">@drawable/app_widget_inner_view_background</item> </style> <style name="Widget.AppWidget.ImageView.WeatherIcon" parent="android:Widget"> <item name="android:tint">?android:attr/colorAccent</item> </style> </resources>
<!-- ~ Copyright (C) 2021 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required 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. --> <!-- Having styles for v21 because specifying android:attr/colorBackground used in the drawables requires API level 21 --> <resources> <style name="Widget.AppWidget.AppWidget.Container" parent="android:Widget"> <item name="android:id">@android:id/background</item> <item name="android:padding">?attr/appWidgetPadding</item> <item name="android:background">@drawable/app_widget_background</item> </style> <style name="Widget.AppWidget.AppWidget.InnerView" parent="android:Widget"> <item name="android:padding">?attr/appWidgetPadding</item> <item name="android:background">@drawable/app_widget_inner_view_background</item> </style> <style name="Widget.AppWidget.ImageView.WeatherIcon" parent="android:Widget"> <item name="android:tint">?android:attr/colorAccent</item> </style> </resources>
Allow Javadoc for undeclared RuntimeExceptions
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> <module name="Checker"> <property name="severity" value="error" /> <module name="TreeWalker"> <module name="SuppressWarningsHolder" /> <module name="JavadocMethod"> <property name="allowMissingJavadoc" value="true" /> <property name="allowMissingParamTags" value="true" /> <property name="allowMissingReturnTag" value="true" /> <property name="allowMissingThrowsTags" value="true" /> <property name="validateThrows" value="true" /> </module> <module name="JavadocParagraph" /> <module name="AtclauseOrder"> <property name="tagOrder" value="@param, @return, @throws, @exception, @author, @since, @see" /> </module> <module name="NonEmptyAtclauseDescription" /> </module> <module name="SuppressWarningsFilter" /> </module>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> <module name="Checker"> <property name="severity" value="error" /> <module name="TreeWalker"> <module name="SuppressWarningsHolder" /> <module name="JavadocMethod"> <property name="allowMissingJavadoc" value="true" /> <property name="allowMissingParamTags" value="true" /> <property name="allowMissingReturnTag" value="true" /> <property name="allowMissingThrowsTags" value="true" /> <property name="allowUndeclaredRTE" value="true" /> <property name="validateThrows" value="true" /> </module> <module name="JavadocParagraph" /> <module name="AtclauseOrder"> <property name="tagOrder" value="@param, @return, @throws, @exception, @author, @since, @see" /> </module> <module name="NonEmptyAtclauseDescription" /> </module> <module name="SuppressWarningsFilter" /> </module>
Upgrade archetype-packaging and maven-archetype-plugin to 2.4
<?xml version='1.0' encoding='UTF-8' ?> <project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <groupId>com.kytkemo</groupId> <artifactId>spring-library</artifactId> <version>1.1.8-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>
<?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.8-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.4</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.4</version> </plugin> </plugins> </pluginManagement> </build> </project>
Remove map lib dependency in hopes it allows broader install base
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.readystatesoftware.mapviewballoons" android:versionCode="4" android:versionName="1.5.1" > <application> <uses-library android:name="com.google.android.maps" /> </application> <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7" /> <uses-permission android:name="android.permission.INTERNET" > </uses-permission> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.readystatesoftware.mapviewballoons" android:versionCode="4" android:versionName="1.5.1" > <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7" /> <uses-permission android:name="android.permission.INTERNET" > </uses-permission> </manifest>
Use maven central through https
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <profiles> <profile> <id>default</id> <repositories> <repository> <id>central</id> <name>central</name> <url>http://repo1.maven.org/maven2</url> </repository> <repository> <id>spring-snapshot-local</id> <name>spring-snapshot-local</name> <url>https://repo.spring.io/libs-snapshot-local</url> </repository> <repository> <id>spring-milestone-local</id> <name>spring-milestone-local</name> <url>https://repo.spring.io/libs-milestone-local</url> </repository> </repositories> </profile> </profiles> <activeProfiles> <activeProfile>default</activeProfile> </activeProfiles> </settings>
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <profiles> <profile> <id>default</id> <repositories> <repository> <id>central</id> <name>central</name> <url>https://repo1.maven.org/maven2</url> </repository> <repository> <id>spring-snapshot-local</id> <name>spring-snapshot-local</name> <url>https://repo.spring.io/libs-snapshot-local</url> </repository> <repository> <id>spring-milestone-local</id> <name>spring-milestone-local</name> <url>https://repo.spring.io/libs-milestone-local</url> </repository> </repositories> </profile> </profiles> <activeProfiles> <activeProfile>default</activeProfile> </activeProfiles> </settings>
Make nvoice in sales order and lines not visible in form view
<?xml version="1.0" encoding="utf-8"?> <terp> <data> <wizard id="wizard_sale_order_make_invoice" keyword="client_action_multi" model="sale.order" name="sale.order.make_invoice" string="Make invoices"/> <wizard id="wizard_sale_order_line_invoice" keyword="client_action_multi" model="sale.order.line" name="sale.order.line.make_invoice" string="Make invoices"/> </data> </terp>
<?xml version="1.0" encoding="utf-8"?> <terp> <data> <wizard id="wizard_sale_order_make_invoice" keyword="client_action_multi" model="sale.order" name="sale.order.make_invoice" multi="True" string="Make invoices"/> <wizard id="wizard_sale_order_line_invoice" keyword="client_action_multi" model="sale.order.line" name="sale.order.line.make_invoice" multi="True" string="Make invoices"/> </data> </terp>
Add myself to about page and credits
<a:application xmlns:a="http://ajax.org/2005/aml"> <a:window id = "aboutDialog" icon = "" kbclose = "true" center = "true" width = "512" skinset = "help-skin" buttons = "close" skin = "win-help-about" class = "aboutDialogBox"> <div class="aboutImage"> <div id="c9Version" textselect="true"><?lm Version {cloud9config.version} ?></div> <!-- <div class="c9Legal"> <p><a href="http://www.bettercallsaul.com/">Click here for legal notices.</p> </div> --> <div class="c9StaffHeader"> <p>Cloud9 is brought to you by:</p> </div> <div class="c9Staff"> <p textselect="true"> Bas de Wachter, Fabian Jakobs, Harutyun Amirjanyan, Ivar Pruijn, Lennart Kats, Luca Cipriani, Mostafa Eweda, Matthijs van Henten, Nikolai Onken, Tim Robinson, Ruben Daniels </p> </div> <div class="c9Copyright"> <p>&#169; 2010 — 2015 Cloud9 Inc. All rights reserved</p> </div> </div> </a:window> </a:application>
<a:application xmlns:a="http://ajax.org/2005/aml"> <a:window id = "aboutDialog" icon = "" kbclose = "true" center = "true" width = "512" skinset = "help-skin" buttons = "close" skin = "win-help-about" class = "aboutDialogBox"> <div class="aboutImage"> <div id="c9Version" textselect="true"><?lm Version {cloud9config.version} ?></div> <!-- <div class="c9Legal"> <p><a href="http://www.bettercallsaul.com/">Click here for legal notices.</p> </div> --> <div class="c9StaffHeader"> <p>Cloud9 is brought to you by:</p> </div> <div class="c9Staff"> <p textselect="true"> Arron Bailiss, Bas de Wachter, Fabian Jakobs, Harutyun Amirjanyan, Ivar Pruijn, Lennart Kats, Luca Cipriani, Mostafa Eweda, Matthijs van Henten, Nikolai Onken, Tim Robinson, Ruben Daniels </p> </div> <div class="c9Copyright"> <p>&#169; 2010 — 2015 Cloud9 Inc. All rights reserved</p> </div> </div> </a:window> </a:application>
Set karaf console REST service URL and auth token from environment variables.
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>ftp-maven-travis</id> <username>${env.FTPUSER}</username> <password>${env.FTPPASSWD}</password> </server> </servers> </settings>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>ftp-maven-travis</id> <username>${env.FTPUSER}</username> <password>${env.FTPPASSWD}</password> </server> </servers> <profiles> <profile> <id>karaf-deploy</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <ukelonn-server-url>${env.UKELONNURL}</ukelonn-server-url> <ukelonn-server-basic-auth-token>${env.UKELONNBASICAUTHTOKEN}</ukelonn-server-basic-auth-token> </properties> </profile> </profiles> </settings>
Set version code back to 1.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.hockeyapp.android.demo" android:versionName="1.0" android:versionCode="3"> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="net.hockeyapp.android.UpdateActivity" /> </application> <uses-sdk android:minSdkVersion="8" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.hockeyapp.android.demo" android:versionName="1.0" android:versionCode="1"> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="net.hockeyapp.android.UpdateActivity" /> </application> <uses-sdk android:minSdkVersion="8" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> </manifest>
Change navigation bar color to transparent
<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> <style name="ToolbarTheme" parent="AppTheme"> <item name="android:textColor">@android:color/black</item> <item name="android:textColorPrimary">@android:color/white</item> <item name="android:textColorSecondary">@android:color/white</item> <item name="android:background">@android:color/transparent</item> </style> <style name="TransparentTheme" parent="AppTheme"> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowIsTranslucent">true</item> <item name="colorPrimaryDark">@android:color/transparent</item> <item name="android:windowAnimationStyle">@null</item> </style> </resources>
<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> <style name="ToolbarTheme" parent="AppTheme"> <item name="android:textColor">@android:color/black</item> <item name="android:textColorPrimary">@android:color/white</item> <item name="android:textColorSecondary">@android:color/white</item> <item name="android:background">@android:color/transparent</item> </style> <style name="TransparentTheme" parent="AppTheme"> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowIsTranslucent">true</item> <item name="colorPrimaryDark">@android:color/transparent</item> <item name="android:windowAnimationStyle">@null</item> <item name="android:navigationBarColor">@android:color/transparent</item> </style> </resources>
Include timestamp with logger messages
<!-- ~ Copyright (C) 2009-2016 Lightbend Inc. <https://www.lightbend.com> --> <!-- The default logback configuration that Play uses if no other configuration is provided --> <configuration> <conversionRule conversionWord="coloredLevel" converterClass="play.api.libs.logback.ColoredLevel" /> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%coloredLevel %logger{15} - %message%n%xException{10}</pattern> </encoder> </appender> <logger name="play" level="INFO" /> <logger name="application" level="DEBUG" /> <logger name="com.gargoylesoftware.htmlunit.javascript" level="OFF" /> <root level="WARN"> <appender-ref ref="STDOUT" /> </root> <!-- Sentry --> <appender name="Sentry" class="com.getsentry.raven.logback.SentryAppender"> <dsn>${SENTRY_DSN}</dsn> <tags>tag1:value1,tag2:value2</tags> </appender> <root level="warn"> <appender-ref ref="Sentry"/> </root> <!-- Ore loggers --> <logger name="Bootstrap" level="INFO" /> <logger name="Discourse" level="INFO" /> <logger name="Database" level="INFO" /> <logger name="DataHelper" level="INFO" /> </configuration>
<!-- ~ Copyright (C) 2009-2016 Lightbend Inc. <https://www.lightbend.com> --> <!-- The default logback configuration that Play uses if no other configuration is provided --> <configuration> <conversionRule conversionWord="coloredLevel" converterClass="play.api.libs.logback.ColoredLevel" /> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>[%d{HH:mm:ss.SSS}] %coloredLevel %logger{15} - %message%n%xException{10}</pattern> </encoder> </appender> <logger name="play" level="INFO" /> <logger name="application" level="DEBUG" /> <logger name="com.gargoylesoftware.htmlunit.javascript" level="OFF" /> <root level="WARN"> <appender-ref ref="STDOUT" /> </root> <!-- Sentry --> <appender name="Sentry" class="com.getsentry.raven.logback.SentryAppender"> <dsn>${SENTRY_DSN}</dsn> <tags>tag1:value1,tag2:value2</tags> </appender> <root level="warn"> <appender-ref ref="Sentry"/> </root> <!-- Ore loggers --> <logger name="Bootstrap" level="INFO" /> <logger name="Discourse" level="INFO" /> <logger name="Database" level="INFO" /> <logger name="DataHelper" level="INFO" /> </configuration>
Set OSATE version to 2.3.3-SNAPSHOT
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>osate2</artifactId> <groupId>org.osate</groupId> <version>2.3.2.vfinal</version> <relativePath>../../../../osate2-core/org.osate.build.main/pom.xml</relativePath> </parent> <groupId>org.osate</groupId> <artifactId>fm-workbench.parent</artifactId> <packaging>pom</packaging> <version>2.1.3-SNAPSHOT</version> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>osate2</artifactId> <groupId>org.osate</groupId> <version>2.3.3-SNAPSHOT</version> <relativePath>../../../../osate2-core/org.osate.build.main/pom.xml</relativePath> </parent> <groupId>org.osate</groupId> <artifactId>fm-workbench.parent</artifactId> <packaging>pom</packaging> <version>2.1.3-SNAPSHOT</version> </project>
Disable the peas/flash project temporarily as it causes errors to appear when importing the projects into Eclipse.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.googlecode.playn</groupId> <artifactId>playn-project</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>playn-demos</artifactId> <name>PlayN Demos Project</name> <description>PlayN Demos</description> <packaging>pom</packaging> <modules> <module>hello/core</module> <module>cute/core</module> <module>peas/core</module> <module>peas/flash</module> </modules> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.googlecode.playn</groupId> <artifactId>playn-project</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>playn-demos</artifactId> <name>PlayN Demos Project</name> <description>PlayN Demos</description> <packaging>pom</packaging> <modules> <module>hello/core</module> <module>cute/core</module> <module>peas/core</module> <!-- disabled until we can fix the m2eclipse errors caused by this pom <module>peas/flash</module> --> </modules> </project>
Set default level for application.
<!-- https://www.playframework.com/documentation/latest/SettingsLogger --> <configuration> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>${application.home:-.}/logs/application.log</file> <encoder> <pattern>%date [%level] from %logger in %thread - %message%n%xException</pattern> </encoder> </appender> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%coloredLevel %logger{15} - %message%n%xException{10}</pattern> </encoder> </appender> <appender name="ASYNCFILE" class="ch.qos.logback.classic.AsyncAppender"> <appender-ref ref="FILE" /> </appender> <appender name="ASYNCSTDOUT" class="ch.qos.logback.classic.AsyncAppender"> <appender-ref ref="STDOUT" /> </appender> <logger name="play" level="INFO" /> <logger name="application" level="DEBUG" /> <root level="WARN"> <appender-ref ref="ASYNCFILE" /> <appender-ref ref="ASYNCSTDOUT" /> </root> </configuration>
<!-- https://www.playframework.com/documentation/latest/SettingsLogger --> <configuration> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>${application.home:-.}/logs/application.log</file> <encoder> <pattern>%date [%level] from %logger in %thread - %message%n%xException</pattern> </encoder> </appender> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%coloredLevel %logger{15} - %message%n%xException{10}</pattern> </encoder> </appender> <appender name="ASYNCFILE" class="ch.qos.logback.classic.AsyncAppender"> <appender-ref ref="FILE" /> </appender> <appender name="ASYNCSTDOUT" class="ch.qos.logback.classic.AsyncAppender"> <appender-ref ref="STDOUT" /> </appender> <logger name="com.jsherz.luskydive" level="DEBUG" /> <root level="WARN"> <appender-ref ref="ASYNCFILE" /> <appender-ref ref="ASYNCSTDOUT" /> </root> </configuration>
Update snapshot version of integration-tests
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>zombielink-it</artifactId> <packaging>jar</packaging> <parent> <groupId>com.lonepulse</groupId> <artifactId>zombielink-parent</artifactId> <version>1.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <project.name>ZombieLink Integration Tests</project.name> </properties> <name>${project.name}</name> <dependencies> <dependency> <groupId>com.lonepulse</groupId> <artifactId>zombielink</artifactId> <version>1.3.0-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>zombielink-it</artifactId> <packaging>jar</packaging> <parent> <groupId>com.lonepulse</groupId> <artifactId>zombielink-parent</artifactId> <version>1.3.1-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <project.name>ZombieLink Integration Tests</project.name> </properties> <name>${project.name}</name> <dependencies> <dependency> <groupId>com.lonepulse</groupId> <artifactId>zombielink</artifactId> <version>1.3.1-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> </project>
Change name of application to include spaces
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">ThoughtAboutYou</string> <string name="action_settings">Settings</string> <string name="hello_world">Hello world!</string> <string name="app_version">0.0.1</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">Thought About You</string> <string name="action_settings">Settings</string> <string name="hello_world">Hello world!</string> <string name="app_version">0.0.1</string> </resources>
Change default player 2 controls
<sidewalk_champion><settings><screen_scale>1</screen_scale><show_box_display>True</show_box_display><player1_keys><heavy_kick>h</heavy_kick><medium_kick>g</medium_kick><light_kick>f</light_kick><up>w</up><back>a</back><down>s</down><start>left ctrl</start><heavy_punch>y</heavy_punch><medium_punch>t</medium_punch><light_punch>r</light_punch><forward>d</forward><cancel>escape</cancel></player1_keys><player2_keys><heavy_kick>y</heavy_kick><medium_kick>t</medium_kick><light_kick>r</light_kick><up>w</up><back>left</back><down>down</down><start>left ctrl</start><heavy_punch>6</heavy_punch><medium_punch>5</medium_punch><light_punch>4</light_punch><forward>right</forward><cancel>backspace</cancel></player2_keys></settings><verification code="49uRJDj02skW" /></sidewalk_champion>
<sidewalk_champion><settings><screen_scale>2</screen_scale><show_box_display>True</show_box_display><player1_keys><heavy_kick>h</heavy_kick><medium_kick>g</medium_kick><light_kick>f</light_kick><up>w</up><back>a</back><down>s</down><start>left ctrl</start><heavy_punch>y</heavy_punch><medium_punch>t</medium_punch><light_punch>r</light_punch><forward>d</forward><cancel>escape</cancel></player1_keys><player2_keys><heavy_kick>[6]</heavy_kick><medium_kick>[5]</medium_kick><light_kick>[4]</light_kick><up>up</up><back>left</back><down>down</down><start>return</start><heavy_punch>[9]</heavy_punch><medium_punch>[8]</medium_punch><light_punch>[7]</light_punch><forward>right</forward><cancel>backspace</cancel></player2_keys></settings><verification code="49uRJDj02skW" /></sidewalk_champion>
Reorder client image popup options
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/client_image_remove" android:title="Remove photo" /> <item android:id="@+id/client_image_capture" android:title="Take new photo" /> </menu>
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/client_image_capture" android:title="Take new photo" /> <item android:id="@+id/client_image_remove" android:title="Remove photo" /> </menu>
Update dependency com.google.code.gson:gson to v2.8.7
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.thebusybiscuit</groupId> <artifactId>GitHubWebAPI4Java</artifactId> <version>1.3.4</version> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <sourceDirectory>${project.basedir}/src</sourceDirectory> <testSourceDirectory>${project.basedir}/tests/java</testSourceDirectory> <testResources> <testResource> <directory>${project.basedir}/tests/resources</directory> </testResource> </testResources> <finalName>${project.name} v${project.version}</finalName> </build> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.6</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>io.github.thebusybiscuit</groupId> <artifactId>GitHubWebAPI4Java</artifactId> <version>1.3.4</version> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <sourceDirectory>${project.basedir}/src</sourceDirectory> <testSourceDirectory>${project.basedir}/tests/java</testSourceDirectory> <testResources> <testResource> <directory>${project.basedir}/tests/resources</directory> </testResource> </testResources> <finalName>${project.name} v${project.version}</finalName> </build> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.7</version> </dependency> </dependencies> </project>
Add `major` kind area config
<?xml version="1.0"?> <areas> <area kind="single">single</area> <area kind="duo">duo</area> <area kind="minor">minor</area> </areas>
<?xml version="1.0"?> <areas> <area kind="single">single</area> <area kind="duo">duo</area> <area kind="minor">minor</area> <area kind="major">major</area> </areas>
Add support for other Jetbrains products, such as PhpStore, PyCharm...
<idea-plugin version="2"> <name>ReviewBoard</name> <description>Post review to review board</description> <version>1.0.1</version> <vendor>YourCompany</vendor> <idea-version since-build="95.627"/> <depends>Subversion</depends> <project-components> <component> <implementation-class>rb.ReviewBoardConfig</implementation-class> </component> </project-components> <actions> <action id="PostReview" class="rb.PostReviewAction" text="PostReview" description="Post Review"> <add-to-group group-id="ChangesViewPopupMenu" anchor="last" relative-to-action=""/> </action> </actions> </idea-plugin>
<idea-plugin version="2"> <name>ReviewBoard</name> <description>Post review to review board. Code: https://code.google.com/p/reviewboard-plugin-for-idea/</description> <version>1.0.2</version> <vendor>Kane</vendor> <idea-version since-build="95.627"/> <depends>Subversion</depends> <depends>com.intellij.modules.lang</depends> <project-components> <component> <implementation-class>rb.ReviewBoardConfig</implementation-class> </component> </project-components> <actions> <action id="PostReview" class="rb.PostReviewAction" text="PostReview" description="Post Review"> <add-to-group group-id="ChangesViewPopupMenu" anchor="last" relative-to-action=""/> </action> </actions> </idea-plugin>
Whitelist CallState (only) for code-gen (re-re-recorded)
<tp:spec xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0" xmlns:xi="http://www.w3.org/2001/XInclude"> <tp:title>Channel interfaces</tp:title> <xi:include href="../spec/Channel.xml"/> <xi:include href="../spec/Channel_Type_Contact_List.xml"/> <xi:include href="../spec/Channel_Type_Streamed_Media.xml"/> <xi:include href="../spec/Channel_Type_Room_List.xml"/> <xi:include href="../spec/Channel_Type_Text.xml"/> <xi:include href="../spec/Channel_Type_Tubes.xml"/> <xi:include href="../spec/Channel_Interface_Chat_State.xml"/> <xi:include href="../spec/Channel_Interface_DTMF.xml"/> <xi:include href="../spec/Channel_Interface_Group.xml"/> <xi:include href="../spec/Channel_Interface_Media_Signalling.xml"/> <xi:include href="../spec/Channel_Interface_Password.xml"/> </tp:spec>
<tp:spec xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0" xmlns:xi="http://www.w3.org/2001/XInclude"> <tp:title>Channel interfaces</tp:title> <xi:include href="../spec/Channel.xml"/> <xi:include href="../spec/Channel_Type_Contact_List.xml"/> <xi:include href="../spec/Channel_Type_Streamed_Media.xml"/> <xi:include href="../spec/Channel_Type_Room_List.xml"/> <xi:include href="../spec/Channel_Type_Text.xml"/> <xi:include href="../spec/Channel_Type_Tubes.xml"/> <xi:include href="../spec/Channel_Interface_Call_State.xml"/> <xi:include href="../spec/Channel_Interface_Chat_State.xml"/> <xi:include href="../spec/Channel_Interface_DTMF.xml"/> <xi:include href="../spec/Channel_Interface_Group.xml"/> <xi:include href="../spec/Channel_Interface_Media_Signalling.xml"/> <xi:include href="../spec/Channel_Interface_Password.xml"/> </tp:spec>
Include i18n in full profile; to catch i18n errors early.
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.4.0//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.5.0/distro-source/core/src/gwt-module.dtd"> <module> <inherits name="org.jboss.errai.enterprise.CDI"/> <inherits name="org.uberfire.UberfireJS"/> <inherits name="org.uberfire.security.UberfireSecurityClient"/> <inherits name="org.uberfire.UberfireWorkbench"/> <inherits name="org.uberfire.UberfireWidgetsCore"/> <inherits name="org.uberfire.UberfireBackend"/> <inherits name="org.uberfire.UberfireMarkdownWidget"/> <!-- Specify the application specific style sheet. --> <stylesheet src='css/uberfire-showcase.css'/> <!-- Specify the paths for translatable code --> <source path='client'/> <source path='shared'/> </module>
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.4.0//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.5.0/distro-source/core/src/gwt-module.dtd"> <module> <inherits name="org.jboss.errai.enterprise.CDI"/> <inherits name="org.uberfire.UberfireJS"/> <inherits name="org.uberfire.security.UberfireSecurityClient"/> <inherits name="org.uberfire.UberfireWorkbench"/> <inherits name="org.uberfire.UberfireWidgetsCore"/> <inherits name="org.uberfire.UberfireBackend"/> <inherits name="org.uberfire.UberfireMarkdownWidget"/> <!-- Specify the application specific style sheet. --> <stylesheet src='css/uberfire-showcase.css'/> <!-- Specify the paths for translatable code --> <source path='client'/> <source path='shared'/> <!-- i18n --> <extend-property name="locale" values="es_ES"/> <extend-property name="locale" values="fr_FR"/> <extend-property name="locale" values="ja_JP"/> <extend-property name="locale" values="pt_BR"/> <extend-property name="locale" values="zh_CN"/> </module>
Remove old reference to google play services version
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.recurly.android"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> <application android:allowBackup="true" android:label="@string/app_name" > <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.recurly.android"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> <application android:allowBackup="true" android:label="@string/app_name" > </application> </manifest>
Fix broken loback info/debug logging
<configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%msg%n</pattern> </encoder> </appender> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>logs/ncdbg.log</file> <append>true</append> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="info"> <appender-ref ref="STDOUT" /> </root> <root level="debug"> <appender-ref ref="FILE" /> </root> </configuration>
<configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <filter class="ch.qos.logback.classic.filter.LevelFilter"> <level>INFO</level> <onMatch>ACCEPT</onMatch> <onMismatch>DENY</onMismatch> </filter> <encoder> <pattern>%msg%n</pattern> </encoder> </appender> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <filter class="ch.qos.logback.classic.filter.LevelFilter"> <level>DEBUG</level> <onMatch>ACCEPT</onMatch> <onMismatch>DENY</onMismatch> </filter> <file>logs/ncdbg.log</file> <append>true</append> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="debug"> <appender-ref ref="STDOUT" /> <appender-ref ref="FILE" /> </root> </configuration>
Bump junit from 4.13 to 4.13.1
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>sepe</groupId> <artifactId>tennis</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> </dependency> <dependency> <groupId>tablelayout</groupId> <artifactId>TableLayout</artifactId> <version>20050920</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>sepe</groupId> <artifactId>tennis</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>tablelayout</groupId> <artifactId>TableLayout</artifactId> <version>20050920</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> </dependencies> </project>
Add string values for ConnectionProfileActivity layout
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">OpenstackDroid</string> <string name="action_settings">Settings</string> <string name="add_profile">Add</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">OpenstackDroid</string> <string name="action_settings">Settings</string> <string name="add_profile">Add</string> <string name="profile_name">Profile name</string> <string name="endpoint">API endpoint</string> <string name="username">Username</string> <string name="password">Password</string> <string name="tenantId">Tenant id</string> </resources>
Use GNU double-hyphen syntax for CLI options
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. --> <project basedir="." name="dita-cmd"> <description>Defines a dita-cmd macro you can use in your Ant builds. See build-chm-pdf-hybrid.xml for usage.</description> <property name="dita.dir" location="${basedir}/../../.."/> <macrodef name="dita-cmd"> <attribute name="input"/> <attribute name="format"/> <attribute name="propertyfile"/> <sequential> <exec executable="${dita.dir}/bin/dita"> <arg line="-i @{input} -f @{format} -propertyfile @{propertyfile}"/> </exec> </sequential> </macrodef> </project>
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. --> <project basedir="." name="dita-cmd"> <description>Defines a dita-cmd macro you can use in your Ant builds. See build-chm-pdf-hybrid.xml for usage.</description> <property name="dita.dir" location="${basedir}/../../.."/> <macrodef name="dita-cmd"> <attribute name="input"/> <attribute name="format"/> <attribute name="propertyfile"/> <sequential> <exec executable="${dita.dir}/bin/dita"> <arg line="--input @{input} --format @{format} --propertyfile=@{propertyfile}"/> </exec> </sequential> </macrodef> </project>
Fix cron expression for email fetcher
<?xml version="1.0" encoding="utf-8"?> <scheduled-jobs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <scheduled-job name="mail.fetcher" active="true" description="fetch new emails on every 5 minutes." job="com.axelor.mail.service.MailFetchJob" cron="* */5 * * * ?"/> </scheduled-jobs>
<?xml version="1.0" encoding="utf-8"?> <scheduled-jobs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <scheduled-job name="mail.fetcher" active="true" description="fetch new emails on every 5 minutes." job="com.axelor.mail.service.MailFetchJob" cron="0 */5 * * * ?"/> </scheduled-jobs>
Increase Zanata project to 1.4.0.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <config xmlns="http://zanata.org/namespace/config/"> <url>https://translate.zanata.org/</url> <project>ovirt-web-ui</project> <project-version>1.3.0</project-version> <project-type>gettext</project-type> <src-dir>extra/to-zanata</src-dir> <trans-dir>extra/from-zanata</trans-dir> <rules> <rule pattern="**/*.pot">{path}/{locale}.po</rule> </rules> </config>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <config xmlns="http://zanata.org/namespace/config/"> <url>https://translate.zanata.org/</url> <project>ovirt-web-ui</project> <project-version>1.4.0</project-version> <project-type>gettext</project-type> <src-dir>extra/to-zanata</src-dir> <trans-dir>extra/from-zanata</trans-dir> <rules> <rule pattern="**/*.pot">{path}/{locale}.po</rule> </rules> </config>
Add light sensor as requirement
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.amitness.photon"> <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" /> <uses-permission android:name="android.permission.FLASHLIGHT"/> <application android:allowBackup="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".TransmitActivity" /> <activity android:name=".AboutActivity" android:label="@string/about"/> <activity android:name=".ReceiveActivity" /> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.amitness.photon"> <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.sensor.light" /> <uses-permission android:name="android.permission.FLASHLIGHT"/> <application android:allowBackup="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".TransmitActivity" /> <activity android:name=".AboutActivity" android:label="@string/about"/> <activity android:name=".ReceiveActivity" /> </application> </manifest>
Change vendor name (JetBrains s.r.o -> JetBrains)
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2000-2020 JetBrains s.r.o. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ 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. --> <teamcity-plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:shemas-jetbrains-com:teamcity-plugin-v1-xml"> <info> <name>azure-active-directory</name> <display-name>Microsoft Azure Active Directory Support</display-name> <version>@Plugin_Version@</version> <description>Allows using Microsoft Azure Active Directory for authentication in TeamCity</description> <vendor> <name>JetBrains, s.r.o.</name> <url>https://github.com/JetBrains/teamcity-azure-active-directory</url> </vendor> </info> <requirements min-build="40000" /> <deployment use-separate-classloader="true" /> </teamcity-plugin>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2000-2020 JetBrains s.r.o. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ 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. --> <teamcity-plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:shemas-jetbrains-com:teamcity-plugin-v1-xml"> <info> <name>azure-active-directory</name> <display-name>Microsoft Azure Active Directory Support</display-name> <version>@Plugin_Version@</version> <description>Allows using Microsoft Azure Active Directory for authentication in TeamCity</description> <vendor> <name>JetBrains</name> <url>https://github.com/JetBrains/teamcity-azure-active-directory</url> </vendor> </info> <requirements min-build="40000" /> <deployment use-separate-classloader="true" /> </teamcity-plugin>
Update ngram library to use fix in ArrayTrieCounter serialization
<component name="libraryTable"> <library name="ngram-slp" type="repository"> <properties include-transitive-deps="false" maven-id="org.jetbrains.intellij.deps.completion:ngram-slp:0.0.2" /> <CLASSES> <root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/completion/ngram-slp/0.0.2/ngram-slp-0.0.2.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES> <root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/completion/ngram-slp/0.0.2/ngram-slp-0.0.2-sources.jar!/" /> </SOURCES> </library> </component>
<component name="libraryTable"> <library name="ngram-slp" type="repository"> <properties include-transitive-deps="false" maven-id="org.jetbrains.intellij.deps.completion:ngram-slp:0.0.3" /> <CLASSES> <root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/completion/ngram-slp/0.0.3/ngram-slp-0.0.3.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES> <root url="jar://$MAVEN_REPOSITORY$/org/jetbrains/intellij/deps/completion/ngram-slp/0.0.3/ngram-slp-0.0.3-sources.jar!/" /> </SOURCES> </library> </component>
Remove storage permission for API 19 and up
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2016 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <manifest package="com.google.android.cameraview.demo" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.CAMERA"/> <uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera.autofocus" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/Theme.Demo"> <activity android:name=".MainActivity"> <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"?> <!-- Copyright (C) 2016 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <manifest package="com.google.android.cameraview.demo" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18"/> <uses-permission android:name="android.permission.CAMERA"/> <uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera.autofocus" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/Theme.Demo"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> </application> </manifest>
Fix typo in tag name.
<sect1 id="zend.date.output"> <title>How to Output Dates</title> <sect2 id="zend.date.output.tostring"> <title>Generating Date Strings Using toString()</title> <para> The <code>toString()</code> method automatically formats the date object according to the conventions of the object's locale, or an optionally specified <ocde>$locale</code>. </para> </sect2> <sect2 id="zend.date.output.tovalue"> <title>toValue() - Partial Dates as Integers</title> <para> To obtain an integer for some part of the date, use <code>toValue($part)</code>. </para> </sect2> <sect2 id="zend.date.output.get"> <title>get() - Partial Dates as Localized Strings</title> <para> get($part = null, $locale = null) </para> <para> This method returns the <code>$part</code> of object's date localized to <code>$locale</code> as a formatted string or integer </para> </sect2> </sect1> <!-- vim:se ts=4 sw=4 et: -->
<sect1 id="zend.date.output"> <title>How to Output Dates</title> <sect2 id="zend.date.output.tostring"> <title>Generating Date Strings Using toString()</title> <para> The <code>toString()</code> method automatically formats the date object according to the conventions of the object's locale, or an optionally specified <code>$locale</code>. </para> </sect2> <sect2 id="zend.date.output.tovalue"> <title>toValue() - Partial Dates as Integers</title> <para> To obtain an integer for some part of the date, use <code>toValue($part)</code>. </para> </sect2> <sect2 id="zend.date.output.get"> <title>get() - Partial Dates as Localized Strings</title> <para> get($part = null, $locale = null) </para> <para> This method returns the <code>$part</code> of object's date localized to <code>$locale</code> as a formatted string or integer </para> </sect2> </sect1> <!-- vim:se ts=4 sw=4 et: -->
Test dependencies added to Pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.raumzeitfalle.niohttp</groupId> <artifactId>niohttp</artifactId> <packaging>jar</packaging> <version>0.1-SNAPSHOT</version> <name>NIOHttp</name> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.8</source> <target>1.8</target> <testSource>1.8</testSource> <testTarget>1.8</testTarget> </configuration> </plugin> </plugins> </build> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.raumzeitfalle.niohttp</groupId> <artifactId>niohttp</artifactId> <packaging>jar</packaging> <version>0.1-SNAPSHOT</version> <name>NIOHttp</name> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.8</source> <target>1.8</target> <testSource>1.8</testSource> <testTarget>1.8</testTarget> </configuration> </plugin> </plugins> </build> </project>
Add JUnit dependency to POM
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>ca.dwjackson</groupId> <artifactId>EditSomeXML</artifactId> <version>1.0-SNAPSHOT</version> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>ca.dwjackson</groupId> <artifactId>EditSomeXML</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> </dependency> </dependencies> </project>
Fix missing drawable in xml (unused xml anyways)
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" android:drawable="@drawable/btn_check_on_normal_holo_light" /> <item android:state_checked="false" android:drawable="@drawable/btn_check_off_normal_holo_light" /> </selector>
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" android:drawable="@drawable/btn_check_on_normal_holo_dark" /> <item android:state_checked="false" android:drawable="@drawable/btn_check_off_normal_holo_dark" /> </selector>
Add bpm and jndi project
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>avonbo.snippets</groupId> <artifactId>java</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <modules> <module>cdi</module> </modules> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>avonbo.snippets</groupId> <artifactId>java</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <modules> <module>bpm</module> <module>cdi</module> <module>jndi</module> </modules> </project>
Clean up formatting of manifest
<?xml version="1.0" encoding="utf-8"?> <manifest package="org.fitchfamily.android.gsmlocation" xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" android:versionName="0.0.2" > <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-sdk android:minSdkVersion="18" android:targetSdkVersion="18"/> <application android:icon="@drawable/icon" android:label="@string/app_name" android:allowBackup="false"> <uses-library android:name="com.google.android.maps" android:required="false" /> <service android:name="org.fitchfamily.android.gsmlocation.GSMService" android:permission="android.permission.ACCESS_COARSE_LOCATION" android:label="GSM Location Backend"> <intent-filter> <action android:name="org.microg.nlp.LOCATION_BACKEND" /> </intent-filter> </service> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest package="org.fitchfamily.android.gsmlocation" xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" android:versionName="0.0.2" > <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-sdk android:minSdkVersion="18" android:targetSdkVersion="18"/> <application android:icon="@drawable/icon" android:label="@string/app_name" android:allowBackup="false"> <uses-library android:name="com.google.android.maps" android:required="false" /> <service android:name="org.fitchfamily.android.gsmlocation.GSMService" android:permission="android.permission.ACCESS_COARSE_LOCATION" android:label="GSM Location Backend"> <intent-filter> <action android:name="org.microg.nlp.LOCATION_BACKEND" /> </intent-filter> </service> </application> </manifest>
Change scaning component into whole project
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <context:component-scan base-package="pl.koszela.jan.controller"/> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix"> <value>/WEB-INF/pages/</value> </property> <property name="suffix"> <value>.jsp</value> </property> </bean> <bean id="productDTO" class="pl.koszela.jan.persistence.dto.impl.DefaultProductDTO" scope="prototype"> </bean> <bean id="specialPriceDTO" class="pl.koszela.jan.persistence.dto.impl.DefaultSpecialPriceDTO" scope="prototype"> </bean> <mvc:resources mapping="/resources/**" location="/resources/styles/css/" /> <mvc:annotation-driven /> </beans>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <context:component-scan base-package="pl.koszela.jan"/> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix"> <value>/WEB-INF/pages/</value> </property> <property name="suffix"> <value>.jsp</value> </property> </bean> <bean id="productDTO" class="pl.koszela.jan.persistence.dto.impl.DefaultProductDTO" scope="prototype"> </bean> <bean id="specialPriceDTO" class="pl.koszela.jan.persistence.dto.impl.DefaultSpecialPriceDTO" scope="prototype"> </bean> <mvc:resources mapping="/resources/**" location="/resources/styles/css/" /> <mvc:annotation-driven /> </beans>
Set the default URL for android to be the localhost
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="connect_url">https://e-mission.eecs.berkeley.edu</string> <!-- <string name="connect_url">http://10.0.2.2:8080</string> --> <string name="google_webapp_client_id">97387382925-j53gqihf7j4o0h1sp6r5cllhqikfoq6o.apps.googleusercontent.com</string> <string name="moves_client_id">06RXi7h69ZGepj2x5z3yK6XJMaSU9gR_</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- <string name="connect_url">https://e-mission.eecs.berkeley.edu</string> --> <string name="connect_url">http://10.0.2.2:8080</string> <string name="google_webapp_client_id">97387382925-j53gqihf7j4o0h1sp6r5cllhqikfoq6o.apps.googleusercontent.com</string> <string name="moves_client_id">06RXi7h69ZGepj2x5z3yK6XJMaSU9gR_</string> </resources>
Update to the latest GT service security descriptor schema
<securityConfig xmlns="http://www.globus.org"> <auth-method> <GSITransport/> <GSISecureMessage/> <GSISecureConversation/> </auth-method> <authz value="gridmap"/> </securityConfig>
<serviceSecurityConfig xmlns="http://www.globus.org/security/descriptor/service"> <auth-method> <GSISecureConversation/> <GSISecureMessage/> <GSISecureTransport/> </auth-method> <authzChain> <pdps><interceptor name="gridmap"/></pdps> </authzChain> </serviceSecurityConfig>
Use openfl-legacy for full backward compatibility until we are compatible with next
<?xml version="1.0" encoding="utf-8"?> <project> <app preloader="com.haxepunk.Preloader" unless="noHaxepunkPreloader || html5" /> <assets path="assets/graphics" rename="graphics" include="*.png" embed="true" /> <assets path="assets/font" rename="font" include="*.ttf" embed="true" /> <set name="lime-hybrid" unless="next || legacy" /> <haxelib name="openfl-ouya" if="ouya" /> <haxelib name="openfl" /> </project>
<?xml version="1.0" encoding="utf-8"?> <project> <app preloader="com.haxepunk.Preloader" unless="noHaxepunkPreloader || html5" /> <assets path="assets/graphics" rename="graphics" include="*.png" embed="true" /> <assets path="assets/font" rename="font" include="*.ttf" embed="true" /> <set name="openfl-legacy" unless="next || hybrid" /> <haxelib name="openfl-ouya" if="ouya" /> <haxelib name="openfl" /> </project>
Fix line breaks when tweeting?
--- --- <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>{{ site.title | xml_escape }} - Link Tweets for IFTTT</title> <description>These microblog posts will be cross-posted to Twitter with an external link.</description> <link>{{ site.url }}</link> <atom:link href="{{ site.url }}/{{ page.path }}" rel="self" type="application/rss+xml" /> {% for post in site.tags.micropost %} {% if linktweet_counter == 10 %} {% break %} {% else %} {% if post.tags contains 'tweet' and post.link %} <item> <title>{{ post.title | xml_escape }}</title> <description>{{ post.content | xml_escape }}</description> <pubDate>{{ post.date | date_to_rfc822 }}</pubDate> <link>{{ post.link | escape }}</link> <guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid> </item> {% assign linktweet_counter = linktweet_counter | plus: 1 %} {% endif %} {% endif %} {% endfor %} </channel> </rss>
--- --- <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>{{ site.title | xml_escape }} - Link Tweets for IFTTT</title> <description>These microblog posts will be cross-posted to Twitter with an external link.</description> <link>{{ site.url }}</link> <atom:link href="{{ site.url }}/{{ page.path }}" rel="self" type="application/rss+xml" /> {% for post in site.tags.micropost %} {% if linktweet_counter == 10 %} {% break %} {% else %} {% if post.tags contains 'tweet' and post.link %} <item> <title>{{ post.title | xml_escape }}</title> <description>{{ post.content | strip_html }}</description> <pubDate>{{ post.date | date_to_rfc822 }}</pubDate> <link>{{ post.link | escape }}</link> <guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid> </item> {% assign linktweet_counter = linktweet_counter | plus: 1 %} {% endif %} {% endif %} {% endfor %} </channel> </rss>
Make the application load immediately
<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> <listener> <listener-class>us.kbase.auth2.service.AppEventListener</listener-class> </listener> <servlet> <servlet-name>Auth</servlet-name> <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class> <init-param> <param-name>javax.ws.rs.Application</param-name> <param-value>us.kbase.auth2.service.AuthenticationService</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>Auth</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> </web-app>
<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> <listener> <listener-class>us.kbase.auth2.service.AppEventListener</listener-class> </listener> <servlet> <servlet-name>Auth</servlet-name> <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class> <load-on-startup>1</load-on-startup> <init-param> <param-name>javax.ws.rs.Application</param-name> <param-value>us.kbase.auth2.service.AuthenticationService</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>Auth</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> </web-app>
Move dummy R and TR classes for the library itself to their own package.
<manifest android:versionName="0.1" android:versionCode="1" package="org.positronicnet" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-sdk android:minSdkVersion="7"></uses-sdk> </manifest>
<manifest android:versionName="0.1" android:versionCode="1" package="org.positronicnet.libresources" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-sdk android:minSdkVersion="7"></uses-sdk> </manifest>
Undo rider EAP changes for the time being
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="UserContentModel"> <attachedFolders /> <explicitIncludes /> <explicitExcludes /> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ContentModelUserStore"> <attachedFolders /> <explicitIncludes /> <explicitExcludes /> </component> </project>
Fix history title overlap with completed_date
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="16dp"> <TextView android:id="@+id/title_text" android:textSize="20sp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@+id/due_text" android:textColor="@color/black" android:layout_alignParentLeft="true"/> <TextView android:id="@+id/description_text" android:textSize="16sp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/title_text" android:paddingBottom="10dp" android:maxLines="1" android:ellipsize="end" android:layout_alignParentLeft="true" android:paddingTop="5dp"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/completed_date_text" android:layout_alignParentTop="true" android:layout_alignParentRight="true" android:drawableLeft="@drawable/ic_done_black_18dp" android:drawableTint="@color/normalGreen"/> </RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="16dp"> <TextView android:id="@+id/title_text" android:textSize="20sp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@+id/completed_date_text" android:textColor="@color/black" android:layout_alignParentLeft="true"/> <TextView android:id="@+id/description_text" android:textSize="16sp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/title_text" android:paddingBottom="10dp" android:maxLines="1" android:ellipsize="end" android:layout_alignParentLeft="true" android:paddingTop="5dp"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/completed_date_text" android:layout_alignParentTop="true" android:layout_alignParentRight="true" android:drawableLeft="@drawable/ic_done_black_18dp" android:drawableTint="@color/normalGreen"/> </RelativeLayout>
Add properties to task xml
<!-- ~ Copyright 2012 the original author or authors. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required 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. --> <section> <section> <title>Properties</title> <table> <thead> <tr> <td>Name</td> <td>Default with <literal>java</literal> plugin</td> </tr> </thead> <tr> <td>configuration</td> <td><literal>compileClasspath</literal> configuration</td> </tr> <tr> <td>dependencySpec</td> <td>-</td> </tr> </table> </section> <section> <title>Methods</title> <table> <thead> <tr> <td>Name</td> </tr> </thead> </table> </section> </section>
<!-- ~ Copyright 2012 the original author or authors. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required 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. --> <section> <section> <title>Properties</title> <table> <thead> <tr> <td>Name</td> <td>Default with <literal>java</literal> plugin</td> </tr> </thead> <tr> <td>configuration</td> <td><literal>compileClasspath</literal> configuration</td> </tr> <tr> <td>dependencySpec</td> <td>-</td> </tr> <tr> <td>showSinglePathToDependency</td> <td>false</td> </tr> <tr> <td>showingAllVariants</td> <td>false</td> </tr> </table> </section> <section> <title>Methods</title> <table> <thead> <tr> <td>Name</td> </tr> </thead> </table> </section> </section>
Stop animated headers from growing too large.
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2017 Google Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by 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. --> <ImageView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/header_anim" android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_collapseMode="parallax" android:adjustViewBounds="true" android:fitsSystemWindows="true" android:scaleType="fitEnd" />
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2017 Google Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by 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. --> <ImageView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/header_anim" android:layout_width="match_parent" android:layout_height="wrap_content" android:adjustViewBounds="true" android:fitsSystemWindows="true" android:paddingBottom="@dimen/spacing_large" android:scaleType="fitEnd" app:layout_collapseMode="parallax" />
Use '0' instead of 'false' for compatibility with every database
<dataset> <STUDIES id="1" version="0" name="First Study" completed="false"/> <ARMS id="2" version="0" name="Treatment" study_id="1"/> <PERIODS id="1" arm_id="2" version="0" start_day="1" name="Pre-screening" duration_quantity="1" duration_unit="week" repetitions="1"/> <PERIODS id="2" arm_id="2" version="0" start_day="8" name="Treatment" duration_quantity="6" duration_unit="week" repetitions="3"/> </dataset>
<dataset> <STUDIES id="1" version="0" name="First Study" completed="0"/> <ARMS id="2" version="0" name="Treatment" study_id="1"/> <PERIODS id="1" arm_id="2" version="0" start_day="1" name="Pre-screening" duration_quantity="1" duration_unit="week" repetitions="1"/> <PERIODS id="2" arm_id="2" version="0" start_day="8" name="Treatment" duration_quantity="6" duration_unit="week" repetitions="3"/> </dataset>
Remove contacts permission from manifest
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.rt2zz.reactnativecontacts" > <uses-permission android:name="android.permission.READ_CONTACTS" /> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.rt2zz.reactnativecontacts" > </manifest>
Make sure elemental is included
<module> <inherits name="org.realityforge.arez.Arez"/> <inherits name="org.realityforge.arez.extras.Extras"/> <source path=""/> </module>
<module> <inherits name="org.realityforge.arez.Arez"/> <inherits name="org.realityforge.arez.extras.Extras"/> <inherits name="elemental2.dom.Dom"/> <source path=""/> </module>
Add required functions to allow these tools to be better used in sites for the gateway.
<?xml version="1.0"?> <registration> <!-- <function name="rwiki.create" /> <function name="rwiki.read" /> <function name="rwiki.update" /> <function name="rwiki.delete" /> <function name="rwiki.admin" /> <function name="rwiki.superadmin" /> --> <tool id="sakai.rwiki" title="Wiki" description="For collaborative editing of pages and content"> <!-- <configuration name="experimintal" value="false" /> <configuration name="skinning" value="true" /> <configuration name="base-page" value="true" /> <configuration name="advanced-search" value="true" /> --> <configuration name="home-page" value="Home" /> <configuration name="home-page-friendly-name" value="" /> <category name="course" /> <category name="project" /> <category name="myworkspace" /> </tool> </registration>
<?xml version="1.0"?> <registration> <!-- <function name="rwiki.create" /> <function name="rwiki.read" /> <function name="rwiki.update" /> <function name="rwiki.delete" /> <function name="rwiki.admin" /> <function name="rwiki.superadmin" /> --> <tool id="sakai.rwiki" title="Wiki" description="For collaborative editing of pages and content"> <!-- <configuration name="experimintal" value="false" /> <configuration name="skinning" value="true" /> <configuration name="base-page" value="true" /> <configuration name="advanced-search" value="true" /> --> <configuration name="home-page" value="Home" /> <configuration name="home-page-friendly-name" value="" /> <category name="course" /> <category name="project" /> <category name="myworkspace" /> <configuration name="functions.require" value="rwiki.read" /> </tool> </registration>
Make failing example builds fail the entire build properly.
<?xml version="1.0" encoding="UTF-8"?> <project name="Examples" basedir="."> <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${dir.lib.tools}/ant-contrib-1.0b3.jar"/> <target name="examples" depends="osgi.package" description="Builds the examples"> <mkdir dir="${dir.dist}/examples"/> <foreach target="singleexample" param="buildfile" parallel="true"> <path id="examples"> <fileset dir="examples"> <include name="**/build.xml"/> </fileset> </path> </foreach> </target> <target name="singleexample"> <propertyregex property="subbasepath" input="${buildfile}" regexp="(.*).build.xml" select="\1" casesensitive="true"/> <ant antfile="${buildfile}" inheritAll="false" useNativeBaseDir="true" target="packageExample"/> <copy todir="${dir.dist}/examples"> <fileset dir="${subbasepath}"> <include name="*.zip"/> </fileset> </copy> </target> </project>
<?xml version="1.0" encoding="UTF-8"?> <project name="Examples" basedir="."> <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${dir.lib.tools}/ant-contrib-1.0b3.jar"/> <target name="examples" depends="osgi.package" description="Builds the examples"> <mkdir dir="${dir.dist}/examples"/> <foreach target="singleexample" param="buildfile" parallel="false"> <path id="examples"> <fileset dir="examples"> <include name="**/build.xml"/> </fileset> </path> </foreach> </target> <target name="singleexample"> <propertyregex property="subbasepath" input="${buildfile}" regexp="(.*).build.xml" select="\1" casesensitive="true"/> <ant antfile="${buildfile}" inheritAll="false" useNativeBaseDir="true" target="packageExample"/> <copy todir="${dir.dist}/examples"> <fileset dir="${subbasepath}"> <include name="*.zip"/> </fileset> </copy> </target> </project>
Use grey as accent color for the moment
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- Base application theme. --> <style name="SeriesTrackerTheme" parent="Theme.AppCompat.Light"> <item name="android:actionBarStyle">@style/AppBar</item> <item name="android:editTextBackground"> @drawable/seriestracker_edit_text_holo_light </item> <item name="android:textViewStyle">@style/TextView</item> <item name="colorPrimary">@color/Orange</item> <item name="colorPrimaryDark">@color/DarkOrange</item> </style> <style name="AppBar" parent="@android:style/Widget.Holo.Light.ActionBar"> <item name="android:background">@color/LightOrange</item> </style> <style name="TextView" parent="android:Widget.Holo.Light.TextView"> <item name="fontPath">fonts/Postface.otf</item> </style> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- Base application theme. --> <style name="SeriesTrackerTheme" parent="Theme.AppCompat.Light"> <item name="android:actionBarStyle">@style/AppBar</item> <item name="android:editTextBackground"> @drawable/seriestracker_edit_text_holo_light </item> <item name="android:textViewStyle">@style/TextView</item> <item name="colorPrimary">@color/Orange</item> <item name="colorPrimaryDark">@color/DarkOrange</item> <item name="colorAccent">@color/Grey</item> </style> <style name="AppBar" parent="@android:style/Widget.Holo.Light.ActionBar"> <item name="android:background">@color/LightOrange</item> </style> <style name="TextView" parent="android:Widget.Holo.Light.TextView"> <item name="fontPath">fonts/Postface.otf</item> </style> </resources>