unittests/mockTweetSerializer.js
author veltr
Wed, 27 Jun 2012 19:03:18 +0200
branchnew-model
changeset 921 d4dc652bf050
parent 183 d471599e1b2c
permissions -rw-r--r--
Added Slideshare Widget
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
182
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
     1
/* mock serializer, for unit testing. This file is separated from data.js
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
     2
   because the stub data is huge an we don't want to ship it with the rest
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
     3
   of the app */
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
     4
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
     5
IriSP.MockTweetSerializer = function(DataLoader, url) {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
     6
  IriSP.Serializer.call(this, DataLoader, url);
183
d471599e1b2c fixed inheritance bug in the mockups.
hamidouk
parents: 182
diff changeset
     7
  this._data = IriSP.MockTweetSerializer.prototype._data;
182
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
     8
};
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
     9
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    10
IriSP.MockTweetSerializer.prototype = new IriSP.Serializer();   
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    11
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    12
IriSP.MockTweetSerializer.prototype.currentMedia = function() {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    13
  return this._data.medias[0];
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    14
};
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    15
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    16
// Copy some methods from JSONSerializer because we need them in
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    17
// some tests.
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    18
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    19
IriSP.MockTweetSerializer.prototype.searchAnnotations = IriSP.JSONSerializer.prototype.searchAnnotations;
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    20
IriSP.MockTweetSerializer.prototype.searchOccurences = IriSP.JSONSerializer.prototype.searchOccurences;
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    21
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    22
IriSP.MockTweetSerializer.prototype._data = {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    23
"views": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    24
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    25
"id": "0", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    26
"contents": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    27
"914e1bcc-b6e0-11e0-a965-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    28
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    29
"annotation_types": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    30
"c_5AEE45AE-F0E5-2921-31CB-2683540AA7A4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    31
"61bcaa2e-9963-4df2-a987-34c08e184fb6"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    32
]
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    33
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    34
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    35
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    36
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    37
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    38
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    39
"dc:created": "2011-11-03T14:57:21.009848", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    40
"dc:title": "libidinal", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    41
"dc:modified": "2011-11-03T14:57:21.009848", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    42
"dc:creator": "IRI"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    43
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    44
"id": "219d25fc-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    45
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    46
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    47
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    48
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    49
"dc:created": "2011-11-03T14:57:20.999902", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    50
"dc:title": "eg8", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    51
"dc:modified": "2011-11-03T14:57:20.999902", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    52
"dc:creator": "IRI"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    53
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    54
"id": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    55
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    56
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    57
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    58
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    59
"dc:created": "2011-11-03T14:57:20.993496", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    60
"dc:title": "enmi", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    61
"dc:modified": "2011-11-03T14:57:20.993496", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    62
"dc:creator": "IRI"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    63
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    64
"id": "219aa55c-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    65
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    66
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    67
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    68
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    69
"dc:created": "2011-11-03T14:57:20.995151", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    70
"dc:title": "Hadopi", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    71
"dc:modified": "2011-11-03T14:57:20.995151", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    72
"dc:creator": "IRI"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    73
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    74
"id": "219ae77e-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    75
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    76
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    77
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    78
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    79
"dc:created": "2011-11-03T14:57:20.995151", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    80
"dc:title": "eG8", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    81
"dc:modified": "2011-11-03T14:57:20.995151", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    82
"dc:creator": "IRI"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    83
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    84
"id": "219ae30a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    85
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    86
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    87
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    88
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    89
"dc:created": "2011-11-03T14:57:21.009848", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    90
"dc:title": "contribution", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    91
"dc:modified": "2011-11-03T14:57:21.009848", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    92
"dc:creator": "IRI"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    93
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    94
"id": "219d2156-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    95
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    96
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    97
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    98
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
    99
"dc:created": "2011-11-03T14:57:20.993496", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   100
"dc:title": "trust", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   101
"dc:modified": "2011-11-03T14:57:20.993496", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   102
"dc:creator": "IRI"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   103
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   104
"id": "219aaab6-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   105
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   106
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   107
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   108
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   109
"dc:created": "2011-11-03T14:57:20.999902", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   110
"dc:title": "barlow", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   111
"dc:modified": "2011-11-03T14:57:20.999902", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   112
"dc:creator": "IRI"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   113
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   114
"id": "219b9c96-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   115
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   116
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   117
"lists": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   118
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   119
"items": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   120
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   121
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   122
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   123
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   124
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   125
"dc:contributor": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   126
"dc:created": "2011-11-03T14:57:20.992502", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   127
"dc:creator": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   128
"id-ref": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   129
"dc:title": "Découpages personnels", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   130
"editable": "false", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   131
"dc:modified": "2011-11-03T14:57:20.992502", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   132
"dc:description": ""
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   133
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   134
"id": "tweet_CB21314C-490A-91C7-ADAF-6212DFCF4E23"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   135
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   136
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   137
"items": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   138
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   139
"id-ref": "c_5AEE45AE-F0E5-2921-31CB-2683540AA7A4"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   140
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   141
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   142
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   143
"dc:contributor": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   144
"dc:created": "2011-11-03T14:57:21.010261", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   145
"dc:creator": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   146
"id-ref": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   147
"dc:title": "Découpages personnels", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   148
"editable": "false", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   149
"dc:modified": "2011-11-03T14:57:21.010261", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   150
"dc:description": ""
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   151
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   152
"id": "g_CB21314C-490A-91C7-ADAF-6212DFCF4E23"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   153
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   154
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   155
"medias": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   156
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   157
"origin": "0", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   158
"http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   159
"href": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/enmi/iri_enmiprepa2011_1bs.flv", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   160
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   161
"dc:contributor": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   162
"item": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   163
"name": "streamer", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   164
"value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   165
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   166
"dc:created": "2011-07-25T19:08:41.797402", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   167
"dc:duration": 1699997, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   168
"dc:creator": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   169
"dc:created.contents": "2011-07-25", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   170
"dc:title": "Bernard Stiegler - Introduction ENMI préparatoires 2011", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   171
"dc:creator.contents": "IRI", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   172
"dc:modified": "2011-07-25T19:08:41.862348", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   173
"dc:description": ""
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   174
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   175
"id": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   176
"unit": "ms"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   177
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   178
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   179
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   180
"dc:contributor": "admin", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   181
"dc:created": "2011-07-25T19:08:53.255900", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   182
"dc:creator": "admin", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   183
"main_media": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   184
"id-ref": "914e1bcc-b6e0-11e0-a965-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   185
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   186
"dc:description": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   187
"dc:title": " \tBernard Stiegler - Introduction ENMI préparatoires 2011", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   188
"id": "c609832e-b6e0-11e0-9f0f-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   189
"dc:modified": "2011-07-25T20:01:12.072312"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   190
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   191
"annotations": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   192
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   193
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   194
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   195
"description": "Bernard Stiegler : Introduction. Nouvel espace public - Wikileaks\nToute publication implique une dissimulation. Estia : le privé c'est le domestique. Le rapport public - privé est profondement bouleversé. Privé = privatisation (des données privées commercialisées). Nous sommes motivés par le désir de publication dont les industries culturelles nous ont privé. Ethique à Nicomaque (Aristote): il n'y a pas de confirance sans filia (amitié).", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   196
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   197
"src": ""
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   198
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   199
"title": "Introduction", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   200
"color": "16711680", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   201
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   202
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   203
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   204
"src": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   205
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   206
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   207
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   208
"begin": 4364, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   209
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   210
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   211
"id-ref": "c_5AEE45AE-F0E5-2921-31CB-2683540AA7A4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   212
"dc:created": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   213
"dc:modified": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   214
"dc:creator": "perso"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   215
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   216
"end": 445403, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   217
"tags": null, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   218
"color": "16711680", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   219
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   220
"id": "s_41FCF75C-4DBC-E109-57A2-2683540BC343"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   221
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   222
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   223
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   224
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   225
"description": "Première considération. Antigone : Le choeur dit ce qu'est l'Homme : inquiétant est l'homme. Hegel ajoute : la sagesse procède de l'inquiétude. Freud : l'inquiétante étrangeté, fin de la quiétude.", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   226
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   227
"src": ""
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   228
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   229
"title": "Première considération", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   230
"color": "16737792", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   231
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   232
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   233
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   234
"src": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   235
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   236
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   237
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   238
"begin": 446166, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   239
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   240
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   241
"id-ref": "c_5AEE45AE-F0E5-2921-31CB-2683540AA7A4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   242
"dc:created": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   243
"dc:modified": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   244
"dc:creator": "perso"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   245
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   246
"end": 683750, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   247
"tags": null, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   248
"color": "16737792", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   249
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   250
"id": "s_ABD0E503-B166-8AAD-7109-2683540BA6C9"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   251
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   252
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   253
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   254
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   255
"description": "Le double redoublement époqual (Epoké: suspension du rapport au monde)\nHusserl : nous sommes dans une époké technologique. La confiance passe par un système technique (imprimerie puis Luther) selon B. Gilles. Ces espaces de confiance sont repris par Max Weber (la foi est la conception monothéiste de la confiance) et doivent être calculables.", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   256
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   257
"src": ""
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   258
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   259
"title": "Le double redoublement époqual", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   260
"color": "16750848", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   261
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   262
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   263
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   264
"src": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   265
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   266
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   267
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   268
"begin": 683750, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   269
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   270
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   271
"id-ref": "c_5AEE45AE-F0E5-2921-31CB-2683540AA7A4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   272
"dc:created": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   273
"dc:modified": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   274
"dc:creator": "perso"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   275
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   276
"end": 1132168, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   277
"tags": null, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   278
"color": "16750848", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   279
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   280
"id": "s_A677A43D-BD3A-E2EB-46F5-2683540B5B5E"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   281
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   282
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   283
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   284
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   285
"description": "La confiance, la foi, la croyance, la filia, tous ces contextes repassent par le concept de l'économie libidinale introduit par Freud. Ethique Hacker (Himanen) : réaction au désinvestissement libidinal. Nous sommes dans un processus de défiance et d'infantilisation de régression (catastrophé). Rôle grandissant des tiers de confiance.", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   286
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   287
"src": ""
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   288
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   289
"title": "Économie libidinale - tiers de confiance", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   290
"color": "13369344", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   291
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   292
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   293
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   294
"src": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   295
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   296
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   297
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   298
"begin": 1132168, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   299
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   300
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   301
"id-ref": "c_5AEE45AE-F0E5-2921-31CB-2683540AA7A4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   302
"dc:created": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   303
"dc:modified": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   304
"dc:creator": "perso"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   305
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   306
"end": 1694349, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   307
"tags": null, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   308
"color": "13369344", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   309
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   310
"id": "s_D68D6DC7-756D-0A6C-80C8-2683540B8F72"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   311
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   312
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   313
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   314
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   315
"description": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   316
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   317
"src": ""
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   318
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   319
"title": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   320
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   321
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   322
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   323
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   324
"src": "undefined", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   325
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   326
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   327
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   328
"begin": 1694349, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   329
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   330
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   331
"id-ref": "c_5AEE45AE-F0E5-2921-31CB-2683540AA7A4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   332
"dc:created": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   333
"dc:modified": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   334
"dc:creator": "perso"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   335
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   336
"end": 1696543, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   337
"tags": null, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   338
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   339
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   340
"id": "s_C6A7D84F-B50D-F756-2CAE-2683540B2F12"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   341
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   342
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   343
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   344
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   345
"description": "RT @amil310: #enmi RT @amil310: #trust Waiting for Bernard Stiegler Can we trust in SNCF, really? Follow the seminar at http://bit.ly/l4ZbO4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   346
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   347
"src": "http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   348
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   349
"title": "Alexandre Monnin: RT @amil310: #enmi RT @amil310: #trust Waiting for Bernard Stiegler Can we trust in SNCF, really? Follow the seminar at http://bit.ly/l4ZbO4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   350
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   351
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   352
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   353
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   354
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   355
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   356
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   357
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   358
"begin": 15000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   359
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   360
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   361
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   362
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   363
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   364
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"profile_text_color\": \"634047\", \"followers_count\": 371, \"protected\": false, \"location\": \"Paris\", \"default_profile_image\": false, \"listed_count\": 68, \"utc_offset\": -10800, \"statuses_count\": 2825, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 457, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"EDECE9\", \"id_str\": \"7409472\", \"profile_background_image_url\": \"http://a1.twimg.com/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"retweeted_status\": {\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 137694060, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 60, \"protected\": false, \"location\": \"Lyon, France\", \"default_profile_image\": false, \"listed_count\": 9, \"utc_offset\": null, \"statuses_count\": 138, \"description\": \"Prof, University Lyon1, France. Computer Science, Dynamic Knowledge Management and Engineering, Chair www2012\", \"friends_count\": 33, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/855353678/alain_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"137694060\", \"profile_background_image_url\": \"http://a0.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Alain Mille\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"amil310\", \"url\": \"http://liris.cnrs.fr/alain.mille\", \"created_at\": \"Tue Apr 27 13:25:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [9, 17], \"id\": 137694060, \"id_str\": \"137694060\", \"name\": \"Alain Mille\", \"screen_name\": \"amil310\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}, {\"indices\": [19, 25], \"text\": \"trust\"}], \"urls\": [{\"indices\": [107, 127], \"url\": \"http://bit.ly/l4ZbO4\", \"expanded_url\": null}]}, \"text\": \"#enmi RT @amil310: #trust Waiting for Bernard Stiegler Can we trust in SNCF, really? Follow the seminar at http://bit.ly/l4ZbO4\", \"created_at\": \"Wed May 25 09:00:33 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73312486249611265, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73312486249611265\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 137694060, \"id_str\": \"137694060\", \"name\": \"Alain Mille\", \"screen_name\": \"amil310\"}, {\"indices\": [22, 30], \"id\": 137694060, \"id_str\": \"137694060\", \"name\": \"Alain Mille\", \"screen_name\": \"amil310\"}], \"hashtags\": [{\"indices\": [13, 18], \"text\": \"enmi\"}, {\"indices\": [32, 38], \"text\": \"trust\"}], \"urls\": [{\"indices\": [120, 140], \"url\": \"http://bit.ly/l4ZbO4\", \"expanded_url\": null}]}, \"text\": \"RT @amil310: #enmi RT @amil310: #trust Waiting for Bernard Stiegler Can we trust in SNCF, really? Follow the seminar at http://bit.ly/l4ZbO4\", \"created_at\": \"Wed May 25 09:02:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73312863908925440, \"source\": \"<a href=\\\"http://twitter.com/tweetbutton\\\" rel=\\\"nofollow\\\">Tweet Button</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73312863908925440\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   365
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   366
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   367
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   368
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   369
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   370
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   371
"end": 15000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   372
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   373
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   374
"id-ref": "219aa55c-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   375
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   376
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   377
"id-ref": "219aaab6-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   378
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   379
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   380
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   381
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   382
"id": "ada27eb6-1145-4b77-b7d5-dac5c65654e0-73312863908925440"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   383
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   384
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   385
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   386
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   387
"description": "#enmi Souci de live ???", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   388
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   389
"src": "http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   390
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   391
"title": "Alexandre Monnin: #enmi Souci de live ???", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   392
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   393
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   394
"Q"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   395
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   396
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   397
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   398
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   399
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   400
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   401
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   402
"begin": 50000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   403
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   404
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   405
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   406
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   407
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   408
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"profile_text_color\": \"634047\", \"followers_count\": 370, \"protected\": false, \"location\": \"Paris\", \"default_profile_image\": false, \"listed_count\": 68, \"utc_offset\": -10800, \"statuses_count\": 2826, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 457, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"EDECE9\", \"id_str\": \"7409472\", \"profile_background_image_url\": \"http://a1.twimg.com/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Souci de live ???\", \"created_at\": \"Wed May 25 09:02:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73313011430993920, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73313011430993920\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   409
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   410
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   411
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   412
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   413
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   414
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   415
"end": 50000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   416
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   417
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   418
"id-ref": "219aaab6-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   419
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   420
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   421
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   422
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   423
"id": "2ac976de-899e-4a08-8513-e4ea7bc8b92e-73313011430993920"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   424
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   425
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   426
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   427
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   428
"description": "RT @borisarfi: Xavier Niel sur #Hadopi \"Je pense que nous avons une mauvaise loi en France, une loi folle\" #eG8  #enmi", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   429
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   430
"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   431
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   432
"title": "Samuel Huron: RT @borisarfi: Xavier Niel sur #Hadopi \"Je pense que nous avons une mauvaise loi en France, une loi folle\" #eG8  #enmi", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   433
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   434
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   435
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   436
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   437
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   438
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   439
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   440
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   441
"begin": 80000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   442
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   443
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   444
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   445
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   446
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   447
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"profile_text_color\": \"4c9c8f\", \"followers_count\": 414, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 46, \"utc_offset\": -10800, \"statuses_count\": 1929, \"description\": \"Designer @ IRI Centre Pompidou / PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 542, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"000000\", \"id_str\": \"14905766\", \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 268, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 13], \"id\": 26981417, \"id_str\": \"26981417\", \"name\": \"Boris Arfi\", \"screen_name\": \"borisarfi\"}], \"hashtags\": [{\"indices\": [31, 38], \"text\": \"Hadopi\"}, {\"indices\": [107, 111], \"text\": \"eG8\"}, {\"indices\": [113, 118], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"RT @borisarfi: Xavier Niel sur #Hadopi \\\"Je pense que nous avons une mauvaise loi en France, une loi folle\\\" #eG8  #enmi\", \"created_at\": \"Wed May 25 09:03:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73313137151057920, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73313137151057920\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   448
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   449
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   450
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   451
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   452
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   453
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   454
"end": 80000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   455
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   456
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   457
"id-ref": "219ae30a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   458
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   459
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   460
"id-ref": "219ae30a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   461
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   462
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   463
"id-ref": "219ae77e-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   464
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   465
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   466
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   467
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   468
"id": "9b766956-6bb2-4720-a7b5-d150a41ab202-73313137151057920"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   469
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   470
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   471
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   472
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   473
"description": "#enmi La défiance ne serait seulement la perte de confiance, mais son retournement agressif, son inversion perverse, au sens etymologique", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   474
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   475
"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_6_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   476
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   477
"title": "Etienne Armand AMATO: #enmi La défiance ne serait seulement la perte de confiance, mais son retournement agressif, son inversion perverse, au sens etymologique", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   478
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   479
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   480
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   481
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   482
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   483
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   484
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   485
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   486
"begin": 99000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   487
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   488
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   489
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   490
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   491
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   492
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 223600369, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 7, \"protected\": false, \"location\": null, \"default_profile_image\": true, \"listed_count\": 0, \"utc_offset\": null, \"statuses_count\": 1, \"description\": null, \"friends_count\": 1, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/sticky/default_profile_images/default_profile_6_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"223600369\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Etienne Armand AMATO\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"EA_Amato\", \"url\": null, \"created_at\": \"Mon Dec 06 20:51:31 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi La d\\u00e9fiance ne serait seulement la perte de confiance, mais son retournement agressif, son inversion perverse, au sens etymologique\", \"created_at\": \"Wed May 25 09:03:27 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73313214305280000, \"source\": \"web\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73313214305280000\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   493
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   494
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   495
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   496
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   497
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   498
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   499
"end": 99000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   500
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   501
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   502
"id-ref": "219ae77e-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   503
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   504
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   505
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   506
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   507
"id": "b99854e0-29ad-4bc5-b38b-4aaa2b39f33d-73313214305280000"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   508
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   509
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   510
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   511
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   512
"description": "#enmi mise en place d'un nouvel espace publique depuis 9/11. Espace public = dispositif de publication.", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   513
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   514
"src": "http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   515
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   516
"title": "nicolasauret: #enmi mise en place d'un nouvel espace publique depuis 9/11. Espace public = dispositif de publication.", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   517
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   518
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   519
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   520
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   521
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   522
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   523
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   524
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   525
"begin": 188000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   526
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   527
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   528
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   529
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   530
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   531
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 293395401, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 3, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 3, \"description\": \"Founder of Inflammable Productions, producer of new media content + project manager @IRI Centre Pompidou\", \"friends_count\": 10, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"293395401\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"nicolasauret\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"nicolasauret\", \"url\": null, \"created_at\": \"Thu May 05 08:31:25 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi mise en place d'un nouvel espace publique depuis 9/11. Espace public = dispositif de publication.\", \"created_at\": \"Wed May 25 09:04:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73313588592386048, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73313588592386048\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   532
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   533
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   534
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   535
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   536
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   537
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   538
"end": 188000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   539
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   540
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   541
"id-ref": "219ae77e-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   542
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   543
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   544
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   545
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   546
"id": "9e283e03-9d4d-4e7f-98f7-c3ea1e4fdabc-73313588592386048"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   547
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   548
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   549
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   550
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   551
"description": "#enmi Catastrophe et Confiance == http://bit.ly/jh2dTK ??", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   552
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   553
"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   554
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   555
"title": "Samuel Huron: #enmi Catastrophe et Confiance == http://bit.ly/jh2dTK ??", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   556
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   557
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   558
"Q", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   559
"REF"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   560
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   561
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   562
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   563
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   564
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   565
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   566
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   567
"begin": 209000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   568
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   569
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   570
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   571
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   572
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   573
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"profile_text_color\": \"4c9c8f\", \"followers_count\": 414, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 46, \"utc_offset\": -10800, \"statuses_count\": 1929, \"description\": \"Designer @ IRI Centre Pompidou / PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 542, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"000000\", \"id_str\": \"14905766\", \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 268, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": [{\"indices\": [34, 54], \"url\": \"http://bit.ly/jh2dTK\", \"expanded_url\": null}]}, \"text\": \"#enmi Catastrophe et Confiance == http://bit.ly/jh2dTK ??\", \"created_at\": \"Wed May 25 09:05:17 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73313679264854016, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73313679264854016\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   574
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   575
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   576
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   577
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   578
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   579
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   580
"end": 209000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   581
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   582
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   583
"id-ref": "219ae77e-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   584
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   585
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   586
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   587
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   588
"id": "b0b5c6f0-5ce3-4292-af28-11ddf80653b6-73313679264854016"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   589
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   590
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   591
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   592
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   593
"description": "#enmi Plus de live -- :(", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   594
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   595
"src": "http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   596
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   597
"title": "Alexandre Monnin: #enmi Plus de live -- :(", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   598
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   599
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   600
"KO"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   601
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   602
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   603
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   604
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   605
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   606
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   607
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   608
"begin": 287000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   609
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   610
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   611
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   612
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   613
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   614
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"profile_text_color\": \"634047\", \"followers_count\": 370, \"protected\": false, \"location\": \"Paris\", \"default_profile_image\": false, \"listed_count\": 68, \"utc_offset\": -10800, \"statuses_count\": 2827, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 457, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"EDECE9\", \"id_str\": \"7409472\", \"profile_background_image_url\": \"http://a1.twimg.com/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Plus de live -- :(\", \"created_at\": \"Wed May 25 09:06:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73314003862044672, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73314003862044672\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   615
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   616
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   617
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   618
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   619
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   620
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   621
"end": 287000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   622
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   623
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   624
"id-ref": "219ae77e-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   625
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   626
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   627
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   628
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   629
"id": "cbcdc041-a215-4f67-baa9-86f818392ac9-73314003862044672"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   630
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   631
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   632
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   633
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   634
"description": "#enmi Dispositif de publication et d'occultation, qui compense la souffrance du peuple qui n'avait plus accès aux moyens de diffusion", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   635
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   636
"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_6_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   637
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   638
"title": "Etienne Armand AMATO: #enmi Dispositif de publication et d'occultation, qui compense la souffrance du peuple qui n'avait plus accès aux moyens de diffusion", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   639
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   640
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   641
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   642
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   643
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   644
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   645
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   646
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   647
"begin": 325000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   648
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   649
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   650
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   651
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   652
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   653
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 223600369, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 7, \"protected\": false, \"location\": null, \"default_profile_image\": true, \"listed_count\": 0, \"utc_offset\": null, \"statuses_count\": 2, \"description\": null, \"friends_count\": 1, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/sticky/default_profile_images/default_profile_6_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"223600369\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Etienne Armand AMATO\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"EA_Amato\", \"url\": null, \"created_at\": \"Mon Dec 06 20:51:31 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Dispositif de publication et d'occultation, qui compense la souffrance du peuple qui n'avait plus acc\\u00e8s aux moyens de diffusion\", \"created_at\": \"Wed May 25 09:07:13 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73314163715358720, \"source\": \"web\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73314163715358720\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   654
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   655
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   656
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   657
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   658
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   659
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   660
"end": 325000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   661
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   662
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   663
"id-ref": "219ae77e-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   664
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   665
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   666
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   667
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   668
"id": "9d2af859-5765-4013-9d81-edfdb44c0b49-73314163715358720"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   669
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   670
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   671
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   672
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   673
"description": "== #enmi \"le peuple souffre depuis un siecle de ne plus avoir accés a la publication\"  B. Stiegler", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   674
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   675
"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   676
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   677
"title": "Samuel Huron: == #enmi \"le peuple souffre depuis un siecle de ne plus avoir accés a la publication\"  B. Stiegler", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   678
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   679
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   680
"REF"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   681
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   682
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   683
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   684
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   685
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   686
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   687
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   688
"begin": 340000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   689
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   690
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   691
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   692
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   693
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   694
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"profile_text_color\": \"4c9c8f\", \"followers_count\": 414, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 46, \"utc_offset\": -10800, \"statuses_count\": 1930, \"description\": \"Designer @ IRI Centre Pompidou / PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 542, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"000000\", \"id_str\": \"14905766\", \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 268, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [3, 8], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"== #enmi \\\"le peuple souffre depuis un siecle de ne plus avoir acc\\u00e9s a la publication\\\"  B. Stiegler\", \"created_at\": \"Wed May 25 09:07:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73314228785790976, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73314228785790976\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   695
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   696
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   697
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   698
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   699
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   700
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   701
"end": 340000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   702
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   703
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   704
"id-ref": "219ae77e-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   705
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   706
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   707
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   708
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   709
"id": "4310875e-202f-4704-87e4-bd456f2a615f-73314228785790976"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   710
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   711
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   712
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   713
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   714
"description": "#enmi B.Stiegler \"Montée en puissance du web numérique : nouvel espace de publication. Investit par un désir de publication.\" #eg8 #barlow", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   715
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   716
"src": "http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   717
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   718
"title": "nicolasauret: #enmi B.Stiegler \"Montée en puissance du web numérique : nouvel espace de publication. Investit par un désir de publication.\" #eg8 #barlow", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   719
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   720
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   721
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   722
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   723
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   724
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   725
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   726
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   727
"begin": 401000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   728
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   729
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   730
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   731
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   732
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   733
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 293395401, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 3, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 4, \"description\": \"Founder of Inflammable Productions, producer of new media content + project manager @IRI Centre Pompidou\", \"friends_count\": 10, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"293395401\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"nicolasauret\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"nicolasauret\", \"url\": null, \"created_at\": \"Thu May 05 08:31:25 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}, {\"indices\": [126, 130], \"text\": \"eg8\"}, {\"indices\": [131, 138], \"text\": \"barlow\"}], \"urls\": []}, \"text\": \"#enmi B.Stiegler \\\"Mont\\u00e9e en puissance du web num\\u00e9rique : nouvel espace de publication. Investit par un d\\u00e9sir de publication.\\\" #eg8 #barlow\", \"created_at\": \"Wed May 25 09:08:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73314481106714624, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73314481106714624\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   734
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   735
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   736
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   737
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   738
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   739
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   740
"end": 401000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   741
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   742
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   743
"id-ref": "219b9c96-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   744
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   745
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   746
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   747
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   748
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   749
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   750
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   751
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   752
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   753
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   754
"id": "807eec28-0165-4fee-8f1e-0facab6d5bb7-73314481106714624"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   755
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   756
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   757
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   758
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   759
"description": "#enmi Problème de réseau, le live est tombé. On essayera à la pause", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   760
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   761
"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   762
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   763
"title": "Yves-Marie Haussonne: #enmi Problème de réseau, le live est tombé. On essayera à la pause", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   764
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   765
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   766
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   767
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   768
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   769
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   770
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   771
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   772
"begin": 572000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   773
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   774
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   775
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   776
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   777
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   778
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 47312923, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"location\": null, \"default_profile_image\": true, \"listed_count\": 0, \"utc_offset\": null, \"statuses_count\": 124, \"description\": null, \"friends_count\": 0, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"47312923\", \"profile_background_image_url\": \"http://a0.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Yves-Marie Haussonne\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"ymh_work\", \"url\": null, \"created_at\": \"Mon Jun 15 11:25:05 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Probl\\u00e8me de r\\u00e9seau, le live est tomb\\u00e9. On essayera \\u00e0 la pause\", \"created_at\": \"Wed May 25 09:11:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73315198567579649, \"source\": \"web\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73315198567579649\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   779
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   780
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   781
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   782
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   783
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   784
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   785
"end": 572000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   786
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   787
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   788
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   789
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   790
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   791
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   792
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   793
"id": "e0511a28-c123-4af0-859d-dfaa52ee74b3-73315198567579649"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   794
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   795
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   796
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   797
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   798
"description": "#enmi \"inquiétant est l'homme\" sophocle  \"l'inquiétude est la source de la philo \" Hegel \"inquietante étrangeté\" Freud http://bit.ly/l0fanQ", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   799
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   800
"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   801
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   802
"title": "Samuel Huron: #enmi \"inquiétant est l'homme\" sophocle  \"l'inquiétude est la source de la philo \" Hegel \"inquietante étrangeté\" Freud http://bit.ly/l0fanQ", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   803
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   804
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   805
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   806
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   807
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   808
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   809
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   810
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   811
"begin": 628000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   812
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   813
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   814
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   815
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   816
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   817
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"profile_text_color\": \"4c9c8f\", \"followers_count\": 414, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 46, \"utc_offset\": -10800, \"statuses_count\": 1931, \"description\": \"Designer @ IRI Centre Pompidou / PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 542, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"000000\", \"id_str\": \"14905766\", \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 268, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": [{\"indices\": [119, 139], \"url\": \"http://bit.ly/l0fanQ\", \"expanded_url\": null}]}, \"text\": \"#enmi \\\"inqui\\u00e9tant est l'homme\\\" sophocle  \\\"l'inqui\\u00e9tude est la source de la philo \\\" Hegel \\\"inquietante \\u00e9tranget\\u00e9\\\" Freud http://bit.ly/l0fanQ\", \"created_at\": \"Wed May 25 09:12:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73315436367855616, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73315436367855616\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   818
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   819
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   820
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   821
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   822
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   823
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   824
"end": 628000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   825
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   826
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   827
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   828
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   829
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   830
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   831
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   832
"id": "61a45d63-7352-4611-9b09-bd37077987fe-73315436367855616"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   833
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   834
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   835
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   836
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   837
"description": "#enmi Cable débranché. Le live est de retour", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   838
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   839
"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   840
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   841
"title": "Yves-Marie Haussonne: #enmi Cable débranché. Le live est de retour", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   842
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   843
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   844
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   845
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   846
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   847
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   848
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   849
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   850
"begin": 735000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   851
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   852
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   853
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   854
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   855
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   856
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 47312923, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"location\": null, \"default_profile_image\": true, \"listed_count\": 0, \"utc_offset\": null, \"statuses_count\": 125, \"description\": null, \"friends_count\": 0, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"47312923\", \"profile_background_image_url\": \"http://a0.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Yves-Marie Haussonne\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"ymh_work\", \"url\": null, \"created_at\": \"Mon Jun 15 11:25:05 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Cable d\\u00e9branch\\u00e9. Le live est de retour\", \"created_at\": \"Wed May 25 09:14:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73315883203833856, \"source\": \"web\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73315883203833856\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   857
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   858
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   859
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   860
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   861
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   862
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   863
"end": 735000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   864
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   865
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   866
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   867
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   868
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   869
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   870
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   871
"id": "21693b30-7ded-4dbc-9827-136b15cfa5ec-73315883203833856"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   872
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   873
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   874
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   875
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   876
"description": "#enmi ça remarche :) ++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   877
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   878
"src": "http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   879
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   880
"title": "Alexandre Monnin: #enmi ça remarche :) ++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   881
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   882
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   883
"OK"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   884
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   885
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   886
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   887
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   888
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   889
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   890
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   891
"begin": 799000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   892
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   893
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   894
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   895
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   896
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   897
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"profile_text_color\": \"634047\", \"followers_count\": 370, \"protected\": false, \"location\": \"Paris\", \"default_profile_image\": false, \"listed_count\": 68, \"utc_offset\": -10800, \"statuses_count\": 2828, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 457, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"EDECE9\", \"id_str\": \"7409472\", \"profile_background_image_url\": \"http://a1.twimg.com/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi \\u00e7a remarche :) ++\", \"created_at\": \"Wed May 25 09:15:07 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73316151018524672, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73316151018524672\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   898
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   899
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   900
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   901
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   902
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   903
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   904
"end": 799000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   905
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   906
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   907
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   908
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   909
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   910
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   911
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   912
"id": "d09bcacb-90e4-4a55-91d7-088125d9acfb-73316151018524672"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   913
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   914
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   915
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   916
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   917
"description": "#enmi Descartes: interruption de ma volonté par rapport à mon entendement==", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   918
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   919
"src": "http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   920
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   921
"title": "Vincent Puig: #enmi Descartes: interruption de ma volonté par rapport à mon entendement==", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   922
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   923
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   924
"REF"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   925
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   926
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   927
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   928
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   929
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   930
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   931
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   932
"begin": 856000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   933
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   934
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   935
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   936
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   937
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   938
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 93, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 169, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"68424173\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Descartes: interruption de ma volont\\u00e9 par rapport \\u00e0 mon entendement==\", \"created_at\": \"Wed May 25 09:16:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73316389389217792, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73316389389217792\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   939
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   940
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   941
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   942
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   943
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   944
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   945
"end": 856000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   946
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   947
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   948
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   949
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   950
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   951
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   952
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   953
"id": "09b576b3-36c7-4775-91f0-41e38fe73ccd-73316389389217792"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   954
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   955
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   956
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   957
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   958
"description": "#enmi le Web est aussi une technique de publication ++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   959
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   960
"src": "http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   961
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   962
"title": "Alexandre Monnin: #enmi le Web est aussi une technique de publication ++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   963
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   964
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   965
"OK"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   966
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   967
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   968
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   969
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   970
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   971
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   972
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   973
"begin": 912000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   974
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   975
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   976
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   977
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   978
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   979
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"profile_text_color\": \"634047\", \"followers_count\": 370, \"protected\": false, \"location\": \"Paris\", \"default_profile_image\": false, \"listed_count\": 68, \"utc_offset\": -10800, \"statuses_count\": 2829, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 457, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"EDECE9\", \"id_str\": \"7409472\", \"profile_background_image_url\": \"http://a1.twimg.com/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi le Web est aussi une technique de publication ++\", \"created_at\": \"Wed May 25 09:17:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73316627998982144, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73316627998982144\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   980
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   981
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   982
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   983
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   984
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   985
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   986
"end": 912000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   987
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   988
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   989
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   990
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   991
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   992
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   993
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   994
"id": "429dd17e-568f-453b-b821-56cb419ba9d3-73316627998982144"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   995
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   996
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   997
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   998
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
   999
"description": "#enmi Donc d'écriture ++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1000
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1001
"src": "http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1002
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1003
"title": "Alexandre Monnin: #enmi Donc d'écriture ++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1004
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1005
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1006
"OK"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1007
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1008
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1009
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1010
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1011
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1012
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1013
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1014
"begin": 923000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1015
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1016
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1017
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1018
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1019
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1020
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"profile_text_color\": \"634047\", \"followers_count\": 370, \"protected\": false, \"location\": \"Paris\", \"default_profile_image\": false, \"listed_count\": 68, \"utc_offset\": -10800, \"statuses_count\": 2830, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 457, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"EDECE9\", \"id_str\": \"7409472\", \"profile_background_image_url\": \"http://a1.twimg.com/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Donc d'\\u00e9criture ++\", \"created_at\": \"Wed May 25 09:17:11 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73316673108717568, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73316673108717568\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1021
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1022
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1023
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1024
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1025
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1026
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1027
"end": 923000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1028
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1029
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1030
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1031
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1032
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1033
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1034
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1035
"id": "8b191a27-5c94-46c7-8d3e-1f0a3476f2cf-73316673108717568"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1036
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1037
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1038
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1039
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1040
"description": "#enmi Stiegler :Ce qui constitue l'humain depuis l'hominisation, c'est qu'il est régulièrement confronté à des suspensions technologiques.++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1041
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1042
"src": "http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1043
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1044
"title": "nicolasauret: #enmi Stiegler :Ce qui constitue l'humain depuis l'hominisation, c'est qu'il est régulièrement confronté à des suspensions technologiques.++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1045
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1046
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1047
"OK"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1048
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1049
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1050
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1051
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1052
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1053
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1054
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1055
"begin": 1015000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1056
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1057
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1058
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1059
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1060
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1061
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 293395401, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 3, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 7, \"description\": \"Founder of Inflammable Productions, producer of new media content + project manager @IRI Centre Pompidou\", \"friends_count\": 10, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"293395401\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"nicolasauret\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"nicolasauret\", \"url\": null, \"created_at\": \"Thu May 05 08:31:25 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Stiegler :Ce qui constitue l'humain depuis l'hominisation, c'est qu'il est r\\u00e9guli\\u00e8rement confront\\u00e9 \\u00e0 des suspensions technologiques.++\", \"created_at\": \"Wed May 25 09:18:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73317056312909824, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73317056312909824\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1062
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1063
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1064
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1065
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1066
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1067
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1068
"end": 1015000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1069
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1070
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1071
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1072
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1073
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1074
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1075
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1076
"id": "0f98001e-3c41-4b9c-921d-e369cfbdef7f-73317056312909824"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1077
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1078
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1079
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1080
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1081
"description": "#enmi Stiegler pense un rapport de l'Homme au monde par la technologie++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1082
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1083
"src": "http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1084
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1085
"title": "Vincent Puig: #enmi Stiegler pense un rapport de l'Homme au monde par la technologie++", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1086
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1087
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1088
"OK"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1089
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1090
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1091
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1092
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1093
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1094
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1095
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1096
"begin": 1025000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1097
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1098
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1099
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1100
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1101
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1102
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 93, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 170, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"68424173\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Stiegler pense un rapport de l'Homme au monde par la technologie++\", \"created_at\": \"Wed May 25 09:18:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73317100810276864, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73317100810276864\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1103
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1104
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1105
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1106
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1107
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1108
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1109
"end": 1025000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1110
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1111
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1112
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1113
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1114
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1115
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1116
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1117
"id": "b72f2732-73d9-4425-8e62-9d32b31a51fd-73317100810276864"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1118
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1119
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1120
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1121
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1122
"description": "#enmi la foi conception monotheist de lq confiance et calculabilite ==", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1123
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1124
"src": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1125
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1126
"title": "Yves-Marie Haussonne: #enmi la foi conception monotheist de lq confiance et calculabilite ==", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1127
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1128
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1129
"REF"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1130
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1131
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1132
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1133
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1134
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1135
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1136
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1137
"begin": 1155000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1138
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1139
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1140
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1141
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1142
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1143
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 47312923, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"location\": null, \"default_profile_image\": true, \"listed_count\": 0, \"utc_offset\": null, \"statuses_count\": 126, \"description\": null, \"friends_count\": 0, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"47312923\", \"profile_background_image_url\": \"http://a0.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Yves-Marie Haussonne\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"ymh_work\", \"url\": null, \"created_at\": \"Mon Jun 15 11:25:05 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi la foi conception monotheist de lq confiance et calculabilite ==\", \"created_at\": \"Wed May 25 09:21:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73317644270444546, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73317644270444546\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1144
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1145
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1146
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1147
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1148
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1149
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1150
"end": 1155000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1151
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1152
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1153
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1154
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1155
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1156
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1157
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1158
"id": "875ca945-960a-4346-9149-692ba6575f2d-73317644270444546"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1159
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1160
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1161
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1162
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1163
"description": "RT @nicolasauret: #enmi Stiegler :Ce qui constitue l'humain depuis l'hominisation, c'est qu'il est régulièrement confronté à des suspens ...", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1164
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1165
"src": "http://a2.twimg.com/profile_images/1367788685/021EB7A5-E5A2-4837-9E76-4A6019F6E1EE_normal"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1166
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1167
"title": "Fabian Gental: RT @nicolasauret: #enmi Stiegler :Ce qui constitue l'humain depuis l'hominisation, c'est qu'il est régulièrement confronté à des suspens ...", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1168
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1169
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1170
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1171
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1172
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1173
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1174
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1175
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1176
"begin": 1174000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1177
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1178
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1179
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1180
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1181
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1182
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 115128839, \"verified\": false, \"profile_sidebar_fill_color\": \"d6fffc\", \"profile_text_color\": \"04838f\", \"followers_count\": 10, \"protected\": false, \"location\": \"Paris / Limoges / Berlin\", \"default_profile_image\": false, \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 14, \"description\": \"\\u00c9tudiant en design @ENSCI les Ateliers\\n@ENSA Limoges\", \"friends_count\": 29, \"profile_link_color\": \"05d5ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1367788685/021EB7A5-E5A2-4837-9E76-4A6019F6E1EE_normal\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"bf9dc9\", \"id_str\": \"115128839\", \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/76127896/test.png\", \"name\": \"Fabian Gental\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"3615fabe\", \"url\": null, \"created_at\": \"Wed Feb 17 18:08:52 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Berlin\", \"profile_sidebar_border_color\": \"ffffff\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"retweeted_status\": {\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 293395401, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 3, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 7, \"description\": \"Founder of Inflammable Productions, producer of new media content + project manager @IRI Centre Pompidou\", \"friends_count\": 10, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"293395401\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"nicolasauret\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"nicolasauret\", \"url\": null, \"created_at\": \"Thu May 05 08:31:25 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Stiegler :Ce qui constitue l'humain depuis l'hominisation, c'est qu'il est r\\u00e9guli\\u00e8rement confront\\u00e9 \\u00e0 des suspensions technologiques.++\", \"created_at\": \"Wed May 25 09:18:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73317056312909824, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73317056312909824\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 16], \"id\": 293395401, \"id_str\": \"293395401\", \"name\": \"nicolasauret\", \"screen_name\": \"nicolasauret\"}], \"hashtags\": [{\"indices\": [18, 23], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"RT @nicolasauret: #enmi Stiegler :Ce qui constitue l'humain depuis l'hominisation, c'est qu'il est r\\u00e9guli\\u00e8rement confront\\u00e9 \\u00e0 des suspens ...\", \"created_at\": \"Wed May 25 09:21:22 +0000 2011\", \"truncated\": true, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73317726894030848, \"source\": \"<a href=\\\"http://tapbots.com/tweetbot\\\" rel=\\\"nofollow\\\">Tweetbot for iPhone</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73317726894030848\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1183
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1184
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1185
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1186
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1187
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1188
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1189
"end": 1174000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1190
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1191
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1192
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1193
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1194
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1195
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1196
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1197
"id": "1adb2d5a-71d6-4704-acc1-71f7b2fe0130-73317726894030848"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1198
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1199
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1200
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1201
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1202
"description": "#enmi B stiegler :  Crise de confiance, car le nouveau systeme techno fait exploser les cadres sociaux http://bit.ly/l4ZbO4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1203
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1204
"src": "http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1205
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1206
"title": "nicolasauret: #enmi B stiegler :  Crise de confiance, car le nouveau systeme techno fait exploser les cadres sociaux http://bit.ly/l4ZbO4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1207
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1208
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1209
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1210
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1211
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1212
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1213
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1214
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1215
"begin": 1181000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1216
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1217
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1218
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1219
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1220
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1221
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 293395401, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 3, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 8, \"description\": \"Founder of Inflammable Productions, producer of new media content + project manager @IRI Centre Pompidou\", \"friends_count\": 10, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1339638568/photoNicoS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"293395401\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"nicolasauret\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"nicolasauret\", \"url\": null, \"created_at\": \"Thu May 05 08:31:25 +0000 2011\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": [{\"indices\": [103, 123], \"url\": \"http://bit.ly/l4ZbO4\", \"expanded_url\": null}]}, \"text\": \"#enmi B stiegler :  Crise de confiance, car le nouveau systeme techno fait exploser les cadres sociaux http://bit.ly/l4ZbO4\", \"created_at\": \"Wed May 25 09:21:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73317753603358720, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73317753603358720\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1222
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1223
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1224
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1225
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1226
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1227
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1228
"end": 1181000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1229
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1230
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1231
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1232
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1233
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1234
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1235
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1236
"id": "52afd104-e38f-4bf6-a23d-a6b5d6379da8-73317753603358720"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1237
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1238
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1239
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1240
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1241
"description": "#enmi Confiance calculable (raison) et foi (non calculable mais motivée par le desir) ne s'opposent pas.--", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1242
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1243
"src": "http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1244
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1245
"title": "Vincent Puig: #enmi Confiance calculable (raison) et foi (non calculable mais motivée par le desir) ne s'opposent pas.--", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1246
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1247
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1248
"KO"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1249
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1250
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1251
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1252
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1253
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1254
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1255
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1256
"begin": 1438000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1257
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1258
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1259
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1260
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1261
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1262
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"profile_text_color\": \"333333\", \"followers_count\": 93, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 171, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_color\": \"C0DEED\", \"id_str\": \"68424173\", \"profile_background_image_url\": \"http://a3.twimg.com/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"default_profile\": true, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#enmi Confiance calculable (raison) et foi (non calculable mais motiv\\u00e9e par le desir) ne s'opposent pas.--\", \"created_at\": \"Wed May 25 09:25:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73318830763552769, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73318830763552769\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1263
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1264
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1265
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1266
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1267
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1268
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1269
"end": 1438000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1270
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1271
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1272
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1273
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1274
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1275
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1276
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1277
"id": "6d1660e1-a012-484b-99f8-e6cc49ccf39c-73318830763552769"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1278
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1279
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1280
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1281
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1282
"description": "#eg8 #enmi :: le language, interface entre l'homme et le monde.   technologie de confiance ?? Qu'elles liberté ?", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1283
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1284
"src": "http://a1.twimg.com/profile_images/309624209/Cy2_normal.png"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1285
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1286
"title": "Samuel Huron: #eg8 #enmi :: le language, interface entre l'homme et le monde.   technologie de confiance ?? Qu'elles liberté ?", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1287
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1288
"polemics": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1289
"Q"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1290
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1291
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1292
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1293
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1294
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1295
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1296
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1297
"begin": 1454000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1298
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1299
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1300
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1301
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1302
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1303
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"profile_text_color\": \"4c9c8f\", \"followers_count\": 414, \"protected\": false, \"location\": \"Paris, France\", \"default_profile_image\": false, \"listed_count\": 46, \"utc_offset\": -10800, \"statuses_count\": 1934, \"description\": \"Designer @ IRI Centre Pompidou / PhD student in Computer Human interface @ Paris11 : #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 542, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"000000\", \"id_str\": \"14905766\", \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": false, \"favourites_count\": 268, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 4], \"text\": \"eg8\"}, {\"indices\": [5, 10], \"text\": \"enmi\"}], \"urls\": []}, \"text\": \"#eg8 #enmi :: le language, interface entre l'homme et le monde.   technologie de confiance ?? Qu'elles libert\\u00e9 ?\", \"created_at\": \"Wed May 25 09:26:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 73318901475328000, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73318901475328000\", \"place\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1304
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1305
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1306
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1307
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1308
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1309
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1310
"end": 1454000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1311
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1312
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1313
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1314
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1315
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1316
"id-ref": "219ba10a-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1317
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1318
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1319
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1320
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1321
"id": "0a85f156-f4b1-49f1-ac00-51b0ea070134-73318901475328000"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1322
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1323
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1324
"content": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1325
"mimetype": "application/x-ldt-structured", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1326
"description": "#enmi  edward bernays /VS/ pekka himanen ? #libidinal vers #contribution ?", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1327
"img": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1328
"src": "http://a2.twimg.com/profile_images/1367788685/021EB7A5-E5A2-4837-9E76-4A6019F6E1EE_normal"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1329
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1330
"title": "Fabian Gental: #enmi  edward bernays /VS/ pekka himanen ? #libidinal vers #contribution ?", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1331
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1332
"polemics": [], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1333
"audio": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1334
"mimetype": "audio/mp3", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1335
"src": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1336
"href": null
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1337
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1338
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1339
"begin": 1538000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1340
"meta": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1341
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1342
"dc:source": {
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1343
"mimetype": "application/json", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1344
"url": "http://dev.twitter.com", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1345
"content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 115128839, \"verified\": false, \"profile_sidebar_fill_color\": \"d6fffc\", \"profile_text_color\": \"04838f\", \"followers_count\": 10, \"protected\": false, \"location\": \"Paris / Limoges / Berlin\", \"default_profile_image\": false, \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 16, \"description\": \"\\u00c9tudiant en design @ENSCI les Ateliers\\n@ENSA Limoges\", \"friends_count\": 29, \"profile_link_color\": \"05d5ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1367788685/021EB7A5-E5A2-4837-9E76-4A6019F6E1EE_normal\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_color\": \"bf9dc9\", \"id_str\": \"115128839\", \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/76127896/test.png\", \"name\": \"Fabian Gental\", \"lang\": \"fr\", \"following\": null, \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"3615fabe\", \"url\": null, \"created_at\": \"Wed Feb 17 18:08:52 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Berlin\", \"profile_sidebar_border_color\": \"ffffff\", \"default_profile\": false, \"is_translator\": false}, \"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"enmi\"}, {\"indices\": [43, 53], \"text\": \"libidinal\"}, {\"indices\": [59, 72], \"text\": \"contribution\"}], \"urls\": []}, \"text\": \"#enmi  edward bernays /VS/ pekka himanen ? #libidinal vers #contribution ?\", \"created_at\": \"Wed May 25 09:27:26 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [2.3704253400000002, 48.858806250000001]}, \"id\": 73319252060405760, \"source\": \"<a href=\\\"http://tapbots.com/tweetbot\\\" rel=\\\"nofollow\\\">Tweetbot for iPhone</a>\", \"in_reply_to_status_id_str\": null, \"in_reply_to_screen_name\": null, \"id_str\": \"73319252060405760\", \"place\": {\"country_code\": \"FR\", \"url\": \"http://api.twitter.com/1/geo/id/7238f93a3e899af6.json\", \"country\": \"France\", \"place_type\": \"city\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[2.2241005999999999, 48.815541400000001], [2.4697521, 48.815541400000001], [2.4697521, 48.902146100000003], [2.2241005999999999, 48.902146100000003]]]}, \"full_name\": \"Paris, Paris\", \"attributes\": {}, \"id\": \"7238f93a3e899af6\", \"name\": \"Paris\"}, \"retweet_count\": 0, \"geo\": {\"type\": \"Point\", \"coordinates\": [48.858806250000001, 2.3704253400000002]}, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1346
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1347
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1348
"id-ref": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1349
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1350
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1351
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1352
"end": 1538000, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1353
"tags": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1354
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1355
"id-ref": "219d2156-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1356
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1357
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1358
"id-ref": "219d2156-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1359
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1360
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1361
"id-ref": "219d25fc-062c-11e1-93a3-00145ea49a02"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1362
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1363
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1364
"color": "16763904", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1365
"media": "914e1bcc-b6e0-11e0-a965-00145ea49a02", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1366
"id": "9862e2d4-ef66-4368-98e2-562a61232a5a-73319252060405760"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1367
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1368
], 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1369
"annotation-types": [
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1370
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1371
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1372
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1373
"dc:title": "Bernard Stiegler", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1374
"id": "c_5AEE45AE-F0E5-2921-31CB-2683540AA7A4", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1375
"dc:created": "2011-11-03T14:57:21.010291", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1376
"dc:description": "", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1377
"dc:modified": "2011-11-03T14:57:21.010291"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1378
}, 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1379
{
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1380
"dc:contributor": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1381
"dc:creator": "perso", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1382
"dc:title": "Tweets", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1383
"id": "61bcaa2e-9963-4df2-a987-34c08e184fb6", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1384
"dc:created": "2011-11-03T14:57:20.992536", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1385
"dc:description": "Tweets", 
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1386
"dc:modified": "2011-11-03T14:57:20.992536"
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1387
}
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1388
]
5fc357f62af1 added a new mock object for polemic tweet json. also fixed a couple of bugs in
hamidouk
parents:
diff changeset
  1389
}