Milestone 5: deliver embedded RDP sessions and lifecycle hardening
51
third_party/FreeRDP/client/Android/Studio/aFreeRDP/build.gradle
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
plugins {
|
||||
id 'com.gladed.androidgitversion' version '0.4.14'
|
||||
}
|
||||
|
||||
androidGitVersion {
|
||||
abis = ['armeabi':1, 'armeabi-v7a':2, 'arm64-v8a':3, 'mips':5, 'mips64':6, 'x86':8, 'x86_64':9 ]
|
||||
prefix ''
|
||||
}
|
||||
|
||||
println 'Version Name: ' + androidGitVersion.name()
|
||||
println 'Version Code: ' + androidGitVersion.code()
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
android {
|
||||
compileSdkVersion = rootProject.ext.compileApi
|
||||
buildToolsVersion = rootProject.ext.toolsVersion
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.freerdp.afreerdp"
|
||||
minSdkVersion rootProject.ext.minApi
|
||||
targetSdkVersion rootProject.ext.targetApi
|
||||
vectorDrawables.useSupportLibrary = true
|
||||
versionName = androidGitVersion.name()
|
||||
versionCode = androidGitVersion.code()
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
storeFile file(RELEASE_STORE_FILE)
|
||||
storePassword RELEASE_STORE_PASSWORD
|
||||
keyAlias RELEASE_KEY_ALIAS
|
||||
keyPassword RELEASE_KEY_PASSWORD
|
||||
storeType "jks"
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
signingConfig signingConfigs.release
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||||
}
|
||||
debug {
|
||||
jniDebuggable true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':freeRDPCore')
|
||||
}
|
||||
2
third_party/FreeRDP/client/Android/Studio/aFreeRDP/lint.xml
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<lint></lint>
|
||||
107
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/AndroidManifest.xml
vendored
Normal file
@@ -0,0 +1,107 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:installLocation="auto">
|
||||
|
||||
<application
|
||||
android:name="com.freerdp.afreerdp.application.GlobalApp"
|
||||
android:icon="@drawable/icon_launcher_freerdp"
|
||||
android:label="aFreeRDP"
|
||||
android:resizeableActivity="true">
|
||||
|
||||
<!-- Main activity -->
|
||||
<activity
|
||||
android:exported="true"
|
||||
android:name="com.freerdp.freerdpcore.presentation.HomeActivity"
|
||||
android:alwaysRetainTaskState="true"
|
||||
android:label="@string/app_title"
|
||||
android:theme="@style/Theme.Main"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|density|screenLayout">
|
||||
|
||||
<intent-filter android:label="@string/app_title">
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data android:mimeType="application/rdp" />
|
||||
<data android:mimeType="application/x-rdp" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data android:scheme="rdp" />
|
||||
<data android:scheme="Rdp" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data android:scheme="file" />
|
||||
<data android:scheme="http" />
|
||||
<data android:scheme="https" />
|
||||
<data android:scheme="content" />
|
||||
<data android:host="*" />
|
||||
|
||||
<!-- Ugly hack to match all files with a dot in its name.
|
||||
Remove if a better way is found / supported.
|
||||
https://stackoverflow.com/questions/3400072/pathpattern-to-match-file-extension-does-not-work-if-a-period-exists-elsewhere-i/8599921#8599921
|
||||
-->
|
||||
<data android:pathPattern=".*\\.rdp" />
|
||||
<data android:pathPattern=".*\\..*\\.rdp" />
|
||||
<data android:pathPattern=".*\\..*\\..*\\.rdp" />
|
||||
<data android:pathPattern=".*\\..*\\..*\\..*\\.rdp" />
|
||||
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.rdp" />
|
||||
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.rdp" />
|
||||
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.rdp" />
|
||||
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.rdp" />
|
||||
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.rdp" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- Session request handler activity - used for search and internally to start sessions -->
|
||||
<!-- This should actually be defined in FreeRDPCore lib but Android manifest merging will -->
|
||||
<!-- append the libs manifest to the apps manifest and therefore aliasing is not possible -->
|
||||
<activity
|
||||
android:exported="true"
|
||||
android:name="com.freerdp.freerdpcore.services.SessionRequestHandlerActivity"
|
||||
android:excludeFromRecents="true"
|
||||
android:noHistory="true"
|
||||
android:theme="@android:style/Theme.NoDisplay">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity-alias
|
||||
android:exported="true"
|
||||
android:name=".services.SessionRequestHandlerActivity"
|
||||
android:targetActivity="com.freerdp.freerdpcore.services.SessionRequestHandlerActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEARCH" />
|
||||
</intent-filter>
|
||||
<meta-data
|
||||
android:name="android.app.searchable"
|
||||
android:resource="@xml/searchable" />
|
||||
</activity-alias>
|
||||
|
||||
<provider
|
||||
android:name="com.freerdp.freerdpcore.services.FreeRDPSuggestionProvider"
|
||||
android:authorities="com.freerdp.afreerdp.services.freerdpsuggestionprovider"
|
||||
android:exported="false"></provider>
|
||||
|
||||
<meta-data android:name="com.samsung.android.keepalive.density" android:value="true"/>
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/FreeRDP_Logo.png
vendored
Normal file
|
After Width: | Height: | Size: 30 KiB |
147
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/about.css
vendored
Normal file
@@ -0,0 +1,147 @@
|
||||
p {
|
||||
border: none;
|
||||
padding: 0in;
|
||||
font-variant: normal;
|
||||
font-family: "Helvetica";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
line-height: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
td p {
|
||||
border: none;
|
||||
padding: 0in;
|
||||
font-variant: normal;
|
||||
font-family: "Helvetica";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
line-height: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
border: none;
|
||||
padding: 0in;
|
||||
direction: inherit;
|
||||
font-variant: normal;
|
||||
color: #ffffff;
|
||||
line-height: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2.western {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h2.cjk {
|
||||
font-family: "AR PL SungtiL GB";
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h2.ctl {
|
||||
font-family: "Lohit Devanagari";
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h3 {
|
||||
border: none;
|
||||
padding: 0in;
|
||||
direction: inherit;
|
||||
font-variant: normal;
|
||||
color: #ffffff;
|
||||
line-height: 100%;
|
||||
text-align: center;
|
||||
page-break-before: auto;
|
||||
page-break-after: auto;
|
||||
}
|
||||
|
||||
h3.western {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h3.cjk {
|
||||
font-family: "AR PL SungtiL GB";
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h3.ctl {
|
||||
font-family: "Lohit Devanagari";
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h4 {
|
||||
border: none;
|
||||
padding: 0in;
|
||||
direction: inherit;
|
||||
font-variant: normal;
|
||||
color: #ffffff;
|
||||
line-height: 100%;
|
||||
text-align: center;
|
||||
page-break-before: auto;
|
||||
page-break-after: auto;
|
||||
}
|
||||
|
||||
h4.western {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h4.cjk {
|
||||
font-family: "AR PL SungtiL GB";
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
h4.ctl {
|
||||
font-family: "Lohit Devanagari";
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
pre {
|
||||
direction: inherit;
|
||||
font-variant: normal;
|
||||
line-height: 100%;
|
||||
text-align: center;
|
||||
page-break-before: auto;
|
||||
white-space: pre-wrap; /* css-3 */
|
||||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||||
white-space: -pre-wrap; /* Opera 4-6 */
|
||||
white-space: -o-pre-wrap; /* Opera 7 */
|
||||
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||||
}
|
||||
|
||||
pre.western {
|
||||
font-size: 8pt;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
white-space: pre-wrap; /* css-3 */
|
||||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||||
white-space: -pre-wrap; /* Opera 4-6 */
|
||||
white-space: -o-pre-wrap; /* Opera 7 */
|
||||
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||||
}
|
||||
|
||||
pre.cjk {
|
||||
font-family: "AR PL SungtiL GB", monospace;
|
||||
font-size: 8pt;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
white-space: pre-wrap; /* css-3 */
|
||||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||||
white-space: -pre-wrap; /* Opera 4-6 */
|
||||
white-space: -o-pre-wrap; /* Opera 7 */
|
||||
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||||
}
|
||||
|
||||
pre.ctl {
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
white-space: pre-wrap; /* css-3 */
|
||||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||||
white-space: -pre-wrap; /* Opera 4-6 */
|
||||
white-space: -o-pre-wrap; /* Opera 7 */
|
||||
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #0000ff
|
||||
}
|
||||
397
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/about_page/about.html
vendored
Normal file
@@ -0,0 +1,397 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||
<title></title>
|
||||
<meta name="" content=""/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../about.css">
|
||||
</head>
|
||||
<body lang="en-US" link="#0000ff" bgcolor="#e9ebf8" dir="ltr">
|
||||
<div id="container" dir="ltr">
|
||||
<h2 class="western"><br/>
|
||||
<br/>
|
||||
|
||||
</h2>
|
||||
<div id="introduction_headline" dir="ltr" style="background: #353639">
|
||||
<h2 class="western"><font color="#ffffff">aFreeRDP <br/>
|
||||
Remote
|
||||
Desktop Client</font></h2>
|
||||
</div>
|
||||
<p><img src="../FreeRDP_Logo.png" name="Image1" align="bottom" width="25%" border="0"/>
|
||||
|
||||
</p>
|
||||
<div id="introduction" dir="ltr" style="background: #ffffff">
|
||||
<p><font color="#000000"><b>aFreeRDP</b> is an open source client
|
||||
capable of natively using<br/>
|
||||
Remote Desktop Protocol (RDP) in
|
||||
order to remotely access your Windows desktop. </font>
|
||||
</p>
|
||||
</div>
|
||||
<div id="article" dir="ltr" style="background: #ffffff">
|
||||
<p style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="headline" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
Version Information</h3>
|
||||
</div>
|
||||
<table cellpadding="3" cellspacing="1" align="center">
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p><b>aFreeRDP</b> Version</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%AFREERDP_VERSION%</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>System Version</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%SYSTEM_VERSION%</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>Model</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%DEVICE_MODEL%</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div id="Section1" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center" style="margin-left: 0.1in; margin-right: 0.1in"><a
|
||||
name="headline"></a>
|
||||
Credits</h3>
|
||||
</div>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font
|
||||
color="#000000"><b>aFreeRDP</b></font><font color="#000000">
|
||||
is a part of <a href="http://www.freerdp.com/">FreeRDP</a> </font>
|
||||
</p>
|
||||
<div id="Section2" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline1"></a>
|
||||
Data protection</h3>
|
||||
</div>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font color="#000000">Details
|
||||
about data collection and usage by <b>aFreeRDP</b> are available at</font></p>
|
||||
<p><a href="http://www.freerdp.com/privacy">http://www.freerdp.com/privacy</a>
|
||||
</p>
|
||||
<div id="Section3" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline2"></a>
|
||||
Licenses</h3>
|
||||
</div>
|
||||
<div id="Section4" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline3"></a>
|
||||
<font color="#ffffff">aFreeRDP</font></h4>
|
||||
</div>
|
||||
<pre class="western">This program is free software;
|
||||
|
||||
you can redistribute it and/or modify it under the terms
|
||||
|
||||
of the Mozilla Public License, v. 2.0.
|
||||
|
||||
You can obtain an online version of the License from
|
||||
|
||||
<a href="http://mozilla.org/MPL/2.0/">http://mozilla.org/MPL/2.0/</a>.
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
|
||||
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
A copy of the product's source code can be obtained from the FreeRDP GitHub repository at
|
||||
|
||||
<a href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.</pre>
|
||||
<p style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="Section5" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline4"></a>
|
||||
FreeRDP</h4>
|
||||
</div>
|
||||
<pre class="western">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
|
||||
|
||||
<a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>
|
||||
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.
|
||||
A copy of the product's source code can be obtained from the FreeRDP GitHub repository at
|
||||
|
||||
<a href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.</pre>
|
||||
<div id="Section6" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline5"></a>
|
||||
OpenSSL</h4>
|
||||
</div>
|
||||
<pre class="western">LICENSE ISSUES
|
||||
|
||||
==============
|
||||
|
||||
|
||||
The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
|
||||
|
||||
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
||||
|
||||
See below for the actual license texts.
|
||||
|
||||
|
||||
OpenSSL License
|
||||
|
||||
---------------
|
||||
|
||||
|
||||
/* ====================================================================
|
||||
|
||||
* Copyright (c) 1998-2016 The OpenSSL Project. All rights reserved.
|
||||
|
||||
*
|
||||
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
||||
* are met:
|
||||
|
||||
*
|
||||
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
|
||||
*
|
||||
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
|
||||
* the documentation and/or other materials provided with the
|
||||
|
||||
* distribution.
|
||||
|
||||
*
|
||||
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
|
||||
* software must display the following acknowledgment:
|
||||
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
|
||||
*
|
||||
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
|
||||
* endorse or promote products derived from this software without
|
||||
|
||||
* prior written permission. For written permission, please contact
|
||||
|
||||
* openssl-core@openssl.org.
|
||||
|
||||
*
|
||||
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
|
||||
* permission of the OpenSSL Project.
|
||||
|
||||
*
|
||||
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
|
||||
* acknowledgment:
|
||||
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
|
||||
*
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
* ====================================================================
|
||||
|
||||
*
|
||||
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
|
||||
*
|
||||
|
||||
*/
|
||||
|
||||
|
||||
Original SSLeay License
|
||||
|
||||
-----------------------
|
||||
|
||||
|
||||
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
||||
|
||||
* All rights reserved.
|
||||
|
||||
*
|
||||
|
||||
* This package is an SSL implementation written
|
||||
|
||||
* by Eric Young (eay@cryptsoft.com).
|
||||
|
||||
* The implementation was written so as to conform with Netscapes SSL.
|
||||
|
||||
*
|
||||
|
||||
* This library is free for commercial and non-commercial use as long as
|
||||
|
||||
* the following conditions are adhered to. The following conditions
|
||||
|
||||
* apply to all code found in this distribution, be it the RC4, RSA,
|
||||
|
||||
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||
|
||||
* included with this distribution is covered by the same copyright terms
|
||||
|
||||
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
||||
|
||||
*
|
||||
|
||||
* Copyright remains Eric Young's, and as such any Copyright notices in
|
||||
|
||||
* the code are not to be removed.
|
||||
|
||||
* If this package is used in a product, Eric Young should be given attribution
|
||||
|
||||
* as the author of the parts of the library used.
|
||||
|
||||
* This can be in the form of a textual message at program startup or
|
||||
|
||||
* in documentation (online or textual) provided with the package.
|
||||
|
||||
*
|
||||
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
||||
* are met:
|
||||
|
||||
* 1. Redistributions of source code must retain the copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
|
||||
* must display the following acknowledgement:
|
||||
|
||||
* "This product includes cryptographic software written by
|
||||
|
||||
* Eric Young (eay@cryptsoft.com)"
|
||||
|
||||
* The word 'cryptographic' can be left out if the routines from the library
|
||||
|
||||
* being used are not cryptographic related :-).
|
||||
|
||||
* 4. If you include any Windows specific code (or a derivative thereof) from
|
||||
|
||||
* the apps directory (application code) you must include an acknowledgement:
|
||||
|
||||
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
||||
|
||||
*
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
||||
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
|
||||
* SUCH DAMAGE.
|
||||
|
||||
*
|
||||
|
||||
* The licence and distribution terms for any publicly available version or
|
||||
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
|
||||
* copied and put under another distribution licence
|
||||
|
||||
* [including the GNU Public Licence.]
|
||||
|
||||
*/
|
||||
A copy of the product's source code can be obtained from the project page at
|
||||
|
||||
<a href="https://www.openssl.org/">https://www.openssl.org/</a>.</pre>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
397
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/about_page/about_phone.html
vendored
Normal file
@@ -0,0 +1,397 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||
<title></title>
|
||||
<meta name="" content=""/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../about.css">
|
||||
</head>
|
||||
<body lang="en-US" link="#0000ff" bgcolor="#e9ebf8" dir="ltr">
|
||||
<div id="container" dir="ltr">
|
||||
<h2 class="western"><br/>
|
||||
<br/>
|
||||
|
||||
</h2>
|
||||
<div id="introduction_headline" dir="ltr" style="background: #353639">
|
||||
<h2 class="western"><font color="#ffffff">aFreeRDP <br/>
|
||||
Remote
|
||||
Desktop Client</font></h2>
|
||||
</div>
|
||||
<p><img src="../FreeRDP_Logo.png" name="Image1" align="bottom" width="25%" border="0"/>
|
||||
|
||||
</p>
|
||||
<div id="introduction" dir="ltr" style="background: #ffffff">
|
||||
<p><font color="#000000"><b>aFreeRDP</b> is an open source client
|
||||
capable of natively using<br/>
|
||||
Remote Desktop Protocol (RDP) in
|
||||
order to remotely access your Windows desktop. </font>
|
||||
</p>
|
||||
</div>
|
||||
<div id="article" dir="ltr" style="background: #ffffff">
|
||||
<p style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="headline" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
Version Information</h3>
|
||||
</div>
|
||||
<table cellpadding="3" cellspacing="1" align="center">
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p><b>aFreeRDP</b> Version</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%AFREERDP_VERSION%</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>System Version</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%SYSTEM_VERSION%</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>Model</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%DEVICE_MODEL%</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div id="Section1" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center" style="margin-left: 0.1in; margin-right: 0.1in"><a
|
||||
name="headline"></a>
|
||||
Credits</h3>
|
||||
</div>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font
|
||||
color="#000000"><b>aFreeRDP</b></font><font color="#000000">
|
||||
is a part of <a href="http://www.freerdp.com/">FreeRDP</a> </font>
|
||||
</p>
|
||||
<div id="Section2" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline1"></a>
|
||||
Data protection</h3>
|
||||
</div>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font color="#000000">Details
|
||||
about data collection and usage by <b>aFreeRDP</b> are available at</font></p>
|
||||
<p><a href="http://www.freerdp.com/privacy">http://www.freerdp.com/privacy</a>
|
||||
</p>
|
||||
<div id="Section3" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline2"></a>
|
||||
Licenses</h3>
|
||||
</div>
|
||||
<div id="Section4" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline3"></a>
|
||||
<font color="#ffffff">aFreeRDP</font></h4>
|
||||
</div>
|
||||
<pre class="western">This program is free software;
|
||||
|
||||
you can redistribute it and/or modify it under the terms
|
||||
|
||||
of the Mozilla Public License, v. 2.0.
|
||||
|
||||
You can obtain an online version of the License from
|
||||
|
||||
<a href="http://mozilla.org/MPL/2.0/">http://mozilla.org/MPL/2.0/</a>.
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
|
||||
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
A copy of the product's source code can be obtained from the FreeRDP GitHub repository at
|
||||
|
||||
<a href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.</pre>
|
||||
<p style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="Section5" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline4"></a>
|
||||
FreeRDP</h4>
|
||||
</div>
|
||||
<pre class="western">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
|
||||
|
||||
<a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>
|
||||
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.
|
||||
A copy of the product's source code can be obtained from the FreeRDP GitHub repository at
|
||||
|
||||
<a href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.</pre>
|
||||
<div id="Section6" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline5"></a>
|
||||
OpenSSL</h4>
|
||||
</div>
|
||||
<pre class="western">LICENSE ISSUES
|
||||
|
||||
==============
|
||||
|
||||
|
||||
The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
|
||||
|
||||
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
||||
|
||||
See below for the actual license texts.
|
||||
|
||||
|
||||
OpenSSL License
|
||||
|
||||
---------------
|
||||
|
||||
|
||||
/* ====================================================================
|
||||
|
||||
* Copyright (c) 1998-2016 The OpenSSL Project. All rights reserved.
|
||||
|
||||
*
|
||||
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
||||
* are met:
|
||||
|
||||
*
|
||||
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
|
||||
*
|
||||
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
|
||||
* the documentation and/or other materials provided with the
|
||||
|
||||
* distribution.
|
||||
|
||||
*
|
||||
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
|
||||
* software must display the following acknowledgment:
|
||||
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
|
||||
*
|
||||
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
|
||||
* endorse or promote products derived from this software without
|
||||
|
||||
* prior written permission. For written permission, please contact
|
||||
|
||||
* openssl-core@openssl.org.
|
||||
|
||||
*
|
||||
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
|
||||
* permission of the OpenSSL Project.
|
||||
|
||||
*
|
||||
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
|
||||
* acknowledgment:
|
||||
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
|
||||
*
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
* ====================================================================
|
||||
|
||||
*
|
||||
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
|
||||
*
|
||||
|
||||
*/
|
||||
|
||||
|
||||
Original SSLeay License
|
||||
|
||||
-----------------------
|
||||
|
||||
|
||||
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
||||
|
||||
* All rights reserved.
|
||||
|
||||
*
|
||||
|
||||
* This package is an SSL implementation written
|
||||
|
||||
* by Eric Young (eay@cryptsoft.com).
|
||||
|
||||
* The implementation was written so as to conform with Netscapes SSL.
|
||||
|
||||
*
|
||||
|
||||
* This library is free for commercial and non-commercial use as long as
|
||||
|
||||
* the following conditions are adhered to. The following conditions
|
||||
|
||||
* apply to all code found in this distribution, be it the RC4, RSA,
|
||||
|
||||
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||
|
||||
* included with this distribution is covered by the same copyright terms
|
||||
|
||||
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
||||
|
||||
*
|
||||
|
||||
* Copyright remains Eric Young's, and as such any Copyright notices in
|
||||
|
||||
* the code are not to be removed.
|
||||
|
||||
* If this package is used in a product, Eric Young should be given attribution
|
||||
|
||||
* as the author of the parts of the library used.
|
||||
|
||||
* This can be in the form of a textual message at program startup or
|
||||
|
||||
* in documentation (online or textual) provided with the package.
|
||||
|
||||
*
|
||||
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
||||
* are met:
|
||||
|
||||
* 1. Redistributions of source code must retain the copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
|
||||
* must display the following acknowledgement:
|
||||
|
||||
* "This product includes cryptographic software written by
|
||||
|
||||
* Eric Young (eay@cryptsoft.com)"
|
||||
|
||||
* The word 'cryptographic' can be left out if the routines from the library
|
||||
|
||||
* being used are not cryptographic related :-).
|
||||
|
||||
* 4. If you include any Windows specific code (or a derivative thereof) from
|
||||
|
||||
* the apps directory (application code) you must include an acknowledgement:
|
||||
|
||||
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
||||
|
||||
*
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
||||
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
|
||||
* SUCH DAMAGE.
|
||||
|
||||
*
|
||||
|
||||
* The licence and distribution terms for any publicly available version or
|
||||
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
|
||||
* copied and put under another distribution licence
|
||||
|
||||
* [including the GNU Public Licence.]
|
||||
|
||||
*/
|
||||
A copy of the product's source code can be obtained from the project page at
|
||||
|
||||
<a href="https://www.openssl.org/">https://www.openssl.org/</a>.</pre>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/background.jpg
vendored
Normal file
|
After Width: | Height: | Size: 115 KiB |
410
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_about_page/about.html
vendored
Normal file
@@ -0,0 +1,410 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||
<title></title>
|
||||
<meta name="" content=""/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../about.css">
|
||||
</head>
|
||||
<body lang="de-AT" link="#0000ff" bgcolor="#e9ebf8" dir="ltr">
|
||||
<div id="container" dir="ltr">
|
||||
<p><br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="introduction_headline" dir="ltr" style="background: #353639">
|
||||
<h2 class="western"><font color="#ffffff">aFreeRDP<br/>
|
||||
Remote
|
||||
Desktop Client</font>
|
||||
</h2>
|
||||
</div>
|
||||
<div id="introduction" dir="ltr" style="background: #ffffff">
|
||||
<p align="center"><font color="#000000"><img src="FreeRDP_Logo.png" name="FreeRDP-Logo"
|
||||
align="top" hspace="6" vspace="6" width="10%"
|
||||
border="0"/>
|
||||
|
||||
</font>
|
||||
</p>
|
||||
</div>
|
||||
<div id="article" dir="ltr" style="background: #ffffff">
|
||||
<p align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<font color="#000000"><b>aFreeRDP</b> ist ein Open Source Programm
|
||||
mit nativer Unterstützung des Remote Desktop Protocol (RDP)<br/>
|
||||
um
|
||||
einen entfernten Zugriff auf Windows Desktops zu ermöglichen. </font>
|
||||
</p>
|
||||
<div id="headline" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
Versions Information</h3>
|
||||
</div>
|
||||
<table cellpadding="3" cellspacing="1" align="center">
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p><b>aFreeRDP</b> Version</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%AFREERDP_VERSION%</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>System Version</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%SYSTEM_VERSION%</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>Model</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%DEVICE_MODEL%</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="Section1" dir="ltr" style="background: #ffffff">
|
||||
<p style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="article"></a>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="Section2" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline"></a>
|
||||
Credits</h3>
|
||||
</div>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font
|
||||
color="#000000"><b>aFreeRDP</b></font><font color="#000000">
|
||||
ist ein Teil von <a href="http://www.freerdp.com/">FreeRDP</a> </font>
|
||||
</p>
|
||||
</div>
|
||||
<div id="Section3" dir="ltr" style="background: #ffffff">
|
||||
<p style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="article1"></a>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="Section4" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline1"></a>
|
||||
Datenschutz</h3>
|
||||
</div>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font color="#000000">Details
|
||||
zu den Daten die aFreeRDP sammelt und verarbeitet sind unter</font></p>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font color="#000000"><a
|
||||
href="http://www.freerdp.com/privacy">http://www.freerdp.com/privacy</a>
|
||||
zu finden.</font></p>
|
||||
<div id="Section5" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline2"></a>
|
||||
Lizenzen</h3>
|
||||
</div>
|
||||
<div id="Section6" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline3"></a>
|
||||
<font color="#000000">aFreeRDP</font></h4>
|
||||
</div>
|
||||
<pre class="western">This program is free software;
|
||||
|
||||
you can redistribute it and/or modify it under the terms
|
||||
|
||||
of the Mozilla Public License, v. 2.0.
|
||||
|
||||
You can obtain an online version of the License from
|
||||
|
||||
<a href="http://mozilla.org/MPL/2.0/">http://mozilla.org/MPL/2.0/</a>.
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
|
||||
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
A copy of the product's source code can be obtained from the FreeRDP GitHub repository at
|
||||
|
||||
<a href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.</pre>
|
||||
<div id="Section7" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline4"></a>
|
||||
FreeRDP</h4>
|
||||
</div>
|
||||
<pre class="western">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
|
||||
<a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>
|
||||
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.
|
||||
A copy of the product's source code can be obtained from the FreeRDP GitHub repository at
|
||||
|
||||
<a href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.</pre>
|
||||
<div id="Section8" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline5"></a>
|
||||
OpenSSL</h4>
|
||||
</div>
|
||||
<pre class="western">LICENSE ISSUES
|
||||
|
||||
==============
|
||||
|
||||
|
||||
The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
|
||||
|
||||
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
||||
|
||||
See below for the actual license texts.
|
||||
|
||||
|
||||
OpenSSL License
|
||||
|
||||
---------------
|
||||
|
||||
|
||||
/* ====================================================================
|
||||
|
||||
* Copyright (c) 1998-2016 The OpenSSL Project. All rights reserved.
|
||||
|
||||
*
|
||||
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
||||
* are met:
|
||||
|
||||
*
|
||||
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
|
||||
*
|
||||
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
|
||||
* the documentation and/or other materials provided with the
|
||||
|
||||
* distribution.
|
||||
|
||||
*
|
||||
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
|
||||
* software must display the following acknowledgment:
|
||||
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
|
||||
*
|
||||
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
|
||||
* endorse or promote products derived from this software without
|
||||
|
||||
* prior written permission. For written permission, please contact
|
||||
|
||||
* openssl-core@openssl.org.
|
||||
|
||||
*
|
||||
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
|
||||
* permission of the OpenSSL Project.
|
||||
|
||||
*
|
||||
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
|
||||
* acknowledgment:
|
||||
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
|
||||
*
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
* ====================================================================
|
||||
|
||||
*
|
||||
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
|
||||
*
|
||||
|
||||
*/
|
||||
|
||||
|
||||
Original SSLeay License
|
||||
|
||||
-----------------------
|
||||
|
||||
|
||||
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
||||
|
||||
* All rights reserved.
|
||||
|
||||
*
|
||||
|
||||
* This package is an SSL implementation written
|
||||
|
||||
* by Eric Young (eay@cryptsoft.com).
|
||||
|
||||
* The implementation was written so as to conform with Netscapes SSL.
|
||||
|
||||
*
|
||||
|
||||
* This library is free for commercial and non-commercial use as long as
|
||||
|
||||
* the following conditions are aheared to. The following conditions
|
||||
|
||||
* apply to all code found in this distribution, be it the RC4, RSA,
|
||||
|
||||
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||
|
||||
* included with this distribution is covered by the same copyright terms
|
||||
|
||||
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
||||
|
||||
*
|
||||
|
||||
* Copyright remains Eric Young's, and as such any Copyright notices in
|
||||
|
||||
* the code are not to be removed.
|
||||
|
||||
* If this package is used in a product, Eric Young should be given attribution
|
||||
|
||||
* as the author of the parts of the library used.
|
||||
|
||||
* This can be in the form of a textual message at program startup or
|
||||
|
||||
* in documentation (online or textual) provided with the package.
|
||||
|
||||
*
|
||||
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
||||
* are met:
|
||||
|
||||
* 1. Redistributions of source code must retain the copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
|
||||
* must display the following acknowledgement:
|
||||
|
||||
* "This product includes cryptographic software written by
|
||||
|
||||
* Eric Young (eay@cryptsoft.com)"
|
||||
|
||||
* The word 'cryptographic' can be left out if the rouines from the library
|
||||
|
||||
* being used are not cryptographic related :-).
|
||||
|
||||
* 4. If you include any Windows specific code (or a derivative thereof) from
|
||||
|
||||
* the apps directory (application code) you must include an acknowledgement:
|
||||
|
||||
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
||||
|
||||
*
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
||||
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
|
||||
* SUCH DAMAGE.
|
||||
|
||||
*
|
||||
|
||||
* The licence and distribution terms for any publically available version or
|
||||
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
|
||||
* copied and put under another distribution licence
|
||||
|
||||
* [including the GNU Public Licence.]
|
||||
|
||||
*/
|
||||
A copy of the product's source code can be obtained from the project page at
|
||||
|
||||
<a href="https://www.openssl.org/">https://www.openssl.org/</a>.</pre>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
412
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_about_page/about_phone.html
vendored
Normal file
@@ -0,0 +1,412 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||
<title></title>
|
||||
<meta name="" content=""/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
||||
|
||||
<meta name="changed" content="2017-02-23T09:47:39.760769965">
|
||||
<link rel="stylesheet" type="text/css" href="../about.css">
|
||||
</head>
|
||||
<body lang="de-AT" link="#0000ff" bgcolor="#e9ebf8" dir="ltr">
|
||||
<div id="container" dir="ltr">
|
||||
<p><br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="introduction_headline" dir="ltr" style="background: #353639">
|
||||
<h2 class="western"><font color="#ffffff">aFreeRDP<br/>
|
||||
Remote
|
||||
Desktop Client</font>
|
||||
</h2>
|
||||
</div>
|
||||
<div id="introduction" dir="ltr" style="background: #ffffff">
|
||||
<p align="center"><font color="#000000"><img src="../FreeRDP_Logo.png" name="FreeRDP-Logo"
|
||||
align="top" hspace="6" vspace="6" width="25%"
|
||||
border="0"/>
|
||||
|
||||
</font>
|
||||
</p>
|
||||
</div>
|
||||
<div id="article" dir="ltr" style="background: #ffffff">
|
||||
<p align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<font color="#000000"><b>aFreeRDP</b> ist ein Open Source Programm
|
||||
mit nativer Unterstützung des Remote Desktop Protocol (RDP)<br/>
|
||||
um
|
||||
einen entfernten Zugriff auf Windows Desktops zu ermöglichen. </font>
|
||||
</p>
|
||||
<div id="headline" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
Versions Information</h3>
|
||||
</div>
|
||||
<table cellpadding="3" cellspacing="1" align="center">
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p><b>aFreeRDP</b> Version</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%AFREERDP_VERSION%</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>System Version</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%SYSTEM_VERSION%</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>Model</p>
|
||||
</td>
|
||||
<td style="border: none; padding: 0in">
|
||||
<p>%DEVICE_MODEL%</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="Section1" dir="ltr" style="background: #ffffff">
|
||||
<p style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="article"></a>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="Section2" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline"></a>
|
||||
Credits</h3>
|
||||
</div>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font
|
||||
color="#000000"><b>aFreeRDP</b></font><font color="#000000">
|
||||
ist ein Teil von <a href="http://www.freerdp.com/">FreeRDP</a> </font>
|
||||
</p>
|
||||
</div>
|
||||
<div id="Section3" dir="ltr" style="background: #ffffff">
|
||||
<p style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="article1"></a>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</p>
|
||||
<div id="Section4" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline1"></a>
|
||||
Datenschutz</h3>
|
||||
</div>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font color="#000000">Details
|
||||
zu den Daten die aFreeRDP sammelt und verarbeitet sind unter</font></p>
|
||||
<p style="margin-top: 0.1in; margin-bottom: 0.1in"><font color="#000000"><a
|
||||
href="http://www.freerdp.com/privacy">http://www.freerdp.com/privacy</a>
|
||||
zu finden.</font></p>
|
||||
<div id="Section5" dir="ltr" style="background: #353639">
|
||||
<h3 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline2"></a>
|
||||
Lizenzen</h3>
|
||||
</div>
|
||||
<div id="Section6" dir="ltr" style="background: #353639">
|
||||
<h4 class="western"><a name="headline3"></a>aFreeRDP</h4>
|
||||
</div>
|
||||
<pre class="western">This program is free software;
|
||||
|
||||
you can redistribute it and/or modify it under the terms
|
||||
|
||||
of the Mozilla Public License, v. 2.0.
|
||||
|
||||
You can obtain an online version of the License from
|
||||
|
||||
<a href="http://mozilla.org/MPL/2.0/">http://mozilla.org/MPL/2.0/</a>.
|
||||
This program is distributed in the hope
|
||||
that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
|
||||
without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
A copy of the product's source code can be
|
||||
obtained from the FreeRDP GitHub repository at
|
||||
|
||||
<a href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.</pre>
|
||||
<div id="Section7" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline4"></a>
|
||||
FreeRDP</h4>
|
||||
</div>
|
||||
<pre class="western">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
|
||||
<a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>
|
||||
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.
|
||||
A copy of the product's source code can be obtained
|
||||
from the FreeRDP GitHub repository at
|
||||
|
||||
<a href="https://github.com/FreeRDP/FreeRDP">https://github.com/FreeRDP/FreeRDP</a>.</pre>
|
||||
<div id="Section8" dir="ltr" style="background: #353639">
|
||||
<h4 class="western" align="center"
|
||||
style="margin-left: 0.1in; margin-right: 0.1in; margin-top: 0.1in; margin-bottom: 0.1in">
|
||||
<a name="headline5"></a>
|
||||
OpenSSL</h4>
|
||||
</div>
|
||||
<pre class="western">LICENSE ISSUES
|
||||
|
||||
==============
|
||||
|
||||
|
||||
The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
|
||||
|
||||
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
||||
|
||||
See below for the actual license texts.
|
||||
|
||||
|
||||
OpenSSL License
|
||||
|
||||
---------------
|
||||
|
||||
|
||||
/* ====================================================================
|
||||
|
||||
* Copyright (c) 1998-2016 The OpenSSL Project. All rights reserved.
|
||||
|
||||
*
|
||||
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
||||
* are met:
|
||||
|
||||
*
|
||||
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
|
||||
*
|
||||
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
|
||||
* the documentation and/or other materials provided with the
|
||||
|
||||
* distribution.
|
||||
|
||||
*
|
||||
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
|
||||
* software must display the following acknowledgment:
|
||||
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
|
||||
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
||||
|
||||
*
|
||||
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
|
||||
* endorse or promote products derived from this software without
|
||||
|
||||
* prior written permission. For written permission, please contact
|
||||
|
||||
* openssl-core@openssl.org.
|
||||
|
||||
*
|
||||
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
|
||||
* permission of the OpenSSL Project.
|
||||
|
||||
*
|
||||
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
|
||||
* acknowledgment:
|
||||
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
|
||||
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
||||
|
||||
*
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
* ====================================================================
|
||||
|
||||
*
|
||||
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
|
||||
*
|
||||
|
||||
*/
|
||||
|
||||
|
||||
Original SSLeay License
|
||||
|
||||
-----------------------
|
||||
|
||||
|
||||
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
||||
|
||||
* All rights reserved.
|
||||
|
||||
*
|
||||
|
||||
* This package is an SSL implementation written
|
||||
|
||||
* by Eric Young (eay@cryptsoft.com).
|
||||
|
||||
* The implementation was written so as to conform with Netscapes SSL.
|
||||
|
||||
*
|
||||
|
||||
* This library is free for commercial and non-commercial use as long as
|
||||
|
||||
* the following conditions are aheared to. The following conditions
|
||||
|
||||
* apply to all code found in this distribution, be it the RC4, RSA,
|
||||
|
||||
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
||||
|
||||
* included with this distribution is covered by the same copyright terms
|
||||
|
||||
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
||||
|
||||
*
|
||||
|
||||
* Copyright remains Eric Young's, and as such any Copyright notices in
|
||||
|
||||
* the code are not to be removed.
|
||||
|
||||
* If this package is used in a product, Eric Young should be given attribution
|
||||
|
||||
* as the author of the parts of the library used.
|
||||
|
||||
* This can be in the form of a textual message at program startup or
|
||||
|
||||
* in documentation (online or textual) provided with the package.
|
||||
|
||||
*
|
||||
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
||||
* are met:
|
||||
|
||||
* 1. Redistributions of source code must retain the copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
|
||||
* must display the following acknowledgement:
|
||||
|
||||
* "This product includes cryptographic software written by
|
||||
|
||||
* Eric Young (eay@cryptsoft.com)"
|
||||
|
||||
* The word 'cryptographic' can be left out if the rouines from the library
|
||||
|
||||
* being used are not cryptographic related :-).
|
||||
|
||||
* 4. If you include any Windows specific code (or a derivative thereof) from
|
||||
|
||||
* the apps directory (application code) you must include an acknowledgement:
|
||||
|
||||
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
||||
|
||||
*
|
||||
|
||||
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
||||
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
|
||||
* SUCH DAMAGE.
|
||||
|
||||
*
|
||||
|
||||
* The licence and distribution terms for any publicly available version or
|
||||
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
|
||||
* copied and put under another distribution licence
|
||||
|
||||
* [including the GNU Public Licence.]
|
||||
|
||||
*/
|
||||
A copy of the product's source code can be obtained from the project page at
|
||||
|
||||
<a href="https://www.openssl.org/">https://www.openssl.org/</a>.</pre>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
33
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/gestures.html
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures.html"><img src="nav_gestures.png"></a>
|
||||
<a href="toolbar.html"><img src="nav_toolbar.png"></a>
|
||||
<a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h1>Gesten</h1>
|
||||
<p>
|
||||
aFreeRDP ist für Touch Geräte entwickelt worden.
|
||||
Diese Gesten lassen sie die häufigsten Operationen mit ihren Fingern
|
||||
durchführen.</p>
|
||||
<p><img src="gestures.png"></p>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/gestures.png
vendored
Normal file
|
After Width: | Height: | Size: 43 KiB |
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help-phone.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
|
||||
<a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
|
||||
<a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
|
||||
<a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h2>Gesten</h2>
|
||||
<p>
|
||||
aFreeRDP ist für Touch Geräte entwickelt worden.
|
||||
Diese Gesten lassen sie die häufigsten Operationen mit ihren Fingern
|
||||
durchführen.</p>
|
||||
<p><img src="gestures_phone.png"></p>
|
||||
|
||||
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/gestures_phone.png
vendored
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/nav_gestures.png
vendored
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/nav_toolbar.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
49
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/toolbar.html
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures.html"><img src="nav_gestures.png"></a>
|
||||
<a href="toolbar.html"><img src="nav_toolbar.png"></a>
|
||||
<a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h1>Toolbar</h1>
|
||||
<p>
|
||||
With the toolbar you'll be able to display and hide the main tools in your session.
|
||||
This allows together with the touch pointer and the gestures an intuitiv workflow
|
||||
for remote computing on touch sensitive screens.
|
||||
</p>
|
||||
<p><img src="toolbar.png"></p>
|
||||
|
||||
<div id="article">
|
||||
<div id="headline">
|
||||
<h3><span style="color:white">Tastatur</span></h3></div>
|
||||
Zeige/verstecke die standard und die erweiterte Tastatur mit Funktionstasten
|
||||
</div>
|
||||
<div id="article">
|
||||
<div id="headline"><h3><span style="color:white">Touch Zeiger</span></h3></div>
|
||||
Zeige/verstecke den gesten gesteuerten Zeiger
|
||||
</div>
|
||||
<div id="article">
|
||||
<div id="headline"><h3><span style="color:white">Beenden</span></h3></div>
|
||||
Beende die aktuelle Sitzung. Seihen sie sich bewusst, dass das Beenden kein Logout
|
||||
ist.
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/toolbar.png
vendored
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help-phone.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
|
||||
<a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
|
||||
<a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h2>Toolbar</h2>
|
||||
<p>
|
||||
With the toolbar you'll be able to display and hide the main tools in your session.
|
||||
This allows together with the touch pointer and the gestures an intuitiv workflow
|
||||
for remote computing on touch sensitive screens.
|
||||
</p>
|
||||
<p><img src="toolbar_phone.png"></p>
|
||||
|
||||
<div id="article">
|
||||
<div id="headline">
|
||||
<h4><span style="color:white">Tastatur</h4></span></div>
|
||||
Zeige/verstecke die standard und die erweiterte Tastatur mit Funktionstasten
|
||||
</div>
|
||||
<div id="article">
|
||||
<div id="headline"><h4><span style="color:white">Touch Zeiger</h4></div>
|
||||
Zeige/verstecke den gesten gesteuerten Zeiger
|
||||
</div>
|
||||
<div id="article">
|
||||
<div id="headline"><h4><span style="color:white">Beenden</span></h4></div>
|
||||
Beende die aktuelle Sitzung. Seihen sie sich bewusst, dass das Beenden kein Logout
|
||||
ist.
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/toolbar_phone.png
vendored
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures.html"><img src="nav_gestures.png"></a>
|
||||
<a href="toolbar.html"><img src="nav_toolbar.png"></a>
|
||||
<a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h1>Touch Pointer</h1>
|
||||
<p><img src="touch_pointer.png">
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/de_help_page/touch_pointer.png
vendored
Normal file
|
After Width: | Height: | Size: 108 KiB |
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help-phone.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
|
||||
<a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
|
||||
<a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h2>Touch Pointer</h2>
|
||||
<p><img src="touch_pointer_phone.png">
|
||||
</p>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 86 KiB |
100
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help.css
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
<style type="text/css">
|
||||
|
||||
@charset "utf-8";
|
||||
|
||||
#container{
|
||||
text-align:center;
|
||||
color:#FFFFFF;
|
||||
}
|
||||
|
||||
body {
|
||||
margin:0;
|
||||
padding:<length> 0 0 0;
|
||||
font: 100%/1.4 Helvetica;
|
||||
background-image:url(../background.jpg);
|
||||
background-position:center;
|
||||
}
|
||||
|
||||
#headline {
|
||||
background-color:#353639;
|
||||
opacity:0.9;
|
||||
color:FFF;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
#article {
|
||||
background-color:#FFFFFF;
|
||||
opacity: 0.8;
|
||||
z-index:0;
|
||||
margin-bottom:3%;
|
||||
padding-bottom:0.1%;
|
||||
border-radius: 15px;
|
||||
border-top-left-radius:0px;
|
||||
border-top-right-radius:0px;
|
||||
color:#000;
|
||||
margin: 10px auto;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
#header {
|
||||
height:auto;
|
||||
width:100%;
|
||||
background-color:#353639;
|
||||
padding-bottom:5px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
padding-top:10px;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height:40px;
|
||||
overflow:visible;
|
||||
min-width:400px;
|
||||
z-index:20;
|
||||
}
|
||||
|
||||
#content {
|
||||
padding-top:70px;
|
||||
z-index:-20;
|
||||
max-width:420px;
|
||||
}
|
||||
|
||||
/* ~~ Element/tag selectors ~~ */
|
||||
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, p {
|
||||
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
|
||||
padding-right: 1px;
|
||||
padding-left: 1px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method.
|
||||
*/
|
||||
color:#000;
|
||||
}
|
||||
|
||||
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
|
||||
/*a:link {
|
||||
color:#414958;
|
||||
text-decoration: underline; unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
|
||||
|
||||
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
* {
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none; /* Disable selection/Copy of UIWebView */
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</style>
|
||||
32
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/gestures.html
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures.html"><img src="nav_gestures.png"></a>
|
||||
<a href="toolbar.html"><img src="nav_toolbar.png"></a>
|
||||
<a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h1>Gestures</h1>
|
||||
<p>
|
||||
aFreeRDP is designed for touch sensitive devices.
|
||||
These gestures let you do the most usual operations with your fingers.</p>
|
||||
<p><img src="gestures.png"></p>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/gestures.png
vendored
Normal file
|
After Width: | Height: | Size: 43 KiB |
33
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/gestures_phone.html
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help-phone.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
|
||||
<a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
|
||||
<a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h2> Gestures</h2>
|
||||
<p>
|
||||
aFreeRDP is designed for touch sensitive devices.
|
||||
These gestures let you do the most usual operations with your fingers.</p>
|
||||
<p><img src="gestures_phone.png"></p>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/gestures_phone.png
vendored
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/nav_gestures.png
vendored
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/nav_toolbar.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/nav_touch_pointer.png
vendored
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
49
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/toolbar.html
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures.html"><img src="nav_gestures.png"></a>
|
||||
<a href="toolbar.html"><img src="nav_toolbar.png"></a>
|
||||
<a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h1>Toolbar</h1>
|
||||
<p>
|
||||
With the toolbar you'll be able to display and hide the main tools in your session.
|
||||
This allows together with the touch pointer and the gestures an intuitiv workflow
|
||||
for remote computing on touch sensitive screens.
|
||||
</p>
|
||||
<p><img src="toolbar.png"></p>
|
||||
|
||||
<div id="article">
|
||||
<div id="headline">
|
||||
<h3><span style="color:white">Keyboards</span></h3></div>
|
||||
Display/hide the default keyboard as well as an extended keyboard with function keys
|
||||
</div>
|
||||
<div id="article">
|
||||
<div id="headline"><h3><span style="color:white">Touch Pointer</span></h3></div>
|
||||
Display/hide the gesture controlled cursor
|
||||
</div>
|
||||
<div id="article">
|
||||
<div id="headline"><h3><span style="color:white">Disconnect</span></h3></div>
|
||||
Disconnect your current session. Please be aware that a disconnect is not the same
|
||||
as a log out.
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/toolbar.png
vendored
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
50
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/toolbar_phone.html
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help-phone.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
|
||||
<a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
|
||||
<a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h2>Toolbar</h2>
|
||||
<p>
|
||||
With the toolbar you'll be able to display and hide the main tools in your session.
|
||||
This allows together with the touch pointer and the gestures an intuitiv workflow
|
||||
for remote computing on touch sensitive screens.
|
||||
</p>
|
||||
<p><img src="toolbar_phone.png"></p>
|
||||
|
||||
<div id="article">
|
||||
<div id="headline">
|
||||
<h4><span style="color:white">Keyboards</h4></span></div>
|
||||
Display/hide the default keyboard as well as an extended keyboard with function keys
|
||||
</div>
|
||||
<div id="article">
|
||||
<div id="headline"><h4><span style="color:white">Touch Pointer</h4></div>
|
||||
Display/hide the gesture controlled cursor
|
||||
</div>
|
||||
</span>
|
||||
<div id="article">
|
||||
<div id="headline"><h4><span style="color:white">Disconnect</span></h4></div>
|
||||
Disconnect your current session. Please be aware that a disconnect is not the same
|
||||
as a log out.
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/toolbar_phone.png
vendored
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
29
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/touch_pointer.html
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures.html"><img src="nav_gestures.png"></a>
|
||||
<a href="toolbar.html"><img src="nav_toolbar.png"></a>
|
||||
<a href="touch_pointer.html"><img src="nav_touch_pointer.png"></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h1>Touch Pointer</h1>
|
||||
<p><img src="touch_pointer.png">
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/touch_pointer.png
vendored
Normal file
|
After Width: | Height: | Size: 108 KiB |
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
|
||||
<title>Help</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="../help-phone.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container">
|
||||
<center>
|
||||
<div id="header">
|
||||
<a href="gestures_phone.html"><img src="nav_gestures.png" height="90%"></a>
|
||||
<a href="toolbar_phone.html"><img src="nav_toolbar.png" height="90%"></a>
|
||||
<a href="touch_pointer_phone.html"><img src="nav_touch_pointer.png" height="90%""></a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h2>Touch Pointer</h2>
|
||||
<p><img src="touch_pointer_phone.png">
|
||||
</p>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/assets/help_page/touch_pointer_phone.png
vendored
Normal file
|
After Width: | Height: | Size: 86 KiB |
@@ -0,0 +1,5 @@
|
||||
package com.freerdp.afreerdp.application;
|
||||
|
||||
public class GlobalApp extends com.freerdp.freerdpcore.application.GlobalApp
|
||||
{
|
||||
}
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
31
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/drawable/button_background.xml
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:state_pressed="true">
|
||||
<shape>
|
||||
<solid android:color="#99D4FF" />
|
||||
<stroke android:width="1dp" android:color="#A7A7A7" />
|
||||
<corners android:radius="3dp" />
|
||||
<padding android:bottom="3dp" android:left="3dp" android:right="3dp" android:top="3dp" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item android:state_focused="true">
|
||||
<shape>
|
||||
<solid android:color="#E3E3E3" />
|
||||
<stroke android:width="1dp" android:color="#585858" />
|
||||
<corners android:radius="3dp" />
|
||||
<padding android:bottom="3dp" android:left="3dp" android:right="3dp" android:top="3dp" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<shape>
|
||||
<solid android:color="#E3E3E3" />
|
||||
<stroke android:width="1dp" android:color="#585858" />
|
||||
<corners android:radius="3dp" />
|
||||
<padding android:bottom="3dp" android:left="3dp" android:right="3dp" android:top="3dp" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
BIN
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/drawable/icon_launcher_freerdp.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<solid android:color="@color/separator_background_color" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="@color/separator_frame_color" />
|
||||
<padding
|
||||
android:bottom="1dp"
|
||||
android:left="1dp"
|
||||
android:right="1dp"
|
||||
android:top="1dp" />
|
||||
<!--
|
||||
<color xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="#C2D6E6"
|
||||
/>
|
||||
-->
|
||||
|
||||
</shape>
|
||||
4
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/values-de/strings.xml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="search_settings_description">Entfernte Rechner</string>
|
||||
</resources>
|
||||
4
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/values-es/strings.xml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="search_settings_description">Remote Computers</string>
|
||||
</resources>
|
||||
4
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/values-fr/strings.xml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="search_settings_description">L\'ordinateur distant</string>
|
||||
</resources>
|
||||
4
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/values-ko/strings.xml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="search_settings_description">원격 컴퓨터</string>
|
||||
</resources>
|
||||
4
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/values-nl/strings.xml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="search_settings_description">Remote Computers</string>
|
||||
</resources>
|
||||
5
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/values-zh-rTW/strings.xml
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Search strings -->
|
||||
<string name="search_settings_description">遠端電腦</string>
|
||||
</resources>
|
||||
4
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/values-zh/strings.xml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="search_settings_description">远程计算机</string>
|
||||
</resources>
|
||||
7
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/values/strings.xml
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_title" translatable="false">aFreeRDP</string>
|
||||
<!-- Search strings -->
|
||||
<string name="search_label" translatable="false">aFreeRDP</string>
|
||||
<string name="search_settings_description">Remote Computers</string>
|
||||
</resources>
|
||||
22
third_party/FreeRDP/client/Android/Studio/aFreeRDP/src/main/res/xml/searchable.xml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
/*
|
||||
Bookmark searchable definition
|
||||
|
||||
Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
|
||||
|
||||
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
|
||||
If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
-->
|
||||
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:hint="@string/search_hint"
|
||||
android:imeOptions="actionGo"
|
||||
android:includeInGlobalSearch="true"
|
||||
android:label="@string/search_label"
|
||||
|
||||
android:searchMode="queryRewriteFromText"
|
||||
android:searchSettingsDescription="@string/search_settings_description"
|
||||
android:searchSuggestAuthority="com.freerdp.afreerdp.services.freerdpsuggestionprovider"
|
||||
|
||||
android:searchSuggestIntentAction="android.intent.action.VIEW"
|
||||
android:searchSuggestSelection=" ? "></searchable>
|
||||