[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [orbot/master] Removed very outdated text/graphics from "docs" folder.
commit f9d5fcf522475b1ca33b27ffb30e0a9b83ff90d9
Author: bim <dsnake@xxxxxxxxxxxxxx>
Date: Sun Nov 29 16:00:40 2020 -0500
Removed very outdated text/graphics from "docs" folder.
Moved svg icon from root of repo into docs folder
---
docs/GSoC.txt | 45 -----------------
docs/WALKTHROUGH | 85 --------------------------------
ic_launcher.svg => docs/ic_launcher.svg | 0
docs/onionroots.xcf | Bin 1748142 -> 0 bytes
docs/orbotnewicons.xcf | Bin 1118257 -> 0 bytes
5 files changed, 130 deletions(-)
diff --git a/docs/GSoC.txt b/docs/GSoC.txt
deleted file mode 100644
index d1d851e1..00000000
--- a/docs/GSoC.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-GSoC Plan
-=========
-
-A tl;dr version
----------------
-I will be improving the Orbot UI/UX, and adding several features such as data statistics and also
-implementing the TorCheck API. I plan on extending the ORLib library and also creating an ORLib enabled
-app as a sort of primer for other third party apps to follow
-
-The full version
-----------------
-
-Orbot UI/UX
-===========
-At the moment, the Orbot UI/UX is clustered and not very intuitive. I plan on improving the existing
-elements of the UI and also add a variety of new features such as
-
-* A new Set â?? up Wizard ( which checks for iptables )
-* Changes to the preferences ( should be made to follow the Android guidelines)
-
-Orbot Core app work
-===================
-At the moment, Orbot displays a successful connection without actually checking the connection. This is a
-pressing issue, because the user is not notified if the set-up has failed, unless he/she manually checks
-the torcheck web service. This should be made automatic by making using of the TorCheck API. Also, Orbot
-should be configured to show more information about the data being transmitted such as -
-
-* Amount of data transferred
-* Quality of the connection
-* Number of circuits connected
-
-ORLib
-=====
-Currently, ORLib is very minimal at the moment, both in term of features and support/documentation. ORLib
-is very critical to the use of Orbot as it provides transparent proxying on non-rooted devices ( A major
-chunk of android phones are un-rooted). I intend to -
-
-* Improve the existing library by adding additional features
- * Check for existing of Orbot
- * Check status of connection to Tor
- * Provide option to start Orbot via intent
-* Request hidden service by port, and get return hidden service .onion address
-* Create an ORLib enabled â??Twitter, Status.net or other micro blogging Clientâ?? â?? A sort of primer for
- third-party apps
-* Improve the documentation
diff --git a/docs/WALKTHROUGH b/docs/WALKTHROUGH
deleted file mode 100644
index 55a356b5..00000000
--- a/docs/WALKTHROUGH
+++ /dev/null
@@ -1,85 +0,0 @@
-
-.
-â??â??â?? org
- â??â??â?? torproject
- â??â??â?? android
- â??â??â?? AppManager.java
- //this is what helps us track the app-by-app torification
- //and gets the app name, icon, etc for display - we have some problems here
- //in normalizing the icon on the list label
- //some of this code came originally from DroidWall project (yay open source)
-
- â??â??â?? boot
- â?? â??â??â?? OnbootBroadcastReceiver.java
- //i think this is a dup now and should be removed
-
- â??â??â?? HiddenServiceManager.java
- //empty! but at some point i thought it would be good to aggregate HS functions here
-
- â??â??â?? OnBootReceiver.java
- //this is the class registered in AndroidManifest.xml to handle Onboot events
- //to start Orbot/Tor when the device boots if the user has elected to do so - what kind of permissions does this require?
- // <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
-
- â??â??â?? OrbotMainActivity.java
- //our wonderful main activity!
-
- â??â??â?? ProcessSettingsAsyncTask.java
- //this was just added in 1.0.5.x, but it was meant to help stop the UI blocking while processing settings and prefs
- //it uses the AsyncTask feature of Android, which seems to work pretty well
- //for this type of non-time critical function you just want to happen in the background at some point soon-ish
-
- â??â??â?? SettingsPreferences.java
- // Settings activity that loads the res/xml/preferences.xml resource up
- // has some custom event handlng, onActivityResult callback result code's as well
- // basically meant to tell Orbot activity if critical settings have been modified and whether
- // those new settings should be applied (like iptables/transproxy changes)
-
- â??â??â?? TorConstants.java
- // globals! well, constants! but yeah, just a place to put values we use a lot
-
- â??â??â?? TorifiedApp.java
- // object to store a single app's metadata for display in UI and for transproxy process
-
- â??â??â?? Utils.java
- // random methods that can be useful, a.k.a. another place to put stuff
-
- â??â??â?? WizardActivity.java
- // our original attempt at wizard activity that didn't get far
-
- â??â??â?? WizardHelper.java
- // the helper class that manages the dialog based wizard
-
- â??â??â?? service //okay the Service subpackage!
-
- â?? â??â??â?? Api.java
- //this is more code taken from DroidWall, that needs to be cleaned up and paired down to just what we need it for
- //this is related to 1.0.5.x changes with how we bundle and install our C binaries (tor, privoxy and iptables)
-
- â?? â??â??â?? ITorService.aidl
- // the android remote interface definition file;
- // this is the remote interface which the Orbot activity gets a reference to
- // and that in the TorService is instantiated as the "binder"
-
- â?? â??â??â?? ITorServiceCallback.aidl
- // this is the callback interface that the Orbot activity instantiates, and passes
- // to the ITorService; reverse of ITorService in a sense
-
- â?? â??â??â?? TorBinaryInstaller.java
- // this handles installation of binaries; uses Api.java; // tied into Wizard as well
-
- â?? â??â??â?? TorServiceConstants.java
- // reusable constants for just the Service package
-
- â?? â??â??â?? TorService.java
- // the main might powerful service class; Orbot and TorService are the front and backends of this whole app
- // should run as a remote service, but the manifest doesn't seem to indicate that at the moment
-
- â?? â??â??â?? TorServiceUtils.java
- //utility methods for the service; specificaly check for root and tools for finding processID of background binaries
-
- â?? â??â??â?? TorTransProxy.java
- // all the code for iptables transproxying management
-
-
-
diff --git a/ic_launcher.svg b/docs/ic_launcher.svg
similarity index 100%
rename from ic_launcher.svg
rename to docs/ic_launcher.svg
diff --git a/docs/onionroots.xcf b/docs/onionroots.xcf
deleted file mode 100644
index eac39c78..00000000
Binary files a/docs/onionroots.xcf and /dev/null differ
diff --git a/docs/orbotnewicons.xcf b/docs/orbotnewicons.xcf
deleted file mode 100644
index a6955dc1..00000000
Binary files a/docs/orbotnewicons.xcf and /dev/null differ
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits