Deleting some unused files to tidy up the repository
This commit is contained in:
@@ -1,78 +0,0 @@
|
|||||||
package uk.org.openseizuredetector;
|
|
||||||
|
|
||||||
|
|
||||||
import android.app.Activity;
|
|
||||||
import android.content.Context;
|
|
||||||
import android.os.Bundle;
|
|
||||||
import android.support.v4.app.DialogFragment;
|
|
||||||
import android.util.Log;
|
|
||||||
import android.view.LayoutInflater;
|
|
||||||
import android.view.View;
|
|
||||||
import android.view.ViewGroup;
|
|
||||||
import android.widget.Button;
|
|
||||||
import android.widget.EditText;
|
|
||||||
|
|
||||||
public class AuthDialog extends DialogFragment {
|
|
||||||
private String TAG = "AuthDialog";
|
|
||||||
private AuthDialogInterface mListener;
|
|
||||||
private Context mContext;
|
|
||||||
private EditText mUnameEt;
|
|
||||||
private EditText mPasswdEt;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public View onCreateView(
|
|
||||||
LayoutInflater inflater,
|
|
||||||
ViewGroup container,
|
|
||||||
Bundle savedInstanceState) {
|
|
||||||
Log.v(TAG, "onCreateView()");
|
|
||||||
View v = inflater.inflate(R.layout.dialog_authenticate,
|
|
||||||
container, false);
|
|
||||||
Button cancelBtn =
|
|
||||||
(Button) v.findViewById(R.id.cancelBtn);
|
|
||||||
cancelBtn.setOnClickListener(onCancel);
|
|
||||||
Button OKBtn = (Button) v.findViewById(R.id.OKBtn);
|
|
||||||
OKBtn.setOnClickListener(onOK);
|
|
||||||
|
|
||||||
mUnameEt = (EditText) v.findViewById(R.id.username);
|
|
||||||
mPasswdEt = (EditText) v.findViewById(R.id.password);
|
|
||||||
|
|
||||||
return v;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
View.OnClickListener onCancel =
|
|
||||||
new View.OnClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onClick(View view) {
|
|
||||||
Log.v(TAG, "onCancel");
|
|
||||||
//m_status=false;
|
|
||||||
mListener.onDialogDone(false);
|
|
||||||
dismiss();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
View.OnClickListener onOK =
|
|
||||||
new View.OnClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onClick(View view) {
|
|
||||||
//m_status=true;
|
|
||||||
Log.v(TAG, "onOK()");
|
|
||||||
String uname = mUnameEt.getText().toString();
|
|
||||||
String passwd = mPasswdEt.getText().toString();
|
|
||||||
Log.v(TAG,"onOK() - uname="+uname+", passwd="+passwd);
|
|
||||||
mListener.onDialogDone(true);
|
|
||||||
dismiss();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onAttach(Context context) {
|
|
||||||
super.onAttach(context);
|
|
||||||
try {
|
|
||||||
mListener = (AuthDialogInterface) context;
|
|
||||||
} catch (ClassCastException e) {
|
|
||||||
throw new ClassCastException(context.toString()
|
|
||||||
+ " must implement dialogDoneistener");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
package uk.org.openseizuredetector;
|
|
||||||
|
|
||||||
import android.os.Bundle;
|
|
||||||
import android.support.v4.app.FragmentActivity;
|
|
||||||
import android.util.Log;
|
|
||||||
import android.view.View;
|
|
||||||
import android.widget.Button;
|
|
||||||
import android.widget.ListView;
|
|
||||||
|
|
||||||
import uk.org.openseizuredetector.EventLogManager.EventLogListAdapter;
|
|
||||||
import uk.org.openseizuredetector.EventLogManager.EventLogManager;
|
|
||||||
import uk.org.openseizuredetector.EventLogManager.LogEntryModel;
|
|
||||||
|
|
||||||
|
|
||||||
public class LogManagerActivity extends FragmentActivity {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
||||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
||||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
||||||
android:paddingTop="@dimen/activity_vertical_margin"
|
|
||||||
tools:context="uk.org.openseizuredetector.LogManager">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
||||||
android:text="@string/not_authenticated"
|
|
||||||
android:id="@+id/authStatusTv"
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
android:id="@+id/authenticate_button"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:text="@string/authenticate" />
|
|
||||||
|
|
||||||
<!--
|
|
||||||
<ListView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:id="@+id/eventLogListView"
|
|
||||||
android:layout_marginTop="97dp" />
|
|
||||||
|
|
||||||
<EditText
|
|
||||||
android:id="@+id/editText"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:ems="10"
|
|
||||||
android:inputType="textPersonName"
|
|
||||||
android:text="Name" />
|
|
||||||
-->
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
<ImageView
|
|
||||||
android:src="@drawable/star_of_life_24x24"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="64dp"
|
|
||||||
android:scaleType="center"
|
|
||||||
android:background="#FFFFBB33"
|
|
||||||
android:contentDescription="@string/app_name" />
|
|
||||||
<EditText
|
|
||||||
android:id="@+id/username"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="16dp"
|
|
||||||
android:layout_marginLeft="4dp"
|
|
||||||
android:layout_marginRight="4dp"
|
|
||||||
android:layout_marginBottom="4dp"
|
|
||||||
android:hint="username" />
|
|
||||||
<EditText
|
|
||||||
android:id="@+id/password"
|
|
||||||
android:inputType="textPassword"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="4dp"
|
|
||||||
android:layout_marginLeft="4dp"
|
|
||||||
android:layout_marginRight="4dp"
|
|
||||||
android:layout_marginBottom="16dp"
|
|
||||||
android:fontFamily="sans-serif"
|
|
||||||
android:hint="password"/>
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
<Button
|
|
||||||
android:id="@+id/cancelBtn"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:text="@string/cancel" />
|
|
||||||
<Button
|
|
||||||
android:id="@+id/OKBtn"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:text="@string/authenticate" />
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<EditTextPreference
|
|
||||||
android:defaultValue="https://osd.dynu.net/"
|
|
||||||
android:key="serverUrl"
|
|
||||||
android:title="@string/remote_url_title"
|
|
||||||
android:summary="@string/remote_url_summary"
|
|
||||||
/>
|
|
||||||
<CheckBoxPreference
|
|
||||||
android:defaultValue="true"
|
|
||||||
android:key="LogToServer"
|
|
||||||
android:summary="@string/log_data_remote_summary"
|
|
||||||
android:title="@string/log_data_remote_title" />
|
|
||||||
<CheckBoxPreference
|
|
||||||
android:defaultValue="false"
|
|
||||||
android:key="UploadOverMobileNetwork"
|
|
||||||
android:summary="@string/UseMobileSummary"
|
|
||||||
android:title="@string/UseMobileTitle" />
|
|
||||||
<EditTextPreference
|
|
||||||
android:defaultValue="password"
|
|
||||||
android:key="OSDPasswd"
|
|
||||||
android:summary="@string/remote_passwd_summary"
|
|
||||||
android:title="@string/remote_passwd_title" />
|
|
||||||
|
|
||||||
<CheckBoxPreference
|
|
||||||
android:defaultValue="false"
|
|
||||||
android:key="PreventSleep"
|
|
||||||
android:summary="@string/prevent_sleep_summary"
|
|
||||||
android:title="@string/prevent_sleep_title" />
|
|
||||||
<EditTextPreference
|
|
||||||
android:defaultValue="1000"
|
|
||||||
android:key="UpdatePeriod"
|
|
||||||
android:summary="@string/data_update_period_summary"
|
|
||||||
android:title="@string/data_update_period_title" />
|
|
||||||
<CheckBoxPreference
|
|
||||||
android:defaultValue="false"
|
|
||||||
android:key="AutoStart"
|
|
||||||
android:summary="@string/auto_start_summary"
|
|
||||||
android:title="@string/auto_start_title"
|
|
||||||
android:enabled="true"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<EditTextPreference
|
|
||||||
android:defaultValue=""
|
|
||||||
android:key="AppVersionName"
|
|
||||||
android:summary="@string/app_version_summary"
|
|
||||||
android:title="@string/app_version_title" />
|
|
||||||
<!--
|
|
||||||
<CheckBoxPreference
|
|
||||||
android:defaultValue="false"
|
|
||||||
android:key="UseIpCamera"
|
|
||||||
android:summary="Use IP Camera to View Images"
|
|
||||||
android:title="Enable IP Camera"
|
|
||||||
android:enabled="false"
|
|
||||||
/>
|
|
||||||
-->
|
|
||||||
|
|
||||||
|
|
||||||
</PreferenceScreen>
|
|
||||||
Reference in New Issue
Block a user