Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Call out Dagger 2.3 incompatibility
<?xml version="1.0" encoding="UTF-8"?> <lint> <issue id="GoogleAppIndexingWarning" severity="ignore" /> <issue id="GradleDependency" severity="ignore" /> <issue id="InvalidPackage"> <ignore regexp="okio-1.6.0.jar" /> <ignore regexp="retrofit-2.0.1.jar" /> </issue> <issue id="NewerVersionAvailable"> <!-- assertj 2.0 and later are not Android API level 23 compatible --> <ignore regexp="org.assertj:assertj-core" /> <ignore regexp="com.google.dagger" /> <!-- Fix this later --> </issue> <issue id="UnusedIds" severity="ignore" /> <issue id="UnusedResources" severity="ignore" /> </lint>
<?xml version="1.0" encoding="UTF-8"?> <lint> <issue id="GoogleAppIndexingWarning" severity="ignore" /> <issue id="GradleDependency" severity="ignore" /> <issue id="InvalidPackage"> <ignore regexp="okio-1.6.0.jar" /> <ignore regexp="retrofit-2.0.1.jar" /> </issue> <issue id="NewerVersionAvailable"> <!-- assertj 2.0 and later are not Android API level 23 compatible --> <ignore regexp="org.assertj:assertj-core" /> <ignore regexp="com.google.dagger" /> <!-- Dagger 2.3 breaks compilation (https://github.com/google/dagger/issues/356) --> </issue> <issue id="UnusedIds" severity="ignore" /> <issue id="UnusedResources" severity="ignore" /> </lint>
Update FGD 2015 for venue availability
<?xml version="1.0" encoding="UTF-8"?> <event> <pagetitle>FedGeoDay</pagetitle> <schedule>0</schedule> <date><![CDATA[June 18<sup>th</sup> 2015]]></date> <address><![CDATA[Woolly Mammoth Theatre<br/> 641 D Street Northwest<br/> Washington, DC 20004]]></address> <eventbrite><![CDATA[//www.eventbrite.com/tickets-external?eid=4653432542&ref=etckt&v=2]]></eventbrite> </event>
<?xml version="1.0" encoding="UTF-8"?> <event> <pagetitle>FedGeoDay</pagetitle> <schedule>0</schedule> <date><![CDATA[October 15<sup>th</sup> 2015]]></date> <address><![CDATA[Woolly Mammoth Theatre<br/> 641 D Street Northwest<br/> Washington, DC 20004]]></address> <eventbrite><![CDATA[//www.eventbrite.com/tickets-external?eid=4653432542&ref=etckt&v=2]]></eventbrite> </event>
Hide Exceptions tab on sale for manual channels
<?xml version="1.0"?> <data> <xpath expr="/form/notebook/page[@id=&quot;other&quot;]/field[@name=&quot;company&quot;]" position="after"> <label name="channel"/> <field name="channel" widget="selection"/> </xpath> <xpath expr="//notebook" position="inside"> <page name="exceptions"> <field name="exceptions"/> </page> </xpath> </data>
<?xml version="1.0"?> <data> <xpath expr="/form/notebook/page[@id=&quot;other&quot;]/field[@name=&quot;company&quot;]" position="after"> <label name="channel"/> <field name="channel" widget="selection"/> </xpath> <xpath expr="//notebook" position="inside"> <page name="exceptions" states="{'invisible': Eval('channel_type') == 'manual'}"> <field name="exceptions"/> </page> </xpath> </data>
Use groupId as base package
#set( $symbol_pound = '#' ) #set( $symbol_dollar = '$' ) #set( $symbol_escape = '\' ) <?xml version="1.0" encoding="UTF-8" ?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd"> <context:component-scan base-package="${package}" /> <!-- Use Spring MVC with annotations --> <mvc:annotation-driven /> </beans>
#set( $symbol_pound = '#' ) #set( $symbol_dollar = '$' ) #set( $symbol_escape = '\' ) <?xml version="1.0" encoding="UTF-8" ?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd"> <context:component-scan base-package="${groupId}" /> <!-- Use Spring MVC with annotations --> <mvc:annotation-driven /> </beans>
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.election</groupId> <artifactId>election-null</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> </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.election</groupId> <artifactId>election-null</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> </dependencies> </project>
Update parent to use groovy 2.1.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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.anrisoftware.globalpom</groupId> <artifactId>globalpom-groovy</artifactId> <version>1.15</version> <relativePath /> </parent> <artifactId>globalpom-utils</artifactId> <version>0.0.1-SNAPSHOT</version> <name>Global POM :: Utilities</name> <description>Various utilities.</description> <dependencies> <dependency> <groupId>com.anrisoftware.globalpom</groupId> <artifactId>globalpom-groovytestutils</artifactId> <version>1.13</version> <scope>test</scope> </dependency> <dependency> <groupId>com.anrisoftware.globalpom</groupId> <artifactId>globalpom-log</artifactId> <version>1.8</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</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> <parent> <groupId>com.anrisoftware.globalpom</groupId> <artifactId>globalpom-groovy</artifactId> <version>1.16-SNAPSHOT</version> <relativePath /> </parent> <artifactId>globalpom-utils</artifactId> <version>0.0.1-SNAPSHOT</version> <name>Global POM :: Utilities</name> <description>Various utilities.</description> <dependencies> <dependency> <groupId>com.anrisoftware.globalpom</groupId> <artifactId>globalpom-groovytestutils</artifactId> <version>1.13</version> <scope>test</scope> </dependency> <dependency> <groupId>com.anrisoftware.globalpom</groupId> <artifactId>globalpom-log</artifactId> <version>1.8</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> </dependencies> </project>
Add INTERNET permission to Android
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.crystalgame" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="18" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name="com.example.crystalgame.communication.CommunicationService" android:enabled="true"> </service> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.crystalgame" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="18" /> <uses-permission android:name="android.permission.INTERNET"></uses-permission> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name="com.example.crystalgame.communication.CommunicationService" android:enabled="true"> </service> </application> </manifest>
Fix dependencies for testing (after / before annotations)
<?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>pl.arivo</groupId> <artifactId>java-xml-image-generator</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>pl.arivo</groupId> <artifactId>java-xml-image-generator</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>
Remove a profile that does not need
<?xml version="1.0" encoding="UTF-8"?> <deviceplugin-provider xmlns:android="http://schemas.android.com/apk/res/android" > <profile name="servicediscovery" /> <profile name="serviceinformation" /> <profile name="system" /> <profile name="file" /> <profile name="mediastream_recording" /> <profile name="settings" /> <profile name="camera" /> </deviceplugin-provider>
<?xml version="1.0" encoding="UTF-8"?> <deviceplugin-provider xmlns:android="http://schemas.android.com/apk/res/android" > <profile name="servicediscovery" /> <profile name="serviceinformation" /> <profile name="system" /> <profile name="mediastream_recording" /> <profile name="camera" /> </deviceplugin-provider>
Add textColor "white" to the text of widget explicitly.
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/background" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/default_bg"> <TextView android:id="@+id/text" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerInParent="true" android:layout_marginStart="5dp" android:layout_marginEnd="5dp" android:gravity="center" android:text="@string/tap_to_change" android:textAlignment="center" android:textAppearance="?android:attr/textAppearanceLarge" /> </RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/background" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/default_bg"> <TextView android:id="@+id/text" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerInParent="true" android:layout_marginStart="5dp" android:layout_marginEnd="5dp" android:gravity="center" android:text="@string/tap_to_change" android:textAlignment="center" android:textColor="@android:color/white" android:textAppearance="?android:attr/textAppearanceLarge" /> </RelativeLayout>
Fix the console default position by adjusting the target id.
<?xml version="1.0" encoding="UTF-8"?> <plugin> <extension point="org.eclipse.ui.perspectiveExtensions"> <perspectiveExtension targetID="de.uni_jena.iaa.linktype.atomic.editors.grapheditor.perspective"> <view ratio="0.8f" moveable="true" relative="org.eclipse.ui.editorss" closeable="true" visible="true" id="org.eclipse.ui.console.ConsoleView" relationship="bottom"> </view> </perspectiveExtension> </extension> <extension point="org.eclipse.ui.console.consoleFactories"> <consoleFactory label="New AtomicAL Console" class="de.uni_jena.iaa.linktype.atomic.atomical.console.AtomicalConsoleFactory"> </consoleFactory> </extension> <extension id="de.uni_jena.iaa.linktype.atomic.atomical.fragment" point="org.eclipse.e4.workbench.model"> <fragment uri="fragment.e4xmi"> </fragment> </extension> </plugin>
<?xml version="1.0" encoding="UTF-8"?> <plugin> <extension point="org.eclipse.ui.perspectiveExtensions"> <perspectiveExtension targetID="org.corpus_tools.atomic.perspectives.navigation"> <view ratio="0.8f" moveable="true" relative="org.eclipse.ui.editorss" closeable="true" visible="true" id="org.eclipse.ui.console.ConsoleView" relationship="bottom"> </view> </perspectiveExtension> </extension> <extension point="org.eclipse.ui.console.consoleFactories"> <consoleFactory label="New AtomicAL Console" class="de.uni_jena.iaa.linktype.atomic.atomical.console.AtomicalConsoleFactory"> </consoleFactory> </extension> <extension id="de.uni_jena.iaa.linktype.atomic.atomical.fragment" point="org.eclipse.e4.workbench.model"> <fragment uri="fragment.e4xmi"> </fragment> </extension> </plugin>
Change description of relative field in input drag event.
<?xml version="1.0" encoding="UTF-8" ?> <class name="InputEventScreenDrag" inherits="InputEvent" version="3.4"> <brief_description> Input event type for screen drag events. Only available on mobile devices. </brief_description> <description> Contains screen drag information. See [method Node._input]. </description> <tutorials> <link>https://docs.godotengine.org/en/3.4/tutorials/inputs/inputevent.html</link> </tutorials> <methods> </methods> <members> <member name="index" type="int" setter="set_index" getter="get_index" default="0"> The drag event index in the case of a multi-drag event. </member> <member name="position" type="Vector2" setter="set_position" getter="get_position" default="Vector2( 0, 0 )"> The drag position. </member> <member name="relative" type="Vector2" setter="set_relative" getter="get_relative" default="Vector2( 0, 0 )"> The drag position relative to its start position. </member> <member name="speed" type="Vector2" setter="set_speed" getter="get_speed" default="Vector2( 0, 0 )"> The drag speed. </member> </members> <constants> </constants> </class>
<?xml version="1.0" encoding="UTF-8" ?> <class name="InputEventScreenDrag" inherits="InputEvent" version="3.4"> <brief_description> Input event type for screen drag events. Only available on mobile devices. </brief_description> <description> Contains screen drag information. See [method Node._input]. </description> <tutorials> <link>https://docs.godotengine.org/en/3.4/tutorials/inputs/inputevent.html</link> </tutorials> <methods> </methods> <members> <member name="index" type="int" setter="set_index" getter="get_index" default="0"> The drag event index in the case of a multi-drag event. </member> <member name="position" type="Vector2" setter="set_position" getter="get_position" default="Vector2( 0, 0 )"> The drag position. </member> <member name="relative" type="Vector2" setter="set_relative" getter="get_relative" default="Vector2( 0, 0 )"> The drag position relative to the previous position (position at the last frame). </member> <member name="speed" type="Vector2" setter="set_speed" getter="get_speed" default="Vector2( 0, 0 )"> The drag speed. </member> </members> <constants> </constants> </class>
Change the splash screen with JURANI logo.
<?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:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:background="@color/colorPrimary"> <TextView android:layout_gravity="center_horizontal" android:layout_marginTop="200dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="50dp" android:textStyle="bold" android:fontFamily="" android:text="@string/app_name" /> <TextView android:layout_gravity="center_horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="20dp" android:text="@string/app_text" /> </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:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:background="@color/colorPrimary"> <ImageView android:layout_width="250dp" android:layout_height="wrap_content" android:id="@+id/logoImage" android:layout_gravity="center_horizontal" android:layout_weight="2" android:src="@drawable/jurani_logo_min"/> </LinearLayout>
Fix wrong xml end tag
<?xml version="1.0"?> <package> <name>servo_msgs</name> <version>0.0.1</version> <description>The servo_msgs package</description> <maintainer email="o111027y@mail.kyutech.jp">Yusuke Doi</maintainer> <license>MIT</license> <author email="o111027y@mail.kyutech.jp">Yusuke Doi</author> <buildtool_depend>catkin</buildtool_depend> <build_depend>message_generation</build_depend> <run_depend>message_runtime<run_depend> </package>
<?xml version="1.0"?> <package> <name>servo_msgs</name> <version>0.0.1</version> <description>The servo_msgs package</description> <maintainer email="o111027y@mail.kyutech.jp">Yusuke Doi</maintainer> <license>MIT</license> <author email="o111027y@mail.kyutech.jp">Yusuke Doi</author> <buildtool_depend>catkin</buildtool_depend> <build_depend>message_generation</build_depend> <run_depend>message_runtime</run_depend> </package>
Set contentDescription on bottom actions and remove empty titles. Needed for screen reader accessibility.
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <!-- define an empty title else lint fails --> <item android:title="" android:id="@+id/bottom_action_home" android:enabled="true" android:icon="@drawable/ic_home_black_24dp" /> <item android:title="" android:id="@+id/bottom_action_favourites" android:enabled="true" android:icon="@drawable/ic_star_black_24dp" /> <item android:title="" android:id="@+id/bottom_action_people" android:enabled="true" android:icon="@drawable/ic_person_black_24dp" /> <item android:title="" android:id="@+id/bottom_action_rooms" android:enabled="true" android:icon="@drawable/ic_people_black_24dp"/> </menu>
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <!-- define an empty title else lint fails --> <item android:contentDescription="@string/bottom_action_home" android:id="@+id/bottom_action_home" android:enabled="true" android:icon="@drawable/ic_home_black_24dp" /> <item android:contentDescription="@string/bottom_action_favourites" android:id="@+id/bottom_action_favourites" android:enabled="true" android:icon="@drawable/ic_star_black_24dp" /> <item android:contentDescription="@string/bottom_action_people" android:id="@+id/bottom_action_people" android:enabled="true" android:icon="@drawable/ic_person_black_24dp" /> <item android:contentDescription="@string/bottom_action_rooms" android:id="@+id/bottom_action_rooms" android:enabled="true" android:icon="@drawable/ic_people_black_24dp"/> </menu>
Adjust to the most recent version of Odoo 8
<openerp> <data> <template id="show_sign_in" inherit_id="website.show_sign_in"> <!-- logging in from frontend should redirect back to frontend --> <a t-attf-href="/web/login" position="attributes"> <attribute name="t-attf-href">/web/login?redirect=/</attribute> </a> </template> <template id="user_navbar" inherit_id="website.user_navbar"> <!-- Remove the "mobile preview" icon --> <xpath expr="//li[a[@data-action='show-mobile-preview']]" position="replace"/> <!-- Remove the Help menu --> <xpath expr="//li[a[@id='help-menu-button']]" position="replace"/> <!-- Change the menu item's caption --> <xpath expr="//ul[@class='dropdown-menu js_usermenu']/li/a[@href='/web']" position="replace"> <a href="/web" role="menuitem">Przejdź do aplikacji</a> </xpath> </template> </data> </openerp>
<openerp> <data> <template id="website.show_sign_in" inherit_id="website.layout"> <!-- logging in from frontend should redirect back to frontend --> <xpath expr="//ul[@id='top_menu']" position="inside"> <li class="divider" groups="base.group_public"/> <li groups="base.group_public"> <a t-attf-href="/web/login?redirect=/"> <b>Sign in</b> </a> </li> </xpath> </template> <template id="user_navbar" inherit_id="website.user_navbar"> <!-- Remove the "mobile preview" icon --> <xpath expr="//li[a[@data-action='show-mobile-preview']]" position="replace"/> <!-- Remove the Help menu --> <xpath expr="//li[a[@id='help-menu-button']]" position="replace"/> <!-- Change the menu item's caption --> <xpath expr="//ul[@class='dropdown-menu js_usermenu']/li/a[@href='/web']" position="replace"> <a href="/web" role="menuitem">Przejdź do aplikacji</a> </xpath> </template> </data> </openerp>
Prepare sample insert for connection coords
<map id="4" timestamp="0"> <textbox TID="1" text="FOO"/> <textbox TID="2" text="BAR"/> <node TID="1" Type="Standard" x="1" y="1"> <nodetext textboxTID="1" /> </node> <node TID="2" Type="Standard" x="10" y="1"> <nodetext textboxTID="2"/> </node> <node TID="3" Type="Inference" x="5" y="5"> <nodetext textboxTID="1"/> <nodetext textboxTID="2"/> </node> <connection argTID="1" type="MPtherefore" targetnodeTID="2"> <sourcenode nodeTID="1"/> <sourcenode nodeTID="3"/> </connection> </map>
<map id="4" timestamp="0"> <textbox TID="1" text="FOO"/> <textbox TID="2" text="BAR"/> <node TID="1" Type="Standard" x="1" y="1"> <nodetext textboxTID="1" /> </node> <node TID="2" Type="Standard" x="10" y="1"> <nodetext textboxTID="2"/> </node> <node TID="3" Type="Inference" x="5" y="5"> <nodetext textboxTID="1"/> <nodetext textboxTID="2"/> </node> <connection argTID="1" type="MPtherefore" targetnodeTID="2" x="5" y="1"> <sourcenode nodeTID="1"/> <sourcenode nodeTID="3"/> </connection> </map>
Update the version for 9.0
<?xml version="1.0"?> <info> <id>notifications</id> <name>Notifications</name> <description>An app that notifies the user about important events of other apps.</description> <licence>AGPL</licence> <author>Joas Schilling</author> <version>0.1.0</version> <!-- FIXME --> <types> <filesystem/> </types> <default_enable/> <dependencies> <owncloud min-version="8.2" /> <owncloud max-version="8.3" /> </dependencies> </info>
<?xml version="1.0"?> <info> <id>notifications</id> <name>Notifications</name> <description>An app that notifies the user about important events of other apps.</description> <licence>AGPL</licence> <author>Joas Schilling</author> <version>0.2.0</version> <!-- FIXME --> <types> <filesystem/> </types> <default_enable/> <dependencies> <owncloud min-version="8.2" /> <owncloud max-version="8.3" /> </dependencies> </info>
Change app display name to 'Lyve Photos'
<!-- ~ Copyright (C) 2015 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. --> <resources> <string name="app_name">"Lyve Cloud Gallery "</string> <string name="action_settings">Settings</string> <string name="item_title">Palais Garnier</string> <string name="item_desc">The Palais Garnier which locates in Paris was built from 1861 for the Paris Opera. </string> <string name="detail_desc">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </string> <string name="detail_location">"8 Rue Scribe, 75009 Paris, France"</string> </resources>
<!-- ~ Copyright (C) 2015 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. --> <resources> <string name="app_name">"Lyve Photos"</string> <string name="action_settings">Settings</string> <string name="item_title">Palais Garnier</string> <string name="item_desc">The Palais Garnier which locates in Paris was built from 1861 for the Paris Opera. </string> <string name="detail_desc">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </string> <string name="detail_location">"8 Rue Scribe, 75009 Paris, France"</string> </resources>
Prepare for new development cycle
<?xml version='1.0' encoding='UTF-8' ?> <project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <groupId>com.kytkemo</groupId> <artifactId>spring-app</artifactId> <version>1.1.9</version> <packaging>maven-archetype</packaging> <name>spring-app</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.4</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.4</version> </plugin> </plugins> </pluginManagement> </build> </project>
<?xml version='1.0' encoding='UTF-8' ?> <project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <groupId>com.kytkemo</groupId> <artifactId>spring-app</artifactId> <version>1.2-SNAPSHOT</version> <packaging>maven-archetype</packaging> <name>spring-app</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.4</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.4</version> </plugin> </plugins> </pluginManagement> </build> </project>
Add missing element in changelog
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- changelog for the master branch --> <string name="changelog_master" translatable="false"><Data><![CDATA[<div> <h1>Nightly build:</h1> <h4>Topic or Area:</h4> <ul> <li>New: xyz</li> <li>Fix: xyz</li> </ul></Data> </string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- changelog for the master branch --> <string name="changelog_master" translatable="false"><Data><![CDATA[<div> <h1>Nightly build:</h1> <h4>Topic or Area:</h4> <ul> <li>New: xyz</li> <li>Fix: xyz</li> </ul></div>]]></Data> </string> </resources>
Set PM list to match main activity layout changes.
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" android:background="?primaryBackground"> <net.fastfourier.something.widget.LockableSlidingPaneLayout android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/pm_drawer"> <fragment android:layout_width="@dimen/nav_list_min_width" android:layout_height="match_parent" android:name="net.fastfourier.something.PrivateMessageListFragment" android:id="@+id/pm_list_fragment" android:layout_weight="1"/> <fragment android:layout_width="match_parent" android:layout_height="match_parent" android:name="net.fastfourier.something.PrivateMessageFragment" android:id="@+id/pm_fragment" /> </net.fastfourier.something.widget.LockableSlidingPaneLayout> </FrameLayout>
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" android:background="?primaryBackground"> <net.fastfourier.something.widget.LockableSlidingPaneLayout android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/pm_drawer"> <fragment android:layout_width="match_parent" android:layout_height="match_parent" android:name="net.fastfourier.something.PrivateMessageListFragment" android:id="@+id/pm_list_fragment" android:layout_weight="1"/> <fragment android:layout_width="match_parent" android:layout_height="match_parent" android:name="net.fastfourier.something.PrivateMessageFragment" android:id="@+id/pm_fragment" /> </net.fastfourier.something.widget.LockableSlidingPaneLayout> </FrameLayout>
Drop thread from eval logging output
<?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{24} - %msg%n</pattern> </encoder> <target>System.err</target> </appender> <root level="${logging.level:-INFO}"> <appender-ref ref="STDERR"/> </root> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SSS} %-5level %logger{24} - %msg%n</pattern> </encoder> <target>System.err</target> </appender> <root level="${logging.level:-INFO}"> <appender-ref ref="STDERR"/> </root> </configuration>
Fix resolve class and dependency
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint</artifactId> <relativePath>../..</relativePath> <version>1.6.0-SNAPSHOT</version> </parent> <artifactId>pinpoint-axis2-jaxws-plugin</artifactId> <name>pinpoint-axis2-jaxws-plugin</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint-bootstrap-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-jaxws</artifactId> <version>1.6.2</version> <scope>provided</scope> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint</artifactId> <relativePath>../..</relativePath> <version>1.6.0-SNAPSHOT</version> </parent> <artifactId>pinpoint-axis2-jaxws-plugin</artifactId> <name>pinpoint-axis2-jaxws-plugin</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint-commons</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.navercorp.pinpoint</groupId> <artifactId>pinpoint-bootstrap-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-jaxws</artifactId> <version>1.6.2</version> <scope>provided</scope> </dependency> </dependencies> </project>
Make version number match release number.
<?xml version="1.0"?> <extension key="com.groupwho.paperlesstrans" type="module"> <file>paperlesstrans</file> <name>Paperless Transaction Payment Processor</name> <description>Process credit card and ACH payments via Paperless Transaction.</description> <license>AGPL-3.0</license> <maintainer> <author>Joshua Walker</author> <email>josh@groupwho.com</email> </maintainer> <urls> <url desc="Main Extension Page">http://www.paperlesstrans.com</url> <url desc="Documentation">http://www.paperlesstrans.com</url> <url desc="Support">http://www.paperlesstrans.com/contact-us</url> <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2017-02-24</releaseDate> <version>1.0</version> <develStage>beta</develStage> <compatibility> <ver>4.6</ver> <ver>4.7</ver> </compatibility> <comments>Payment processor for paperlesstrans.com integration.</comments> <civix> <namespace>CRM/Paperlesstrans</namespace> </civix> </extension>
<?xml version="1.0"?> <extension key="com.groupwho.paperlesstrans" type="module"> <file>paperlesstrans</file> <name>Paperless Transaction Payment Processor</name> <description>Process credit card and ACH payments via Paperless Transaction.</description> <license>AGPL-3.0</license> <maintainer> <author>Joshua Walker</author> <email>josh@groupwho.com</email> </maintainer> <urls> <url desc="Main Extension Page">http://www.paperlesstrans.com</url> <url desc="Documentation">http://www.paperlesstrans.com</url> <url desc="Support">http://www.paperlesstrans.com/contact-us</url> <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> <releaseDate>2017-02-24</releaseDate> <version>4.6.0</version> <develStage>beta</develStage> <compatibility> <ver>4.6</ver> <ver>4.7</ver> </compatibility> <comments>Payment processor for paperlesstrans.com integration.</comments> <civix> <namespace>CRM/Paperlesstrans</namespace> </civix> </extension>
Fix animation glitch for PreferenceCategory views
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright (C) 2015 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 --> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="@dimen/lb_preference_category_height" android:paddingStart="@dimen/lb_preference_item_padding_start" android:paddingEnd="@dimen/lb_preference_item_padding_end"> <TextView android:id="@android:id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:textColor="@color/lb_preference_item_primary_text_color" android:textSize="@dimen/lb_preference_category_text_size"/> </FrameLayout>
<?xml version="1.0" encoding="utf-8"?> <!-- ~ Copyright (C) 2015 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 --> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="@dimen/lb_preference_category_height" android:clipToPadding="false" android:paddingStart="@dimen/lb_preference_item_padding_start" android:paddingEnd="@dimen/lb_preference_item_padding_end"> <TextView android:id="@android:id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:textColor="@color/lb_preference_item_primary_text_color" android:textSize="@dimen/lb_preference_category_text_size"/> </FrameLayout>
Update download URL to @mdshw5's repo.
<?xml version='1.0' encoding='utf-8'?> <tool_dependency> <package name="python" version="2.7.10"> <repository name="package_python_2_7_10" owner="iuc" /> </package> <package name="galaxy_json_data_source" version="1.0.0"> <install version="1.0"> <actions> <action type="download_by_url">https://raw.githubusercontent.com/blankenberg/galaxy-json-data-source/a637ce880f44d56ae95a7380ff258e827b70811c/json_data_source.py</action> <action type="move_file"> <source>json_data_source.py</source> <destination>$INSTALL_DIR/bin</destination> </action> <action type="chmod"> <file mode="755">$INSTALL_DIR/bin/json_data_source.py</file> </action> <action type="set_environment"> <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> </action> </actions> </install> <readme> This tool, when called by another datasource tool, allows that datasource tool to receive multiple datasets, along with their metadata in a single query to an external data source. </readme> </package> </tool_dependency>
<?xml version='1.0' encoding='utf-8'?> <tool_dependency> <package name="python" version="2.7.10"> <repository name="package_python_2_7_10" owner="iuc" /> </package> <package name="galaxy_json_data_source" version="1.0.0"> <install version="1.0"> <actions> <action type="download_by_url">https://raw.githubusercontent.com/mdshw5/galaxy-json-data-source/a637ce880f44d56ae95a7380ff258e827b70811c/json_data_source.py</action> <action type="move_file"> <source>json_data_source.py</source> <destination>$INSTALL_DIR/bin</destination> </action> <action type="chmod"> <file mode="755">$INSTALL_DIR/bin/json_data_source.py</file> </action> <action type="set_environment"> <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> </action> </actions> </install> <readme> This tool, when called by another datasource tool, allows that datasource tool to receive multiple datasets, along with their metadata in a single query to an external data source. </readme> </package> </tool_dependency>
Change log filename to something other than "test"
<?xml version="1.0" encoding="UTF-8"?> <Configuration status="TRACE"> <Appenders> <Console name="CONSOLE" target="SYSTEM_OUT"> <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n" /> </Console> <RollingFile name="test.log" fileName="logs/test.log" append="true" immediateFlush="false" filePattern="logs/$${date:yyyy-MM}/%d{MM-dd-yyyy}-%i-test.log"> <PatternLayout pattern="%d %-5p [%t] %c (%F:%L) - %m%n"/> <Policies> <TimeBasedTriggeringPolicy /> <SizeBasedTriggeringPolicy size="10 MB"/> </Policies> </RollingFile> </Appenders> <Loggers> <Root level="ERROR"> <AppenderRef ref="test.log" /> <AppenderRef ref="CONSOLE"/> </Root> <Logger name="test.net.util" level="TRACE" /> </Loggers> </Configuration>
<?xml version="1.0" encoding="UTF-8"?> <Configuration status="TRACE"> <Appenders> <Console name="CONSOLE" target="SYSTEM_OUT"> <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n" /> </Console> <RollingFile name="real.log" fileName="logs/real.log" append="true" immediateFlush="false" filePattern="logs/$${date:yyyy-MM}/%d{MM-dd-yyyy}-%i-real.log"> <PatternLayout pattern="%d %-5p [%t] %c (%F:%L) - %m%n"/> <Policies> <TimeBasedTriggeringPolicy /> <SizeBasedTriggeringPolicy size="10 MB"/> </Policies> </RollingFile> </Appenders> <Loggers> <Root level="ERROR"> <AppenderRef ref="real.log" /> <AppenderRef ref="CONSOLE"/> </Root> <Logger name="test.net.util" level="TRACE" /> </Loggers> </Configuration>
Remove reference to local schema
<?xml version="1.0"?> <psalm totallyTyped="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://getpsalm.org/schema/config" xsi:schemaLocation="https://getpsalm.org/schema/config file://C:\Users\ddimitrov\AppData\Roaming\Composer\vendor\vimeo\psalm\config.xsd" > <projectFiles> <directory name="src" /> <ignoreFiles> <directory name="vendor" /> </ignoreFiles> </projectFiles> <issueHandlers> <LessSpecificReturnType errorLevel="info" /> <!-- level 3 issues - slightly lazy code writing, but provably low false-negatives --> <DeprecatedMethod errorLevel="info" /> <DeprecatedProperty errorLevel="info" /> <DeprecatedClass errorLevel="info" /> <DeprecatedConstant errorLevel="info" /> <DeprecatedInterface errorLevel="info" /> <DeprecatedTrait errorLevel="info" /> <MissingClosureReturnType errorLevel="info" /> <MissingReturnType errorLevel="info" /> <MissingPropertyType errorLevel="info" /> <InvalidDocblock errorLevel="info" /> <MisplacedRequiredParam errorLevel="info" /> <PropertyNotSetInConstructor errorLevel="info" /> <MissingConstructor errorLevel="info" /> <MissingClosureParamType errorLevel="info" /> <MissingParamType errorLevel="info" /> <RedundantCondition errorLevel="info" /> <DocblockTypeContradiction errorLevel="info" /> <RedundantConditionGivenDocblockType errorLevel="info" /> <UnresolvableInclude errorLevel="info" /> <RawObjectIteration errorLevel="info" /> <InvalidStringClass errorLevel="info" /> </issueHandlers> </psalm>
<?xml version="1.0"?> <psalm totallyTyped="false"> <projectFiles> <directory name="src" /> <ignoreFiles> <directory name="vendor" /> </ignoreFiles> </projectFiles> <issueHandlers> <LessSpecificReturnType errorLevel="info" /> <!-- level 3 issues - slightly lazy code writing, but provably low false-negatives --> <DeprecatedMethod errorLevel="info" /> <DeprecatedProperty errorLevel="info" /> <DeprecatedClass errorLevel="info" /> <DeprecatedConstant errorLevel="info" /> <DeprecatedInterface errorLevel="info" /> <DeprecatedTrait errorLevel="info" /> <MissingClosureReturnType errorLevel="info" /> <MissingReturnType errorLevel="info" /> <MissingPropertyType errorLevel="info" /> <InvalidDocblock errorLevel="info" /> <MisplacedRequiredParam errorLevel="info" /> <PropertyNotSetInConstructor errorLevel="info" /> <MissingConstructor errorLevel="info" /> <MissingClosureParamType errorLevel="info" /> <MissingParamType errorLevel="info" /> <RedundantCondition errorLevel="info" /> <DocblockTypeContradiction errorLevel="info" /> <RedundantConditionGivenDocblockType errorLevel="info" /> <UnresolvableInclude errorLevel="info" /> <RawObjectIteration errorLevel="info" /> <InvalidStringClass errorLevel="info" /> </issueHandlers> </psalm>
Remove unused permission from TestUtils
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.braintreepayments.api.testutils"> <uses-permission android:name="android.permission.SET_ANIMATION_SCALE" /> <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> <uses-permission android:name="android.permission.ACCESS_SUPERUSER" /> <application /> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.braintreepayments.api.testutils"> <uses-permission android:name="android.permission.SET_ANIMATION_SCALE" /> <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> <application /> </manifest>
Update the query to take into account the permission to verify
<query-mapping package='AWA.Blogs.Models'> <description> List of blogs </description> <class name="AWA.Blogs.Models.Blog_Info" bean="yes"> <comment>The list of blogs.</comment> <property type='Identifier' name="id"> <comment>the blog identifier.</comment> </property> <property type='String' name="title"> <comment>the blog title.</comment> </property> <property type='String' name="uid"> <comment>the blog uuid.</comment> </property> <property type='Date' name="create_date"> <comment>the blog creation date.</comment> </property> <property type='Integer' name="post_count"> <comment>the number of posts published.</comment> </property> </class> <query name='blog-list'> <comment>Get the list of blogs that the current user can update</comment> <sql> SELECT blog.id, blog.name, blog.uid, blog.create_date, (SELECT count(*) FROM awa_post WHERE awa_post.blog_id = blog.id AND awa_post.status = 1) FROM awa_blog AS blog INNER JOIN awa_acl AS acl ON acl.entity_id = blog.id AND acl.entity_type = :table AND acl.user_id = :user_id ORDER BY blog.create_date DESC </sql> </query> </query-mapping>
<query-mapping package='AWA.Blogs.Models'> <description> List of blogs </description> <class name="AWA.Blogs.Models.Blog_Info" bean="yes"> <comment>The list of blogs.</comment> <property type='Identifier' name="id"> <comment>the blog identifier.</comment> </property> <property type='String' name="title"> <comment>the blog title.</comment> </property> <property type='String' name="uid"> <comment>the blog uuid.</comment> </property> <property type='Date' name="create_date"> <comment>the blog creation date.</comment> </property> <property type='Integer' name="post_count"> <comment>the number of posts published.</comment> </property> </class> <query name='blog-list'> <comment>Get the list of blogs that the current user can update</comment> <sql> SELECT blog.id, blog.name, blog.uid, blog.create_date, (SELECT count(*) FROM awa_post WHERE awa_post.blog_id = blog.id AND awa_post.status = 1) FROM awa_blog AS blog INNER JOIN awa_acl AS acl ON acl.entity_id = blog.id AND acl.entity_type = :table AND acl.user_id = :user_id AND acl.permission = $permission[blog-create-post] ORDER BY blog.create_date DESC </sql> </query> </query-mapping>
Add GridLayout to top area of 'do upload'
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#0c609c" android:gravity="center_vertical" > <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/welcome_copyright" android:adjustViewBounds="true" android:layout_gravity="center" /> <TextView android:layout_width="295dp" android:layout_height="wrap_content" android:maxWidth="240dp" android:text="@string/tutorial_2_text" android:layout_gravity="center" android:textStyle="bold" android:textAlignment="center" android:paddingTop="24dp" android:gravity="center_horizontal" android:textColor="@android:color/white" /> <TextView android:layout_width="293dp" android:layout_height="wrap_content" android:maxWidth="240dp" android:text="@string/tutorial_2_subtext" android:layout_gravity="center" android:textAlignment="textStart" android:paddingTop="16dp" android:gravity="start" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#0c609c" android:gravity="center_vertical" > <GridLayout android:layout_width="397dp" android:layout_height="249dp"> </GridLayout> <TextView android:layout_width="295dp" android:layout_height="wrap_content" android:maxWidth="240dp" android:text="@string/tutorial_2_text" android:layout_gravity="center" android:textStyle="bold" android:textAlignment="center" android:paddingTop="24dp" android:gravity="center_horizontal" android:textColor="@android:color/white" /> <TextView android:layout_width="293dp" android:layout_height="wrap_content" android:maxWidth="240dp" android:text="@string/tutorial_2_subtext" android:layout_gravity="center" android:textAlignment="textStart" android:paddingTop="16dp" android:gravity="start" /> </LinearLayout>
Add logging config for tests
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2011 by Jonathan Abourbih. ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy ~ of this software and associated documentation files (the "Software"), to deal ~ in the Software without restriction, including without limitation the rights ~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ~ copies of the Software, and to permit persons to whom the Software is ~ furnished to do so, subject to the following conditions: ~ ~ The above copyright notice and this permission notice shall be included in ~ all copies or substantial portions of the Software. ~ ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ~ THE SOFTWARE. --> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="info"> <appender-ref ref="STDOUT"/> </root> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2011 by Jonathan Abourbih. ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy ~ of this software and associated documentation files (the "Software"), to deal ~ in the Software without restriction, including without limitation the rights ~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ~ copies of the Software, and to permit persons to whom the Software is ~ furnished to do so, subject to the following conditions: ~ ~ The above copyright notice and this permission notice shall be included in ~ all copies or substantial portions of the Software. ~ ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ~ THE SOFTWARE. --> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <logger name="foodratings" level="debug"/> <root level="info"> <appender-ref ref="STDOUT"/> </root> </configuration>
Remove copy that we don't need anymore.
<project name="juddi-tomcat" default="package-war" basedir="."> <property file="package.properties"/> <property name="lib.dir" value="${basedir}/target/tomcat/apache-tomcat-${apache.tomcat.version}/lib"/> <property name="webapps.dir" value="${basedir}/target/tomcat/apache-tomcat-${apache.tomcat.version}/webapps"/> <target name="unzip-war"> <mkdir dir="${basedir}/target/juddiv3war"/> <unzip dest="${basedir}/target/juddiv3war" src="${dependency.juddiv3.war}"/> </target> <target name="copy-resources" depends="unzip-war"> <copy todir="${basedir}/target/juddiv3war/WEB-INF" overwrite="true"> <fileset dir="${basedir}/src/main/webapp/WEB-INF"> <include name="**/*.xml"/> <include name="**/*.properties"/> </fileset> </copy> <copy todir="${basedir}/target/juddiv3war/WEB-INF/classes/META-INF" overwrite="true"> <fileset dir="${basedir}/src/main/resources/META-INF"> <include name="persistence.xml"/> </fileset> </copy> </target> <target name="package-war" depends="copy-resources"/> </project>
<project name="juddi-tomcat" default="package-war" basedir="."> <property file="package.properties"/> <property name="lib.dir" value="${basedir}/target/tomcat/apache-tomcat-${apache.tomcat.version}/lib"/> <property name="webapps.dir" value="${basedir}/target/tomcat/apache-tomcat-${apache.tomcat.version}/webapps"/> <target name="unzip-war"> <mkdir dir="${basedir}/target/juddiv3war"/> <unzip dest="${basedir}/target/juddiv3war" src="${dependency.juddiv3.war}"/> </target> <target name="copy-resources" depends="unzip-war"> <copy todir="${basedir}/target/juddiv3war/WEB-INF" overwrite="true"> <fileset dir="${basedir}/src/main/webapp/WEB-INF"> <include name="**/*.xml"/> <include name="**/*.properties"/> </fileset> </copy> </target> <target name="package-war" depends="copy-resources"/> </project>
Add note to Static Route documentation regarding necessity of sane defaults
<sect3 id="zend.controller.router.routes.static"> <title>Zend_Controller_Router_Route_Static</title> <para> The examples above all use dynamic routes -- routes that contain patterns to match against. Sometimes, however, a particular route is set in stone, and firing up the regular expression engine would be an overkill. The answer to this situation is to use static routes: </para> <programlisting role="php"><![CDATA[ $route = new Zend_Controller_Router_Route_Static( 'login', array('controller' => 'auth', 'action' => 'login') ); $router->addRoute('login', $route); ]]> </programlisting> <para> Above route will match a URL of <code>http://domain.com/login</code>, and dispatch to <code>AuthController::loginAction()</code>. </para> </sect3> <!-- vim:se ts=4 sw=4 et: -->
<sect3 id="zend.controller.router.routes.static"> <title>Zend_Controller_Router_Route_Static</title> <para> The examples above all use dynamic routes -- routes that contain patterns to match against. Sometimes, however, a particular route is set in stone, and firing up the regular expression engine would be an overkill. The answer to this situation is to use static routes: </para> <programlisting role="php"><![CDATA[ $route = new Zend_Controller_Router_Route_Static( 'login', array('controller' => 'auth', 'action' => 'login') ); $router->addRoute('login', $route); ]]> </programlisting> <para> Above route will match a URL of <code>http://domain.com/login</code>, and dispatch to <code>AuthController::loginAction()</code>. </para> <note id="zend.controller.router.routes.static.warning"> <title>Warning: Static routes must contain sane defaults</title> <para> Since a static route does not pass any part of the URL to the request object as parameters, you <emphasis>must</emphasis> pass all parameters necessary for dispatching a request as defaults to the route. Omitting the "controller" or "action" default values will have unexpected results, and will likely result in the request being undispatchable. </para> <para> As a rule of thumb, always provide each of the following default values: </para> <itemizedlist> <listitem><para>controller</para></listitem> <listitem><para>action</para></listitem> <listitem><para>module (if not default)</para></listitem> </itemizedlist> <para> Optionally, you can also pass the "useDefaultControllerAlways" parameter to the front controller during bootstrapping: </para> <programlisting role="php"><![CDATA[ $front->setParam('useDefaultControllerAlways', true); ]]></programlisting> <para> However, this is considered a workaround; it is always better to explicitly define sane defaults. </para> </note> </sect3> <!-- vim:se ts=4 sw=4 et: -->
Remove allowBackup property from manifest
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.rockerhieu.emojicon"> <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"/> <application android:allowBackup="true" android:label="@string/app_name" android:icon="@drawable/ic_launcher"> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.rockerhieu.emojicon"> <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"/> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"> </application> </manifest>
Fix layout issue pre lolipop
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/custom_cell" android:layout_width="match_parent" android:layout_height="50dp" android:gravity="center_horizontal" android:background="@drawable/custom_grid_cell_drawable" android:orientation="vertical" android:paddingTop="5dp" > <TextView android:id="@+id/grid_cell_tv1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="15dp" android:textStyle="bold" android:textColor="@color/primary_text" android:layout_marginBottom="4dp"/> <TextView android:id="@+id/grid_cell_tv2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="13dp" android:textColor="@color/secondary_text" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/custom_cell" android:layout_width="match_parent" android:layout_height="50dp" android:gravity="center_horizontal" android:background="@drawable/custom_grid_cell_drawable" android:orientation="vertical" > <TextView android:id="@+id/grid_cell_tv1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="15dp" android:textStyle="bold" android:textColor="@color/primary_text" android:layout_marginTop="5dp" android:layout_marginBottom="4dp"/> <TextView android:id="@+id/grid_cell_tv2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="12dp" android:textColor="@color/secondary_text" /> </LinearLayout>
Remove unused string resources; readability.
<resources> <string name="app_name">Cute Pets Example</string> <string name="gender">What is your gender?</string> <string name="female">Female</string> <string name="male">Male</string> <string name="other">Other</string> <string name="age">What is your age group?</string> <string name="young">24 years or younger</string> <string name="middle">25-54 years old</string> <string name="old">55 years or older</string> <string name="pets">Which pets do you own?</string> <string name="cats">Cat(s)</string> <string name="dogs">Dog(s)</string> <string name="action_settings">Settings</string> <string name="tracking_id">UA-54478999-3</string> <string name="begin">Begin</string> <string name="title_activity_instructions">Instructions</string> <string name="gotit">Got it</string> <string name="instructions">You will be shown a series of image pairs comparing two pets. \n\n Tap on the pet you think is cuter.</string> <string name="title_activity_compare_pets">ComparePets</string> <string name="hello_world">Hello world!</string> <string name="title_activity_results">Results</string> <string name="resultsText">Thank you for your answers!\n\n Here is your top pet.</string> </resources>
<resources> <string name="app_name">Cute Pets Example</string> <string name="gender">What is your gender?</string> <string name="female">Female</string> <string name="male">Male</string> <string name="other">Other</string> <string name="age">What is your age group?</string> <string name="young">24 years or younger</string> <string name="middle">25 to 54 years old</string> <string name="old">55 years or older</string> <string name="pets">Which pets do you own?</string> <string name="cats">Cat(s)</string> <string name="dogs">Dog(s)</string> <string name="begin">Begin</string> <string name="title_activity_instructions">Instructions</string> <string name="gotit">Got it</string> <string name="instructions"> You will be shown a series of image pairs comparing two pets.\n \n Tap on the pet you think is cuter.</string> <string name="title_activity_compare_pets">ComparePets</string> <string name="title_activity_results">Results</string> <string name="resultsText"> Thank you for your answers!\n \n Here is your top pet.</string> </resources>
Set TRACE as default log level for tests
<?xml version="1.0" encoding="UTF-8"?> <configuration> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <logger name="io.github.bonigarcia" level="DEBUG" /> <logger name="org" level="WARN" /> <logger name="com" level="WARN" /> <root level="INFO"> <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{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <logger name="io.github.bonigarcia" level="TRACE" /> <logger name="org" level="WARN" /> <logger name="com" level="WARN" /> <root level="INFO"> <appender-ref ref="STDOUT" /> </root> </configuration>
Fix for DE1147 - Excluding of applicationAuthorization from being purged
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <util:list id="excluded" value-type="java.lang.String"> <value>system.indexes</value> <value>system.js</value> <value>system.namespaces</value> <value>system.profile</value> <value>system.users</value> <value>tenant</value> <value>userAccount</value> </util:list> <bean id="purgeProcessor" class="org.slc.sli.ingestion.processors.PurgeProcessor"> <property name="excludeCollections" ref="excluded"/> </bean> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <util:list id="excluded" value-type="java.lang.String"> <value>system.indexes</value> <value>system.js</value> <value>system.namespaces</value> <value>system.profile</value> <value>system.users</value> <value>tenant</value> <value>userAccount</value> <value>applicationAuthorization</value> </util:list> <bean id="purgeProcessor" class="org.slc.sli.ingestion.processors.PurgeProcessor"> <property name="excludeCollections" ref="excluded"/> </bean> </beans>
Fix typo and add internet permission
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.lukekorth.httpebble" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.WAKE_LOCK" />" <application android:allowBackup="true" android:label="@string/app_name" > <receiver android:name=".receivers.PebbleDataReceiver"> <intent-filter> <action android:name="com.getpebble.action.app.RECEIVE" /> </intent-filter> </receiver> <service android:name=".receivers.PebbleProxyIntentService" /> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.lukekorth.httpebble" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WAKE_LOCK" /> <application android:allowBackup="true" android:label="@string/app_name" > <receiver android:name=".receivers.PebbleDataReceiver"> <intent-filter> <action android:name="com.getpebble.action.app.RECEIVE" /> </intent-filter> </receiver> <service android:name=".receivers.PebbleProxyIntentService" /> </application> </manifest>
Change app name to appease google
<resources> <string name="app_name">Android VTS</string> <string name="action_start_scan">Start Scan</string> <string name="test_result_incomplete">Incomplete</string> <string name="test_result_failed">Failed</string> <string name="test_result_passed">Passed</string> <string name="device_info_build_fingerprint">Build Fingerprint: </string> <string name="device_info_kernel_version">Kernel Version: </string> <string name="device_info_build_brand">Build Brand: </string> <string name="device_info_build_manufacturer">Build Manufacturer: </string> <string name="device_info_build_model">Build Model: </string> <string name="device_info_build_release">Build Release: </string> <string name="device_info_build_sdk">Build SDK: </string> <string name="device_info_build_id">Build ID: </string> </resources>
<resources> <string name="app_name">VTS for Android</string> <string name="action_start_scan">Start Scan</string> <string name="test_result_incomplete">Incomplete</string> <string name="test_result_failed">Failed</string> <string name="test_result_passed">Passed</string> <string name="device_info_build_fingerprint">Build Fingerprint: </string> <string name="device_info_kernel_version">Kernel Version: </string> <string name="device_info_build_brand">Build Brand: </string> <string name="device_info_build_manufacturer">Build Manufacturer: </string> <string name="device_info_build_model">Build Model: </string> <string name="device_info_build_release">Build Release: </string> <string name="device_info_build_sdk">Build SDK: </string> <string name="device_info_build_id">Build ID: </string> </resources>
Manage group now displays data
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="EntryPointsManager"> <entry_points version="2.0" /> </component> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" assert-keyword="true" jdk-15="true" project-jdk-name="1.7" project-jdk-type="JavaSDK"> <output url="file://$PROJECT_DIR$/build/classes" /> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="EntryPointsManager"> <entry_points version="2.0" /> </component> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <output url="file://$PROJECT_DIR$/build/classes" /> </component> </project>
Fix type in XML definition
<?xml version="1.0" encoding="UTF-8"?> <module version="1.0"> <managed-bean> <description>This bean allows to perform some general workspace actions</description> <managed-bean-name>workspace</managed-bean-name> <managed-bean-class>AWA.Workspaces.Beans.Workspaces_Bean</managed-bean-class> <managed-bean-scope>request</managed-bean-scope> </managed-bean> <!-- When a user is created, also create a workspace area. --> <on-event name="user-create"> <action>#{workspace.create}</action> </on-event> <filter-mapping> <filter-name>service</filter-name> <url-pattern>/workspaces/*.html</url-pattern> </filter-mapping> <filter-mapping> <filter-name>auth-filter</filter-name> <url-pattern>/workspaces/*.html</url-pattern> </filter-mapping> <entity-permission> <name>workspaces-create</name> <entity-type>workspaced</entity-type> <sql> select ACL.ID from ACL where ACL.ENTITY_TYPE = :entity_type and ACL.USER_ID = :user_id </sql> </entity-permission> </module>
<?xml version="1.0" encoding="UTF-8"?> <module version="1.0"> <managed-bean> <description>This bean allows to perform some general workspace actions</description> <managed-bean-name>workspace</managed-bean-name> <managed-bean-class>AWA.Workspaces.Beans.Workspaces_Bean</managed-bean-class> <managed-bean-scope>request</managed-bean-scope> </managed-bean> <!-- When a user is created, also create a workspace area. --> <on-event name="user-create"> <action>#{workspace.create}</action> </on-event> <filter-mapping> <filter-name>service</filter-name> <url-pattern>/workspaces/*.html</url-pattern> </filter-mapping> <filter-mapping> <filter-name>auth-filter</filter-name> <url-pattern>/workspaces/*.html</url-pattern> </filter-mapping> <entity-permission> <name>workspaces-create</name> <entity-type>workspace</entity-type> <sql> select ACL.ID from ACL where ACL.ENTITY_TYPE = :entity_type and ACL.USER_ID = :user_id </sql> </entity-permission> </module>
Update crashlytics build ID for 2.3.02b version
<?xml version="1.0" encoding="utf-8"?><resources><string name="com.crashlytics.android.build_id">a4cba885-8f89-4346-8301-899c9c017cda</string></resources>
<?xml version="1.0" encoding="utf-8"?><resources><string name="com.crashlytics.android.build_id">81d6d115-70fb-4556-bd9a-9e1a138c8d20</string></resources>
Add IllegalImportCheck Checkstyle module against Guava
<?xml version="1.0"?> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> <module name="Checker"> <!-- TreeWalker Checks --> <module name="TreeWalker"> <!-- Imports --> <module name="UnusedImports"> <property name="processJavadoc" value="true" /> </module> </module> </module>
<?xml version="1.0"?> <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> <module name="Checker"> <!-- TreeWalker Checks --> <module name="TreeWalker"> <!-- Imports --> <module name="IllegalImportCheck" > <property name="illegalPkgs" value="com.google.common.(?!cache).*"/> <property name="regexp" value="true"/> </module> <module name="UnusedImports"> <property name="processJavadoc" value="true" /> </module> </module> </module>
Add Splash Activity to manifest
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.andela.voluminotesapp" > <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme" > <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> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.andela.voluminotesapp" > <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme" > <activity android:name=".activities.SplashActivity" android:label="@string/app_name" android:theme="@style/splash_style" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".activities.MainActivity" android:label="@string/app_name" android:theme="@style/AppTheme.NoActionBar" /> </application> </manifest>
Make overview multipane divider white (less obtrusive).
<?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:baselineAligned="false" android:orientation="horizontal"> <LinearLayout android:layout_width="0px" android:layout_height="match_parent" android:layout_weight="2" android:orientation="vertical"> <FrameLayout android:id="@+id/fragment_show" android:layout_width="match_parent" android:layout_height="0px" android:layout_weight="1" /> <View android:layout_width="match_parent" android:layout_height="1dp" android:background="?attr/colorAccent" /> <FrameLayout android:id="@+id/fragment_seasons" android:layout_width="match_parent" android:layout_height="0px" android:layout_weight="1" /> </LinearLayout> <FrameLayout android:id="@+id/fragment_overview" android:layout_width="0px" android:layout_height="match_parent" android:layout_weight="3" /> </LinearLayout> <include layout="@layout/drawer_left" /> </android.support.v4.widget.DrawerLayout>
<?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:baselineAligned="false" android:orientation="horizontal"> <LinearLayout android:layout_width="0px" android:layout_height="match_parent" android:layout_weight="2" android:orientation="vertical"> <FrameLayout android:id="@+id/fragment_show" android:layout_width="match_parent" android:layout_height="0px" android:layout_weight="1" /> <View android:layout_width="match_parent" android:layout_height="1dp" android:background="?attr/colorDivider" /> <FrameLayout android:id="@+id/fragment_seasons" android:layout_width="match_parent" android:layout_height="0px" android:layout_weight="1" /> </LinearLayout> <FrameLayout android:id="@+id/fragment_overview" android:layout_width="0px" android:layout_height="match_parent" android:layout_weight="3" /> </LinearLayout> <include layout="@layout/drawer_left" /> </android.support.v4.widget.DrawerLayout>
Add a new line at the last position
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE fontscolors PUBLIC "-//NetBeans//DTD Editor Fonts and Colors settings 1.1//EN" "http://www.netbeans.org/dtds/EditorFontsColors-1_1.dtd"> <fontscolors> <fontcolor name="comment" default="comment"/> <fontcolor name="keyword" default="keyword"/> <fontcolor name="whitespace" default="whitespace"/> <fontcolor foreColor="ff509a05" name="section"/> <fontcolor name="section_delimiter" default="section"> <font style="bold"/> </fontcolor> <fontcolor foreColor="ff000000" name="equals"/> </fontscolors>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE fontscolors PUBLIC "-//NetBeans//DTD Editor Fonts and Colors settings 1.1//EN" "http://www.netbeans.org/dtds/EditorFontsColors-1_1.dtd"> <fontscolors> <fontcolor name="comment" default="comment"/> <fontcolor name="keyword" default="keyword"/> <fontcolor name="whitespace" default="whitespace"/> <fontcolor foreColor="ff509a05" name="section"/> <fontcolor name="section_delimiter" default="section"> <font style="bold"/> </fontcolor> <fontcolor foreColor="ff000000" name="equals"/> </fontscolors>
Split authors into separate <author> tags.
<package> <description brief="rail_pcl_object_segmentation"> Detects objects from a point cloud using the Euclidian Cluster Extraction method discussed here: http://www.pointclouds.org/documentation/tutorials/cluster_extraction.php. </description> <author>Paul Malmsten/pmalmsten@wpi.edu, Richard Kelly/richardk@wpi.edu</author> <license>BSD</license> <review status="unreviewed" notes=""/> <url>http://ros.org/wiki/rail_pcl_object_segmentation</url> <!-- Package dependencies --> <depend package="std_msgs"/> <depend package="roscpp"/> <depend package="pcl_ros"/> <depend package="actionlib"/> <depend package="actionlib_msgs"/> <!-- System dependencies --> <rosdep name="gtest" /> <!-- Export includes --> <export> <cpp cflags="-I${prefix}/include" lflags="-L${prefix}/lib -lpcl_measurement" /> </export> </package>
<package> <description brief="rail_pcl_object_segmentation"> Detects objects from a point cloud using the Euclidian Cluster Extraction method discussed here: http://www.pointclouds.org/documentation/tutorials/cluster_extraction.php. </description> <author>Paul Malmsten/pmalmsten@wpi.edu</author> <author>Richard Kelly/richardk@wpi.edu</author> <license>BSD</license> <review status="unreviewed" notes=""/> <url>http://ros.org/wiki/rail_pcl_object_segmentation</url> <!-- Package dependencies --> <depend package="std_msgs"/> <depend package="roscpp"/> <depend package="pcl_ros"/> <depend package="actionlib"/> <depend package="actionlib_msgs"/> <!-- System dependencies --> <rosdep name="gtest" /> <!-- Export includes --> <export> <cpp cflags="-I${prefix}/include" lflags="-L${prefix}/lib -lpcl_measurement" /> </export> </package>
Update param to stop on first error
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="bootstrap/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false"> <!-- <logging> <log type="coverage-clover" target="build/logs/clover.xml"/> </logging> --> <testsuites> <testsuite name="Application Test Suite"> <directory>./tests/unit/</directory> </testsuite> </testsuites> <php> <env name="APP_ENV" value="testing"/> <env name="DB_CONNECTION" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> </php> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">app/</directory> <directory suffix=".php">database/migrations/</directory> <directory suffix=".php">bootstrap/</directory> <directory suffix=".php">config/</directory> <exclude> <directory suffix=".js">public/</directory> </exclude> </whitelist> </filter> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="bootstrap/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="true" syntaxCheck="false"> <!-- <logging> <log type="coverage-clover" target="build/logs/clover.xml"/> </logging> --> <testsuites> <testsuite name="Application Test Suite"> <directory>./tests/unit/</directory> </testsuite> </testsuites> <php> <env name="APP_ENV" value="testing"/> <env name="DB_CONNECTION" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> </php> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">app/</directory> <directory suffix=".php">database/migrations/</directory> <directory suffix=".php">bootstrap/</directory> <directory suffix=".php">config/</directory> <exclude> <directory suffix=".js">public/</directory> </exclude> </whitelist> </filter> </phpunit>
Exclude config directory from coverage
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false"> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> </php> <testsuites> <testsuite name="command"> <file>./tests/Command/SetupCommandTest.php</file> <file>./tests/Command/CacheCommandTest.php</file> <file>./tests/Command/JobsCommandTest.php</file> <file>./tests/Command/AccountCommandTest.php</file> </testsuite> <testsuite name="base"> <directory>./tests/Base</directory> </testsuite> <testsuite name="controller"> <directory>./tests/Controller</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">./src/</directory> <exclude> <directory>./src/database/migrations/</directory> <directory>./src/views/</directory> </exclude> </whitelist> </filter> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false"> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> </php> <testsuites> <testsuite name="command"> <file>./tests/Command/SetupCommandTest.php</file> <file>./tests/Command/CacheCommandTest.php</file> <file>./tests/Command/JobsCommandTest.php</file> <file>./tests/Command/AccountCommandTest.php</file> </testsuite> <testsuite name="base"> <directory>./tests/Base</directory> </testsuite> <testsuite name="controller"> <directory>./tests/Controller</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">./src/</directory> <exclude> <directory>./src/database/migrations/</directory> <directory>./src/config/</directory> <directory>./src/views/</directory> </exclude> </whitelist> </filter> </phpunit>
Fix strange color button before Lolipop
<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> <style name="CalcButtonMedium" parent="android:style/Widget.Material.Button.Borderless"> <item name="android:textSize">18sp</item> <item name="android:textColor">#FAFAFA</item> </style> <style name="CalcButtonLarge" parent="android:style/Widget.Material.Button.Borderless"> <item name="android:textSize">28sp</item> <item name="android:textColor">#FAFAFA</item> </style> </resources>
<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> <style name="CalcButtonMedium" parent="@style/Widget.AppCompat.Button.Borderless"> <item name="android:textSize">18sp</item> <item name="android:textColor">#FAFAFA</item> </style> <style name="CalcButtonLarge" parent="@style/Widget.AppCompat.Button.Borderless"> <item name="android:textSize">28sp</item> <item name="android:textColor">#FAFAFA</item> </style> </resources>
Add blacklist to ignore vendor/ for code coverage
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="tests/bootstrap.php" backupGlobals="false" colors="false" verbose="false"> <php> <!-- Unit Testing Variables --> <!-- <var name="VAR" value="Values" /> --> </php> <testsuites> <testsuite name="PHPUnit"> <directory suffix="Test.php">tests</directory> </testsuite> </testsuites> <logging> <log type="coverage-html" target="build/coverage" title="FormKit" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70"/> <log type="coverage-clover" target="build/logs/clover.xml"/> <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/> </logging> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="tests/bootstrap.php" backupGlobals="false" colors="false" verbose="false"> <php> <!-- Unit Testing Variables --> <!-- <var name="VAR" value="Values" /> --> </php> <!-- ignore for code coverage report --> <filter> <blacklist> <directory suffix=".php">vendor/</directory> </blacklist> </filter> <testsuites> <testsuite name="PHPUnit"> <directory suffix="Test.php">tests</directory> </testsuite> </testsuites> <logging> <log type="coverage-html" target="build/coverage" title="FormKit" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70"/> <log type="coverage-clover" target="build/logs/clover.xml"/> <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/> </logging> </phpunit>
Load groovy files from classpath instead of file system.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> <import resource="spring/resources.xml"/> <bean id="grailsApplication" class="org.codehaus.groovy.grails.commons.GrailsApplicationFactoryBean"> <description>Grails application factory bean</description> <property name="groovyFiles"> <value>file:grails-app/**/*.groovy</value> </property> </bean> </beans>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> <import resource="spring/resources.xml"/> <bean id="grailsApplication" class="org.codehaus.groovy.grails.commons.GrailsApplicationFactoryBean"> <description>Grails application factory bean</description> <property name="groovyFiles"> <value>classpath:**/*.groovy</value> </property> </bean> </beans>
Index country on ISO code
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of the Sylius package. (c) Paweł Jędrzejewski For the full copyright and license information, please view the LICENSE file that was distributed with this source code. --> <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"> <mapped-superclass name="Sylius\Component\Addressing\Model\Country" table="sylius_country"> <id name="id" column="id" type="integer"> <generator strategy="AUTO" /> </id> <field name="isoName" column="iso_name" type="string" /> <one-to-many field="provinces" target-entity="Sylius\Component\Addressing\Model\ProvinceInterface" mapped-by="country"> <cascade> <cascade-all/> </cascade> </one-to-many> </mapped-superclass> </doctrine-mapping>
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of the Sylius package. (c) Paweł Jędrzejewski For the full copyright and license information, please view the LICENSE file that was distributed with this source code. --> <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"> <mapped-superclass name="Sylius\Component\Addressing\Model\Country" table="sylius_country"> <indexes> <index columns="iso_name" /> </indexes> <id name="id" column="id" type="integer"> <generator strategy="AUTO" /> </id> <field name="isoName" column="iso_name" type="string" length="3" /> <one-to-many field="provinces" target-entity="Sylius\Component\Addressing\Model\ProvinceInterface" mapped-by="country"> <cascade> <cascade-all/> </cascade> </one-to-many> </mapped-superclass> </doctrine-mapping>
Switch to 2003 namespace of XInclude
<?xml version="1.0" encoding="UTF-8"?> <book xml:id="book" xmlns="http://docbook.org/ns/docbook" version="5.0"> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="book/bookinfo.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="book/dedication.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="book/preface.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="content/tables.xml"/> <!-- Appendices --> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="appendix/cc.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="appendix/mit.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="appendix/glossary.xml"/> <index/> </book>
<?xml version="1.0" encoding="UTF-8"?> <book xml:id="book" xmlns="http://docbook.org/ns/docbook" version="5.0"> <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="book/bookinfo.xml"/> <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="book/dedication.xml"/> <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="book/preface.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="content/tables.xml"/> <!-- Appendices --> <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="appendix/cc.xml"/> <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="appendix/mit.xml"/> <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="appendix/glossary.xml"/> <index/> </book>
Add default google fonts API key
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd"> <default> <design> <mageziner> <enable_frontend>1</enable_frontend> </mageziner> </design> </default> </config>
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd"> <default> <design> <mageziner> <enable_frontend>1</enable_frontend> <api_google>AIzaSyA3LulzdpCqe4OmMqYOtr3rUlUIwMXE2i0</api_google> </mageziner> </design> </default> </config>
Set IDEA debug configuration remote webpack URL
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Debug Frontend (gulp server)" type="JavascriptDebugType" factoryName="JavaScript Debug" engineId="98ca6316-2f89-46d9-a9e5-fa9e2b0625b3" uri="http://localhost:5000/"> <mapping url="http://localhost:5000" local-file="$PROJECT_DIR$/src" /> <RunnerSettings RunnerId="JavascriptDebugRunner" /> <ConfigurationWrapper RunnerId="JavascriptDebugRunner" /> <method /> </configuration> </component>
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Debug Frontend (gulp server)" type="JavascriptDebugType" factoryName="JavaScript Debug" engineId="98ca6316-2f89-46d9-a9e5-fa9e2b0625b3" uri="http://localhost:5000/"> <mapping url="webpack://src" local-file="$PROJECT_DIR$/src" /> <RunnerSettings RunnerId="JavascriptDebugRunner" /> <ConfigurationWrapper RunnerId="JavascriptDebugRunner" /> <method /> </configuration> </component>
Make automatic updates the default behaviour
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="@string/general_settings"> <CheckBoxPreference android:key="auto_update" android:title="@string/pref_auto_download" android:defaultValue="false"/> </PreferenceCategory> <PreferenceCategory android:title="@string/reminders"> <RingtonePreference android:title="@string/reminder_ringtone" android:key="reminder_tone" android:ringtoneType="notification|alarm" android:showDefault="true" android:showSilent="true"/> <CheckBoxPreference android:title="@string/insistent_alarm" android:key="insistent"/> </PreferenceCategory> </PreferenceScreen>
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="@string/general_settings"> <CheckBoxPreference android:key="auto_update" android:title="@string/pref_auto_download" android:defaultValue="true"/> </PreferenceCategory> <PreferenceCategory android:title="@string/reminders"> <RingtonePreference android:title="@string/reminder_ringtone" android:key="reminder_tone" android:ringtoneType="notification|alarm" android:showDefault="true" android:showSilent="true"/> <CheckBoxPreference android:title="@string/insistent_alarm" android:key="insistent"/> </PreferenceCategory> </PreferenceScreen>
Increase size of contact 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="wrap_content" android:minHeight="?android:attr/listPreferredItemHeight" android:gravity="center_vertical" android:orientation="horizontal"> <FrameLayout android:layout_width="72dp" android:layout_height="72dp"> <ImageView android:id="@+id/list_item_contact_image" android:layout_gravity="center" android:layout_width="40dp" android:layout_height="40dp"/> </FrameLayout> <TextView android:id="@+id/list_item_contact_name_textview" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="New Text" android:fontFamily="sans-serif-condensed" android:textAppearance="?android:textAppearanceLarge" /> <!--<ImageView--> <!--android:layout_width="wrap_content"--> <!--android:layout_height="wrap_content"--> <!--android:id="@+id/imageView"/>--> </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="wrap_content" android:minHeight="?android:attr/listPreferredItemHeight" android:gravity="center_vertical" android:orientation="horizontal"> <FrameLayout android:layout_width="72dp" android:layout_height="72dp"> <ImageView android:id="@+id/list_item_contact_image" android:layout_gravity="center" android:layout_width="48dp" android:layout_height="48dp"/> </FrameLayout> <TextView android:id="@+id/list_item_contact_name_textview" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="New Text" android:fontFamily="sans-serif-condensed" android:textAppearance="?android:textAppearanceLarge" /> <!--<ImageView--> <!--android:layout_width="wrap_content"--> <!--android:layout_height="wrap_content"--> <!--android:id="@+id/imageView"/>--> </LinearLayout>
Add GitHub link navigation to Rider's VCS log
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="VcsDirectoryMappings"> <mapping directory="$PROJECT_DIR$/.." vcs="Git" /> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="IssueNavigationConfiguration"> <option name="links"> <list> <IssueNavigationLink> <option name="issueRegexp" value="#(\d+)" /> <option name="linkRegexp" value="https://github.com/JetBrains/resharper-unity/issues/$1" /> </IssueNavigationLink> </list> </option> </component> <component name="VcsDirectoryMappings"> <mapping directory="$PROJECT_DIR$/.." vcs="Git" /> </component> </project>
Remove "Hello, world!" sample text.
<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:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"> <TextView android:text="@string/hello_world" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </RelativeLayout>
<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:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"> </RelativeLayout>
Add supportsRtl to Sample app
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.braintreepayments.sample"> <uses-permission android:name="android.permission.VIBRATE" /> <uses-permission android:name="android.permission.CAMERA" /> <application android:name=".SampleApplication" android:allowBackup="true" android:label="@string/app_name" android:theme="@android:style/Theme.Holo.Light" android:icon="@mipmap/ic_launcher"> <activity android:name=".SampleActivity" 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=".LightThemeActivity" android:theme="@style/LightTheme" /> <activity android:name=".DarkThemeActivity" android:theme="@style/DarkTheme" /> </application> </manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.braintreepayments.sample"> <uses-permission android:name="android.permission.VIBRATE" /> <uses-permission android:name="android.permission.CAMERA" /> <application android:allowBackup="true" android:supportsRtl="true" android:name=".SampleApplication" android:label="@string/app_name" android:theme="@android:style/Theme.Holo.Light" android:icon="@mipmap/ic_launcher"> <activity android:name=".SampleActivity" 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=".LightThemeActivity" android:theme="@style/LightTheme" /> <activity android:name=".DarkThemeActivity" android:theme="@style/DarkTheme" /> </application> </manifest>
Add basedir files to binary dist.
<?xml version="1.0" encoding="UTF-8"?> <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> <id>bin-with-dependencies</id> <formats> <format>tar.gz</format> <format>tar.bz2</format> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <dependencySets> <dependencySet> <useTransitiveDependencies>true</useTransitiveDependencies> <useTransitiveFiltering>true</useTransitiveFiltering> <excludes> <exclude>org.apache.lucene:lucene-core</exclude> <exclude>org.apache.solr:solr-core</exclude> </excludes> </dependencySet> </dependencySets> </assembly>
<?xml version="1.0" encoding="UTF-8"?> <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> <id>bin-with-dependencies</id> <formats> <format>tar.gz</format> <format>tar.bz2</format> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <fileSets> <fileSet> <directory>${project.basedir}</directory> <outputDirectory>/</outputDirectory> <includes> <include>AUTHORS*</include> <include>CHANGELOG*</include> <include>LICENSE*</include> <include>README.md*</include> </includes> </fileSet> </fileSets> <dependencySets> <dependencySet> <useTransitiveDependencies>true</useTransitiveDependencies> <useTransitiveFiltering>true</useTransitiveFiltering> <excludes> <exclude>org.apache.lucene:lucene-core</exclude> <exclude>org.apache.solr:solr-core</exclude> </excludes> </dependencySet> </dependencySets> </assembly>
Declare support for all screen-sizes
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="me.amanj.splittimer"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AndroidTheme"> <android:uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <android:uses-permission android:name="android.permission.READ_PHONE_STATE" /> <android:uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <activity android:name=".ui.SplitTimerActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.VIEW" /> <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="me.amanj.splittimer"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AndroidTheme"> <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" /> <android:uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <android:uses-permission android:name="android.permission.READ_PHONE_STATE" /> <android:uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <activity android:name=".ui.SplitTimerActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
Add missing en-GB licences activity label
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="bottom_bar_favorites_label">Favourites</string> <string name="activity_favorites">Favourites</string> <string name="about_licenses">Open source licences</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="bottom_bar_favorites_label">Favourites</string> <string name="activity_favorites">Favourites</string> <string name="about_licenses">Open source licences</string> <string name="licenses_label">Open source licences</string> </resources>
FIX set executable file-permission for scripts (on UNIX)
<?xml version="1.0"?> <project name="MMIR build resources" default="copy-resources"> <target name="copy-resources"> <!-- copy resources to parent directory * ANT scripts and settings * Cordova hooks for building MMIR apps --> <copy todir="../" preservelastmodified="true" overwrite="true"> <fileset dir="resources"/> </copy> <!-- create settings-file from settingsDefault (but only, if it is not exists yet) --> <copy file= "resources/mmir-build.settingsDefault" tofile="../mmir-build.settings" overwrite="false"/> </target> </project>
<?xml version="1.0"?> <project name="MMIR build resources" default="copy-resources"> <target name="copy-resources"> <!-- copy resources to parent directory * ANT scripts and settings * Cordova hooks for building MMIR apps --> <copy todir="../" preservelastmodified="true" overwrite="true"> <fileset dir="resources"/> </copy> <!-- create settings-file from settingsDefault (but only, if it is not exists yet) --> <copy file= "resources/mmir-build.settingsDefault" tofile="../mmir-build.settings" overwrite="false"/> <!-- FIX set file permissions for UNIX: set executable-flag for scripts (*.js, *.xml) --> <property location="${basedir}/../" name="targetdir"/> <!-- only consider files that exist in ./resources/* AND to copy-target ./../*: map files names from ./resources/* to ./../* ...but only for script files *.js (nodejs) and *.xml (ant) --> <pathconvert property="remappedlist" pathsep=","> <fileset dir="resources" id="source-list" includes="**/*.js,**/*.xml"/> <mapper> <globmapper from="${basedir}/resources/*" to="*" handledirsep="yes"/> </mapper> </pathconvert> <!-- remapped list of script files: --> <fileset id="target.script.files" dir="${targetdir}" includes="${remappedlist}"> </fileset> <!-- set the executable flag for file-owner --> <chmod perm="u+x"> <fileset refid="target.script.files"/> </chmod> </target> </project>
Make it installable from appstore
<?xml version="1.0"?> <info> <id>fbsync</id> <name>Fb Sync</name> <description>A Facebook data syncing tool for your owncloud contacts</description> <licence>AGPL</licence> <author>NOIJN</author> <version>1.8-beta</version> <namespace>FbSync</namespace> <category>other</category> <dependencies> <owncloud min-version="9.0" max-version="9.1" /> </dependencies> <ocsid>174311</ocsid> <documentation> <user>https://github.com/skjnldsv/Owncloud-FBSync</user> </documentation> </info>
<?xml version="1.0"?> <info> <id>fbsync</id> <name>Fb Sync</name> <description>A Facebook data syncing tool for your owncloud contacts</description> <licence>AGPL</licence> <author>NOIJN</author> <version>1.8</version> <namespace>FbSync</namespace> <category>other</category> <dependencies> <owncloud min-version="9.0" max-version="9.1" /> </dependencies> <ocsid>174311</ocsid> <documentation> <user>https://github.com/skjnldsv/Owncloud-FBSync</user> </documentation> </info>
Add some missing dependencies in a GWT module.
<?xml version="1.0" encoding="utf-8"?> <module> <inherits name="com.google.gwt.user.User"/> <inherits name="com.google.gwt.junit.JUnit"/> <inherits name="com.google.common.escape.testing.Testing"/> <inherits name="com.google.common.net.Net"/> <inherits name="com.google.common.testing.Testing"/> <inherits name="org.truth0.Truth"/> <entry-point class="com.google.common.net.TestModuleEntryPoint"/> <source path=""/> <add-linker name="std"/> <super-source path="super"/> </module>
<?xml version="1.0" encoding="utf-8"?> <module> <inherits name="com.google.gwt.user.User"/> <inherits name="com.google.gwt.junit.JUnit"/> <inherits name="com.google.common.annotations.Annotations"/> <inherits name="com.google.common.base.Base"/> <inherits name="com.google.common.collect.Collect"/> <inherits name="com.google.common.escape.Escape"/> <inherits name="com.google.common.escape.testing.Testing"/> <inherits name="com.google.common.net.Net"/> <inherits name="com.google.common.testing.Testing"/> <inherits name="org.truth0.Truth"/> <entry-point class="com.google.common.net.TestModuleEntryPoint"/> <source path=""/> <add-linker name="std"/> <super-source path="super"/> </module>
Change project ITWeddingc2016.04. Add permission for Internet connection.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ua.uagames.itwedding.v201604"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ua.uagames.itwedding.v201604"> <uses-permission android:name="android.permission.INTERNET"/> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
Create new identifier translation framework with unit tests
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <bean class="org.fcrepo.http.commons.session.SessionFactory"/> <!-- Mints PIDs--> <bean class="org.fcrepo.kernel.identifiers.UUIDPidMinter"/> <context:component-scan base-package="org.fcrepo.kernel.services, org.fcrepo.http, org.fcrepo.serialization, org.fcrepo.auth.roles.common" /> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <bean class="org.fcrepo.http.commons.session.SessionFactory"/> <!-- Mints PIDs--> <bean class="org.fcrepo.kernel.identifiers.UUIDPidMinter"/> <!-- Identifier translation chain --> <util:list id="translationChain" value-type="org.fcrepo.kernel.identifiers.InternalIdentifierConverter"> <bean class="org.fcrepo.kernel.identifiers.NamespaceConverter"/> </util:list> <context:component-scan base-package="org.fcrepo.kernel.services, org.fcrepo.http, org.fcrepo.serialization, org.fcrepo.auth.roles.common" /> </beans>
Fix pressed state for tablets
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:state_pressed="false" android:state_focused="false" android:state_activated="false" android:drawable="@drawable/list_background_holo" /> <item android:state_pressed="false" android:state_focused="true" android:drawable="@drawable/list_focused_uvweb" /> <item android:state_activated="true" android:drawable="@drawable/list_activated_holo" /> </selector>
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:state_activated="true" android:drawable="@drawable/list_activated_holo" /> <item android:state_pressed="true" android:drawable="@drawable/abs__list_pressed_holo_light" /> <item android:state_focused="true" android:drawable="@drawable/list_focused_uvweb" /> <item android:drawable="@drawable/list_background_holo" /> </selector>
Remove unique="true" on id field
<doctrine-mongo-mapping xmlns="http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping.xsd"> <document name="Integrated\Bundle\ContentBundle\Document\ContentType\ContentType" collection="content_type"> <field fieldName="id" id="true" strategy="NONE" unique="true" /> <field fieldName="class" type="string" /> <field fieldName="name" type="string" /> <field fieldName="options" type="hash" /> <field fieldName="createdAt" type="date" /> <embed-many field="fields"> <discriminator-map> <discriminator-mapping value="default" class="Integrated\Bundle\ContentBundle\Document\ContentType\Embedded\Field" /> <discriminator-mapping value="custom" class="Integrated\Bundle\ContentBundle\Document\ContentType\Embedded\CustomField" /> </discriminator-map> <default-discriminator-value value="default" /> </embed-many> </document> </doctrine-mongo-mapping>
<doctrine-mongo-mapping xmlns="http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping.xsd"> <document name="Integrated\Bundle\ContentBundle\Document\ContentType\ContentType" collection="content_type"> <field fieldName="id" id="true" strategy="NONE" /> <field fieldName="class" type="string" /> <field fieldName="name" type="string" /> <field fieldName="options" type="hash" /> <field fieldName="createdAt" type="date" /> <embed-many field="fields"> <discriminator-map> <discriminator-mapping value="default" class="Integrated\Bundle\ContentBundle\Document\ContentType\Embedded\Field" /> <discriminator-mapping value="custom" class="Integrated\Bundle\ContentBundle\Document\ContentType\Embedded\CustomField" /> </discriminator-map> <default-discriminator-value value="default" /> </embed-many> </document> </doctrine-mongo-mapping>
Make actions look more like buttons.
<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/textViewItemActionTitle" style="@style/Widget.SeriesGuide.Button.Borderless.Default" android:layout_width="match_parent" android:layout_height="48dp" android:ellipsize="end" android:singleLine="true" tools:text="Episode Action" />
<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/textViewItemActionTitle" style="@style/Widget.SeriesGuide.Button.Borderless" android:layout_width="match_parent" android:layout_height="wrap_content" android:ellipsize="end" tools:text="Some Extension Action" />
Revert "Adding application token grant handler into identity.xml"
<processor> <!-- Remove the scope validator from the identity.xml if it exists. Otherwise running the build several times causes several scope validator elements to be added--> <remove> <name>//s:Server/s:OAuth/s:OAuthScopeValidator</name> </remove> <!-- Add the scope validator config element --> <add> <after>//s:Server/s:OAuth/s:OAuthCallbackHandlers</after> <value><![CDATA[<OAuthScopeValidator class="org.wso2.carbon.identity.oauth2.validators.JDBCScopeValidator"/>]]></value> </add> <!-- Add the ntlm grant type validator config element --> <add> <after>//s:Server/s:OAuth/s:SupportedGrantTypes/s:SupportedGrantType[s:GrantTypeName='iwa:ntlm']/s:GrantTypeName</after> <value> <![CDATA[<GrantTypeValidatorImplClass>org.wso2.carbon.identity.oauth.common.NTLMAuthenticationValidator</GrantTypeValidatorImplClass>]]></value> </add> <!-- Add the application_token grant type config element --> <add> <inside>//s:Server/s:OAuth/s:SupportedGrantTypes</inside> <value> <![CDATA[ <SupportedGrantType> <GrantTypeName>application_token</GrantTypeName> <GrantTypeHandlerImplClass>org.wso2.carbon.apimgt.keymgt.handlers.ApplicationTokenGrantHandler</GrantTypeHandlerImplClass> <GrantTypeValidatorImplClass>org.wso2.carbon.apimgt.keymgt.handlers.ApplicationTokenGrantValidator</GrantTypeValidatorImplClass> </SupportedGrantType> ]]></value> </add> </processor>
<processor> <!-- Remove the scope validator from the identity.xml if it exists. Otherwise running the build several times causes several scope validator elements to be added--> <remove> <name>//s:Server/s:OAuth/s:OAuthScopeValidator</name> </remove> <!-- Add the scope validator config element --> <add> <after>//s:Server/s:OAuth/s:OAuthCallbackHandlers</after> <value><![CDATA[<OAuthScopeValidator class="org.wso2.carbon.identity.oauth2.validators.JDBCScopeValidator"/>]]></value> </add> <!-- Add the ntlm grant type validator config element --> <add> <after>//s:Server/s:OAuth/s:SupportedGrantTypes/s:SupportedGrantType[s:GrantTypeName='iwa:ntlm']/s:GrantTypeName</after> <value> <![CDATA[<GrantTypeValidatorImplClass>org.wso2.carbon.identity.oauth.common.NTLMAuthenticationValidator</GrantTypeValidatorImplClass>]]></value> </add> </processor>
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>
Build file updated to include com_login tests.
<?xml version="1.0" encoding="UTF-8"?> <project name="Extranet0ffice-1.0" basedir="." default="build"> <fileset dir="./src" id="codefiles"> <include name="**" /> </fileset> <fileset dir="./test/components/com_projects" id="testfiles"> <include name="controllerTest.php"/> </fileset> <property name="report.dir" value="${project.basedir}/report"/> <target name="prepare"> <mkdir dir="${report.dir}"/> </target> <target name="test"> <phpunit haltonfailure="true" printsummary="true"> <batchtest> <fileset refid="testfiles" /> </batchtest> <formatter type="xml" todir="${report.dir}" outfile="logfile.xml"/> </phpunit> </target> <target name="tar"> <tar destfile="${project.basedir}/${xinc.project.name}-${xinc.build.label}.tar.gz" compression="gzip"> <fileset refid="codefiles" /> </tar> </target> <target name="generate-report"> <phpunit2report infile="${report.dir}/logfile.xml" styledir="resources/xsl" todir="report" format="noframes"/> </target> <target name="build" depends="prepare, test, tar, generate-report"> </target> </project>
<?xml version="1.0" encoding="UTF-8"?> <project name="Extranet0ffice-1.0" basedir="." default="build"> <fileset dir="./src" id="codefiles"> <include name="**" /> </fileset> <fileset dir="./test/components" id="testfiles"> <include name="com_projects/controllerTest.php"/> <include name="com_login/controllerTest.php"/> </fileset> <property name="report.dir" value="${project.basedir}/report"/> <target name="prepare"> <mkdir dir="${report.dir}"/> </target> <target name="test"> <phpunit haltonfailure="true" printsummary="true"> <batchtest> <fileset refid="testfiles" /> </batchtest> <formatter type="xml" todir="${report.dir}" outfile="logfile.xml"/> </phpunit> </target> <target name="tar"> <tar destfile="${project.basedir}/${xinc.project.name}-${xinc.build.label}.tar.gz" compression="gzip"> <fileset refid="codefiles" /> </tar> </target> <target name="generate-report"> <phpunit2report infile="${report.dir}/logfile.xml" styledir="resources/xsl" todir="report" format="noframes"/> </target> <target name="build" depends="prepare, test, tar, generate-report"> </target> </project>
Upgrade build's version from 0.1 to 20140421
<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.bizobj</groupId> <artifactId>ftp-server-test</artifactId> <version>0.0.1-SNAPSHOT</version> <name>bizobj-ftp-server-test</name> <dependencies> <dependency> <groupId>org.bizobj</groupId> <artifactId>ftp-server</artifactId> <version>0.1</version> </dependency> <dependency> <groupId>org.bizobj</groupId> <artifactId>jetty-starter</artifactId> <version>0.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.bizobj</groupId> <artifactId>ftp-server-test</artifactId> <version>0.0.1-SNAPSHOT</version> <name>bizobj-ftp-server-test</name> <dependencies> <dependency> <groupId>org.bizobj</groupId> <artifactId>ftp-server</artifactId> <version>20140421</version> </dependency> <dependency> <groupId>org.bizobj</groupId> <artifactId>jetty-starter</artifactId> <version>0.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> </project>
Update to extended support release version 18.0 and version 4.15
<?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. --> <flex-sdk-description> <name>Apache Flex 4.14.0 FP11.1 AIR15.0 en_US</name> <version>4.14.0</version> <build>0</build> </flex-sdk-description>
<?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. --> <flex-sdk-description> <name>Apache Flex 4.15.0 FP18.0 AIR18.0 en_US</name> <version>4.15.0</version> <build>20151228</build> </flex-sdk-description>
Update idea config to go 1.2
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" assert-keyword="false" jdk-15="false" project-jdk-name="Go sdk go1.1.2 darwin/amd64" project-jdk-type="Google Go SDK"> <output url="file://$PROJECT_DIR$/out" /> </component> <component name="masterDetails"> <states> <state key="ProjectJDKs.UI"> <settings> <last-edited>1.7</last-edited> <splitter-proportions> <option name="proportions"> <list> <option value="0.2" /> </list> </option> </splitter-proportions> </settings> </state> </states> </component> </project>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" assert-keyword="false" jdk-15="false" project-jdk-name="Go sdk go1.2 darwin/amd64" project-jdk-type="Google Go SDK"> <output url="file://$PROJECT_DIR$/out" /> </component> </project>
Revert "Revert "added handler to web_config.xml for path .well-known/acme-challenge/*""
<?xml version = "1.0" encoding="UTF-8"?> <configuration> <system.webServer> <staticContent> <mimeMap fileExtension="*" mimeType="text/json" /> </staticContent> </system.webServer> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </configuration>
<?xml version = "1.0" encoding="UTF-8"?> <configuration> <system.webServer> <staticContent> <mimeMap fileExtension="*" mimeType="text/json" /> </staticContent> <handlers> <add name="AcmeChallenge" path=".well-known/acme-challenge/*" verb="*" modules="StaticFileModule,DefaultDocumentModule" resourceType="Either" requireAccess="Read" /> </handlers> </system.webServer> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </configuration>
Add proper styling to region password dialog
<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" android:padding="20dp" app:hintEnabled="false"> <android.support.v7.widget.AppCompatEditText android:id="@+id/move_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:maxLines="1" android:hint="@string/password" android:inputType="textWebPassword" android:layout_gravity="center_horizontal" android:textSize="15sp"/> </android.support.design.widget.TextInputLayout>
<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" android:padding="20dp" app:hintEnabled="false"> <android.support.v7.widget.AppCompatEditText android:id="@+id/move_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:maxLines="1" android:hint="@string/password" android:inputType="textWebPassword" android:layout_gravity="center_horizontal" android:textSize="15sp" android:textColor="?attr/themedColorPrimaryText" android:theme="@style/ExploreField"/> </android.support.design.widget.TextInputLayout>
Exclude files from coverage in Travis tests
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" bootstrap="bootstrap.php" > <php> <server name="HTTP_HOST" value="www.simplemappr.local"/> <server name="REMOTE_ADDR" value="000.000.000"/> <const name="BROWSER" value="chrome"/> </php> <testsuites> <testsuite name="Unit"> <directory>./unit</directory> </testsuite> <testsuite name="Functional"> <directory>./functional</directory> </testsuite> <testsuite name="Binary"> <directory>./binary</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>./</directory> <exclude> <file>bootstrap.php</file> <file>SimpleMapprMixin.php</file> <file>SimpleMapprTest.php</file> </exclude> </whitelist> </filter> <logging> <log type="coverage-clover" target="build/logs/clover.xml"/> </logging> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" bootstrap="bootstrap.php" > <php> <server name="HTTP_HOST" value="www.simplemappr.local"/> <server name="REMOTE_ADDR" value="000.000.000"/> <const name="BROWSER" value="chrome"/> </php> <testsuites> <testsuite name="Unit"> <directory>./unit</directory> </testsuite> <testsuite name="Functional"> <directory>./functional</directory> </testsuite> <testsuite name="Binary"> <directory>./binary</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>./</directory> <exclude> <file>bootstrap.php</file> <file>SimpleMapprMixin.php</file> <file>SimpleMapprTest.php</file> <file>binary/MapprApiTest.php</file> <file>binary/MapprMapTest.php</file> </exclude> </whitelist> </filter> <logging> <log type="coverage-clover" target="build/logs/clover.xml"/> </logging> </phpunit>
Fix polling frequency for IE11 pin
<?xml version="1.0" encoding="utf-8"?><browserconfig><msapplication><tile><square70x70logo src="Content/images/Golden Keys/tiny.png"/><square150x150logo src="Content/images/Golden Keys/square.png"/><wide310x150logo src="Content/images/Golden Keys/wide.png"/><square310x310logo src="Content/images/Golden Keys/large.png"/><TileColor>#000000</TileColor></tile><notification><polling-uri src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=1"/><polling-uri2 src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=2"/><polling-uri3 src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=3"/><polling-uri4 src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=4"/><polling-uri5 src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=5"/><frequency>30</frequency><cycle>1</cycle></notification></msapplication></browserconfig>
<?xml version="1.0" encoding="utf-8"?><browserconfig><msapplication><tile><square70x70logo src="Content/images/Golden Keys/tiny.png"/><square150x150logo src="Content/images/Golden Keys/square.png"/><wide310x150logo src="Content/images/Golden Keys/wide.png"/><square310x310logo src="Content/images/Golden Keys/large.png"/><TileColor>#000000</TileColor></tile><notification><polling-uri src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=1"/><polling-uri2 src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=2"/><polling-uri3 src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=3"/><polling-uri4 src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=4"/><polling-uri5 src="http://notifications.buildmypinnedsite.com/?feed=http://borderlands2goldenkeys.laedit.net/rss&amp;id=5"/><frequency>360</frequency><cycle>1</cycle></notification></msapplication></browserconfig>
Fix POSSYSTEM <=> MoONETARY stub
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <stub> <name>validation paiement</name> <type endpoint="/validationpaiement">synch</type> <message mediatype="application/json">{"Id_ticket" : "1234567", "Validation" : "true"}</message> </stub>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <stub> <name>validation paiement</name> <type endpoint="/validationpaiement">synch</type> <message mediatype="application/json">{ "validation" : "true"} </message> </stub>
Update name for logger artifact
<?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"> <parent> <artifactId>jftn</artifactId> <groupId>org.fidonet</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.fidonet.logger</groupId> <artifactId>logger</artifactId> <version>1.0-SNAPSHOT</version> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>jftn</artifactId> <groupId>org.fidonet</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.fidonet.logger</groupId> <artifactId>logger</artifactId> <version>1.0-SNAPSHOT</version> <name>logger</name> </project>
Fix package name, and package as tgz
<assembly> <id>ingester</id> <formats> <format>zip</format> </formats> <dependencySets> <dependencySet> <outputDirectory>lib</outputDirectory> <useTransitiveDependencies>true</useTransitiveDependencies> <useTransitiveFiltering>true</useTransitiveFiltering> <includes> <include>*:*</include> </includes> <scope>runtime</scope> </dependencySet> </dependencySets> <fileSets> <fileSet> <outputDirectory>config</outputDirectory> <directory>src/main/resources</directory> </fileSet> </fileSets> </assembly>
<assembly> <id>package</id> <formats> <format>tar.gz</format> </formats> <dependencySets> <dependencySet> <outputDirectory>lib</outputDirectory> <useTransitiveDependencies>true</useTransitiveDependencies> <useTransitiveFiltering>true</useTransitiveFiltering> <includes> <include>*:*</include> </includes> <scope>runtime</scope> </dependencySet> </dependencySets> <fileSets> <fileSet> <outputDirectory>config</outputDirectory> <directory>src/main/resources</directory> </fileSet> </fileSets> </assembly>
Add style to youtube sample
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:draggable_panel="http://schemas.android.com/apk/res-auto" android:id="@+id/fl_container" android:layout_width="match_parent" android:layout_height="match_parent"> <!-- Movie Thumbnail --> <ImageView android:id="@+id/iv_thumbnail" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scaleType="centerCrop" android:background="@color/black"/> <!-- DraggablePanel --> <com.github.pedrovgs.DraggablePanel android:id="@+id/draggable_panel" android:layout_width="fill_parent" android:layout_height="fill_parent" draggable_panel:x_scale_factor="@dimen/x_scale_factor" draggable_panel:y_scale_factor="@dimen/y_scale_factor" draggable_panel:top_fragment_height="@dimen/top_fragment_height" draggable_panel:top_fragment_margin_right="@dimen/top_fragment_margin" draggable_panel:top_fragment_margin_bottom="@dimen/top_fragment_margin" draggable_panel:enable_horizontal_alpha_effect="false"/> </FrameLayout>
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:draggable_panel="http://schemas.android.com/apk/res-auto" android:id="@+id/fl_container" android:layout_width="match_parent" android:layout_height="match_parent"> <!-- Movie Thumbnail --> <ImageView android:id="@+id/iv_thumbnail" android:layout_width="fill_parent" android:layout_height="fill_parent" style="@style/image_view"/> <!-- DraggablePanel --> <com.github.pedrovgs.DraggablePanel android:id="@+id/draggable_panel" android:layout_width="fill_parent" android:layout_height="fill_parent" draggable_panel:x_scale_factor="@dimen/x_scale_factor" draggable_panel:y_scale_factor="@dimen/y_scale_factor" draggable_panel:top_fragment_height="@dimen/top_fragment_height" draggable_panel:top_fragment_margin_right="@dimen/top_fragment_margin" draggable_panel:top_fragment_margin_bottom="@dimen/top_fragment_margin" draggable_panel:enable_horizontal_alpha_effect="false"/> </FrameLayout>
Prepare for new development cycle
<?xml version='1.0' encoding='UTF-8' ?> <project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <groupId>com.kytkemo</groupId> <artifactId>spring-app</artifactId> <version>1.1.4</version> <packaging>maven-archetype</packaging> <name>spring-app</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </pluginManagement> </build> </project>
<?xml version='1.0' encoding='UTF-8' ?> <project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <groupId>com.kytkemo</groupId> <artifactId>spring-app</artifactId> <version>1.1.5-SNAPSHOT</version> <packaging>maven-archetype</packaging> <name>spring-app</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </pluginManagement> </build> </project>
Set source, and target as 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>sk</groupId> <artifactId>mmap-ds</artifactId> <version>0.1</version> <properties> <slf4j-log4j12.version>1.7.13</slf4j-log4j12.version> <testng.version>6.1.1</testng.version> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j-log4j12.version}</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>sk</groupId> <artifactId>mmap-ds</artifactId> <version>0.1</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <properties> <slf4j-log4j12.version>1.7.13</slf4j-log4j12.version> <testng.version>6.1.1</testng.version> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j-log4j12.version}</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
Fix test running-configuration in pycharm
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Nosetests docker-compose" type="tests" factoryName="Nosetests"> <option name="INTERPRETER_OPTIONS" value="" /> <option name="PARENT_ENVS" value="true" /> <option name="SDK_HOME" value="docker-compose://[$PROJECT_DIR$/docker-compose.test.yml]:test-app//opt/pycroft/venv/bin/python" /> <option name="WORKING_DIRECTORY" value="" /> <option name="IS_MODULE_SDK" value="false" /> <option name="ADD_CONTENT_ROOTS" value="true" /> <option name="ADD_SOURCE_ROOTS" value="true" /> <module name="Pycroft" /> <EXTENSION ID="PythonCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" runner="coverage.py" /> <PathMappingSettings> <option name="pathMappings"> <list> <mapping local-root="$PROJECT_DIR$" remote-root="/opt/pycroft/app" /> </list> </option> </PathMappingSettings> <option name="_new_regexPattern" value="&quot;&quot;" /> <option name="_new_additionalArguments" value="&quot;-v&quot;" /> <option name="_new_target" value="&quot;tests&quot;" /> <option name="_new_targetType" value="&quot;PYTHON&quot;" /> <method /> </configuration> </component>
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Nosetests docker-compose" type="tests" factoryName="Nosetests"> <module name="pycroft" /> <option name="INTERPRETER_OPTIONS" value="" /> <option name="PARENT_ENVS" value="true" /> <option name="SDK_HOME" value="docker-compose://[$PROJECT_DIR$/docker-compose.test.yml]:test-app//opt/pycroft/venv/bin/python" /> <option name="WORKING_DIRECTORY" value="" /> <option name="IS_MODULE_SDK" value="false" /> <option name="ADD_CONTENT_ROOTS" value="true" /> <option name="ADD_SOURCE_ROOTS" value="true" /> <EXTENSION ID="PythonCoverageRunConfigurationExtension" runner="coverage.py" /> <PathMappingSettings> <option name="pathMappings"> <list> <mapping local-root="$PROJECT_DIR$" remote-root="/opt/pycroft/app" /> </list> </option> </PathMappingSettings> <option name="_new_regexPattern" value="&quot;&quot;" /> <option name="_new_additionalArguments" value="&quot;-v&quot;" /> <option name="_new_target" value="&quot;tests&quot;" /> <option name="_new_targetType" value="&quot;PYTHON&quot;" /> <method v="2" /> </configuration> </component>
Add service provider to code coverage whitelist exclude.
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="Unit Tests"> <directory suffix="Test.php">./tests/Unit</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> <exclude> <file>./src/Http/routes.php</file> </exclude> </whitelist> </filter> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> </php> </phpunit>
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"> <testsuites> <testsuite name="Unit Tests"> <directory suffix="Test.php">./tests/Unit</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> <exclude> <file>./src/Http/routes.php</file> <file>./src/ServiceProvider.php</file> </exclude> </whitelist> </filter> <php> <env name="APP_ENV" value="testing"/> <env name="CACHE_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/> <env name="QUEUE_DRIVER" value="sync"/> </php> </phpunit>
Update the parameter names on some of the listeners.
<metadata> <attr path="/api/package[@name='com.estimote.sdk']" name="managedName">EstimoteSdk</attr> <attr path="/api/package[@name='com.estimote.sdk.connection']" name="managedName">EstimoteSdk.Connection</attr> <attr path="/api/package[@name='com.estimote.sdk.service']" name="managedName">EstimoteSdk.Service</attr> <attr path="/api/package[@name='com.estimote.sdk.utils']" name="managedName">EstimoteSdk.Utils</attr> <attr path="/api/package[@name='com.estimote.sdk']/class[@name='BeaconManager.RangingListener']/method[@name='onBeaconsDiscovered']/parameter[@name='p0']" name="name">region</attr> <attr path="/api/package[@name='com.estimote.sdk']/class[@name='BeaconManager.RangingListener']/method[@name='onBeaconsDiscovered']/parameter[@name='p1']" name="name">beacons</attr> </metadata>
<metadata> <attr path="/api/package[@name='com.estimote.sdk']" name="managedName">EstimoteSdk</attr> <attr path="/api/package[@name='com.estimote.sdk.connection']" name="managedName">EstimoteSdk.Connection</attr> <attr path="/api/package[@name='com.estimote.sdk.service']" name="managedName">EstimoteSdk.Service</attr> <attr path="/api/package[@name='com.estimote.sdk.utils']" name="managedName">EstimoteSdk.Utils</attr> <!-- Parameter name fixups --> <attr path="/api/package[@name='com.estimote.sdk']/interface[@name='BeaconManager.RangingListener']/method[@name='onBeaconsDiscovered']/parameter[@name='p0']" name="name">region</attr> <attr path="/api/package[@name='com.estimote.sdk']/interface[@name='BeaconManager.RangingListener']/method[@name='onBeaconsDiscovered']/parameter[@name='p1']" name="name">beacons</attr> <attr path="/api/package[@name='com.estimote.sdk']/interface[@name='BeaconManager.MonitoringListener']/method[@name='onEnteredRegion']/parameter[@name='p0']" name="name">region</attr> <attr path="/api/package[@name='com.estimote.sdk']/interface[@name='BeaconManager.MonitoringListener']/method[@name='onExitedRegion']/parameter[@name='p0']" name="name">region</attr> <attr path="/api/package[@name='com.estimote.sdk']/interface[@name='BeaconManager.ErrorListener']/method[@name='onError']/parameter[@name='p0']" name="name">errorCode</attr> </metadata>
Remove JavaFX dependency from swing GUI
<?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>gui</artifactId> <version>1.3.1-SNAPSHOT</version> </parent> <groupId>org.openecard.gui</groupId> <artifactId>swing</artifactId> <packaging>jar</packaging> <name>Swing GUI</name> <dependencies> <dependency> <groupId>org.openecard.gui</groupId> <artifactId>gui-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-swing</artifactId> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.openecard</groupId> <artifactId>gui</artifactId> <version>1.3.1-SNAPSHOT</version> </parent> <groupId>org.openecard.gui</groupId> <artifactId>swing</artifactId> <packaging>jar</packaging> <name>Swing GUI</name> <dependencies> <dependency> <groupId>org.openecard.gui</groupId> <artifactId>gui-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> </dependency> </dependencies> </project>
Set color to true and selenium commented
<phpunit bootstrap="bootstrap.php" colors="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false"> <selenium> <browser name="Internet Explorer" browser="*iexplore" /> <browser name="Firefox" browser="*firefox" /> </selenium> </phpunit>
<phpunit bootstrap="bootstrap.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false"> <!-- <selenium> <browser name="Internet Explorer" browser="*iexplore" /> <browser name="Firefox" browser="*firefox" /> </selenium>--> </phpunit>
Fix build hang on systems with low disk space
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:activemq /schema/artemis-configuration.xsd"> <core xmlns="urn:activemq:core"> <paging-directory>./target/artemis/paging</paging-directory> <bindings-directory>./target/artemis/bindings</bindings-directory> <journal-directory>./target/artemis/journal</journal-directory> <large-messages-directory>./target/artemis/large-messages</large-messages-directory> <connectors> <connector name="activemq">tcp://localhost:61616</connector> </connectors> <acceptors> <acceptor name="activemq">tcp://localhost:61616</acceptor> </acceptors> <security-enabled>false</security-enabled> <queues> <queue name="foo"> <address>test-jms</address> </queue> </queues> </core> </configuration>
<configuration xmlns="urn:activemq" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:activemq /schema/artemis-configuration.xsd"> <core xmlns="urn:activemq:core"> <paging-directory>./target/artemis/paging</paging-directory> <bindings-directory>./target/artemis/bindings</bindings-directory> <journal-directory>./target/artemis/journal</journal-directory> <large-messages-directory>./target/artemis/large-messages</large-messages-directory> <connectors> <connector name="activemq">tcp://localhost:61616</connector> </connectors> <acceptors> <acceptor name="activemq">tcp://localhost:61616</acceptor> </acceptors> <max-disk-usage>-1</max-disk-usage> <security-enabled>false</security-enabled> <queues> <queue name="foo"> <address>test-jms</address> </queue> </queues> </core> </configuration>
Improve header style a bit
<?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:background="@color/abs__holo_blue_light" android:gravity="bottom" > <TextView android:id="@+id/header_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="left" android:paddingLeft="4dp" android:paddingTop="10dp" android:paddingBottom="10dp" android:textColor="@android:color/white" android:textSize="17sp" android:textStyle="bold" /> <View android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginTop="2dp" android:background="@android:color/black" /> </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:background="#aa33b5e5" android:gravity="bottom" > <TextView android:id="@+id/header_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="left" android:paddingLeft="4dp" android:paddingTop="3dp" android:paddingBottom="3dp" android:textColor="@android:color/white" android:textSize="17sp" android:textStyle="bold" /> </LinearLayout>
Prepare develop for next version
<?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.hpe.caf.worker</groupId> <artifactId>worker-jobtracking-shared</artifactId> <version>1.1-SNAPSHOT</version> <parent> <groupId>com.hpe.caf</groupId> <artifactId>caf-maven-latest</artifactId> <version>1-SNAPSHOT</version> <relativePath>../caf-maven-latest</relativePath> </parent> <dependencies> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <scope>provided</scope> </dependency> </dependencies> <ciManagement> <system>hudson</system> <url>http://cafbuilder.hpswlabs.hp.com:8080/job/worker-jobtracking-shared/</url> </ciManagement> </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.hpe.caf.worker</groupId> <artifactId>worker-jobtracking-shared</artifactId> <version>1.2-SNAPSHOT</version> <parent> <groupId>com.hpe.caf</groupId> <artifactId>caf-maven-latest</artifactId> <version>1-SNAPSHOT</version> <relativePath>../caf-maven-latest</relativePath> </parent> <dependencies> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <scope>provided</scope> </dependency> </dependencies> <ciManagement> <system>hudson</system> <url>http://cafbuilder.hpswlabs.hp.com:8080/job/worker-jobtracking-shared/</url> </ciManagement> </project>
Add rule to ignore requirement of file-level doc comments
<?xml version="1.0"?> <ruleset name="Yola"> <description>Yola Coding Standard</description> <rule ref="PSR2"> <!-- Property names MUST start with an initial underscore if they are private. --> <exclude name="PSR2.Classes.PropertyDeclaration"/> </rule> </ruleset>
<?xml version="1.0"?> <ruleset name="Yola"> <description>Yola Coding Standard</description> <rule ref="PSR2"> <!-- Property names MUST start with an initial underscore if they are private. --> <exclude name="PSR2.Classes.PropertyDeclaration"/> <!-- File docs are not necessary. --> <exclude name="PEAR.Commenting.FileComment"/> </rule> </ruleset>