mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-15 13:35:04 -05:00
removed server compat value in favor of a (small xep list)
This commit is contained in:
parent
26d6835927
commit
ee9872277d
@ -8,11 +8,12 @@
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_above="@+id/button_bar"
|
||||
android:layout_alignParentTop="true">
|
||||
android:layout_alignParentTop="true" >
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
android:orientation="vertical" >
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/editor"
|
||||
@ -85,7 +86,7 @@
|
||||
android:layout_marginTop="8dp"
|
||||
android:orientation="vertical"
|
||||
android:padding="16dp"
|
||||
android:visibility="gone" >
|
||||
android:visibility="visible" >
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
@ -125,10 +126,43 @@
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/server_info_compatibilty" />
|
||||
android:text="@string/server_info_pep"
|
||||
android:textColor="@color/primarytext" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/server_compat"
|
||||
android:id="@+id/server_info_pep"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="right" />
|
||||
</TableRow>
|
||||
|
||||
<TableRow
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" >
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/server_info_stream_management" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/server_info_sm"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="right" />
|
||||
</TableRow>
|
||||
|
||||
<TableRow
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" >
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/server_info_carbon_messages" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/server_info_carbons"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="right" />
|
||||
|
@ -217,16 +217,11 @@
|
||||
<string name="muc_details_other_members">Other Members</string>
|
||||
<string name="subscription_not_updated_offline">Account offline. Could not update subscription</string>
|
||||
<string name="share_with_active_conversations">Active Conversations</string>
|
||||
<string name="server_info_statistics">Statistics</string>
|
||||
<string name="server_info_connection_age">Connection age</string>
|
||||
<string name="server_info_session_age">Session age</string>
|
||||
<string name="server_info_packets_sent">Packets sent</string>
|
||||
<string name="server_info_packets_received">Packets received</string>
|
||||
<string name="server_info_connected_accounts">Connected accounts</string>
|
||||
<string name="server_info_server_features">Server Features</string>
|
||||
<string name="server_info_roster_versioning">Roster Versioning</string>
|
||||
<string name="server_info_carbon_messages">Carbon Messages</string>
|
||||
<string name="server_info_stream_management">Stream Management</string>
|
||||
<string name="server_info_carbon_messages">XEP-0280: Message Carbons</string>
|
||||
<string name="server_info_stream_management">XEP-0198: Stream Management</string>
|
||||
<string name="server_info_pep">XEP-0163: PEP (Avatars)</string>
|
||||
<string name="server_info_available">available</string>
|
||||
<string name="server_info_unavailable">unavailable</string>
|
||||
<string name="hours">hours</string>
|
||||
<string name="mins">mins</string>
|
||||
<string name="missing_public_keys">Missing public key announcements</string>
|
||||
@ -285,7 +280,6 @@
|
||||
<string name="connect">Connect</string>
|
||||
<string name="account_already_exists">This account does already exist</string>
|
||||
<string name="next">Next</string>
|
||||
<string name="server_info_compatibilty">Server compatibilty</string>
|
||||
<string name="server_info_session_established">Current session established</string>
|
||||
<string name="additional_information">Additional Information</string>
|
||||
|
||||
|
@ -19,6 +19,7 @@ import eu.siacs.conversations.services.XmppConnectionService.OnAccountUpdate;
|
||||
import eu.siacs.conversations.ui.adapter.KnownHostsAdapter;
|
||||
import eu.siacs.conversations.utils.UIHelper;
|
||||
import eu.siacs.conversations.utils.Validator;
|
||||
import eu.siacs.conversations.xmpp.XmppConnection.Features;
|
||||
import eu.siacs.conversations.xmpp.pep.Avatar;
|
||||
|
||||
public class EditAccountActivity extends XmppActivity {
|
||||
@ -31,7 +32,9 @@ public class EditAccountActivity extends XmppActivity {
|
||||
private Button mSaveButton;
|
||||
|
||||
private LinearLayout mStats;
|
||||
private TextView mServerCompat;
|
||||
private TextView mServerInfoSm;
|
||||
private TextView mServerInfoCarbons;
|
||||
private TextView mServerInfoPep;
|
||||
private TextView mSessionEst;
|
||||
private TextView mOtrFingerprint;
|
||||
private TextView mOtrFingerprintHeadline;
|
||||
@ -208,7 +211,9 @@ public class EditAccountActivity extends XmppActivity {
|
||||
this.mRegisterNew = (CheckBox) findViewById(R.id.account_register_new);
|
||||
this.mStats = (LinearLayout) findViewById(R.id.stats);
|
||||
this.mSessionEst = (TextView) findViewById(R.id.session_est);
|
||||
this.mServerCompat = (TextView) findViewById(R.id.server_compat);
|
||||
this.mServerInfoCarbons = (TextView) findViewById(R.id.server_info_carbons);
|
||||
this.mServerInfoSm = (TextView) findViewById(R.id.server_info_sm);
|
||||
this.mServerInfoPep = (TextView) findViewById(R.id.server_info_pep);
|
||||
this.mOtrFingerprint = (TextView) findViewById(R.id.otr_fingerprint);
|
||||
this.mOtrFingerprintHeadline = (TextView) findViewById(R.id.otr_fingerprint_headline);
|
||||
this.mSaveButton = (Button) findViewById(R.id.save_button);
|
||||
@ -288,9 +293,22 @@ public class EditAccountActivity extends XmppActivity {
|
||||
this.mSessionEst.setText(UIHelper.readableTimeDifference(
|
||||
getApplicationContext(), this.mAccount.getXmppConnection()
|
||||
.getLastSessionEstablished()));
|
||||
this.mServerCompat.setText(this.mAccount.getXmppConnection()
|
||||
.getFeatures().getCompatibility()
|
||||
+ "%");
|
||||
Features features = this.mAccount.getXmppConnection().getFeatures();
|
||||
if (features.carbons()) {
|
||||
this.mServerInfoCarbons.setText(R.string.server_info_available);
|
||||
} else {
|
||||
this.mServerInfoCarbons.setText(R.string.server_info_unavailable);
|
||||
}
|
||||
if (features.sm()) {
|
||||
this.mServerInfoSm.setText(R.string.server_info_available);
|
||||
} else {
|
||||
this.mServerInfoSm.setText(R.string.server_info_unavailable);
|
||||
}
|
||||
if (features.pubsub()) {
|
||||
this.mServerInfoPep.setText(R.string.server_info_available);
|
||||
} else {
|
||||
this.mServerInfoPep.setText(R.string.server_info_unavailable);
|
||||
}
|
||||
String fingerprint = this.mAccount.getOtrFingerprint(getApplicationContext());
|
||||
if (fingerprint!=null) {
|
||||
this.mOtrFingerprintHeadline.setVisibility(View.VISIBLE);
|
||||
|
@ -919,42 +919,6 @@ public class XmppConnection implements Runnable {
|
||||
public boolean compression() {
|
||||
return connection.usingCompression;
|
||||
}
|
||||
|
||||
public int getCompatibility() {
|
||||
int hit = 0;
|
||||
int miss = 0;
|
||||
if (carbons()) {
|
||||
++hit;
|
||||
} else {
|
||||
++miss;
|
||||
}
|
||||
if (sm()) {
|
||||
++hit;
|
||||
} else {
|
||||
++miss;
|
||||
}
|
||||
if (pubsub()) {
|
||||
++hit;
|
||||
} else {
|
||||
++miss;
|
||||
}
|
||||
if (streamhost()) {
|
||||
++hit;
|
||||
} else {
|
||||
++miss;
|
||||
}
|
||||
if (compression()) {
|
||||
++hit;
|
||||
} else {
|
||||
++miss;
|
||||
}
|
||||
if (rosterVersioning()) {
|
||||
++hit;
|
||||
} else {
|
||||
++miss;
|
||||
}
|
||||
return (int) (((float) hit) / (hit + miss) * 100);
|
||||
}
|
||||
}
|
||||
|
||||
public long getLastSessionEstablished() {
|
||||
|
Loading…
Reference in New Issue
Block a user