Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add missing _ in extension category name
<?xml version="1.0"?> <!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd"> <OpenGLAPI> <category name="GL_ARB_seamless_cubemap" number="65"> <enum name="TEXTURE_CUBE_MAP_SEAMLESS" count="1" value="0x88F4"> <size name="Get" mode="get"/> </enum> </category> </OpenGLAPI>
<?xml version="1.0"?> <!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd"> <OpenGLAPI> <category name="GL_ARB_seamless_cube_map" number="65"> <enum name="TEXTURE_CUBE_MAP_SEAMLESS" count="1" value="0x88F4"> <size name="Get" mode="get"/> </enum> </category> </OpenGLAPI>
Update the title of splash screen
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/colorPrimary" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="org.attentiveness.news.splash.SplashActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="@string/app_name" android:textColor="@android:color/white" android:textSize="40sp" /> </RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/colorPrimary" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="org.attentiveness.news.splash.SplashActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="@string/app_name" android:textColor="@android:color/white" android:textSize="60sp" android:textStyle="italic|bold"/> </RelativeLayout>
Update to safe version of JUnit
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.junit.contrib</groupId> <artifactId>truth</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> <repositories> <repository> <id>cgruber-junit-snapshot-repo</id> <name>JUnit Snapshot Repo</name> <url>https://github.com/cgruber/junit/raw/maven-snapshot/repo/</url> </repository> </repositories> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.junit.contrib</groupId> <artifactId>truth</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> <repositories> <repository> <id>cgruber-junit-snapshot-repo</id> <name>JUnit Snapshot Repo</name> <url>https://github.com/cgruber/junit/raw/maven-snapshot/repo/</url> </repository> </repositories> </project>
Update skill detail list (fix centering)
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listitem" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:paddingLeft="16dp" android:paddingRight="16dp"> <TextView android:id="@+id/skill" android:layout_width="wrap_content" android:layout_height="40dp" style="@style/text_medium" android:text="Enlightened Blade" android:gravity="center_vertical" /> <TextView android:id="@+id/pts" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/text_small" android:text="10" android:layout_alignParentRight="true" android:gravity="center_vertical" /> <TextView android:id="@+id/description" android:layout_width="216dp" android:layout_height="wrap_content" style="@style/text_small" android:text="Unlocks latent weapon elements, and powers up elemental and abnormal status attacks." android:layout_below="@+id/skill" android:layout_alignParentRight="true" android:paddingBottom="8dp" /> </RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listitem" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:paddingLeft="16dp" android:paddingRight="16dp"> <TextView android:id="@+id/skill" android:layout_width="wrap_content" android:layout_height="40dp" style="@style/text_medium" android:text="Enlightened Blade" android:gravity="center_vertical" /> <TextView android:id="@+id/pts" android:layout_width="wrap_content" android:layout_height="40dp" style="@style/text_small" android:text="10" android:layout_alignParentRight="true" android:gravity="center_vertical" /> <TextView android:id="@+id/description" android:layout_width="216dp" android:layout_height="wrap_content" style="@style/text_small" android:text="Unlocks latent weapon elements, and powers up elemental and abnormal status attacks." android:layout_below="@+id/skill" android:layout_alignParentRight="true" android:paddingBottom="8dp" /> </RelativeLayout>
Convert Timeline activity to RelativeLayout from ConstraintLayout
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="org.tejen.codepathandroid.twitter.activities.TimelineActivity"> <android.support.v7.widget.RecyclerView android:id="@+id/rvTweet" android:layout_width="0dp" android:layout_height="0dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </android.support.constraint.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="org.tejen.codepathandroid.twitter.activities.TimelineActivity"> <android.support.v7.widget.RecyclerView android:id="@+id/rvTweet" android:layout_width="0dp" android:layout_height="0dp" android:layout_alignParentTop="true" android:layout_alignParentBottom="true" android:layout_alignParentStart="true" android:layout_alignParentEnd="true" /> </RelativeLayout>
Fix hibernate maping for AttributeValue.
<?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> <hibernate-mapping package="cn.net.openid.domain"> <class name="AttributeValue" table="openid_attribute_value"> <composite-id> <key-many-to-one name="user" column="user_id" /> <key-many-to-one name="attribute" column="attribute_id" /> <key-property name="index" column="attribute_value_index" /> </composite-id> <many-to-one name="user"></many-to-one> <property name="value" column="attribute_value" /> </class> </hibernate-mapping>
<?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> <hibernate-mapping package="cn.net.openid.domain"> <class name="AttributeValue" table="openid_attribute_value"> <composite-id> <key-many-to-one name="user" column="user_id" /> <key-many-to-one name="attribute" column="attribute_id" /> <key-property name="index" column="attribute_value_index" /> </composite-id> <property name="value" column="attribute_value" /> </class> </hibernate-mapping>
Disable search tab for now
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/navigation_featured" android:icon="@drawable/ic_featured" android:title="@string/title_featured" /> <item android:id="@+id/navigation_popular" android:icon="@drawable/ic_popular" android:title="@string/title_popular" /> <item android:id="@+id/navigation_trending" android:icon="@drawable/ic_trending" android:title="@string/title_trending" /> <item android:id="@+id/navigation_search" android:icon="@drawable/ic_search" android:title="@string/title_search" /> </menu>
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/navigation_featured" android:icon="@drawable/ic_featured" android:title="@string/title_featured" /> <item android:id="@+id/navigation_popular" android:icon="@drawable/ic_popular" android:title="@string/title_popular" /> <item android:id="@+id/navigation_trending" android:icon="@drawable/ic_trending" android:title="@string/title_trending" /> <!--<item--> <!--android:id="@+id/navigation_search"--> <!--android:icon="@drawable/ic_search"--> <!--android:title="@string/title_search" />--> </menu>
Use jar:install as default goal
<?xml version="1.0"?> <!-- Copyright 2004-2005 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 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. --> <project> <!-- Compile the RMI stubs for the JCR-RMI server classes. --> <postGoal name="java:compile"> <rmic base="${maven.build.dest}" verify="true" includes="org/apache/jackrabbit/rmi/server/Server*.class" classpathref="maven.dependency.classpath"/> </postGoal> </project>
<?xml version="1.0"?> <!-- Copyright 2004-2005 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 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. --> <project default="jar:install"> <!-- Compile the RMI stubs for the JCR-RMI server classes. --> <postGoal name="java:compile"> <rmic base="${maven.build.dest}" verify="true" includes="org/apache/jackrabbit/rmi/server/Server*.class" classpathref="maven.dependency.classpath"/> </postGoal> </project>
Change status bar color to primary
<resources> <style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="android:windowDrawsSystemBarBackgrounds">true</item> <item name="android:statusBarColor">?attr/colorPrimaryDark</item> </style> </resources>
<resources> <style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="android:windowDrawsSystemBarBackgrounds">true</item> <item name="android:statusBarColor">?attr/colorPrimary</item> </style> </resources>
Remove obsolete info from debug manifest
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.alexstyl.specialdates" android:installLocation="auto"> <application android:name="com.alexstyl.specialdates.DebugApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/localised_app_name" android:theme="@style/Theme.Memento.BloodyCherry" tools:replace="android:name"> <activity android:name="com.alexstyl.specialdates.debug.DebugActivity" android:icon="@drawable/ic_heart" android:label="Memento Debug" android:taskAffinity="com.alexstyl.debug" android:theme="@style/Theme.AppCompat.Light.NoActionBar"> <intent-filter> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".debug.MixingColorsActivity" /> </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.alexstyl.specialdates"> <application android:name="com.alexstyl.specialdates.DebugApplication" tools:replace="android:name"> <activity android:name="com.alexstyl.specialdates.debug.DebugActivity" android:icon="@drawable/ic_heart" android:label="Memento Debug" android:taskAffinity="com.alexstyl.debug"> <intent-filter> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
Add appender for debug logs
<Configuration xmlns="http://logging.apache.org/log4j/2.0/config"> <Appenders> <Console name="Console" target="SYSTEM_OUT"> <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/> </Console> <File name="Pixels" fileName="logs/pixels.log"> <PatternLayout> <Pattern>%d&#9;%m%n</Pattern> </PatternLayout> </File> <File name="ShadowbannedPixels" fileName="logs/shadowbannedPixels.log"> <PatternLayout> <Pattern>%d&#9;%m%n</Pattern> </PatternLayout> </File> <File name="App" fileName="logs/app.log"> <PatternLayout> <Pattern>%d&#9;%m%n</Pattern> </PatternLayout> </File> </Appenders> <Loggers> <Root level="info"> <AppenderRef ref="Console"/> </Root> <Logger name="Pixels" level="INFO"> <AppenderRef ref="Pixels"/> </Logger> <Logger name="App" level="INFO"> <AppenderRef ref="App"/> </Logger> <Logger name="ShadowbannedPixels" level="INFO"> <AppenderRef ref="ShadowbannedPixels"/> </Logger> </Loggers> </Configuration>
<Configuration xmlns="http://logging.apache.org/log4j/2.0/config"> <Appenders> <Console name="Console" target="SYSTEM_OUT"> <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/> </Console> <File name="Pixels" fileName="logs/pixels.log"> <PatternLayout> <Pattern>%d&#9;%m%n</Pattern> </PatternLayout> </File> <File name="ShadowbannedPixels" fileName="logs/shadowbannedPixels.log"> <PatternLayout> <Pattern>%d&#9;%m%n</Pattern> </PatternLayout> </File> <File name="App" fileName="logs/app.log"> <PatternLayout> <Pattern>%d&#9;%m%n</Pattern> </PatternLayout> </File> <File name="Debug" fileName="logs/debug.log"> <PatternLayout> <Pattern>%d&#9;%m%n</Pattern> </PatternLayout> </File> </Appenders> <Loggers> <Root level="info"> <AppenderRef ref="Console"/> </Root> <Logger name="Pixels" level="INFO"> <AppenderRef ref="Pixels"/> </Logger> <Logger name="App" level="INFO"> <AppenderRef ref="App"/> </Logger> <Logger name="ShadowbannedPixels" level="INFO"> <AppenderRef ref="ShadowbannedPixels"/> </Logger> <Logger name="Debug" level="DEBUG"> <AppenderRef ref="DebugLogger" /> </Logger> </Loggers> </Configuration>
Whitelist to allow code coverage stats to be produced
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" > <testsuites> <testsuite name="Package Test Suite"> <directory suffix=".php">./tests/</directory> </testsuite> </testsuites> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" > <testsuites> <testsuite name="Package Test Suite"> <directory suffix=".php">./tests/</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> </whitelist> </filter> </phpunit>
Allow user to click on cancel button
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <record id="view_base_module_upgrade" model="ir.ui.view"> <field name="model">base.module.upgrade</field> <field name="inherit_id" ref="base.view_base_module_upgrade"/> <field name="arch" type="xml"> <field name="module_info" position="after"> <separator string="Secure Uninstall"/> <label string="If you want uninstall module, write required password ('secure_uninstall' key in ERP config file)." colspan="4" /> <group col="4"> <field name="uninstall_password" password="True" attrs="{'required': 1}" placeholder="key_provided_by_administrator"/> <span/> </group> </field> </field> </record> </data> </openerp>
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <record id="view_base_module_upgrade" model="ir.ui.view"> <field name="model">base.module.upgrade</field> <field name="inherit_id" ref="base.view_base_module_upgrade"/> <field name="arch" type="xml"> <field name="module_info" position="after"> <separator string="Secure Uninstall"/> <label string="If you want uninstall module, write required password ('secure_uninstall' key in ERP config file)." colspan="4" /> <group col="4"> <field name="uninstall_password" password="True" placeholder="key_provided_by_administrator"/> <span/> </group> </field> </field> </record> </data> </openerp>
Clarify comment to fileProvider path
<?xml version="1.0" encoding="utf-8"?> <paths xmlns:android="http://schemas.android.com.apk/res/android"> <!-- path is relative to app_data/files/ --> <files-path name="packages" path="../app_data/packages/" /> </paths>
<?xml version="1.0" encoding="utf-8"?> <paths xmlns:android="http://schemas.android.com.apk/res/android"> <!-- path is relative to /data/data/com.tavultesoft.kmapro/files/ --> <files-path name="packages" path="../app_data/packages/" /> </paths>
Enable the httpd port for the deletes app
<?xml version="1.0"?> <deployment> <cluster hostcount="1" sitesperhost="2" leader="localhost" kfactor="0"/> <paths> <voltdbroot path="/tmp"/> </paths> </deployment>
<?xml version="1.0"?> <deployment> <cluster hostcount="1" sitesperhost="2" leader="localhost" kfactor="0"/> <paths> <voltdbroot path="/tmp"/> </paths> <httpd/> </deployment>
Remove accidental changes of settings
<?xml version="1.0" encoding="UTF-8"?> <settings> <parameter name="autosave" value="false" /> <parameter name="message_verbosity" value="info" /> <parameter name="print_final_average_luminance" value="false" /> <parameter name="rendering_threads" value="auto" /> <parameter name="sampling_mode" value="rng" /> <parameter name="watch_file_changes" value="false" /> <parameters name="generic_frame_renderer"> <parameter name="tile_ordering" value="spiral" /> </parameters> <parameters name="ui"> <parameters name="file_dialog"> <parameters name="projects"> <parameter name="last_directory" value="F:\Appleseed\appleseed\sandbox\tests\test scenes\bsdf\plasticbrdf" /> <parameter name="selected_filter" value="Project Files (*.appleseed *.appleseedz)" /> </parameters> </parameters> <parameters name="render_region"> <parameter name="triggers_rendering" value="true" /> </parameters> </parameters> </settings>
<?xml version="1.0" encoding="UTF-8"?> <settings> <parameter name="autosave" value="false" /> <parameter name="message_verbosity" value="info" /> <parameter name="print_final_average_luminance" value="false" /> <parameter name="rendering_threads" value="auto" /> <parameter name="sampling_mode" value="rng" /> <parameter name="watch_file_changes" value="false" /> <parameters name="generic_frame_renderer"> <parameter name="tile_ordering" value="spiral" /> </parameters> <parameters name="ui"> <parameters name="render_region"> <parameter name="triggers_rendering" value="true" /> </parameters> </parameters> </settings>
Update manifest for 1.2 release
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="mobile.SEC" android:versionCode="3" android:versionName="1.2" > <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" /> <uses-permission android:name="android.permission.INTERNET" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:allowBackup="false"> <activity android:name=".StudentEngineersCouncilActivity" 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=".AboutActivity"></activity> <activity android:name=".ScheduleActivity"></activity> <activity android:name=".MapActivity"></activity> <activity android:name=".CompanySearchActivity"></activity> <activity android:name=".CompanyDetailsActivity"></activity> <activity android:name=".SearchResultsActivity"></activity> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="mobile.SEC" android:versionCode="4" android:versionName="1.2" > <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" /> <uses-permission android:name="android.permission.INTERNET" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:allowBackup="false"> <activity android:name=".StudentEngineersCouncilActivity" 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=".AboutActivity"></activity> <activity android:name=".ScheduleActivity"></activity> <activity android:name=".MapActivity"></activity> <activity android:name=".CompanySearchActivity"></activity> <activity android:name=".CompanyDetailsActivity"></activity> <activity android:name=".SearchResultsActivity"></activity> </application> </manifest>
Update plugin jdk for latest version of IntelliJ (fixes org.iq80.snappy NoClassDefFoundError)
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="EntryPointsManager"> <entry_points version="2.0" /> </component> <component name="ProjectLevelVcsManager" settingsEditedManually="false"> <OptionsSetting value="true" id="Add" /> <OptionsSetting value="true" id="Remove" /> <OptionsSetting value="true" id="Checkout" /> <OptionsSetting value="true" id="Update" /> <OptionsSetting value="true" id="Status" /> <OptionsSetting value="true" id="Edit" /> <ConfirmationsSetting value="0" id="Add" /> <ConfirmationsSetting value="0" id="Remove" /> </component> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="IntelliJ IDEA IU-162.1447.26" project-jdk-type="IDEA JDK"> <output url="file://$PROJECT_DIR$/out" /> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="EntryPointsManager"> <entry_points version="2.0" /> </component> <component name="ProjectLevelVcsManager" settingsEditedManually="false"> <OptionsSetting value="true" id="Add" /> <OptionsSetting value="true" id="Remove" /> <OptionsSetting value="true" id="Checkout" /> <OptionsSetting value="true" id="Update" /> <OptionsSetting value="true" id="Status" /> <OptionsSetting value="true" id="Edit" /> <ConfirmationsSetting value="0" id="Add" /> <ConfirmationsSetting value="0" id="Remove" /> </component> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="IntelliJ IDEA IU-162.2228.15" project-jdk-type="IDEA JDK"> <output url="file://$PROJECT_DIR$/out" /> </component> </project>
Update and file to make repeatable builds
<project name="protobuf-java" default="jar" basedir=".."> <property name="srcdir" value="src" /> <property name="javadir" value="java" /> <property name="javasrcdir" value="${javadir}/src" /> <property name="targetdir" value="${javadir}/target" /> <property name="classesdir" value="${targetdir}/classes" /> <property name="generateddir" value="${targetdir}/generated-sources" /> <target name="clean"> <delete dir="${targetdir}"/> </target> <target name="generate"> <mkdir dir="${generateddir}" /> <echo message="${srcdir}" /> <exec executable="${srcdir}/protoc"> <arg value="--java_out=${generateddir}" /> <arg value="--proto_path=${srcdir}" /> <arg value="${srcdir}/google/protobuf/descriptor.proto" /> </exec> </target> <target name="compile" depends="generate"> <mkdir dir="${classesdir}"/> <javac srcdir="${generateddir}:${javasrcdir}/main/java" destdir="${classesdir}" source="1.5" target="1.5" /> </target> <target name="jar" depends="compile"> <jar destfile="${targetdir}/protobuf-2.4.0a.jar" basedir="${classesdir}" /> </target> </project>
<project name="protobuf-java" default="jar" basedir=".."> <property name="srcdir" value="src" /> <property name="javadir" value="java" /> <property name="javasrcdir" value="${javadir}/src" /> <property name="targetdir" value="${javadir}/target" /> <property name="classesdir" value="${targetdir}/classes" /> <property name="generateddir" value="${targetdir}/generated-sources" /> <target name="clean"> <delete dir="${targetdir}"/> </target> <target name="generate"> <mkdir dir="${generateddir}" /> <echo message="${srcdir}" /> <exec executable="${srcdir}/protoc"> <arg value="--java_out=${generateddir}" /> <arg value="--proto_path=${srcdir}" /> <arg value="${srcdir}/google/protobuf/descriptor.proto" /> </exec> </target> <target name="compile" depends="generate"> <mkdir dir="${classesdir}"/> <javac srcdir="${generateddir}:${javasrcdir}/main/java" destdir="${classesdir}" source="1.5" target="1.5" includeantruntime="false" /> </target> <target name="jar" depends="compile"> <jar destfile="${targetdir}/protobuf-2.4.0a.jar" basedir="${classesdir}" /> </target> </project>
Make view id naming consistent using "." instead of "_".
<?xml version="1.0" encoding="UTF-8"?> <plugin> <extension point="org.blueberry.ui.views"> <view id="org_mitk_views_pharmacokinetics_mri" name="DCE MR Perfusion Datafit View" category="Perfusion" class="MRPerfusionView" icon="resources/icon.svg" /> </extension> </plugin>
<?xml version="1.0" encoding="UTF-8"?> <plugin> <extension point="org.blueberry.ui.views"> <view id="org.mitk.views.pharmacokinetics.mri" name="DCE MR Perfusion Datafit View" category="Perfusion" class="MRPerfusionView" icon="resources/icon.svg" /> </extension> </plugin>
Allow to split a partially available picking
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="view_picking_form" model="ir.ui.view"> <field name="name">Stock picking out Split button</field> <field name="model">stock.picking</field> <field name="inherit_id" ref="stock.view_picking_form" /> <field name="arch" type="xml"> <field name ="state" position="before"> <button name="split_process" states="draft,confirmed,assigned" string="Split" groups="stock.group_stock_user" type="object" attrs="{'invisible': ['|', ('picking_type_code', '!=', 'outgoing')]}"/> </field> </field> </record> </data> </openerp>
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record id="view_picking_form" model="ir.ui.view"> <field name="name">Stock picking out Split button</field> <field name="model">stock.picking</field> <field name="inherit_id" ref="stock.view_picking_form" /> <field name="arch" type="xml"> <field name ="state" position="before"> <button name="split_process" states="draft,confirmed,assigned,partially_available" string="Split" groups="stock.group_stock_user" type="object" attrs="{'invisible': ['|', ('picking_type_code', '!=', 'outgoing')]}"/> </field> </field> </record> </data> </openerp>
Mark editor as unimportant for autofill (should prevent related crashes)
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/markdown_edit_container" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.wbrawner.simplemarkdown.view.fragment.EditFragment"> <EditText android:id="@+id/markdown_edit" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@null" android:gravity="top" android:fontFamily="monospace" android:hint="@string/markdown_here" android:imeOptions="flagNoExtractUi" android:inputType="textMultiLine|textCapSentences" android:paddingLeft="8dp" android:paddingRight="8dp" android:scrollHorizontally="false" /> </ScrollView>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/markdown_edit_container" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.wbrawner.simplemarkdown.view.fragment.EditFragment"> <EditText android:id="@+id/markdown_edit" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@null" android:gravity="top" android:fontFamily="monospace" android:hint="@string/markdown_here" android:imeOptions="flagNoExtractUi" android:inputType="textMultiLine|textCapSentences" android:paddingLeft="8dp" android:paddingRight="8dp" android:scrollHorizontally="false" android:importantForAutofill="no" /> </ScrollView>
Change name to "ProxerTv Alpha"
<resources> <string name="app_name">ProxerTv</string> <string name="row_my_list">My List</string> <string name="row_top_access">Top Access</string> <string name="row_top_rating">Top Rating</string> <string name="row_airing">Airing</string> <string name="row_streams">Streams</string> <string name="page_title">Page %d</string> <string name="row_search_results">Search Results</string> <string name="add_to_list">Add to list</string> <string name="remove_from_list">Remove from list</string> <string name="no_streams_found">no supported streams found</string> </resources>
<resources> <string name="app_name">ProxerTv Alpha</string> <string name="row_my_list">My List</string> <string name="row_top_access">Top Access</string> <string name="row_top_rating">Top Rating</string> <string name="row_airing">Airing</string> <string name="row_streams">Streams</string> <string name="page_title">Page %d</string> <string name="row_search_results">Search Results</string> <string name="add_to_list">Add to list</string> <string name="remove_from_list">Remove from list</string> <string name="no_streams_found">no supported streams found</string> </resources>
Mark app_name as not translatable
<resources> <string name="app_name">Equiv</string> <string name="activity_title_add_product">Add product</string> <string name="action_settings">Settings</string> <string name="action_new_day">New day</string> <string name="meal_name_breakfast">B.fast</string> <string name="meal_name_lunch">Lunch</string> <string name="meal_name_snack">Snack</string> <string name="meal_name_dinner">Dinner</string> <string name="add_meal_item_button">Add</string> <string name="start_new_day">Discard all meals?</string> <string name="start_new_day_button">Discard all</string> <string name="action_save">Save</string> <string name="edit_meal_item_title">Edit product</string> <string name="action_remove">Remove</string> <string name="title_activity_settings">Settings</string> <string name="max_protein_per_day_title">Max protein per day</string> <string name="weight_unit">g</string> <string name="protein_weight_unit">g P</string> <string name="potato_weight_unit">g PTT</string> </resources>
<resources> <string name="app_name" translatable="false">Equiv</string> <string name="activity_title_add_product">Add product</string> <string name="action_settings">Settings</string> <string name="action_new_day">New day</string> <string name="meal_name_breakfast">B.fast</string> <string name="meal_name_lunch">Lunch</string> <string name="meal_name_snack">Snack</string> <string name="meal_name_dinner">Dinner</string> <string name="add_meal_item_button">Add</string> <string name="start_new_day">Discard all meals?</string> <string name="start_new_day_button">Discard all</string> <string name="action_save">Save</string> <string name="edit_meal_item_title">Edit product</string> <string name="action_remove">Remove</string> <string name="title_activity_settings">Settings</string> <string name="max_protein_per_day_title">Max protein per day</string> <string name="weight_unit">g</string> <string name="protein_weight_unit">g P</string> <string name="potato_weight_unit">g PTT</string> </resources>
Remove unnecessary attributes from the manifest
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.github.rubensousa.bottomsheetbuilder"> <application android:allowBackup="true" android:label="@string/app_name" android:supportsRtl="true"> </application> </manifest>
<manifest package="com.github.rubensousa.bottomsheetbuilder"> </manifest>
Update DB version for new POIProvider columns "actions type".
<?xml version="1.0" encoding="utf-8"?> <resources> <integer name="gtfs_rts_db_version">20141002</integer> <string name="gtfs_rts_label">AMT Bus</string> <string name="gtfs_rts_authority">org.mtransit.android.ca_montreal_amt_bus.gtfs</string> <string name="gtfs_status_for_poi_authority">org.mtransit.android.ca_montreal_amt_bus.gtfs</string> <integer name="gtfs_rts_agency_type">3</integer> <string name="gtfs_rts_area_min_lat">45.456391465</string> <string name="gtfs_rts_area_max_lat">45.4982652034</string> <string name="gtfs_rts_area_min_lng">-73.5661781803</string> <string name="gtfs_rts_area_max_lng">-73.4433963858</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <integer name="gtfs_rts_db_version">20141003</integer> <string name="gtfs_rts_label">AMT Bus</string> <string name="gtfs_rts_authority">org.mtransit.android.ca_montreal_amt_bus.gtfs</string> <string name="gtfs_status_for_poi_authority">org.mtransit.android.ca_montreal_amt_bus.gtfs</string> <integer name="gtfs_rts_agency_type">3</integer> <string name="gtfs_rts_area_min_lat">45.456391465</string> <string name="gtfs_rts_area_max_lat">45.4982652034</string> <string name="gtfs_rts_area_min_lng">-73.5661781803</string> <string name="gtfs_rts_area_max_lng">-73.4433963858</string> </resources>
Enable fast scrolling for cache lists
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <LinearLayout style="@style/action_bar" > <include layout="@layout/actionbar_title" /> <include layout="@layout/actionbar_progress" /> <include layout="@layout/actionbar_button_map" /> </LinearLayout> <include layout="@layout/filter_bar" /> <RelativeLayout android:id="@+id/loading" android:layout_width="fill_parent" android:layout_height="fill_parent" > <ProgressBar style="@android:style/Widget.ProgressBar.Large" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:gravity="center" android:indeterminate="true" android:indeterminateOnly="true" /> </RelativeLayout> <ListView android:id="@android:id/list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_margin="0dip" android:background="?background_color" android:cacheColorHint="?background_color" android:dividerHeight="1dip" android:padding="0dip" android:visibility="gone" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <LinearLayout style="@style/action_bar" > <include layout="@layout/actionbar_title" /> <include layout="@layout/actionbar_progress" /> <include layout="@layout/actionbar_button_map" /> </LinearLayout> <include layout="@layout/filter_bar" /> <RelativeLayout android:id="@+id/loading" android:layout_width="fill_parent" android:layout_height="fill_parent" > <ProgressBar style="@android:style/Widget.ProgressBar.Large" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:gravity="center" android:indeterminate="true" android:indeterminateOnly="true" /> </RelativeLayout> <ListView android:id="@android:id/list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_margin="0dip" android:background="?background_color" android:cacheColorHint="?background_color" android:dividerHeight="1dip" android:padding="0dip" android:visibility="gone" android:fastScrollEnabled="true" /> </LinearLayout>
Comment not really necessary permission
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.github.javiersantos.piracychecker.demo"> <uses-permission android:name="com.android.vending.CHECK_LICENSE"/> <application android:allowBackup="true" android:fullBackupContent="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning"> <activity android:name=".MainActivity" 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=".AboutActivity" android:label="@string/action_about"/> </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.github.javiersantos.piracychecker.demo"> <!-- <uses-permission android:name="com.android.vending.CHECK_LICENSE"/> --> <application android:allowBackup="true" android:fullBackupContent="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning"> <activity android:name=".MainActivity" 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=".AboutActivity" android:label="@string/action_about"/> </application> </manifest>
Make this work with the current release of Maven, 1.0-rc2.
<?xml version="1.0"?> <!-- Copyright 2003-2004 The Apache Software Foundation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by 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. --> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd"> <!-- commons lang customization of default Checkstyle behavior --> <module name="Checker"> <property name="basedir" value="."/> <property name="localeLanguage" value="en"/> <module name="PackageHtml"/> <module name="TreeWalker"> <module name="TabCharacter"/> <module name="AvoidStarImport"/> <module name="RedundantImport"/> <module name="UnusedImports"/> <module name="NeedBraces"/> <module name="RedundantThrows"> <property name="allowUnchecked" value="true"/> </module> <module name="LineLength"> <property name="max" value="120"/> </module> <module name="JavadocMethod"> <property name="allowUndeclaredRTE" value="true"/> </module> </module> </module>
<?xml version="1.0"?> <!-- Copyright 2003-2004 The Apache Software Foundation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by 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. --> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd"> <!-- commons lang customization of default Checkstyle behavior --> <module name="Checker"> <property name="localeLanguage" value="en"/> <module name="PackageHtml"/> <module name="TreeWalker"> <module name="TabCharacter"/> <module name="AvoidStarImport"/> <module name="RedundantImport"/> <module name="UnusedImports"/> <module name="NeedBraces"/> <module name="RedundantThrows"> <property name="allowUnchecked" value="true"/> </module> <module name="LineLength"> <property name="max" value="120"/> </module> <module name="JavadocMethod"> <property name="allowUndeclaredRTE" value="true"/> </module> </module> </module>
Update TeamDev open source xml
<component name="CopyrightManager"> <copyright> <option name="allowReplaceRegexp" value="2017" /> <option name="myName" value="TeamDev Open-Source" /> <option name="notice" value="Copyright 2018, TeamDev Ltd. All rights reserved.&#10;&#10;Redistribution and use in source and/or binary forms, with or without&#10;modification, must retain the above copyright notice and the following&#10;disclaimer.&#10;&#10;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&#10;&quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&#10;LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&#10;A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT&#10;OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,&#10;SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT&#10;LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,&#10;DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY&#10;THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT&#10;(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE&#10;OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." /> </copyright> </component>
<component name="CopyrightManager"> <copyright> <option name="allowReplaceRegexp" value="2017" /> <option name="myName" value="TeamDev Open-Source" /> <option name="notice" value="Copyright 2018, TeamDev. All rights reserved.&#10;&#10;Redistribution and use in source and/or binary forms, with or without&#10;modification, must retain the above copyright notice and the following&#10;disclaimer.&#10;&#10;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&#10;&quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&#10;LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&#10;A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT&#10;OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,&#10;SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT&#10;LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,&#10;DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY&#10;THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT&#10;(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE&#10;OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." /> </copyright> </component>
Remove reference to version number.
<?xml version="1.0"?> <!-- Copyright 2002-2005 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/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. --> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd"> <document> <header> <title>Apache Forrest 0.7 documentation</title> </header> <body> <section id="project"> <title>Project-level documentation</title> <p> See the <a href="../">Apache Forrest Project</a> website for the main project-level documents. </p> </section> <section id="docs"> <title>Product documentation</title> <p> See links to other versions of <a href="../docs.html">documentation</a>. </p> </section> </body> </document>
<?xml version="1.0"?> <!-- Copyright 2002-2005 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/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. --> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd"> <document> <header> <title>Apache Forrest documentation</title> </header> <body> <section id="project"> <title>Project-level documentation</title> <p> See the <a href="../">Apache Forrest Project</a> website for the main project-level documents. </p> </section> <section id="docs"> <title>Product documentation</title> <p> See links to other versions of <a href="../docs.html">documentation</a>. </p> </section> </body> </document>
Declare MediaButtonReceiver for support-mediarouter-v7 testing am: 34bde96f69
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2016 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="android.support.v7.mediarouter.test"> <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="23" tools:overrideLibrary="android.support.test, android.app, android.support.test.rule, android.support.test.espresso, android.support.test.espresso.idling"/> <application android:supportsRtl="true"> <uses-library android:name="android.test.runner"/> </application> <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="android.support.v7.mediarouter.test"/> </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 xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="android.support.v7.mediarouter.test"> <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="23" tools:overrideLibrary="android.support.test, android.app, android.support.test.rule, android.support.test.espresso, android.support.test.espresso.idling"/> <application android:supportsRtl="true"> <uses-library android:name="android.test.runner"/> <receiver android:name="android.support.v4.media.session.MediaButtonReceiver"> <intent-filter> <action android:name="android.intent.action.MEDIA_BUTTON" /> </intent-filter> </receiver> </application> <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="android.support.v7.mediarouter.test"/> </manifest>
Apply theme to play icon
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright 2016 Hippo Seven ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ 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. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="@color/primary_drawable_light" android:pathData="@string/pd_play"/> </vector>
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright 2016 Hippo Seven ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ 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. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="?attr/drawableColorPrimary" android:pathData="@string/pd_play"/> </vector>
Add transition to base state and from base to idle with normal key.
<?xml version="1.0" encoding="UTF-8"?> <scxml xmlns="http://www.coin3d.org/scxml/coin/1.0" initialstate="idle"> <state id="idle"> <transition event="KeyboardEvent.DOWN.A" target="exit"/> </state> <state id="base"> <transition event="KeyboardEvent.DOWN.Alt" target="interact"/> <transition event="KeyboardEvent.UP.Ctrl" target="idle"/> <transition event="KeyboardEvent.DOWN.A" target="idle"/> <transition event="navigation.ViewAll"> <invoke targettype="voly-labeller" src="ViewAll"/> </transition> </state> <final id="exit"/> </scxml>
<?xml version="1.0" encoding="UTF-8"?> <scxml xmlns="http://www.coin3d.org/scxml/coin/1.0" initialstate="idle"> <state id="idle"> <transition event="KeyboardEvent.DOWN.B" target="exit"/> <transition event="KeyboardEvent.DOWN.V" target="base"/> </state> <state id="base"> <transition event="KeyboardEvent.UP.I" target="idle"/> <transition event="KeyboardEvent.DOWN.Alt" target="idle"/> <transition event="navigation.ViewAll"> <invoke targettype="voly-labeller" src="ViewAll"/> </transition> </state> <final id="exit"/> </scxml>
Add bit to map JNDI from JBoss name to Java 'standard' name.
<?xml version="1.0" encoding="UTF-8"?> <jboss-web> <context-root>ticketmanor</context-root> </jboss-web>
<?xml version="1.0" encoding="UTF-8"?> <jboss-web> <context-root>ticketmanor</context-root> <!-- Map the JBoss-specific JNDI name to the generic JDBC/JNDI name --> <resource-ref> <res-ref-name>jdbc/TicketManorDB</res-ref-name> <jndi-name>java:/jdbc/TicketManorDB</jndi-name> </resource-ref> </jboss-web>
Build compatibility for maven 1
<assembly> <id>bin</id> <formats> <format>tar.gz</format> <format>tar.bz2</format> <format>zip</format> </formats> <fileSets> <fileSet> <includes> <include>README*</include> <include>LICENSE*</include> <include>NOTICE*</include> <include>pom.xml</include> <include>build.xml</include> </includes> </fileSet> <fileSet> <directory>licenses</directory> <outputDirectory>licenses</outputDirectory> <includes> <include>*.*</include> </includes> </fileSet> <fileSet> <directory>target</directory> <outputDirectory></outputDirectory> <includes> <include>*.jar</include> </includes> </fileSet> <fileSet> <directory>src</directory> <outputDirectory>src</outputDirectory> <includes> <include>**/*</include> </includes> </fileSet> <fileSet> <directory>target/site</directory> <outputDirectory>docs</outputDirectory> <includes> <include>**/*</include> </includes> </fileSet> </fileSets> <dependencySets> <dependencySet> <outputDirectory>lib</outputDirectory> <unpack>false</unpack> <scope>runtime</scope> </dependencySet> </dependencySets> </assembly>
<assembly> <id>bin</id> <formats> <format>tar.gz</format> <format>tar.bz2</format> <format>zip</format> </formats> <fileSets> <fileSet> <includes> <include>README*</include> <include>LICENSE*</include> <include>NOTICE*</include> <include>pom.xml</include> <include>project.xml</include> <include>build.xml</include> </includes> </fileSet> <fileSet> <directory>licenses</directory> <outputDirectory>licenses</outputDirectory> <includes> <include>*.*</include> </includes> </fileSet> <fileSet> <directory>target</directory> <outputDirectory></outputDirectory> <includes> <include>*.jar</include> </includes> </fileSet> <fileSet> <directory>src</directory> <outputDirectory>src</outputDirectory> <includes> <include>**/*</include> </includes> </fileSet> <fileSet> <directory>target/site</directory> <outputDirectory>docs</outputDirectory> <includes> <include>**/*</include> </includes> </fileSet> </fileSets> <dependencySets> <dependencySet> <outputDirectory>lib</outputDirectory> <unpack>false</unpack> <scope>compile</scope> </dependencySet> </dependencySets> </assembly>
Update typography in search screen
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" > <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" > <TextView android:id="@+id/course_id_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000000" /> <TextView android:id="@+id/course_instr_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:textColor="#000000" /> </LinearLayout> <TextView android:id="@+id/course_title_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000000" /> </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="wrap_content" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" > <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" > <TextView android:id="@+id/course_id_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textAppearance="@style/Base.TextAppearance.AppCompat.Title" android:textColor="@color/black" /> <TextView android:id="@+id/course_instr_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:textColor="@color/black" android:textAppearance="@style/Base.TextAppearance.AppCompat.Title" /> </LinearLayout> <TextView android:id="@+id/course_title_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000000" /> </LinearLayout>
Use 1dp instead of 2px
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <solid android:color="@android:color/white" /> <corners android:radius="1dp" /> <stroke android:width="2px" android:color="@color/lightOrange" /> </shape>
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <solid android:color="@android:color/white" /> <corners android:radius="1dp" /> <stroke android:width="1dp" android:color="@color/lightOrange" /> </shape>
Remove Browser directory from test suites
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="Unit"> <directory suffix="Test.php">./tests/Unit</directory> </testsuite> <testsuite name="Feature"> <directory suffix="Test.php">./tests/Feature</directory> </testsuite> <testsuite name="Browser" > <directory suffix="Test.php" >./tests/Browser</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./app</directory> </whitelist> </filter> <php> <server name="APP_ENV" value="testing"/> <server name="BCRYPT_ROUNDS" value="4"/> <server name="CACHE_DRIVER" value="array"/> <server name="DB_CONNECTION" value="sqlite"/> <server name="DB_DATABASE" value=":memory:"/> <server name="MAIL_DRIVER" value="array"/> <server name="QUEUE_CONNECTION" value="sync"/> <server name="SESSION_DRIVER" value="array"/> </php> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <coverage processUncoveredFiles="true"> <include> <directory suffix=".php">./app</directory> </include> </coverage> <testsuites> <testsuite name="Unit"> <directory suffix="Test.php">./tests/Unit</directory> </testsuite> <testsuite name="Feature"> <directory suffix="Test.php">./tests/Feature</directory> </testsuite> </testsuites> <php> <server name="APP_ENV" value="testing"/> <server name="BCRYPT_ROUNDS" value="4"/> <server name="CACHE_DRIVER" value="array"/> <server name="DB_CONNECTION" value="sqlite"/> <server name="DB_DATABASE" value=":memory:"/> <server name="MAIL_DRIVER" value="array"/> <server name="QUEUE_CONNECTION" value="sync"/> <server name="SESSION_DRIVER" value="array"/> </php> </phpunit>
Make the species list text larger
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/common_name" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:gravity="center_vertical" android:textColor="#ffffff" android:textSize="10dp" android:textStyle="bold" /> <TextView android:id="@+id/sci_name" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:gravity="center_vertical" android:textColor="#ffffff" android:textSize="8dp" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/common_name" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:gravity="center_vertical" android:textColor="#ffffff" android:textSize="14dp" android:textStyle="bold" /> <TextView android:id="@+id/sci_name" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:gravity="center_vertical" android:textColor="#ffffff" android:textSize="12dip" /> </LinearLayout>
Remove java 1.7 dependency. Should now work for java 1.6
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.componentcorp.xml.validation</groupId> <artifactId>jxvc-master</artifactId> <version>0.9.2-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <artifactId>relaxng</artifactId> <name>RelaxNG-XML Validator Service</name> <description> Very simple library which exposes the Jing RelaxNG XML syntax library as a java service. </description> <packaging>jar</packaging> <properties> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>com.thaiopensource</groupId> <artifactId>jing</artifactId> <version>20091111</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> <parent> <groupId>com.componentcorp.xml.validation</groupId> <artifactId>jxvc-master</artifactId> <version>0.9.2-SNAPSHOT</version> <relativePath>../</relativePath> </parent> <artifactId>relaxng</artifactId> <name>RelaxNG-XML Validator Service</name> <description> Very simple library which exposes the Jing RelaxNG XML syntax library as a java service. </description> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.thaiopensource</groupId> <artifactId>jing</artifactId> <version>20091111</version> </dependency> </dependencies> </project>
Fix duplicate dependency warning && missing opensaml version error
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>oxcore-saml</artifactId> <name>oxSaml</name> <packaging>jar</packaging> <parent> <groupId>org.gluu</groupId> <artifactId>oxcore</artifactId> <version>4.1.0-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>org.gluu</groupId> <artifactId>oxcore-util</artifactId> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> </dependency> <dependency> <groupId>org.apache.ws.security</groupId> <artifactId>wss4j</artifactId> </dependency> <dependency> <groupId>org.apache.ws.security</groupId> <artifactId>wss4j</artifactId> </dependency> <dependency> <groupId>org.opensaml</groupId> <artifactId>opensaml</artifactId> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>oxcore-saml</artifactId> <name>oxSaml</name> <packaging>jar</packaging> <parent> <groupId>org.gluu</groupId> <artifactId>oxcore</artifactId> <version>4.1.0-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>org.gluu</groupId> <artifactId>oxcore-util</artifactId> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> </dependency> <dependency> <groupId>org.apache.ws.security</groupId> <artifactId>wss4j</artifactId> </dependency> <dependency> <groupId>org.opensaml</groupId> <artifactId>opensaml</artifactId> <version>2.6.4</version> </dependency> </dependencies> </project>
Replace tab character with spaces
<?xml version="1.0" encoding="UTF-8" ?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <parameters> <parameter key="core23.shariff.block.share.class">Core23\ShariffBundle\Block\Service\ShariffShareBlockService</parameter> </parameters> <services> <service id="core23.shariff.block.share" class="%core23.shariff.block.share.class%"> <tag name="sonata.block" /> <argument>core23.shariff.block.share</argument> <argument type="service" id="templating" /> </service> </services> </container>
<?xml version="1.0" encoding="UTF-8" ?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <parameters> <parameter key="core23.shariff.block.share.class">Core23\ShariffBundle\Block\Service\ShariffShareBlockService</parameter> </parameters> <services> <service id="core23.shariff.block.share" class="%core23.shariff.block.share.class%"> <tag name="sonata.block" /> <argument>core23.shariff.block.share</argument> <argument type="service" id="templating" /> </service> </services> </container>
Set background of file picker to white
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" > <android.support.design.widget.AppBarLayout android:id="@+id/id_appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:fitsSystemWindows="true"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:theme="?mfp_app_toolbar_theme" /> </android.support.design.widget.AppBarLayout> <FrameLayout android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" /> </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="#ffffff"> <android.support.design.widget.AppBarLayout android:id="@+id/id_appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:fitsSystemWindows="true"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:theme="?mfp_app_toolbar_theme" /> </android.support.design.widget.AppBarLayout> <FrameLayout android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>
Include sample build.properties in source distro.
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <assembly> <id>src</id> <formats> <format>tar.gz</format> <format>zip</format> </formats> <baseDirectory>${project.artifactId}-${project.version}-src</baseDirectory> <fileSets> <fileSet> <includes> <include>build.xml</include> <include>checkstyle.xml</include> <include>LICENSE.txt</include> <include>license-header.txt</include> <include>NOTICE.txt</include> <include>pom.xml</include> <include>README.txt</include> <include>RELEASE-NOTES.txt</include> <include>findbugs-exclude-filter.xml</include> </includes> </fileSet> <fileSet> <directory>src</directory> </fileSet> </fileSets> </assembly>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <assembly> <id>src</id> <formats> <format>tar.gz</format> <format>zip</format> </formats> <baseDirectory>${project.artifactId}-${project.version}-src</baseDirectory> <fileSets> <fileSet> <includes> <include>build.xml</include> <include>checkstyle.xml</include> <include>LICENSE.txt</include> <include>license-header.txt</include> <include>NOTICE.txt</include> <include>pom.xml</include> <include>README.txt</include> <include>RELEASE-NOTES.txt</include> <include>findbugs-exclude-filter.xml</include> <include>build.properties.sample</include> </includes> </fileSet> <fileSet> <directory>src</directory> </fileSet> </fileSets> </assembly>
Rename application from TrackerActivity to Calindora Tracker.
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">TrackerActivity</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">Calindora Tracker</string> </resources>
Remove padding from list to see toolbar on top effect
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/content_drawer" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:context="pl.srw.billcalculator.history.DrawerActivity" tools:showIn="@layout/activity_drawer_content"> <android.support.v7.widget.RecyclerView android:id="@+id/bill_list" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="vertical" android:padding="@dimen/small_padding" android:background="@color/gray_light" tools:listitem="@layout/activity_drawer_history_item"/> <TextView android:id="@+id/empty_history" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/empty_history" android:layout_gravity="center"/> <ImageView android:id="@+id/swipe_delete_history_icon" android:layout_width="80dp" android:layout_height="80dp" app:srcCompat="@drawable/finger_moving_right" android:visibility="invisible" android:layout_gravity="center"/> </FrameLayout>
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/content_drawer" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:context="pl.srw.billcalculator.history.DrawerActivity" tools:showIn="@layout/activity_drawer_content"> <android.support.v7.widget.RecyclerView android:id="@+id/bill_list" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="vertical" android:background="@color/gray_light" tools:listitem="@layout/activity_drawer_history_item"/> <TextView android:id="@+id/empty_history" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/empty_history" android:layout_gravity="center"/> <ImageView android:id="@+id/swipe_delete_history_icon" android:layout_width="80dp" android:layout_height="80dp" app:srcCompat="@drawable/finger_moving_right" android:visibility="invisible" android:layout_gravity="center"/> </FrameLayout>
Put api behind spring security.
<?xml version="1.0" encoding="UTF-8"?> <beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd"> <http auto-config='true' > <intercept-url pattern="/index.htm*" access="ROLE_USER" /> <form-login login-page='/login.htm' default-target-url='/index.htm' always-use-default-target='true' /> <logout logout-success-url="/loggedout.htm"/> </http> <authentication-manager> <authentication-provider> <user-service> <user name="demouser" password="demopass" authorities="ROLE_USER, ROLE_ADMIN" /> <user name="userdemo" password="passdemo" authorities="ROLE_USER" /> </user-service> </authentication-provider> </authentication-manager> </beans:beans>
<?xml version="1.0" encoding="UTF-8"?> <beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd"> <http auto-config='true' > <intercept-url pattern="/index.htm*" access="ROLE_USER" /> <intercept-url pattern="/api/whisky/*" access="ROLE_USER" /> <form-login login-page='/login.htm' default-target-url='/index.htm' always-use-default-target='true' /> <logout logout-success-url="/loggedout.htm"/> </http> <authentication-manager> <authentication-provider> <user-service> <user name="demouser" password="demopass" authorities="ROLE_USER, ROLE_ADMIN" /> <user name="userdemo" password="passdemo" authorities="ROLE_USER" /> </user-service> </authentication-provider> </authentication-manager> </beans:beans>
Add upgrade link in services settings.
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > <Preference android:key="clearGetGlueCredentials" android:summary="@string/clearGetGlueCredentialssummary" android:title="@string/clearGetGlueCredentials" /> <PreferenceCategory android:title="@string/trakt" > <Preference android:key="com.battlelancer.seriesguide.trakt.connect" android:title="@string/connect_trakt" android:summary="@string/pref_traktsummary" > <intent android:targetClass="com.battlelancer.seriesguide.ui.ConnectTraktActivity" android:targetPackage="@string/package_name" /> </Preference> <Preference android:key="com.battlelancer.seriesguide.trakt" android:title="@string/pref_traktsync" > <intent android:targetClass="com.battlelancer.seriesguide.ui.TraktSyncActivity" android:targetPackage="@string/package_name" /> </Preference> <CheckBoxPreference android:defaultValue="True" android:key="com.battlelancer.seriesguide.autoaddtraktshows" android:summary="@string/pref_autoaddshowssummary" android:title="@string/pref_autoaddshows" /> </PreferenceCategory> </PreferenceScreen>
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > <Preference android:key="com.battlelancer.seriesguide.upgrade" android:title="@string/upgrade_title" > <intent android:targetClass="com.battlelancer.seriesguide.billing.BillingActivity" android:targetPackage="@string/package_name" /> </Preference> <Preference android:key="clearGetGlueCredentials" android:summary="@string/clearGetGlueCredentialssummary" android:title="@string/clearGetGlueCredentials" /> <PreferenceCategory android:title="@string/trakt" > <Preference android:key="com.battlelancer.seriesguide.trakt.connect" android:summary="@string/pref_traktsummary" android:title="@string/connect_trakt" > <intent android:targetClass="com.battlelancer.seriesguide.ui.ConnectTraktActivity" android:targetPackage="@string/package_name" /> </Preference> <Preference android:key="com.battlelancer.seriesguide.trakt" android:title="@string/pref_traktsync" > <intent android:targetClass="com.battlelancer.seriesguide.ui.TraktSyncActivity" android:targetPackage="@string/package_name" /> </Preference> <CheckBoxPreference android:defaultValue="True" android:key="com.battlelancer.seriesguide.autoaddtraktshows" android:summary="@string/pref_autoaddshowssummary" android:title="@string/pref_autoaddshows" /> </PreferenceCategory> </PreferenceScreen>
Add scrolling effect to `SettingActivity`
<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout android:id="@+id/coordinator_layout" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <include layout="@layout/app_bar_layout" /> <FrameLayout android:id="@+id/frame_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginTop="?attr/actionBarSize" /> </android.support.design.widget.CoordinatorLayout>
<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout android:id="@+id/coordinator_layout" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <include layout="@layout/app_bar_layout" /> <FrameLayout android:id="@+id/frame_layout" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> </android.support.design.widget.CoordinatorLayout>
Test log level now set to INFO
<?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss} %-5level %logger{36} - %msg%n </pattern> </encoder> </appender> <logger name="com.github.dandelion" level="DEBUG" /> <logger name="org.eclipe.jetty" level="DEBUG" /> <root level="DEBUG"> <appender-ref ref="STDOUT" /> </root> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss} %-5level %logger{36} - %msg%n </pattern> </encoder> </appender> <logger name="com.github.dandelion" level="INFO" /> <logger name="org.eclipe.jetty" level="INFO" /> <root level="INFO"> <appender-ref ref="STDOUT" /> </root> </configuration>
Revert accidental android:targetSdkVersion commit back to 15 (had been set to 14 when initially experimenting).
<?xml version="1.0" encoding="utf-8"?> <!-- BEGIN_INCLUDE(manifest) --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.eegeo" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14"/> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <application android:label="EegeoDroid" android:theme="@android:style/Theme.NoTitleBar">> <activity android:name=".MainActivity" android:label="EegeoDroid" android:configChanges="orientation|keyboardHidden" android:screenOrientation="landscape" android:launchMode="singleInstance" android:hardwareAccelerated="false"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> <!-- END_INCLUDE(manifest) -->
<?xml version="1.0" encoding="utf-8"?> <!-- BEGIN_INCLUDE(manifest) --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.eegeo" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="15"/> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <application android:label="EegeoDroid" android:theme="@android:style/Theme.NoTitleBar">> <activity android:name=".MainActivity" android:label="EegeoDroid" android:configChanges="orientation|keyboardHidden" android:screenOrientation="landscape" android:launchMode="singleInstance" android:hardwareAccelerated="false"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> <!-- END_INCLUDE(manifest) -->
Use HTTPS endpoint for lang pack repository
<?xml version="1.0" encoding="UTF-8"?> <config> <module> <enabled>true</enabled> <visible>true</visible> <icon>flash</icon> <category>admin</category> </module> <project> <entry name="langpackrepository">http://update.rbschange.fr</entry> </project> <!-- Add this to project.xml in 'config/project/modules' section for override config value <updater> <entry name="langpackrepository">http://update.rbschange.fr</entry> </updater> --> </config>
<?xml version="1.0" encoding="UTF-8"?> <config> <module> <enabled>true</enabled> <visible>true</visible> <icon>flash</icon> <category>admin</category> </module> <project> <entry name="langpackrepository">https://update.rbschange.fr</entry> </project> <!-- Add this to project.xml in 'config/project/modules' section for override config value <updater> <entry name="langpackrepository">http://update.rbschange.fr</entry> </updater> --> </config>
Change package name for linking purposes
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="fr.ayoubdev.rnac" android:versionCode="1" android:versionName="1.1"> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="fr.ayoubdev.rnak" android:versionCode="1" android:versionName="1.1"> </manifest>
Disable scrollbar on reading story, as the scrollbar wobbles, and stops the user from being distracted by their progress through the story
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="net.bloople.stories.ReadingStoryActivity" android:background="#ffffff"> <android.support.v7.widget.RecyclerView android:id="@+id/nodes_view" android:scrollbars="vertical" android:layout_width="match_parent" android:layout_height="match_parent" /> </RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="net.bloople.stories.ReadingStoryActivity" android:background="#ffffff"> <android.support.v7.widget.RecyclerView android:id="@+id/nodes_view" android:scrollbars="none" android:layout_width="match_parent" android:layout_height="match_parent" /> </RelativeLayout>
Include debug repo in CE build
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jkiss.dbeaver</groupId> <artifactId>dbeaver</artifactId> <version>1.0.0</version> <relativePath>../../</relativePath> </parent> <version>1.0.0</version> <artifactId>dbeaver-p2-repos</artifactId> <packaging>pom</packaging> <name>DBeaver P2 Repositories</name> <modules> <module>org.jkiss.dbeaver.ce.repository</module> <module>org.jkiss.dbeaver.nls.repository</module> <module>org.jkiss.dbeaver.office.repository</module> <module>org.jkiss.dbeaver.svg.repository</module> </modules> </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>dbeaver</artifactId> <version>1.0.0</version> <relativePath>../../</relativePath> </parent> <version>1.0.0</version> <artifactId>dbeaver-p2-repos</artifactId> <packaging>pom</packaging> <name>DBeaver P2 Repositories</name> <modules> <module>org.jkiss.dbeaver.ce.repository</module> <module>org.jkiss.dbeaver.debug.repository</module> <module>org.jkiss.dbeaver.nls.repository</module> <module>org.jkiss.dbeaver.office.repository</module> <module>org.jkiss.dbeaver.svg.repository</module> </modules> </project>
Correct ant build to filter out test classes and benchmark code from the runnable jar.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project default="create_run_jar" name="Create Runnable Jar for Project MutabilityDetector"> <!--this file was created by Eclipse Runnable JAR Export Wizard--> <!--ANT 1.7 is required --> <property name="project.basedir" value="../"/> <target name="create_run_jar"> <jar destfile="${project.basedir}/build/MutabilityDetector.jar" filesetmanifest="mergewithoutmain"> <manifest> <attribute name="Main-Class" value="org.mutabilitydetector.cli.RunMutabilityDetector"/> <attribute name="Class-Path" value="."/> </manifest> <fileset dir="${project.basedir}/bin"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/asm-3.2.jar"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/classpath-explorer-1.0.jar"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/commons-cli-1.2.jar"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/asm-tree-3.2.jar"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/asm-analysis-3.2.jar"/> </jar> </target> </project>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project default="create_run_jar" name="Create Runnable Jar for Project MutabilityDetector"> <!--this file was created by Eclipse Runnable JAR Export Wizard--> <!--ANT 1.7 is required --> <property name="project.basedir" value="../"/> <target name="create_run_jar"> <jar destfile="${project.basedir}/build/MutabilityDetector.jar" filesetmanifest="mergewithoutmain"> <manifest> <attribute name="Main-Class" value="org.mutabilitydetector.cli.RunMutabilityDetector"/> <attribute name="Class-Path" value="."/> </manifest> <fileset dir="${project.basedir}/bin"> <exclude name="**/benchmarks/" /> <exclude name="**/*Test*" /> <include name="**/*.class" /> </fileset> <fileset dir="${project.basedir}"> <filename name="license/**/*" /> </fileset> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/asm-3.2.jar"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/classpath-explorer-1.0.jar"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/commons-cli-1.2.jar"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/asm-tree-3.2.jar"/> <zipfileset excludes="META-INF/*.SF" src="${project.basedir}/lib/asm-analysis-3.2.jar"/> </jar> </target> </project>
Reduce text file font size.
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:orientation="vertical" > <TextView android:id="@+id/IdgamesText_Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="@dimen/Padding" android:text="@string/IdgamesText_TextDefault" android:textSize="11sp" android:typeface="monospace"/> </ScrollView>
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:orientation="vertical" > <TextView android:id="@+id/IdgamesText_Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="@dimen/Padding" android:text="@string/IdgamesText_TextDefault" android:textSize="10sp" android:typeface="monospace" /> </ScrollView>
Add tint to nav image
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="@dimen/nav_header_height" android:background="@mipmap/side_nav_bar" android:orientation="vertical" android:paddingStart="@dimen/activity_horizontal_margin" android:paddingEnd="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/abc_dialog_padding_top_material"> <ImageView android:id="@id/imageView" android:layout_width="60dp" android:layout_height="60dp" android:layout_marginTop="@dimen/activity_vertical_margin" android:src="@drawable/icon" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/nav_header_vertical_spacing" android:text="@string/app_name" android:textAppearance="@style/TextAppearance.AppCompat.Body1" android:textSize="@dimen/abc_text_size_large_material" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="@dimen/nav_header_height" android:background="@mipmap/side_nav_bar" android:backgroundTint="@color/color_accent" android:backgroundTintMode="multiply" android:orientation="vertical" android:paddingEnd="@dimen/activity_horizontal_margin" android:paddingStart="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/abc_dialog_padding_top_material"> <ImageView android:id="@id/imageView" android:layout_width="60dp" android:layout_height="60dp" android:layout_marginTop="@dimen/activity_vertical_margin" android:src="@drawable/icon" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/nav_header_vertical_spacing" android:text="@string/app_name" android:textSize="@dimen/abc_text_size_large_material" /> </LinearLayout>
Add alternatives to bob databrowser widget
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension-point id="widgets" name="Display Builder Widget Model"/> <extension point="org.csstudio.display.builder.model.widgets"> <widget category="PLOT" class="org.csstudio.trends.databrowser3.bobwidget.DataBrowserWidget" description="DataBrowser 3 widget" icon="platform:/plugin/org.csstudio.trends.databrowser3.bobwidget/icons/databrowser.png" name="DataBrowser 3" type="databrowser"> </widget> </extension> <extension point="org.csstudio.display.builder.representation.widgets"> <representation class="org.csstudio.trends.databrowser3.bobwidget.DataBrowserWidgetJFX" type="databrowser"> </representation> </extension> </plugin>
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension-point id="widgets" name="Display Builder Widget Model"/> <extension point="org.csstudio.display.builder.model.widgets"> <widget category="PLOT" class="org.csstudio.trends.databrowser3.bobwidget.DataBrowserWidget" description="DataBrowser 3 widget" icon="platform:/plugin/org.csstudio.trends.databrowser3.bobwidget/icons/databrowser.png" name="DataBrowser 3" type="databrowser"> <alternates type="org.csstudio.trends.databrowser.opiwidget"> </alternates> </widget> </extension> <extension point="org.csstudio.display.builder.representation.widgets"> <representation class="org.csstudio.trends.databrowser3.bobwidget.DataBrowserWidgetJFX" type="databrowser"> </representation> </extension> </plugin>
Convert slashes to portable form.
<!-- Copyright (C) 2014 Dell, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, 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. --> <config> <doradus-host>localhost</doradus-host> <doradus-port>1123</doradus-port> <output-enabled>true</output-enabled> <response-format>xml</response-format> <DEFINE name="tests.root" value=".\src\main\regression-tests"/> <test-suite root="${tests.root}"> <include> </include> <exclude> </exclude> </test-suite> <report>${tests.root}\report.html</report> <log>${tests.root}\log.txt</log> </config>
<!-- Copyright (C) 2014 Dell, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, 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. --> <config> <doradus-host>localhost</doradus-host> <doradus-port>1123</doradus-port> <output-enabled>true</output-enabled> <response-format>xml</response-format> <DEFINE name="tests.root" value="./src/main/regression-tests"/> <test-suite root="${tests.root}"> <include> </include> <exclude> </exclude> </test-suite> <report>${tests.root}/report.html</report> <log>${tests.root}/log.txt</log> </config>
Fix load of css in l10n_nl_tax_statement
<?xml version="1.0" encoding="utf-8"?> <odoo> <template id="assets_specific" inherit_id="report.assets_common"> <xpath expr="." position="inside"> <link href="/l10n_nl_tax_statement/static/src/css/report.css" rel="stylesheet"/> </xpath> </template> <template id="l10n_nl_tax_statement.internal_layout"> <div class="header"> <div class="row"> <div class="col-xs-6"> <span t-esc="title"/> </div> <div class="col-xs-6 text-right"> <span t-esc="company_name"/> </div> </div> </div> <t t-raw="0" /> <div class="footer"> <div class="row"> <div class="col-xs-6 custom_footer"> <span>Printed: </span> <span t-esc="context_timestamp(datetime.datetime.now()).strftime('%Y-%m-%d %H:%M')"/> </div> <div class="col-xs-6 text-right custom_footer"> <ul class="list-inline"> <li><span class="page"/></li> <li>/</li> <li><span class="topage"/></li> </ul> </div> </div> </div> </template> </odoo>
<?xml version="1.0" encoding="utf-8"?> <odoo> <template id="assets_common" name="l10n_nl_tax_statement pdf assets" inherit_id="web.report_assets_common"> <xpath expr="." position="inside"> <link href="/l10n_nl_tax_statement/static/src/css/report.css" rel="stylesheet"/> </xpath> </template> <template id="l10n_nl_tax_statement.internal_layout"> <div class="header"> <div class="row"> <div class="col-xs-6"> <span t-esc="title"/> </div> <div class="col-xs-6 text-right"> <span t-esc="company_name"/> </div> </div> </div> <t t-raw="0" /> <div class="footer"> <div class="row"> <div class="col-xs-6 custom_footer"> <span>Printed: </span> <span t-esc="context_timestamp(datetime.datetime.now()).strftime('%Y-%m-%d %H:%M')"/> </div> <div class="col-xs-6 text-right custom_footer"> <ul class="list-inline"> <li><span class="page"/></li> <li>/</li> <li><span class="topage"/></li> </ul> </div> </div> </div> </template> </odoo>
Include usage pages for Javadoc
<project> <target name="doc" description="generate documentation"> <javadoc destdir="${doc.dir}" overview="${overview}" windowtitle="Cronet API" nohelp="yes" notree="yes" nodeprecated="yes" linkoffline="https://developer.android.com/reference ." bootclasspath="../../../../third_party/android_tools/sdk/platforms/android-22/android.jar" > <fileset dir="${source.dir}" defaultexcludes="yes"> <include name="**/*.java"/> <!-- exclude legacy API --> <exclude name="**/Chromium*.java"/> <exclude name="**/ChunkedWritableByteChannel*.java"/> <exclude name="**/HttpUrl*.java"/> </fileset> </javadoc> </target> </project>
<project> <target name="doc" description="generate documentation"> <javadoc destdir="${doc.dir}" overview="${overview}" windowtitle="Cronet API" nohelp="yes" notree="yes" nodeprecated="yes" linkoffline="https://developer.android.com/reference ." bootclasspath="../../../../third_party/android_tools/sdk/platforms/android-22/android.jar" use="true" > <fileset dir="${source.dir}" defaultexcludes="yes"> <include name="**/*.java"/> <!-- exclude legacy API --> <exclude name="**/Chromium*.java"/> <exclude name="**/ChunkedWritableByteChannel*.java"/> <exclude name="**/HttpUrl*.java"/> </fileset> </javadoc> </target> </project>
Fix JAX-RS provider issue with WF 11.
<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <servlet-mapping> <servlet-name>javax.ws.rs.core.Application</servlet-name> <url-pattern>/rest/*</url-pattern> </servlet-mapping> <servlet> <servlet-name>ErraiServlet</servlet-name> <servlet-class>org.jboss.errai.bus.server.servlet.DefaultBlockingServlet</servlet-class> <init-param> <param-name>service-locator</param-name> <param-value>org.jboss.errai.cdi.server.CDIServiceLocator</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>ErraiServlet</servlet-name> <url-pattern>*.erraiBus</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"> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <context-param> <param-name>resteasy.use.builtin.providers</param-name> <param-value>false</param-value> </context-param> <servlet-mapping> <servlet-name>javax.ws.rs.core.Application</servlet-name> <url-pattern>/rest/*</url-pattern> </servlet-mapping> <servlet> <servlet-name>ErraiServlet</servlet-name> <servlet-class>org.jboss.errai.bus.server.servlet.DefaultBlockingServlet</servlet-class> <init-param> <param-name>service-locator</param-name> <param-value>org.jboss.errai.cdi.server.CDIServiceLocator</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>ErraiServlet</servlet-name> <url-pattern>*.erraiBus</url-pattern> </servlet-mapping> </web-app>
Add light parameters, command, description
<tool id="metaplan2" name="Taxonomic profiling"> <description>with MetaPhlAn</description> <macros> </macros> <requirements> </requirements> <stdio> </stdio> <version_command></version_command> <!--<command>--> <command> metaphlan2/metaphlan2.py $input_file $output_file --mpa_pkl metaphlan2/db_v20/mpa_v20_m200.pkl --bowtie2db metaphlan2/db_v20/mpa_v20_m200 --input_type automatic </command> <inputs> <param name="input_file" type="data" format="fastq,fasta" label="Input file" help=""/> </inputs> <outputs> <outputs> <data format="text" name="output_file" label="metaphlan_outputs_${input_file}.txt"> </outputs> </outputs> <tests> </tests> <help> **What it does** MetaPhlAn is a tool for profiling the composition of microbial communities (Bacteria, Archaea, Eukaryotes and Viruses) from metagenomic shotgun sequencing data with species level resolution. .. _Read more about the tool: https://bitbucket.org/biobakery/metaphlan2/ **Input** A single file is the input. It can be: - a fastq file containing metagenomic reads - a BowTie2 produced SAM file. - an intermediary mapping file of the metagenome generated by a previous MetaPhlAn run filtered shotgun sequencing metagenome file (fastq, fastq.gz, fasta, or fasta.gz format) **Outputs** MetaPhlAn creates one tab-separated output file of the predicted taxon relative abundances **Parameters** </help> <citations> </citations> </tool>
Include Legacy in aggregator POM
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.bonej</groupId> <artifactId>bonej-aggregator</artifactId> <version>3.1.0-SNAPSHOT</version> <packaging>pom</packaging> <modules> <module>Modern</module> </modules> <properties> <maven.deploy.skip>true</maven.deploy.skip> </properties> <profiles> <profile> <id>legacy</id> <modules> <module>Legacy</module> </modules> </profile> </profiles> </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>org.bonej</groupId> <artifactId>bonej-aggregator</artifactId> <version>4.0.0</version> <packaging>pom</packaging> <modules> <module>Modern</module> <module>Legacy</module> </modules> <properties> <maven.deploy.skip>true</maven.deploy.skip> </properties> </project>
Add repository information so we don't need the project module on disk for be able to build
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.graphwalker</groupId> <artifactId>graphwalker-project</artifactId> <version>3.0.0-SNAPSHOT</version> <relativePath>../graphwalker-project/pom.xml</relativePath> </parent> <artifactId>graphwalker-core</artifactId> <name>GraphWalker Core</name> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.graphwalker</groupId> <artifactId>graphwalker-project</artifactId> <version>3.0.0-SNAPSHOT</version> <relativePath>../graphwalker-project/pom.xml</relativePath> </parent> <artifactId>graphwalker-core</artifactId> <name>GraphWalker Core</name> <repositories> <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
Update to use Java 1.8
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.mikera</groupId> <artifactId>magic</artifactId> <version>0.0.1-SNAPSHOT</version> <dependencies> <dependency> <groupId>org.clojure</groupId> <artifactId>clojure</artifactId> <version>1.8.0-alpha2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.mikera</groupId> <artifactId>magic</artifactId> <version>0.0.1-SNAPSHOT</version> <dependencies> <dependency> <groupId>org.clojure</groupId> <artifactId>clojure</artifactId> <version>1.8.0-alpha2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>
Move namespace definitions to root element and collapse empty tags
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> <env:Header/> <env:Body> <opc:getCertificatein xmlns:opc="http://mlp.op.fi/OPCertificateService"> <opc:RequestHeader> <opc:SenderId></opc:SenderId> <opc:RequestId></opc:RequestId> <opc:Timestamp></opc:Timestamp> </opc:RequestHeader> <opc:ApplicationRequest></opc:ApplicationRequest> </opc:getCertificatein> </env:Body> </env:Envelope>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:opc="http://mlp.op.fi/OPCertificateService"> <env:Header/> <env:Body> <opc:getCertificatein> <opc:RequestHeader> <opc:SenderId/> <opc:RequestId/> <opc:Timestamp/> </opc:RequestHeader> <opc:ApplicationRequest/> </opc:getCertificatein> </env:Body> </env:Envelope>
Update ModAnalyzer to build with Forge 7.8.0
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>agaricus.mods</groupId> <artifactId>ModAnalyzer</artifactId> <version>1.0-SNAPSHOT</version> <name>ModAnalyzer</name> <url>http://github.com/agaricusb/ModAnalyzer</url> <parent> <groupId>net.md-5</groupId> <artifactId>ForgeMod</artifactId> <version>1.5.1-7.7.1-SNAPSHOT</version> </parent> <repositories> <repository> <id>sonatype-oss-public</id> <url>https://oss.sonatype.org/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>agaricus.mods</groupId> <artifactId>ModAnalyzer</artifactId> <version>1.0-SNAPSHOT</version> <name>ModAnalyzer</name> <url>http://github.com/agaricusb/ModAnalyzer</url> <parent> <groupId>net.md-5</groupId> <artifactId>ForgeMod</artifactId> <version>1.5.2-7.8.0-SNAPSHOT</version> </parent> <repositories> <repository> <id>sonatype-oss-public</id> <url>https://oss.sonatype.org/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> </project>
Increase edit summary height to three lines.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/edit_summary_container" android:layout_width="match_parent" android:layout_height="match_parent" android:background="?attr/paper_color" android:orientation="vertical" android:padding="8dp" android:visibility="gone" tools:visibility="visible"> <com.google.android.material.textfield.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/edit_summary_tag_other_hint"> <AutoCompleteTextView android:id="@+id/edit_summary_edit" android:layout_width="match_parent" android:layout_height="wrap_content" android:imeOptions="actionDone|flagNoExtractUi" android:maxLength="255" android:maxLines="1" android:paddingStart="16dp" android:paddingEnd="16dp" android:textColor="?attr/primary_text_color" /> </com.google.android.material.textfield.TextInputLayout> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/edit_summary_container" android:layout_width="match_parent" android:layout_height="match_parent" android:background="?attr/paper_color" android:orientation="vertical" android:padding="8dp" android:visibility="gone" tools:visibility="visible"> <com.google.android.material.textfield.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/edit_summary_tag_other_hint"> <AutoCompleteTextView android:id="@+id/edit_summary_edit" android:layout_width="match_parent" android:layout_height="wrap_content" android:imeOptions="actionDone|flagNoExtractUi" android:maxLength="255" android:maxLines="3" android:paddingStart="16dp" android:paddingEnd="16dp" android:textColor="?attr/primary_text_color" /> </com.google.android.material.textfield.TextInputLayout> </LinearLayout>
Introduce legacy-clients build profile for applet client
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.openecard</groupId> <artifactId>app</artifactId> <version>1.1.0-SNAPSHOT</version> </parent> <groupId>org.openecard</groupId> <artifactId>clients</artifactId> <packaging>pom</packaging> <name>Client Implementations</name> <modules> <module>applet</module> <module>richclient</module> </modules> <profiles> <profile> <id>android</id> <activation> <!-- activate android when sdk path is defined --> <property> <name>env.ANDROID_HOME</name> </property> </activation> <modules> <module>android</module> </modules> </profile> </profiles> </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>org.openecard</groupId> <artifactId>app</artifactId> <version>1.1.0-SNAPSHOT</version> </parent> <groupId>org.openecard</groupId> <artifactId>clients</artifactId> <packaging>pom</packaging> <name>Client Implementations</name> <modules> <module>richclient</module> </modules> <profiles> <profile> <id>android</id> <activation> <!-- activate android when sdk path is defined --> <property> <name>env.ANDROID_HOME</name> </property> </activation> <modules> <module>android</module> </modules> </profile> <profile> <id>legacy-clients</id> <modules> <module>applet</module> </modules> </profile> </profiles> </project>
Update to support new search api
<?xml version="1.0" encoding="UTF-8"?> <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"> <ShortName>Connexions</ShortName> <Description>Connexions</Description> <Tags>educational open content</Tags> <Contact>cnx@cnx.org</Contact> <Url type="text/html" method="get" template="http://cnx.org/content/search?words={searchTerms}" /> <Image height="64" width="64" type="image/png">/images/cnx-64x64.png</Image> <Query role="example" searchTerms="DSP" /> <Attribution>Creative Commons Attribution License</Attribution> <SyndicationRight>open</SyndicationRight> <AdultContent>false</AdultContent> <Language>en-us</Language> <OutputEncoding>UTF-8</OutputEncoding> <InputEncoding>UTF-8</InputEncoding> </OpenSearchDescription>
<?xml version="1.0" encoding="UTF-8"?> <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"> <ShortName>Connexions</ShortName> <Description>Connexions</Description> <Tags>educational open content</Tags> <Contact>cnx@cnx.org</Contact> <Url type="text/html" method="get" template="http://cnx.org/search?q={searchTerms}" /> <Image height="64" width="64" type="image/png">/images/cnx-64x64.png</Image> <Query role="example" searchTerms="DSP" /> <Attribution>Creative Commons Attribution License</Attribution> <SyndicationRight>open</SyndicationRight> <AdultContent>false</AdultContent> <Language>en-us</Language> <OutputEncoding>UTF-8</OutputEncoding> <InputEncoding>UTF-8</InputEncoding> </OpenSearchDescription>
Add Missing Dependency for build
<?xml version="1.0"?> <!-- This file is only used to enable the building librealsense --> <!-- as a debian package for use with ROS (http://ros.org) --> <!-- via catkin_make (which invokes cmake) --> <package format="2"> <name>librealsense</name> <!-- The version tag needs to be updated with each new release of librealsense --> <version>0.9.2</version> <description> This project is a cross-platform library (Linux, OSX, Windows) for capturing data from the Intel(R) RealSense(TM) F200, SR300 and R200 cameras. This effort was initiated to better support researchers, creative coders, and app developers in domains such as robotics, virtual reality, and the internet of things. Several often-requested features of RealSense(TM); devices are implemented in this project, including multi-camera capture. </description> <maintainer email="sergey.dorodnicov@intel.com">Sergey Dorodnicov</maintainer> <maintainer email="mark.d.horn@intel.com">Mark Horn</maintainer> <maintainer email="reagan.lopez@intel.com">Reagan Lopez</maintainer> <url type="website">https://github.com/IntelRealSense/librealsense/</url> <license>Apache License, Version 2.0</license> <buildtool_depend>catkin</buildtool_depend> <depend>libusb-1.0-dev</depend> </package>
<?xml version="1.0"?> <!-- This file is only used to enable the building librealsense --> <!-- as a debian package for use with ROS (http://ros.org) --> <!-- via catkin_make (which invokes cmake) --> <package format="2"> <name>librealsense</name> <!-- The version tag needs to be updated with each new release of librealsense --> <version>0.9.2</version> <description> This project is a cross-platform library (Linux, OSX, Windows) for capturing data from the Intel(R) RealSense(TM) F200, SR300 and R200 cameras. This effort was initiated to better support researchers, creative coders, and app developers in domains such as robotics, virtual reality, and the internet of things. Several often-requested features of RealSense(TM); devices are implemented in this project, including multi-camera capture. </description> <maintainer email="sergey.dorodnicov@intel.com">Sergey Dorodnicov</maintainer> <maintainer email="mark.d.horn@intel.com">Mark Horn</maintainer> <maintainer email="reagan.lopez@intel.com">Reagan Lopez</maintainer> <url type="website">https://github.com/IntelRealSense/librealsense/</url> <license>Apache License, Version 2.0</license> <buildtool_depend>catkin</buildtool_depend> <build_depend>pkg-config</build_depend> <depend>libusb-1.0-dev</depend> </package>
Include common annotations in the annotations bundle
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>net.spals.appbuilder</groupId> <artifactId>spals-appbuilder-parent</artifactId> <version>0.6.1-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>net.spals.appbuilder</groupId> <artifactId>spals-appbuilder-annotations</artifactId> <version>0.6.1-SNAPSHOT</version> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> </dependencies> </project>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>net.spals.appbuilder</groupId> <artifactId>spals-appbuilder-parent</artifactId> <version>0.6.1-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>net.spals.appbuilder</groupId> <artifactId>spals-appbuilder-annotations</artifactId> <version>0.6.1-SNAPSHOT</version> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <!-- Include common annotations in the bundle --> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-assistedinject</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.netflix.governator</groupId> <artifactId>governator-api</artifactId> <scope>runtime</scope> </dependency> </dependencies> </project>
Update Zeppelin version on Ambari-2.5 from 0.6.2 to 0.7.0 (Prabhjyot Singh via r-kamath)
<?xml version="1.0"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (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. --> <metainfo> <schemaVersion>2.0</schemaVersion> <services> <service> <name>ZEPPELIN</name> <version>0.6.2</version> </service> </services> </metainfo>
<?xml version="1.0"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (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. --> <metainfo> <schemaVersion>2.0</schemaVersion> <services> <service> <name>ZEPPELIN</name> <version>0.7.0</version> </service> </services> </metainfo>
Change Atom template: use url for single instance installation
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom" xmlns:fh="http://purl.org/syndication/history/1.0" xmlns:dct="http://purl.org/dc/terms/"> <id>{{feed_id}}</id> <updated>{{last_updated}}</updated> <fh:complete/> <title xml:lang="sv">{{feed_title}}</title> <author> <name>{{feed_contact_name}}</name> <uri>{{feed_contact_url}}</uri> <email>{{feed_contact_email}}</email> </author> <link href="{{fst_instance_url}}/feed/" rel="self"/> {% for entry in entries %} {{entry.to_entryxml}} {% endfor %} </feed>
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom" xmlns:fh="http://purl.org/syndication/history/1.0" xmlns:dct="http://purl.org/dc/terms/"> <id>{{feed_id}}</id> <updated>{{last_updated}}</updated> <fh:complete/> <title xml:lang="sv">{{feed_title}}</title> <author> <name>{{feed_contact_name}}</name> <uri>{{feed_contact_url}}</uri> <email>{{feed_contact_email}}</email> </author> <link href="{{fst_site_url}}/feed/" rel="self"/> {% for entry in entries %} {{entry.to_entryxml}} {% endfor %} </feed>
Add Linux to addin build platforms
<AddinProject appVersion="5.0"> <Project platforms="Win32 Mac"> <AddinFile>bin/Debug/MonoDevelop.AddinMaker.dll</AddinFile> <BuildFile>MonoDevelop.AddinMaker.sln</BuildFile> <BuildConfiguration>Debug</BuildConfiguration> </Project> </AddinProject>
<AddinProject appVersion="5.0"> <Project platforms="Win32 Mac Linux"> <AddinFile>bin/Debug/MonoDevelop.AddinMaker.dll</AddinFile> <BuildFile>MonoDevelop.AddinMaker.sln</BuildFile> <BuildConfiguration>Debug</BuildConfiguration> </Project> </AddinProject>
Make test logs not append
<?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="TESTFILE" class="ch.qos.logback.core.FileAppender"> <file>${log.file:-build/test.log}</file> <append>true</append> <encoder> <pattern>%-5level %logger{24} - %msg%n</pattern> </encoder> </appender> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <filter class="ch.qos.logback.classic.filter.LevelFilter"> <level>${console.log.level:-WARN}</level> <onMatch>ACCEPT</onMatch> <onMismatch>DENY</onMismatch> </filter> <target>System.err</target> <encoder> <pattern>%-5level %logger{24} - %msg%n</pattern> </encoder> </appender> <logger name="org.grouplens.grapht" level="INFO"/> <root level="${log.level:-DEBUG}"> <appender-ref ref="TESTFILE"/> <appender-ref ref="CONSOLE"/> </root> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="TESTFILE" class="ch.qos.logback.core.FileAppender"> <file>${log.file:-build/test.log}</file> <append>false</append> <encoder> <pattern>%-5level %logger{24} - %msg%n</pattern> </encoder> </appender> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <filter class="ch.qos.logback.classic.filter.LevelFilter"> <level>${console.log.level:-WARN}</level> <onMatch>ACCEPT</onMatch> <onMismatch>DENY</onMismatch> </filter> <target>System.err</target> <encoder> <pattern>%-5level %logger{24} - %msg%n</pattern> </encoder> </appender> <logger name="org.grouplens.grapht" level="INFO"/> <root level="${log.level:-DEBUG}"> <appender-ref ref="TESTFILE"/> <appender-ref ref="CONSOLE"/> </root> </configuration>
Move registration of App plugin from config.xml -> code
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, 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. --> <widget xmlns = "http://www.w3.org/ns/widgets" id = "io.cordova.helloCordova" version = "2.0.0"> <!-- Preferences for Android --> <preference name="loglevel" value="DEBUG" /> <!-- This is required for native Android hooks --> <feature name="App"> <param name="android-package" value="org.apache.cordova.App" /> </feature> </widget>
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <widget xmlns = "http://www.w3.org/ns/widgets" id = "io.cordova.helloCordova" version = "2.0.0"> <!-- Preferences for Android --> <preference name="loglevel" value="DEBUG" /> </widget>
Update version code and name
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="jp.peo3.android.intentspooler" android:versionCode="3" android:versionName="1.2" > <uses-sdk android:minSdkVersion="8" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name"> <activity android:name=".IntentSpoolerList" android:label="@string/app_name_list" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".IntentSpoolerReceiver" android:label="@string/app_name_receiver" > <intent-filter> <action android:name="android.intent.action.SEND"/> <action android:name="android.intent.action.SENDTO"/> <data android:mimeType="text/*"/> <category android:name="android.intent.category.DEFAULT"/> <data android:mimeType="image/*" /> </intent-filter> </activity> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="jp.peo3.android.intentspooler" android:versionCode="4" android:versionName="1.3" > <uses-sdk android:minSdkVersion="8" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name"> <activity android:name=".IntentSpoolerList" android:label="@string/app_name_list" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".IntentSpoolerReceiver" android:label="@string/app_name_receiver" > <intent-filter> <action android:name="android.intent.action.SEND"/> <action android:name="android.intent.action.SENDTO"/> <data android:mimeType="text/*"/> <category android:name="android.intent.category.DEFAULT"/> <data android:mimeType="image/*" /> </intent-filter> </activity> </application> </manifest>
Remove `subscribers_last_week` field from XML template.
<podcasts> {% for podcast in podcasts %} <podcast> <title>{{ podcast.title|default:"" }}</title> <url>{{ podcast.url }}</url> <website>{{ podcast.website|default:"" }}</website> <mygpo_link>{{ podcast.mygpo_link }}</mygpo_link> <author>{{ podcast.author|default:"" }}</author> <description>{{ podcast.description|default:"" }}</description> <subscribers>{{ podcast.subscribers }}</subscribers> <subscribers_last_week>{{ podcast.subscribers_last_week }}</subscribers_last_week> <logo_url>{{ podcast.logo_url|default:"" }}</logo_url> <scaled_logo_url>{{ podcast.scaled_logo_url }}</scaled_logo_url> </podcast> {% endfor %} </podcasts>
<podcasts> {% for podcast in podcasts %} <podcast> <title>{{ podcast.title|default:"" }}</title> <url>{{ podcast.url }}</url> <website>{{ podcast.website|default:"" }}</website> <mygpo_link>{{ podcast.mygpo_link }}</mygpo_link> <author>{{ podcast.author|default:"" }}</author> <description>{{ podcast.description|default:"" }}</description> <subscribers>{{ podcast.subscribers }}</subscribers> <logo_url>{{ podcast.logo_url|default:"" }}</logo_url> <scaled_logo_url>{{ podcast.scaled_logo_url }}</scaled_logo_url> </podcast> {% endfor %} </podcasts>
Remove vestiges of Subversion; switch to Git.
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="AntConfiguration"> <defaultAnt bundledAnt="true" /> <buildFile url="file://$PROJECT_DIR$/rearranger.xml"> <additionalClassPath /> <antReference projectDefault="true" /> <customJdkName value="" /> <maximumHeapSize value="128" /> <maximumStackSize value="2" /> <properties /> </buildFile> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4" />
Make labels more legible on large lists of devices
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="@color/shaded_background"/> <padding android:bottom="4dp" android:left="12dp" android:right="12dp" android:top="4dp"/> <corners android:radius="2dp"/> </shape>
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#8222"/> <padding android:bottom="4dp" android:left="12dp" android:right="12dp" android:top="4dp"/> <corners android:radius="2dp"/> </shape>
Fix content description on the nav rail.
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright (C) 2021 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/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. --> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/nav_tasks" android:contentDescription="@string/archive" android:title="@string/tasks" android:icon="@drawable/ic_task" /> <item android:id="@+id/nav_archives" android:contentDescription="@string/archive" android:title="@string/archive" android:icon="@drawable/ic_archive" /> <item android:id="@+id/nav_settings" android:contentDescription="@string/settings" android:title="@string/settings" android:icon="@drawable/ic_settings"/> </menu>
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright (C) 2021 The Android Open Source Project ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/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. --> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/nav_tasks" android:contentDescription="@string/tasks" android:title="@string/tasks" android:icon="@drawable/ic_task" /> <item android:id="@+id/nav_archives" android:contentDescription="@string/archive" android:title="@string/archive" android:icon="@drawable/ic_archive" /> <item android:id="@+id/nav_settings" android:contentDescription="@string/settings" android:title="@string/settings" android:icon="@drawable/ic_settings"/> </menu>
Remove the snmp-config.xml overriding parameters. Best use of these are when used to create a specific package that collects from an addtional agent on systems and the snmp-confg parameters need to be overridden.
<?xml version="1.0"?> <?castor class-name="org.opennms.netmgt.collectd.CollectdConfiguration"?> <collectd-configuration threads="50"> <package name="example1"> <filter>IPADDR IPLIKE *.*.*.*</filter> <specific>0.0.0.0</specific> <include-range begin="1.1.1.1" end="254.254.254.254"/> <include-url>file:@install.etc.dir@/include</include-url> <service name="SNMP" interval="300000" user-defined="false" status="on"> <parameter key="collection" value="default"/> <parameter key="port" value="161"/> <parameter key="retry" value="3"/> <parameter key="timeout" value="3000"/> </service> <outage-calendar>zzz from poll-outages.xml zzz</outage-calendar> </package> <collector service="SNMP" class-name="org.opennms.netmgt.collectd.SnmpCollector"/> </collectd-configuration>
<?xml version="1.0"?> <?castor class-name="org.opennms.netmgt.collectd.CollectdConfiguration"?> <collectd-configuration threads="50"> <package name="example1"> <filter>IPADDR IPLIKE *.*.*.*</filter> <specific>0.0.0.0</specific> <include-range begin="1.1.1.1" end="254.254.254.254"/> <include-url>file:@install.etc.dir@/include</include-url> <service name="SNMP" interval="300000" user-defined="false" status="on"> <parameter key="collection" value="default"/> </service> <outage-calendar>zzz from poll-outages.xml zzz</outage-calendar> </package> <collector service="SNMP" class-name="org.opennms.netmgt.collectd.SnmpCollector"/> </collectd-configuration>
Add text for Refresh button
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">Sunshine</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <!-- TODO: Remove or change this placeholder text --> <string name="hello_blank_fragment">Hello blank fragment</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">Sunshine</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <!-- TODO: Remove or change this placeholder text --> <string name="hello_blank_fragment">Hello blank fragment</string> <string name="action_refresh">Refresh</string> </resources>
Add ignore for new getLock method in JobLockService.
<differences> <!-- We've intentionally added new getter methods to ServiceRegistry --> <difference> <className>**/ServiceRegistry</className> <field>**</field> <method>* get*</method> <differenceType>7012</differenceType> </difference> <!-- getBlocklist method was added to fix MNT-13731, product provides implementation --> <difference> <className>org/alfresco/repo/content/transform/TransformerConfig</className> <method>* getBlacklist*</method> <differenceType>7012</differenceType> </difference> <!-- listSiteMemberships method was added for performance reasons, product provides implementation --> <difference> <className>org/alfresco/service/cmr/site/SiteService</className> <method>* listSiteMemberships*</method> <differenceType>7012</differenceType> </difference> </differences>
<differences> <!-- We've intentionally added new getter methods to ServiceRegistry --> <difference> <className>**/ServiceRegistry</className> <field>**</field> <method>* get*</method> <differenceType>7012</differenceType> </difference> <!-- getBlocklist method was added to fix MNT-13731, product provides implementation --> <difference> <className>org/alfresco/repo/content/transform/TransformerConfig</className> <method>* getBlacklist*</method> <differenceType>7012</differenceType> </difference> <!-- listSiteMemberships method was added for performance reasons, product provides implementation --> <difference> <className>org/alfresco/service/cmr/site/SiteService</className> <method>* listSiteMemberships*</method> <differenceType>7012</differenceType> </difference> <!-- getLock method was added for MNT-14526, product provides implementation --> <difference> <className>org/alfresco/repo/lock/JobLockService</className> <method>* getLock*</method> <differenceType>7012</differenceType> </difference> </differences>
Update restx.io version to 0.32
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.vino</groupId> <artifactId>vino-parent</artifactId> <packaging>pom</packaging> <version>1.0-SNAPSHOT</version> <properties> <restx.version>0.31</restx.version> </properties> <modules> <module>vino-common</module> <module>vino-srv</module> <module>vino-mobile</module> </modules> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.vino</groupId> <artifactId>vino-parent</artifactId> <packaging>pom</packaging> <version>1.0-SNAPSHOT</version> <properties> <restx.version>0.32.alpha4</restx.version> </properties> <modules> <module>vino-common</module> <module>vino-srv</module> <module>vino-mobile</module> </modules> </project>
Add SLF4J simple dependency to POM file
<project> <modelVersion>4.0.0</modelVersion> <groupId>groupId</groupId> <artifactId>job-scheduler</artifactId> <version>1</version> <dependencies> <!-- https://mvnrepository.com/artifact/org.json/json --> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-server</artifactId> <version>1.16</version> </dependency> <dependency> <groupId>com.github.oshi</groupId> <artifactId>oshi-core</artifactId> <version>3.4.2</version> </dependency> </dependencies> <packaging>war</packaging> </project>
<project> <modelVersion>4.0.0</modelVersion> <groupId>groupId</groupId> <artifactId>job-scheduler</artifactId> <version>1</version> <dependencies> <!-- https://mvnrepository.com/artifact/org.json/json --> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> </dependency> <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.25</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-server</artifactId> <version>1.16</version> </dependency> <dependency> <groupId>com.github.oshi</groupId> <artifactId>oshi-core</artifactId> <version>3.4.2</version> </dependency> </dependencies> <packaging>war</packaging> </project>
Update Maven version for API 7.x development
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.hp.caf.codec</groupId> <artifactId>codec-json</artifactId> <version>6.0</version> <parent> <groupId>com.hp.caf</groupId> <artifactId>caf-maven</artifactId> <version>1</version> </parent> <dependencies> <dependency> <groupId>com.hp.caf</groupId> <artifactId>caf-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.databind.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.hp.caf.codec</groupId> <artifactId>codec-json</artifactId> <version>7.0-SNAPSHOT</version> <parent> <groupId>com.hp.caf</groupId> <artifactId>caf-maven</artifactId> <version>3</version> </parent> <dependencies> <dependency> <groupId>com.hp.caf</groupId> <artifactId>caf-api</artifactId> <version>7.0-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.databind.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
Fix wrong dependency injection of ShariffShareBlockService
<?xml version="1.0" encoding="UTF-8"?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <services> <service id="core23_shariff.block.share" class="Core23\ShariffBundle\Block\Service\ShariffShareBlockService"> <tag name="sonata.block"/> <argument type="service" id="sonata.templating"/> </service> </services> </container>
<?xml version="1.0" encoding="UTF-8"?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> <services> <service id="core23_shariff.block.share" class="Core23\ShariffBundle\Block\Service\ShariffShareBlockService"> <tag name="sonata.block"/> <argument type="service" id="twig"/> </service> </services> </container>
Add INTERNET permission so that getInetAddress() works
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cc.mvdan.libaccesspointexample" android:installLocation="auto" > <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <uses-permission android:name="android.permission.WRITE_APN_SETTINGS" /> <application android:name=".MainApplication" android:allowBackup="true" 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> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cc.mvdan.libaccesspointexample" android:installLocation="auto" > <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.WRITE_APN_SETTINGS" /> <application android:name=".MainApplication" android:allowBackup="true" 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> </application> </manifest>
Remove locationbar_height value, and increace actionbar_height slightly
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2011 That Amazing Web Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <resources> <dimen name="actionbar_height">45dip</dimen> <dimen name="locationbar_height">100dip</dimen> </resources>
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2011 That Amazing Web Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <resources> <dimen name="actionbar_height">47dip</dimen> </resources>
Whitelist all network traffic for testing in simulator
<?xml version='1.0' encoding='utf-8'?> <widget id="com.ionicframework.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>Environmental Hazards</name> <description> An application for tracking environmental hazards in your area. </description> <author email="contact.pavlovic@gmail.com" href="https://github.com/Markonis"> Marko Pavlovic </author> <content src="index.html" /> <access origin="*" /> <preference name="webviewbounce" value="false" /> <preference name="UIWebViewBounce" value="false" /> <preference name="DisallowOverscroll" value="true" /> <!-- 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.ionicframework.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>Environmental Hazards</name> <description> An application for tracking environmental hazards in your area. </description> <author email="contact.pavlovic@gmail.com" href="https://github.com/Markonis"> Marko Pavlovic </author> <content src="index.html" /> <access origin="*" /> <preference name="webviewbounce" value="false" /> <preference name="UIWebViewBounce" value="false" /> <preference name="DisallowOverscroll" value="true" /> <!-- 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" /> <!-- Whitelist all network traffic for testing --> <allow-navigation href="*" /> <feature name="StatusBar"> <param name="ios-package" value="CDVStatusBar" onload="true" /> </feature> </widget>
Fix view. * Add col-xs-12 to input
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2016 LasLabs Inc. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). --> <odoo> <template id="patient_detail" inherit_id="website_portal_medical_patient.patient_detail"> <xpath expr="//div[div[label[@for='gender']]]" position="after"> <div class="form-group"> <div t-attf-class="form-field #{error.get('species_id') and 'has-error' or ''} o_website_form_required_custom"> <label class="control-label label-optional" for="species_id"> Species </label> <select name="species_id" class="form-control o_website_form_input" required=""> <option value="">Species...</option> <t t-foreach="species" t-as="species"> <option t-att-value="species.id" t-att-selected="species.id == patient.species_id.id"> <t t-esc="species.name" /> </option> </t> </select> </div> </div> </xpath> </template> </odoo>
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2016 LasLabs Inc. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). --> <odoo> <template id="patient_detail" inherit_id="website_portal_medical_patient.patient_detail"> <xpath expr="//div[div[label[@for='gender']]]" position="after"> <div class="form-group"> <div t-attf-class="form-field col-xs-12 #{error.get('species_id') and 'has-error' or ''} o_website_form_required_custom"> <label class="control-label label-optional" for="species_id"> Species </label> <select name="species_id" class="form-control o_website_form_input" required=""> <option value="">Species...</option> <t t-foreach="species" t-as="species"> <option t-att-value="species.id" t-att-selected="species.id == patient.species_id.id"> <t t-esc="species.name" /> </option> </t> </select> </div> </div> </xpath> </template> </odoo>
Make suggestion text smaller and ellipsize it if too long
<?xml version="1.0" encoding="utf-8"?> <com.gh4a.widget.StyleableTextView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?selectableItemBackground" android:gravity="center_vertical" android:minHeight="?attr/listPreferredItemHeightSmall" android:padding="8dp" android:textAppearance="?attr/textAppearanceSearchResultTitle" tools:text="some suggestion" />
<?xml version="1.0" encoding="utf-8"?> <com.gh4a.widget.StyleableTextView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?selectableItemBackground" android:gravity="center_vertical" android:minHeight="?attr/listPreferredItemHeightSmall" android:padding="8dp" android:textAppearance="?android:attr/textAppearanceMedium" android:textColor="?android:textColorPrimary" android:ellipsize="middle" tools:text="some suggestion" />
Move zanata-rest-client from common/ to client/
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>common</artifactId> <name>Zanata common modules</name> <packaging>pom</packaging> <parent> <groupId>org.zanata</groupId> <artifactId>zanata-parent</artifactId> <version>1.6.0-alpha-2-SNAPSHOT</version> </parent> <!-- Should be the same as zanata-parent/pom.xml --> <scm> <connection>scm:git:git://github.com/zanata/zanata.git</connection> <developerConnection>scm:git:git@github.com:zanata/zanata.git</developerConnection> <url>https://github.com/zanata/zanata</url> </scm> <modules> <module>zanata-common-api</module> <module>zanata-common-util</module> <module>zanata-rest-client</module> <module>zanata-adapter-po</module> </modules> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>common</artifactId> <name>Zanata common modules</name> <packaging>pom</packaging> <parent> <groupId>org.zanata</groupId> <artifactId>zanata-parent</artifactId> <version>1.6.0-alpha-2-SNAPSHOT</version> </parent> <!-- Should be the same as zanata-parent/pom.xml --> <scm> <connection>scm:git:git://github.com/zanata/zanata.git</connection> <developerConnection>scm:git:git@github.com:zanata/zanata.git</developerConnection> <url>https://github.com/zanata/zanata</url> </scm> <modules> <module>zanata-common-api</module> <module>zanata-common-util</module> <module>zanata-adapter-po</module> </modules> </project>
Update platform 0.9.0 to 0.9.1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>com.axelor</groupId> <artifactId>axelor-erp-parent</artifactId> <version>0.9.0-SNAPSHOT</version> <relativePath>../axelor-parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>axelor-base</artifactId> <name>Axelor :: Base</name> <dependencies> <!-- Axelor-exception --> <dependency> <groupId>com.axelor</groupId> <artifactId>axelor-exception</artifactId> <version>${project.version}</version> </dependency> <!-- Axelor-tool --> <dependency> <groupId>com.axelor</groupId> <artifactId>axelor-tool</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.47</version> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>com.axelor</groupId> <artifactId>axelor-erp-parent</artifactId> <version>0.9.1-SNAPSHOT</version> <relativePath>../axelor-parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>axelor-base</artifactId> <name>Axelor :: Base</name> <dependencies> <!-- Axelor-exception --> <dependency> <groupId>com.axelor</groupId> <artifactId>axelor-exception</artifactId> <version>${project.version}</version> </dependency> <!-- Axelor-tool --> <dependency> <groupId>com.axelor</groupId> <artifactId>axelor-tool</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.47</version> </dependency> </dependencies> </project>
Remove ES configs from BDB & Persistit assemblies
<assembly> <id>${distribution.assembly.name}-${project.version}</id> <baseDirectory>titan-${distribution.assembly.name}-${project.version}</baseDirectory> <formats> <format>zip</format> <format>tar.bz2</format> </formats> <componentDescriptors> <componentDescriptor>common.component.xml</componentDescriptor> <componentDescriptor>readmes.component.xml</componentDescriptor> <componentDescriptor>htmldocs.component.xml</componentDescriptor> </componentDescriptors> <fileSets> <fileSet> <directory>../src/assembly/static/conf</directory> <outputDirectory>/conf</outputDirectory> <includes> <include>titan-*${distribution.assembly.name}*</include> </includes> </fileSet> </fileSets> </assembly>
<assembly> <id>${distribution.assembly.name}-${project.version}</id> <baseDirectory>titan-${distribution.assembly.name}-${project.version}</baseDirectory> <formats> <format>zip</format> <format>tar.bz2</format> </formats> <componentDescriptors> <componentDescriptor>common.component.xml</componentDescriptor> <componentDescriptor>readmes.component.xml</componentDescriptor> <componentDescriptor>htmldocs.component.xml</componentDescriptor> </componentDescriptors> <fileSets> <fileSet> <directory>../src/assembly/static/conf</directory> <outputDirectory>/conf</outputDirectory> <includes> <include>titan-${distribution.assembly.name}.properties</include> </includes> </fileSet> </fileSets> </assembly>