* #38608: first implementation of history database

History is now stored in a lightweight ORM database.
Corners cases are still not treated, but simple calls are saved properly.
diff --git a/src/org/sflphone/fragments/HistoryFragment.java b/src/org/sflphone/fragments/HistoryFragment.java
index 0ab1712..4030c6d 100644
--- a/src/org/sflphone/fragments/HistoryFragment.java
+++ b/src/org/sflphone/fragments/HistoryFragment.java
@@ -166,7 +166,7 @@
     public void onStart() {
         super.onStart();
         Log.w(TAG, "onStart");
-        //getLoaderManager().restartLoader(LoaderConstants.HISTORY_LOADER, null, this);
+        getLoaderManager().restartLoader(LoaderConstants.HISTORY_LOADER, null, this);
     }
 
     public void makeNewCall(int position) {
@@ -218,7 +218,7 @@
             entryView.incoming.setText(getString(R.string.hist_in_calls, dataset.get(pos).getIncoming_sum()));
             entryView.outgoing.setText(getString(R.string.hist_out_calls, dataset.get(pos).getOutgoing_sum()));
 
-            if (dataset.get(pos).getCalls().lastEntry().getValue().getRecordPath().length() > 0) {
+            /*if (dataset.get(pos).getCalls().lastEntry().getValue().getRecordPath().length() > 0) {
                 entryView.replay.setVisibility(View.VISIBLE);
                 entryView.replay.setTag(R.id.replay, true);
                 entryView.replay.setOnClickListener(new OnClickListener() {
@@ -241,9 +241,9 @@
                         }
                     }
                 });
-            }
+            }*/
 
-            entryView.date.setText(dataset.get(pos).getCalls().lastEntry().getValue().getDate());
+            /*entryView.date.setText(dataset.get(pos).getCalls().lastEntry().getValue().getDate());*/
             entryView.photo.setOnClickListener(new OnClickListener() {
 
                 @Override