ffi-yajl 0.0.1-universal-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +201 -0
- data/README.md +17 -0
- data/Rakefile +62 -0
- data/bin/ffi-yajl-bench +36 -0
- data/ext/ffi_yajl/ext/encoder/encoder.c +240 -0
- data/ext/ffi_yajl/ext/encoder/extconf.rb +29 -0
- data/ext/ffi_yajl/ext/parser/extconf.rb +29 -0
- data/ext/ffi_yajl/ext/parser/parser.c +199 -0
- data/ext/libyajl2/extconf.rb +65 -0
- data/ext/libyajl2/vendored/.gitignore +3 -0
- data/ext/libyajl2/vendored/BUILDING +23 -0
- data/ext/libyajl2/vendored/BUILDING.win32 +27 -0
- data/ext/libyajl2/vendored/CMakeLists.txt +79 -0
- data/ext/libyajl2/vendored/COPYING +13 -0
- data/ext/libyajl2/vendored/ChangeLog +175 -0
- data/ext/libyajl2/vendored/README +74 -0
- data/ext/libyajl2/vendored/TODO +9 -0
- data/ext/libyajl2/vendored/YAJLDoc.cmake +26 -0
- data/ext/libyajl2/vendored/configure +79 -0
- data/ext/libyajl2/vendored/example/CMakeLists.txt +23 -0
- data/ext/libyajl2/vendored/example/README.md +7 -0
- data/ext/libyajl2/vendored/example/parse_config.c +69 -0
- data/ext/libyajl2/vendored/example/sample.config +101 -0
- data/ext/libyajl2/vendored/perf/CMakeLists.txt +23 -0
- data/ext/libyajl2/vendored/perf/documents.c +1418 -0
- data/ext/libyajl2/vendored/perf/documents.h +28 -0
- data/ext/libyajl2/vendored/perf/perftest.c +134 -0
- data/ext/libyajl2/vendored/reformatter/CMakeLists.txt +39 -0
- data/ext/libyajl2/vendored/reformatter/json_reformat.c +194 -0
- data/ext/libyajl2/vendored/src/CMakeLists.txt +86 -0
- data/ext/libyajl2/vendored/src/YAJL.dxy +1258 -0
- data/ext/libyajl2/vendored/src/api/yajl_common.h +75 -0
- data/ext/libyajl2/vendored/src/api/yajl_gen.h +157 -0
- data/ext/libyajl2/vendored/src/api/yajl_parse.h +226 -0
- data/ext/libyajl2/vendored/src/api/yajl_tree.h +185 -0
- data/ext/libyajl2/vendored/src/api/yajl_version.h.cmake +23 -0
- data/ext/libyajl2/vendored/src/yajl +33 -0
- data/ext/libyajl2/vendored/src/yajl.c +175 -0
- data/ext/libyajl2/vendored/src/yajl.pc.cmake +9 -0
- data/ext/libyajl2/vendored/src/yajl_alloc.c +52 -0
- data/ext/libyajl2/vendored/src/yajl_alloc.h +34 -0
- data/ext/libyajl2/vendored/src/yajl_buf.c +103 -0
- data/ext/libyajl2/vendored/src/yajl_buf.h +57 -0
- data/ext/libyajl2/vendored/src/yajl_bytestack.h +69 -0
- data/ext/libyajl2/vendored/src/yajl_encode.c +220 -0
- data/ext/libyajl2/vendored/src/yajl_encode.h +34 -0
- data/ext/libyajl2/vendored/src/yajl_gen.c +354 -0
- data/ext/libyajl2/vendored/src/yajl_lex.c +763 -0
- data/ext/libyajl2/vendored/src/yajl_lex.h +117 -0
- data/ext/libyajl2/vendored/src/yajl_parser.c +498 -0
- data/ext/libyajl2/vendored/src/yajl_parser.h +78 -0
- data/ext/libyajl2/vendored/src/yajl_tree.c +503 -0
- data/ext/libyajl2/vendored/src/yajl_version.c +7 -0
- data/ext/libyajl2/vendored/test/CMakeLists.txt +23 -0
- data/ext/libyajl2/vendored/test/cases/ac_difficult_json_c_test_case_with_comments.json +1 -0
- data/ext/libyajl2/vendored/test/cases/ac_difficult_json_c_test_case_with_comments.json.gold +36 -0
- data/ext/libyajl2/vendored/test/cases/ac_simple_with_comments.json +11 -0
- data/ext/libyajl2/vendored/test/cases/ac_simple_with_comments.json.gold +9 -0
- data/ext/libyajl2/vendored/test/cases/ag_false_then_garbage.json +1 -0
- data/ext/libyajl2/vendored/test/cases/ag_false_then_garbage.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/ag_null_then_garbage.json +1 -0
- data/ext/libyajl2/vendored/test/cases/ag_null_then_garbage.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/ag_true_then_garbage.json +1 -0
- data/ext/libyajl2/vendored/test/cases/ag_true_then_garbage.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/am_eof.json +1 -0
- data/ext/libyajl2/vendored/test/cases/am_eof.json.gold +4 -0
- data/ext/libyajl2/vendored/test/cases/am_integers.json +1 -0
- data/ext/libyajl2/vendored/test/cases/am_integers.json.gold +3 -0
- data/ext/libyajl2/vendored/test/cases/am_multiple.json +3 -0
- data/ext/libyajl2/vendored/test/cases/am_multiple.json.gold +5 -0
- data/ext/libyajl2/vendored/test/cases/am_stuff.json +7 -0
- data/ext/libyajl2/vendored/test/cases/am_stuff.json.gold +14 -0
- data/ext/libyajl2/vendored/test/cases/ap_array_open.json +1 -0
- data/ext/libyajl2/vendored/test/cases/ap_array_open.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/ap_eof_str.json +1 -0
- data/ext/libyajl2/vendored/test/cases/ap_eof_str.json.gold +1 -0
- data/ext/libyajl2/vendored/test/cases/ap_map_open.json +1 -0
- data/ext/libyajl2/vendored/test/cases/ap_map_open.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/ap_partial_ok.json +1 -0
- data/ext/libyajl2/vendored/test/cases/ap_partial_ok.json.gold +4 -0
- data/ext/libyajl2/vendored/test/cases/array.json +6 -0
- data/ext/libyajl2/vendored/test/cases/array.json.gold +22 -0
- data/ext/libyajl2/vendored/test/cases/array_close.json +1 -0
- data/ext/libyajl2/vendored/test/cases/array_close.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/bignums.json +1 -0
- data/ext/libyajl2/vendored/test/cases/bignums.json.gold +5 -0
- data/ext/libyajl2/vendored/test/cases/bogus_char.json +4 -0
- data/ext/libyajl2/vendored/test/cases/bogus_char.json.gold +10 -0
- data/ext/libyajl2/vendored/test/cases/codepoints_from_unicode_org.json +1 -0
- data/ext/libyajl2/vendored/test/cases/codepoints_from_unicode_org.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/deep_arrays.json +1 -0
- data/ext/libyajl2/vendored/test/cases/deep_arrays.json.gold +2049 -0
- data/ext/libyajl2/vendored/test/cases/difficult_json_c_test_case.json +1 -0
- data/ext/libyajl2/vendored/test/cases/difficult_json_c_test_case.json.gold +36 -0
- data/ext/libyajl2/vendored/test/cases/doubles.json +1 -0
- data/ext/libyajl2/vendored/test/cases/doubles.json.gold +7 -0
- data/ext/libyajl2/vendored/test/cases/doubles_in_array.json +1 -0
- data/ext/libyajl2/vendored/test/cases/doubles_in_array.json.gold +8 -0
- data/ext/libyajl2/vendored/test/cases/empty_array.json +1 -0
- data/ext/libyajl2/vendored/test/cases/empty_array.json.gold +3 -0
- data/ext/libyajl2/vendored/test/cases/empty_string.json +1 -0
- data/ext/libyajl2/vendored/test/cases/empty_string.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/escaped_bulgarian.json +4 -0
- data/ext/libyajl2/vendored/test/cases/escaped_bulgarian.json.gold +7 -0
- data/ext/libyajl2/vendored/test/cases/escaped_foobar.json +1 -0
- data/ext/libyajl2/vendored/test/cases/escaped_foobar.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/false.json +1 -0
- data/ext/libyajl2/vendored/test/cases/false.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/fg_false_then_garbage.json +1 -0
- data/ext/libyajl2/vendored/test/cases/fg_false_then_garbage.json.gold +3 -0
- data/ext/libyajl2/vendored/test/cases/fg_issue_7.json +1 -0
- data/ext/libyajl2/vendored/test/cases/fg_issue_7.json.gold +3 -0
- data/ext/libyajl2/vendored/test/cases/fg_null_then_garbage.json +1 -0
- data/ext/libyajl2/vendored/test/cases/fg_null_then_garbage.json.gold +3 -0
- data/ext/libyajl2/vendored/test/cases/fg_true_then_garbage.json +1 -0
- data/ext/libyajl2/vendored/test/cases/fg_true_then_garbage.json.gold +3 -0
- data/ext/libyajl2/vendored/test/cases/four_byte_utf8.json +2 -0
- data/ext/libyajl2/vendored/test/cases/four_byte_utf8.json.gold +5 -0
- data/ext/libyajl2/vendored/test/cases/high_overflow.json +1 -0
- data/ext/libyajl2/vendored/test/cases/high_overflow.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/integers.json +3 -0
- data/ext/libyajl2/vendored/test/cases/integers.json.gold +14 -0
- data/ext/libyajl2/vendored/test/cases/invalid_utf8.json +1 -0
- data/ext/libyajl2/vendored/test/cases/invalid_utf8.json.gold +3 -0
- data/ext/libyajl2/vendored/test/cases/isolated_surrogate_marker.json +1 -0
- data/ext/libyajl2/vendored/test/cases/isolated_surrogate_marker.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/leading_zero_in_number.json +1 -0
- data/ext/libyajl2/vendored/test/cases/leading_zero_in_number.json.gold +5 -0
- data/ext/libyajl2/vendored/test/cases/lonely_minus_sign.json +7 -0
- data/ext/libyajl2/vendored/test/cases/lonely_minus_sign.json.gold +9 -0
- data/ext/libyajl2/vendored/test/cases/lonely_number.json +1 -0
- data/ext/libyajl2/vendored/test/cases/lonely_number.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/low_overflow.json +1 -0
- data/ext/libyajl2/vendored/test/cases/low_overflow.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/map_close.json +1 -0
- data/ext/libyajl2/vendored/test/cases/map_close.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/missing_integer_after_decimal_point.json +1 -0
- data/ext/libyajl2/vendored/test/cases/missing_integer_after_decimal_point.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/missing_integer_after_exponent.json +1 -0
- data/ext/libyajl2/vendored/test/cases/missing_integer_after_exponent.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/multiple.json +3 -0
- data/ext/libyajl2/vendored/test/cases/multiple.json.gold +4 -0
- data/ext/libyajl2/vendored/test/cases/non_utf8_char_in_string.json +1 -0
- data/ext/libyajl2/vendored/test/cases/non_utf8_char_in_string.json.gold +8 -0
- data/ext/libyajl2/vendored/test/cases/np_partial_bad.json +1 -0
- data/ext/libyajl2/vendored/test/cases/np_partial_bad.json.gold +5 -0
- data/ext/libyajl2/vendored/test/cases/null.json +1 -0
- data/ext/libyajl2/vendored/test/cases/null.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/nulls_and_bools.json +5 -0
- data/ext/libyajl2/vendored/test/cases/nulls_and_bools.json.gold +9 -0
- data/ext/libyajl2/vendored/test/cases/simple.json +5 -0
- data/ext/libyajl2/vendored/test/cases/simple.json.gold +9 -0
- data/ext/libyajl2/vendored/test/cases/simple_with_comments.json +11 -0
- data/ext/libyajl2/vendored/test/cases/simple_with_comments.json.gold +5 -0
- data/ext/libyajl2/vendored/test/cases/string_invalid_escape.json +1 -0
- data/ext/libyajl2/vendored/test/cases/string_invalid_escape.json.gold +3 -0
- data/ext/libyajl2/vendored/test/cases/string_invalid_hex_char.json +1 -0
- data/ext/libyajl2/vendored/test/cases/string_invalid_hex_char.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/string_with_escapes.json +3 -0
- data/ext/libyajl2/vendored/test/cases/string_with_escapes.json.gold +7 -0
- data/ext/libyajl2/vendored/test/cases/string_with_invalid_newline.json +2 -0
- data/ext/libyajl2/vendored/test/cases/string_with_invalid_newline.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/three_byte_utf8.json +1 -0
- data/ext/libyajl2/vendored/test/cases/three_byte_utf8.json.gold +7 -0
- data/ext/libyajl2/vendored/test/cases/true.json +1 -0
- data/ext/libyajl2/vendored/test/cases/true.json.gold +2 -0
- data/ext/libyajl2/vendored/test/cases/unescaped_bulgarian.json +1 -0
- data/ext/libyajl2/vendored/test/cases/unescaped_bulgarian.json.gold +4 -0
- data/ext/libyajl2/vendored/test/cases/zerobyte.json +1 -0
- data/ext/libyajl2/vendored/test/cases/zerobyte.json.gold +0 -0
- data/ext/libyajl2/vendored/test/run_tests.sh +94 -0
- data/ext/libyajl2/vendored/test/yajl_test.c +281 -0
- data/ext/libyajl2/vendored/verify/CMakeLists.txt +39 -0
- data/ext/libyajl2/vendored/verify/json_verify.c +116 -0
- data/lib/ffi_yajl.rb +14 -0
- data/lib/ffi_yajl/benchmark.rb +7 -0
- data/lib/ffi_yajl/benchmark/MIT-LICENSE +20 -0
- data/lib/ffi_yajl/benchmark/encode.rb +135 -0
- data/lib/ffi_yajl/benchmark/encode_json_and_marshal.rb +42 -0
- data/lib/ffi_yajl/benchmark/encode_json_and_yaml.rb +53 -0
- data/lib/ffi_yajl/benchmark/encode_profile.rb +38 -0
- data/lib/ffi_yajl/benchmark/http.rb +32 -0
- data/lib/ffi_yajl/benchmark/parse.rb +133 -0
- data/lib/ffi_yajl/benchmark/parse_json_and_marshal.rb +50 -0
- data/lib/ffi_yajl/benchmark/parse_json_and_yaml.rb +55 -0
- data/lib/ffi_yajl/benchmark/parse_profile.rb +37 -0
- data/lib/ffi_yajl/benchmark/parse_profile_ruby_prof.rb +39 -0
- data/lib/ffi_yajl/benchmark/parse_stream.rb +54 -0
- data/lib/ffi_yajl/benchmark/subjects/item.json +1 -0
- data/lib/ffi_yajl/benchmark/subjects/ohai.json +1216 -0
- data/lib/ffi_yajl/benchmark/subjects/ohai.marshal_dump +0 -0
- data/lib/ffi_yajl/benchmark/subjects/ohai.yml +975 -0
- data/lib/ffi_yajl/benchmark/subjects/twitter_search.json +1 -0
- data/lib/ffi_yajl/benchmark/subjects/twitter_stream.json +430 -0
- data/lib/ffi_yajl/benchmark/subjects/unicode.json +1 -0
- data/lib/ffi_yajl/encoder.rb +53 -0
- data/lib/ffi_yajl/ext.rb +22 -0
- data/lib/ffi_yajl/ext/.keep +0 -0
- data/lib/ffi_yajl/ffi.rb +129 -0
- data/lib/ffi_yajl/ffi/encoder.rb +175 -0
- data/lib/ffi_yajl/ffi/parser.rb +145 -0
- data/lib/ffi_yajl/json_gem.rb +121 -0
- data/lib/ffi_yajl/parser.rb +23 -0
- data/lib/ffi_yajl/version.rb +3 -0
- data/lib/libyajl.so +0 -0
- data/lib/libyajl.so.2 +0 -0
- data/lib/libyajl.so.2.0.5 +0 -0
- data/lib/libyajl_s.a +0 -0
- data/spec/ffi_yajl/encoder_spec.rb +39 -0
- data/spec/ffi_yajl/json_gem_spec.rb +355 -0
- data/spec/ffi_yajl/parser_spec.rb +78 -0
- data/spec/spec_helper.rb +14 -0
- metadata +330 -0
@@ -0,0 +1,101 @@
|
|
1
|
+
/*
|
2
|
+
* The configuration file for Yahoo! BrowserPlus, included in the YAJL
|
3
|
+
* tree as a sample configuration file for parsing.
|
4
|
+
*
|
5
|
+
* This is the configuration file for BrowserPlus
|
6
|
+
*/
|
7
|
+
|
8
|
+
{
|
9
|
+
// The type of build this is, which is accessible to JavaScript via
|
10
|
+
// BrowserPlus.getPlatformInfo();
|
11
|
+
// Different build types should only differ in signatures accepted
|
12
|
+
// (BrowserPlus.crt) and configured distribution servers.
|
13
|
+
"BuildType": "ephemeral",
|
14
|
+
|
15
|
+
// the base url for the "primary" distribution server. This server will
|
16
|
+
// be the single source of truth for Permissions, and will used to
|
17
|
+
// attain services
|
18
|
+
"DistServer": "http://browserplus.yahoo.com",
|
19
|
+
|
20
|
+
// An array of "secondary" distribution servers, which will be checked
|
21
|
+
// in order for services if the primary server has no components
|
22
|
+
// available which match an issued require statement.
|
23
|
+
"SecondaryDistServers": [
|
24
|
+
"http://first.fictional.server",
|
25
|
+
"http://second.fictional.server"
|
26
|
+
],
|
27
|
+
|
28
|
+
// Logging Setup
|
29
|
+
"Logging" :
|
30
|
+
{
|
31
|
+
// Log level. Values: "debug"|"info"|"warn"|"error"|"fatal"|"off"
|
32
|
+
"level": "BP_LOG_LEVEL",
|
33
|
+
|
34
|
+
// Destination. Values: "file"|"console"|"win32"
|
35
|
+
"dest": "BP_LOG_DEST",
|
36
|
+
|
37
|
+
// Log message layout. Values: "standard"|"source"|"raw"
|
38
|
+
"layout": "standard",
|
39
|
+
|
40
|
+
// Time format. Values: "utc"|"local"|"msec"
|
41
|
+
"timeFormat": "utc",
|
42
|
+
|
43
|
+
// File size in KB which will trigger a rollover
|
44
|
+
"fileRolloverKB": 2048,
|
45
|
+
|
46
|
+
// Whether to send file logging from each service to a distinct file.
|
47
|
+
// Values: "combined"|"separate"
|
48
|
+
"serviceLogMode": "combined"
|
49
|
+
},
|
50
|
+
|
51
|
+
// Daemon setup
|
52
|
+
// Syntax: "Options": "option1 option2 etc"
|
53
|
+
// -fg run in foreground, log to console
|
54
|
+
"Options":"",
|
55
|
+
|
56
|
+
// Auto-shutdown daemon if idle for this time. Use 0 for no auto-shutdown.
|
57
|
+
"MaxIdleSecs": 5,
|
58
|
+
|
59
|
+
// At the end of each BrowserPlus session a small web request is made
|
60
|
+
// to yahoo to indicate that BrowserPlus was used. This report includes
|
61
|
+
// * information about the browser being used
|
62
|
+
// * an "installation id", which is a unique token that's generated
|
63
|
+
// the first time BrowserPlus runs.
|
64
|
+
//
|
65
|
+
// By design, there is *no information* in this request that gives
|
66
|
+
// Yahoo! information about:
|
67
|
+
// a) the site that the user is visiting (see, "url": false)
|
68
|
+
// b) who the user is (the installation token cannot be tracked to a
|
69
|
+
// specific user).
|
70
|
+
//
|
71
|
+
// This information is primarily captured to help Yahoo! understand
|
72
|
+
// adoption and usage of the BrowserPlus platform.
|
73
|
+
"UsageReporting":
|
74
|
+
{
|
75
|
+
"enabled": true,
|
76
|
+
"url": false,
|
77
|
+
"id": true
|
78
|
+
},
|
79
|
+
|
80
|
+
// "Breakpoints" is an array of strings holding named breakpoints.
|
81
|
+
// Platform code checks for specific entries at certain key points, and if
|
82
|
+
// a matching entry is found here a DebugBreak will be performed.
|
83
|
+
// For developers with Visual Studio installed, the DebugBreak will cause an
|
84
|
+
// opportunity to perform just-in-time attachment of an existing or new
|
85
|
+
// debugger instance.
|
86
|
+
// The currently-defined breakpoints are listed below:
|
87
|
+
// runServiceProcess - A DebugBreak is performed in the service
|
88
|
+
// "harness" just prior to service load.
|
89
|
+
// ax.FinalConstruct - A DebugBreak is performed at entry to
|
90
|
+
// FinalConstruct of the ActiveX plugin.
|
91
|
+
// PluginInit - Very early in the NPAPI plugin initialization.
|
92
|
+
// A wonderful spot to stop and set more
|
93
|
+
// breakpoints.
|
94
|
+
//"Breakpoints": ["runServiceProcess"],
|
95
|
+
|
96
|
+
// How often we check for service updates. We guarantee at least this
|
97
|
+
// much time will pass between checks, though the true time may be
|
98
|
+
// much more if sites which use browserplus are not visited.
|
99
|
+
// The time is in seconds.
|
100
|
+
"ServiceUpdatePollPeriod": 86400
|
101
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
|
2
|
+
#
|
3
|
+
# Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
# purpose with or without fee is hereby granted, provided that the above
|
5
|
+
# copyright notice and this permission notice appear in all copies.
|
6
|
+
#
|
7
|
+
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
8
|
+
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
9
|
+
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
10
|
+
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
11
|
+
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
12
|
+
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
13
|
+
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
14
|
+
|
15
|
+
SET (SRCS perftest.c documents.c documents.h)
|
16
|
+
|
17
|
+
# use the library we build, duh.
|
18
|
+
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/../${YAJL_DIST_NAME}/include)
|
19
|
+
LINK_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/../${YAJL_DIST_NAME}/lib)
|
20
|
+
|
21
|
+
ADD_EXECUTABLE(perftest ${SRCS})
|
22
|
+
|
23
|
+
TARGET_LINK_LIBRARIES(perftest yajl_s)
|
@@ -0,0 +1,1418 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
|
3
|
+
*
|
4
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
5
|
+
* purpose with or without fee is hereby granted, provided that the above
|
6
|
+
* copyright notice and this permission notice appear in all copies.
|
7
|
+
*
|
8
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
*/
|
16
|
+
|
17
|
+
#include "documents.h"
|
18
|
+
|
19
|
+
#include <stdlib.h>
|
20
|
+
#include <string.h>
|
21
|
+
|
22
|
+
/* latest twitter tweets from easter day */
|
23
|
+
const char * doc1[] =
|
24
|
+
{
|
25
|
+
"[{\"coordinates\": null,\n"
|
26
|
+
" \"created_at\": \"Sun Apr 24 13:18:48 +0000 2011\",\n"
|
27
|
+
" \"favorited\": false,\n"
|
28
|
+
" \"truncated\": false,\n"
|
29
|
+
" \"id_str\": \"62143455073280000\",\n"
|
30
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
31
|
+
" \"contributors\": null,\n"
|
32
|
+
" \"text\": \"Good morning! Happy Easter! Hopefully c u later!\",\n"
|
33
|
+
" \"id\": 62143455073280000,\n"
|
34
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
35
|
+
" \"retweet_count\": 0,\n"
|
36
|
+
" \"geo\": null,\n"
|
37
|
+
" \"retweeted\": false,\n"
|
38
|
+
" \"in_reply_to_user_id\": null,\n"
|
39
|
+
" \"place\": null,\n"
|
40
|
+
" \"user\": {\n"
|
41
|
+
" \"name\": \"David\",\n"
|
42
|
+
" \"profile_sidebar_border_color\": \"C0DEED\",\n"
|
43
|
+
" \"profile_background_tile\": false,\n"
|
44
|
+
" \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
|
45
|
+
" \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1313918274\\/image_normal.jpg\",\n"
|
46
|
+
" \"created_at\": \"Sat Apr 16 12:10:50 +0000 2011\",\n"
|
47
|
+
" \"location\": null,\n"
|
48
|
+
" \"is_translator\": false,\n"
|
49
|
+
" \"follow_request_sent\": null,\n"
|
50
|
+
" \"profile_link_color\": \"0084B4\",\n"
|
51
|
+
" \"id_str\": \"283022296\",\n"
|
52
|
+
" \"url\": null,\n"
|
53
|
+
" \"default_profile\": true,\n"
|
54
|
+
" \"contributors_enabled\": false,\n"
|
55
|
+
" \"favourites_count\": 0,\n"
|
56
|
+
" \"utc_offset\": null,\n"
|
57
|
+
" \"id\": 283022296,\n"
|
58
|
+
" \"listed_count\": 0,\n"
|
59
|
+
" \"profile_use_background_image\": true,\n"
|
60
|
+
" \"lang\": \"en\",\n"
|
61
|
+
" \"protected\": false,\n"
|
62
|
+
" \"followers_count\": 7,\n"
|
63
|
+
" \"profile_text_color\": \"333333\",\n"
|
64
|
+
" \"profile_background_color\": \"C0DEED\",\n"
|
65
|
+
" \"geo_enabled\": false,\n"
|
66
|
+
" \"time_zone\": null,\n"
|
67
|
+
" \"notifications\": null,\n"
|
68
|
+
" \"description\": null,\n"
|
69
|
+
" \"verified\": false,\n"
|
70
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1302724321\\/images\\/themes\\/theme1\\/bg.png\",\n",
|
71
|
+
" \"statuses_count\": 46,\n"
|
72
|
+
" \"default_profile_image\": false,\n"
|
73
|
+
" \"friends_count\": 28,\n"
|
74
|
+
" \"show_all_inline_media\": false,\n"
|
75
|
+
" \"screen_name\": \"djstump440\",\n"
|
76
|
+
" \"following\": null\n"
|
77
|
+
" },\n"
|
78
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\n"
|
79
|
+
" \"in_reply_to_screen_name\": null,\n"
|
80
|
+
" \"in_reply_to_status_id\": null\n"
|
81
|
+
" },\n"
|
82
|
+
" {\n"
|
83
|
+
" \n"
|
84
|
+
" \"coordinates\": null,\n"
|
85
|
+
" \"created_at\": \"Sun Apr 24 13:18:48 +0000 2011\",\n"
|
86
|
+
" \"favorited\": false,\n"
|
87
|
+
" \"truncated\": false,\n"
|
88
|
+
" \"id_str\": \"62143454767104000\",\n"
|
89
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
90
|
+
" \"contributors\": null,\n"
|
91
|
+
" \"text\": \"haloo hihihi -_-\",\n"
|
92
|
+
" \"id\": 62143454767104000,\n"
|
93
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
94
|
+
" \"retweet_count\": 0,\n"
|
95
|
+
" \"geo\": null,\n"
|
96
|
+
" \"retweeted\": false,\n"
|
97
|
+
" \"in_reply_to_user_id\": null,\n"
|
98
|
+
" \"place\": null,\n"
|
99
|
+
" \"user\": {\n"
|
100
|
+
" \"name\": \"Riva \\u01aa(\\u02c7\\u25bc\\u02c7)\\u00ac\",\n"
|
101
|
+
" \"profile_sidebar_border_color\": \"eeeeee\",\n"
|
102
|
+
" \"profile_background_tile\": true,\n"
|
103
|
+
" \"profile_sidebar_fill_color\": \"efefef\",\n"
|
104
|
+
" \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1323509905\\/cats_normal.jpg\",\n"
|
105
|
+
" \"created_at\": \"Sat Oct 16 05:07:18 +0000 2010\",\n"
|
106
|
+
" \"location\": \"\",\n"
|
107
|
+
" \"is_translator\": false,\n"
|
108
|
+
" \"follow_request_sent\": null,\n"
|
109
|
+
" \"profile_link_color\": \"009999\",\n"
|
110
|
+
" \"id_str\": \"203398982\",\n"
|
111
|
+
" \"url\": null,\n"
|
112
|
+
" \"default_profile\": false,\n"
|
113
|
+
" \"contributors_enabled\": false,\n"
|
114
|
+
" \"favourites_count\": 0,\n"
|
115
|
+
" \"utc_offset\": -28800,\n"
|
116
|
+
" \"id\": 203398982,\n"
|
117
|
+
" \"listed_count\": 0,\n",
|
118
|
+
" \"profile_use_background_image\": true,\n"
|
119
|
+
" \"lang\": \"en\",\n"
|
120
|
+
" \"protected\": false,\n"
|
121
|
+
" \"followers_count\": 16,\n"
|
122
|
+
" \"profile_text_color\": \"333333\",\n"
|
123
|
+
" \"profile_background_color\": \"131516\",\n"
|
124
|
+
" \"geo_enabled\": false,\n"
|
125
|
+
" \"time_zone\": \"Pacific Time (US & Canada)\",\n"
|
126
|
+
" \"notifications\": null,\n"
|
127
|
+
" \"description\": \"I'm single\\u01aa(\\u02c7\\u25bc\\u02c7)\\u00ac, pin: 26B49EFA , keep follow me\\u01aa(\\u02c7\\u25bc\\u02c7)\\u00ac\\u01aa(\\u02c7\\u25bc\\u02c7)\\u00ac follback? just mention, thanks\",\n"
|
128
|
+
" \"verified\": false,\n"
|
129
|
+
" \"profile_background_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_background_images\\/238078679\\/5496743274_fb1f9c9bea_z_large.jpg\",\n"
|
130
|
+
" \"statuses_count\": 899,\n"
|
131
|
+
" \"default_profile_image\": false,\n"
|
132
|
+
" \"friends_count\": 14,\n"
|
133
|
+
" \"show_all_inline_media\": false,\n"
|
134
|
+
" \"screen_name\": \"IntaaanRvall\",\n"
|
135
|
+
" \"following\": null\n"
|
136
|
+
" },\n"
|
137
|
+
" \"source\": \"web\",\n"
|
138
|
+
" \"in_reply_to_screen_name\": null,\n"
|
139
|
+
" \"in_reply_to_status_id\": null\n"
|
140
|
+
" },\n"
|
141
|
+
" {\n"
|
142
|
+
" \n"
|
143
|
+
" \"coordinates\": null,\n"
|
144
|
+
" \"created_at\": \"Sun Apr 24 13:18:48 +0000 2011\",\n"
|
145
|
+
" \"favorited\": false,\n"
|
146
|
+
" \"truncated\": false,\n"
|
147
|
+
" \"id_str\": \"62143452560896000\",\n"
|
148
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
149
|
+
" \"contributors\": null,\n"
|
150
|
+
" \"text\": \"\\u3042\\u3042\\u3042\\u3042\\u3042\\u3042\\u3042\\u3001\\u4eca\\u65e5\\u306e\\u30d7\\u30ea\\u30ad\\u30e5\\u30a2\\u30de\\u30b8\\u6700\\u9ad8\\u3060\\u3063\\u305f\\u3002\\u3082\\u3046\\u30c6\\u30f3\\u30b7\\u30e7\\u30f3\\u4e0b\\u304c\\u3089\\u306d\\u30fc\\u3088\\u3002\\u8272\\u3005\\u8a9e\\u308a\\u305f\\u3044\\u3051\\u3069\\u30c4\\u30a4\\u30c3\\u30bf\\u30fc\\u3058\\u3083\\u4f55\\u56de\\u30c4\\u30a4\\u30fc\\u30c8\\u3057\\u305f\\u3089\\u3044\\u3044\\u306e\\uff1f\\u3063\\u3066\\u611f\\u3058\\u3068\\u308a\\u3042\\u3048\\u305a\\u98a8\\u5442\\u5165\\u3063\\u3066\\u982d\\u6574\\u7406\\u3057\\u3066\\u30d0\\u30ec\\u30b9\\u30ec\\uff06\\u30b3\\u30df\\u30e5\\u898b\\u3066\\u305d\\u308c\\u304b\\u3089\\u65e5\\u8a18\\u66f8\\u304f\",\n"
|
151
|
+
" \"id\": 62143452560896000,\n"
|
152
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
153
|
+
" \"retweet_count\": 0,\n"
|
154
|
+
" \"geo\": null,\n"
|
155
|
+
" \"retweeted\": false,\n"
|
156
|
+
" \"in_reply_to_user_id\": null,\n"
|
157
|
+
" \"place\": null,\n"
|
158
|
+
" \"user\": {\n",
|
159
|
+
" \"name\": \"\\u5929\\u5bae\\u3000\\u5948\\u6f84\",\n"
|
160
|
+
" \"profile_sidebar_border_color\": \"db5ecc\",\n"
|
161
|
+
" \"profile_background_tile\": false,\n"
|
162
|
+
" \"profile_sidebar_fill_color\": \"ffcced\",\n"
|
163
|
+
" \"profile_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_images\\/1260667542\\/kanon2_normal.jpg\",\n"
|
164
|
+
" \"created_at\": \"Tue Dec 29 11:35:38 +0000 2009\",\n"
|
165
|
+
" \"location\": \"\\u8679\\u306e\\u5712\",\n"
|
166
|
+
" \"is_translator\": false,\n"
|
167
|
+
" \"follow_request_sent\": null,\n"
|
168
|
+
" \"profile_link_color\": \"5109eb\",\n"
|
169
|
+
" \"id_str\": \"100203655\",\n"
|
170
|
+
" \"url\": \"http:\\/\\/pudding-tension.cocolog-nifty.com\\/blog\\/\",\n"
|
171
|
+
" \"default_profile\": false,\n"
|
172
|
+
" \"contributors_enabled\": false,\n"
|
173
|
+
" \"favourites_count\": 0,\n"
|
174
|
+
" \"utc_offset\": 32400,\n"
|
175
|
+
" \"id\": 100203655,\n"
|
176
|
+
" \"listed_count\": 3,\n"
|
177
|
+
" \"profile_use_background_image\": true,\n"
|
178
|
+
" \"lang\": \"ja\",\n"
|
179
|
+
" \"protected\": false,\n"
|
180
|
+
" \"followers_count\": 32,\n"
|
181
|
+
" \"profile_text_color\": \"372c47\",\n"
|
182
|
+
" \"profile_background_color\": \"a18eed\",\n"
|
183
|
+
" \"geo_enabled\": false,\n"
|
184
|
+
" \"time_zone\": \"Tokyo\",\n"
|
185
|
+
" \"notifications\": null,\n"
|
186
|
+
" \"description\": \"\\u73fe\\u5728\\u8133\\u5185\\u306f\\u305d\\u306e\\u6b86\\u3069\\u304c\\u300c\\u30d7\\u30ea\\u30ad\\u30e5\\u30a2\\u300d\\u3068\\u300c\\u3046\\u307f\\u306d\\u3053\\u306e\\u306a\\u304f\\u9803\\u306b\\u300d\\u3068\\u300c\\u795e\\u306e\\u307f\\u305e\\u77e5\\u308b\\u30bb\\u30ab\\u30a4\\u300d\\u3067\\u69cb\\u6210\\u3055\\u308c\\u3066\\u307e\\u3059\",\n"
|
187
|
+
" \"verified\": false,\n"
|
188
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/183152065\\/haikei.png\",\n"
|
189
|
+
" \"statuses_count\": 4404,\n"
|
190
|
+
" \"default_profile_image\": false,\n"
|
191
|
+
" \"friends_count\": 26,\n"
|
192
|
+
" \"show_all_inline_media\": false,\n"
|
193
|
+
" \"screen_name\": \"amamiya_nasumi\",\n"
|
194
|
+
" \"following\": null\n"
|
195
|
+
" },\n"
|
196
|
+
" \"source\": \"web\",\n"
|
197
|
+
" \"in_reply_to_screen_name\": null,\n"
|
198
|
+
" \"in_reply_to_status_id\": null\n"
|
199
|
+
" },\n"
|
200
|
+
" {\n"
|
201
|
+
" \n"
|
202
|
+
" \"coordinates\": null,\n"
|
203
|
+
" \"created_at\": \"Sun Apr 24 13:18:48 +0000 2011\",\n"
|
204
|
+
" \"favorited\": false,\n",
|
205
|
+
" \"truncated\": false,\n"
|
206
|
+
" \"id_str\": \"62143451512320000\",\n"
|
207
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
208
|
+
" \"contributors\": null,\n"
|
209
|
+
" \"text\": \"\\/\\/BRB..shower time!! :)\",\n"
|
210
|
+
" \"id\": 62143451512320000,\n"
|
211
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
212
|
+
" \"retweet_count\": 0,\n"
|
213
|
+
" \"geo\": null,\n"
|
214
|
+
" \"retweeted\": false,\n"
|
215
|
+
" \"in_reply_to_user_id\": null,\n"
|
216
|
+
" \"place\": null,\n"
|
217
|
+
" \"user\": {\n"
|
218
|
+
" \"name\": \"narcissa malfoy\",\n"
|
219
|
+
" \"profile_sidebar_border_color\": \"eb1d57\",\n"
|
220
|
+
" \"profile_background_tile\": true,\n"
|
221
|
+
" \"profile_sidebar_fill_color\": \"ff70d2\",\n"
|
222
|
+
" \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1240524583\\/8156217_normal.gif\",\n"
|
223
|
+
" \"created_at\": \"Thu Feb 10 18:25:02 +0000 2011\",\n"
|
224
|
+
" \"location\": \"~*Malfoy Manor*~\",\n"
|
225
|
+
" \"is_translator\": false,\n"
|
226
|
+
" \"follow_request_sent\": null,\n"
|
227
|
+
" \"profile_link_color\": \"b30098\",\n"
|
228
|
+
" \"id_str\": \"250247515\",\n"
|
229
|
+
" \"url\": \"http:\\/\\/www.harrypottercookbook-amanda.blogspot.com\\/\",\n"
|
230
|
+
" \"default_profile\": false,\n"
|
231
|
+
" \"favourites_count\": 167,\n"
|
232
|
+
" \"contributors_enabled\": false,\n"
|
233
|
+
" \"utc_offset\": null,\n"
|
234
|
+
" \"id\": 250247515,\n"
|
235
|
+
" \"profile_use_background_image\": true,\n"
|
236
|
+
" \"listed_count\": 10,\n"
|
237
|
+
" \"lang\": \"en\",\n"
|
238
|
+
" \"protected\": false,\n"
|
239
|
+
" \"followers_count\": 219,\n"
|
240
|
+
" \"profile_text_color\": \"8f178f\",\n"
|
241
|
+
" \"profile_background_color\": \"f70f5c\",\n"
|
242
|
+
" \"time_zone\": null,\n"
|
243
|
+
" \"geo_enabled\": false,\n"
|
244
|
+
" \"notifications\": null,\n"
|
245
|
+
" \"description\": \"Spoiled pureblood fanatic, wife of Lucius Malfoy, mother of Draco,eve, lisa,&chasity. Pregnant and in love with yaxley_death (muilti-rp 18+) Life is good!\",\n"
|
246
|
+
" \"verified\": false,\n"
|
247
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/203844238\\/aslongasyourmine.jpg\",\n"
|
248
|
+
" \"statuses_count\": 4128,\n"
|
249
|
+
" \"default_profile_image\": false,\n"
|
250
|
+
" \"friends_count\": 100,\n"
|
251
|
+
" \"screen_name\": \"Mrs_N_Malfoy\",\n"
|
252
|
+
" \"show_all_inline_media\": false,\n",
|
253
|
+
" \"following\": null\n"
|
254
|
+
" },\n"
|
255
|
+
" \"source\": \"web\",\n"
|
256
|
+
" \"in_reply_to_screen_name\": null,\n"
|
257
|
+
" \"in_reply_to_status_id\": null\n"
|
258
|
+
" },\n"
|
259
|
+
" {\n"
|
260
|
+
" \n"
|
261
|
+
" \"coordinates\": null,\n"
|
262
|
+
" \"created_at\": \"Sun Apr 24 13:18:47 +0000 2011\",\n"
|
263
|
+
" \"favorited\": false,\n"
|
264
|
+
" \"truncated\": false,\n"
|
265
|
+
" \"id_str\": \"62143451097088000\",\n"
|
266
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
267
|
+
" \"contributors\": null,\n"
|
268
|
+
" \"text\": \"\\u3066\\u304b\\u3001\\u4eca\\u65e5\\u306e\\u85e4\\u5d0e\\u53f0\\u30b4\\u30df\\u7f6e\\u3044\\u3066\\u304f\\u4eba\\u591a\\u3059\\u304e( *\\uff40\\u03c9\\u00b4) \\u30d3\\u30cb\\u30fc\\u30eb\\u30b7\\u30fc\\u30c8\\u3068\\u304b\\u3001\\u304a\\u5f01\\u5f53\\u3068\\u304b\\uff01\\uff01\\u81ea\\u5206\\u3067\\u51fa\\u3057\\u305f\\u30b4\\u30df\\u3050\\u3089\\u3044\\u81ea\\u5206\\u3067\\u6368\\u3066\\u3093\\u304b\\u3044( *\\uff40\\u03c9\\u00b4) ( *\\uff40\\u03c9\\u00b4) \\u6368\\u3066\\u3089\\u308c\\u3093\\u306e\\u306a\\u3089\\u3001\\u4f55\\u3082\\u6301\\u3063\\u3066\\u304f\\u3093\\u306a\\u3057\\uff01\\uff01\",\n"
|
269
|
+
" \"id\": 62143451097088000,\n"
|
270
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
271
|
+
" \"retweet_count\": 0,\n"
|
272
|
+
" \"geo\": null,\n"
|
273
|
+
" \"retweeted\": false,\n"
|
274
|
+
" \"in_reply_to_user_id\": null,\n"
|
275
|
+
" \"place\": null,\n"
|
276
|
+
" \"user\": {\n"
|
277
|
+
" \"name\": \"misa62@\\u30d1\\u30f3\\u796d\\u308a\\u30c0\\uff01\\uff01\",\n"
|
278
|
+
" \"profile_sidebar_border_color\": \"5ED4DC\",\n"
|
279
|
+
" \"profile_background_tile\": false,\n"
|
280
|
+
" \"profile_sidebar_fill_color\": \"95E8EC\",\n"
|
281
|
+
" \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1270879463\\/3264b67a-f15f-499e-9c0c-0fb3bbbac7e1_normal.png\",\n"
|
282
|
+
" \"created_at\": \"Mon May 03 15:36:08 +0000 2010\",\n"
|
283
|
+
" \"location\": \"\\u798f\\u5ca1\\u770c\\u798f\\u5ca1\\u5e02\",\n"
|
284
|
+
" \"is_translator\": false,\n"
|
285
|
+
" \"follow_request_sent\": null,\n"
|
286
|
+
" \"profile_link_color\": \"0099B9\",\n"
|
287
|
+
" \"id_str\": \"139753239\",\n"
|
288
|
+
" \"url\": null,\n"
|
289
|
+
" \"default_profile\": false,\n"
|
290
|
+
" \"favourites_count\": 56,\n"
|
291
|
+
" \"contributors_enabled\": false,\n"
|
292
|
+
" \"utc_offset\": -36000,\n"
|
293
|
+
" \"id\": 139753239,\n"
|
294
|
+
" \"profile_use_background_image\": true,\n"
|
295
|
+
" \"listed_count\": 44,\n"
|
296
|
+
" \"lang\": \"ja\",\n",
|
297
|
+
" \"protected\": false,\n"
|
298
|
+
" \"followers_count\": 260,\n"
|
299
|
+
" \"profile_text_color\": \"3C3940\",\n"
|
300
|
+
" \"profile_background_color\": \"0099B9\",\n"
|
301
|
+
" \"time_zone\": \"Hawaii\",\n"
|
302
|
+
" \"geo_enabled\": false,\n"
|
303
|
+
" \"notifications\": null,\n"
|
304
|
+
" \"description\": \"\\u9e7f\\u5150\\u5cf6\\u770c\\u85a9\\u6469\\u5ddd\\u5185\\u5e02\\u51fa\\u8eab\\u3002\\n\\u73fe\\u5728\\u798f\\u5ca1\\u5e02\\u535a\\u591a\\u533a\\u5728\\u4f4f\\u3002\\n\\u91ce\\u7403\\u306f\\u9df9\\u515a(\\u5fdc\\u63f4\\u306f\\u58f0\\u51fa\\u3057\\u6d3e)\\u3002\\n\\u97f3\\u697d\\u306f\\u3086\\u305a(\\u6ce3\\u304d\\u307c\\u304f\\u308d\\u6d3e)\\u3002\\n\\u30ea\\u30a2\\u30eb\\u30a2\\u30e9\\u30b5\\u30fc(\\u672c\\u6c17\\u3067\\u30ea\\u30a2\\u30eb)\\u3002\\n\\u53cc\\u5b50(\\u591a\\u5206\\u4e8c\\u5375\\u6027)\\u3002\",\n"
|
305
|
+
" \"verified\": false,\n"
|
306
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1302646548\\/images\\/themes\\/theme4\\/bg.gif\",\n"
|
307
|
+
" \"statuses_count\": 10218,\n"
|
308
|
+
" \"default_profile_image\": false,\n"
|
309
|
+
" \"friends_count\": 189,\n"
|
310
|
+
" \"screen_name\": \"umeimouto\",\n"
|
311
|
+
" \"show_all_inline_media\": false,\n"
|
312
|
+
" \"following\": null\n"
|
313
|
+
" },\n"
|
314
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/twipple.jp\\/\\\" rel=\\\"nofollow\\\"\\u003E\\u3064\\u3044\\u3063\\u3077\\u308b for iPhone\\u003C\\/a\\u003E\",\n"
|
315
|
+
" \"in_reply_to_screen_name\": null,\n"
|
316
|
+
" \"in_reply_to_status_id\": null\n"
|
317
|
+
" },\n"
|
318
|
+
" {\n"
|
319
|
+
" \n"
|
320
|
+
" \"coordinates\": null,\n"
|
321
|
+
" \"created_at\": \"Sun Apr 24 13:18:47 +0000 2011\",\n"
|
322
|
+
" \"favorited\": false,\n"
|
323
|
+
" \"truncated\": false,\n"
|
324
|
+
" \"id_str\": \"62143450660864000\",\n"
|
325
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
326
|
+
" \"contributors\": null,\n"
|
327
|
+
" \"text\": \"Good luck buat semua angkatan 2011,semoga lulus 100% amin!\",\n"
|
328
|
+
" \"id\": 62143450660864000,\n"
|
329
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
330
|
+
" \"retweet_count\": 0,\n"
|
331
|
+
" \"geo\": null,\n"
|
332
|
+
" \"retweeted\": false,\n"
|
333
|
+
" \"in_reply_to_user_id\": null,\n"
|
334
|
+
" \"place\": null,\n"
|
335
|
+
" \"user\": {\n"
|
336
|
+
" \"name\": \"Rifqi Agata Fadillah\",\n"
|
337
|
+
" \"profile_sidebar_border_color\": \"C0DEED\",\n"
|
338
|
+
" \"profile_background_tile\": true,\n"
|
339
|
+
" \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
|
340
|
+
" \"profile_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_images\\/1318083009\\/286099563_normal.jpg\",\n",
|
341
|
+
" \"created_at\": \"Sat Nov 27 07:42:50 +0000 2010\",\n"
|
342
|
+
" \"location\": \"\\u00dcT: -6.201772,106.766764\",\n"
|
343
|
+
" \"is_translator\": false,\n"
|
344
|
+
" \"follow_request_sent\": null,\n"
|
345
|
+
" \"profile_link_color\": \"0084B4\",\n"
|
346
|
+
" \"id_str\": \"220266344\",\n"
|
347
|
+
" \"url\": null,\n"
|
348
|
+
" \"default_profile\": false,\n"
|
349
|
+
" \"favourites_count\": 32,\n"
|
350
|
+
" \"contributors_enabled\": false,\n"
|
351
|
+
" \"utc_offset\": -28800,\n"
|
352
|
+
" \"id\": 220266344,\n"
|
353
|
+
" \"profile_use_background_image\": true,\n"
|
354
|
+
" \"listed_count\": 0,\n"
|
355
|
+
" \"lang\": \"en\",\n"
|
356
|
+
" \"protected\": false,\n"
|
357
|
+
" \"followers_count\": 145,\n"
|
358
|
+
" \"profile_text_color\": \"333333\",\n"
|
359
|
+
" \"profile_background_color\": \"C0DEED\",\n"
|
360
|
+
" \"time_zone\": \"Pacific Time (US & Canada)\",\n"
|
361
|
+
" \"geo_enabled\": false,\n"
|
362
|
+
" \"notifications\": null,\n"
|
363
|
+
" \"description\": \"SQZ 75 2011| WANTED family| @JumpToHigh - bassist|F5BF\\r|S.O.W|\",\n"
|
364
|
+
" \"verified\": false,\n"
|
365
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/228932382\\/asasasasas.jpg\",\n"
|
366
|
+
" \"statuses_count\": 2906,\n"
|
367
|
+
" \"default_profile_image\": false,\n"
|
368
|
+
" \"friends_count\": 139,\n"
|
369
|
+
" \"screen_name\": \"rifqifadilah\",\n"
|
370
|
+
" \"show_all_inline_media\": false,\n"
|
371
|
+
" \"following\": null\n"
|
372
|
+
" },\n"
|
373
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.snaptu.com\\\" rel=\\\"nofollow\\\"\\u003ESnaptu\\u003C\\/a\\u003E\",\n"
|
374
|
+
" \"in_reply_to_screen_name\": null,\n"
|
375
|
+
" \"in_reply_to_status_id\": null\n"
|
376
|
+
" },\n"
|
377
|
+
" {\n"
|
378
|
+
" \n"
|
379
|
+
" \"coordinates\": null,\n"
|
380
|
+
" \"created_at\": \"Sun Apr 24 13:18:47 +0000 2011\",\n"
|
381
|
+
" \"favorited\": false,\n"
|
382
|
+
" \"truncated\": false,\n"
|
383
|
+
" \"id_str\": \"62143449721344000\",\n"
|
384
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
385
|
+
" \"contributors\": null,\n"
|
386
|
+
" \"text\": \"Sip insyaaloh yam haha RT @IyamSitiPurnama: @ayusucia yu besok bareng yaaah!! Jam 8an aja. Plgnya kita main. Okay?\",\n"
|
387
|
+
" \"id\": 62143449721344000,\n",
|
388
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
389
|
+
" \"retweet_count\": 0,\n"
|
390
|
+
" \"geo\": null,\n"
|
391
|
+
" \"retweeted\": false,\n"
|
392
|
+
" \"in_reply_to_user_id\": null,\n"
|
393
|
+
" \"place\": null,\n"
|
394
|
+
" \"user\": {\n"
|
395
|
+
" \"name\": \"Ayu Sucianti Pratiwi\",\n"
|
396
|
+
" \"profile_sidebar_border_color\": \"000000\",\n"
|
397
|
+
" \"profile_background_tile\": true,\n"
|
398
|
+
" \"profile_sidebar_fill_color\": \"33c7cc\",\n"
|
399
|
+
" \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1261651576\\/Photo005_normal.jpg\",\n"
|
400
|
+
" \"created_at\": \"Fri Aug 28 11:31:34 +0000 2009\",\n"
|
401
|
+
" \"location\": \"Bandung, Indonesia\",\n"
|
402
|
+
" \"profile_link_color\": \"ae2ccf\",\n"
|
403
|
+
" \"is_translator\": false,\n"
|
404
|
+
" \"id_str\": \"69565800\",\n"
|
405
|
+
" \"follow_request_sent\": null,\n"
|
406
|
+
" \"url\": null,\n"
|
407
|
+
" \"contributors_enabled\": false,\n"
|
408
|
+
" \"default_profile\": false,\n"
|
409
|
+
" \"favourites_count\": 0,\n"
|
410
|
+
" \"utc_offset\": -25200,\n"
|
411
|
+
" \"id\": 69565800,\n"
|
412
|
+
" \"profile_use_background_image\": true,\n"
|
413
|
+
" \"listed_count\": 1,\n"
|
414
|
+
" \"lang\": \"en\",\n"
|
415
|
+
" \"protected\": false,\n"
|
416
|
+
" \"followers_count\": 141,\n"
|
417
|
+
" \"profile_text_color\": \"143d42\",\n"
|
418
|
+
" \"profile_background_color\": \"352726\",\n"
|
419
|
+
" \"geo_enabled\": true,\n"
|
420
|
+
" \"time_zone\": \"Mountain Time (US & Canada)\",\n"
|
421
|
+
" \"notifications\": null,\n"
|
422
|
+
" \"description\": \"SMAN 1 BANDUNG '11\",\n"
|
423
|
+
" \"verified\": false,\n"
|
424
|
+
" \"profile_background_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_background_images\\/228896383\\/Face_In_The_Crowd_by_smashmethod.jpg\",\n"
|
425
|
+
" \"default_profile_image\": false,\n"
|
426
|
+
" \"friends_count\": 82,\n"
|
427
|
+
" \"statuses_count\": 1885,\n"
|
428
|
+
" \"show_all_inline_media\": false,\n"
|
429
|
+
" \"screen_name\": \"ayusucia\",\n"
|
430
|
+
" \"following\": null\n"
|
431
|
+
" },\n"
|
432
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.snaptu.com\\\" rel=\\\"nofollow\\\"\\u003ESnaptu\\u003C\\/a\\u003E\",\n"
|
433
|
+
" \"in_reply_to_screen_name\": null,\n"
|
434
|
+
" \"in_reply_to_status_id\": null\n"
|
435
|
+
" }, ",
|
436
|
+
" {\n"
|
437
|
+
" \n"
|
438
|
+
" \"coordinates\": null,\n"
|
439
|
+
" \"created_at\": \"Sun Apr 24 13:18:46 +0000 2011\",\n"
|
440
|
+
" \"favorited\": false,\n"
|
441
|
+
" \"truncated\": false,\n"
|
442
|
+
" \"id_str\": \"62143443954176000\",\n"
|
443
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
444
|
+
" \"contributors\": null,\n"
|
445
|
+
" \"text\": \"Fuck youuuuuu very much.\",\n"
|
446
|
+
" \"id\": 62143443954176000,\n"
|
447
|
+
" \"in_reply_to_status_id_str\": null,\n",
|
448
|
+
" \"retweet_count\": 0,\n"
|
449
|
+
" \"geo\": null,\n"
|
450
|
+
" \"retweeted\": false,\n"
|
451
|
+
" \"in_reply_to_user_id\": null,\n"
|
452
|
+
" \"place\": null,\n"
|
453
|
+
" \"user\": {\n"
|
454
|
+
" \"name\": \"MayJ Tumulak\",\n"
|
455
|
+
" \"profile_sidebar_border_color\": \"FFFFFF\",\n"
|
456
|
+
" \"profile_background_tile\": true,\n"
|
457
|
+
" \"profile_sidebar_fill_color\": \"a1908f\",\n"
|
458
|
+
" \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1248744054\\/182023_1696887156113_1655881256_1550554_2790545_n_normal.jpg\",\n"
|
459
|
+
" \"created_at\": \"Wed Mar 31 15:20:30 +0000 2010\",\n"
|
460
|
+
" \"location\": \"Cebu, Philippines.\",\n"
|
461
|
+
" \"is_translator\": false,\n"
|
462
|
+
" \"follow_request_sent\": null,\n"
|
463
|
+
" \"profile_link_color\": \"e8dc33\",\n"
|
464
|
+
" \"id_str\": \"128247577\",\n"
|
465
|
+
" \"url\": \"http:\\/\\/mayjornerd.tumblr.com\\/\",\n"
|
466
|
+
" \"default_profile\": false,\n"
|
467
|
+
" \"contributors_enabled\": false,\n"
|
468
|
+
" \"favourites_count\": 23,\n"
|
469
|
+
" \"utc_offset\": 28800,\n"
|
470
|
+
" \"id\": 128247577,\n"
|
471
|
+
" \"profile_use_background_image\": true,\n"
|
472
|
+
" \"listed_count\": 5,\n"
|
473
|
+
" \"lang\": \"en\",\n"
|
474
|
+
" \"protected\": false,\n"
|
475
|
+
" \"followers_count\": 200,\n"
|
476
|
+
" \"profile_text_color\": \"db048c\",\n"
|
477
|
+
" \"profile_background_color\": \"000000\",\n"
|
478
|
+
" \"time_zone\": \"Hong Kong\",\n"
|
479
|
+
" \"geo_enabled\": false,\n"
|
480
|
+
" \"notifications\": null,\n"
|
481
|
+
" \"description\": \"Josh Duhamel, Emmanuelle Vaugier, Eddie Cahill, Paget Brewster and Thomas Gibson. Stana Katic. I LOVE THEM. \\u2665\",\n"
|
482
|
+
" \"verified\": false,\n"
|
483
|
+
" \"profile_background_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_background_images\\/124406615\\/AAB1408.jpg\",\n"
|
484
|
+
" \"statuses_count\": 4811,\n"
|
485
|
+
" \"default_profile_image\": false,\n"
|
486
|
+
" \"friends_count\": 275,\n"
|
487
|
+
" \"screen_name\": \"MayJT17\",\n"
|
488
|
+
" \"show_all_inline_media\": false,\n"
|
489
|
+
" \"following\": null\n"
|
490
|
+
" },\n"
|
491
|
+
" \"source\": \"web\",\n"
|
492
|
+
" \"in_reply_to_screen_name\": null,\n"
|
493
|
+
" \"in_reply_to_status_id\": null\n"
|
494
|
+
" },\n",
|
495
|
+
" {\n"
|
496
|
+
" \n"
|
497
|
+
" \"coordinates\": null,\n"
|
498
|
+
" \"created_at\": \"Sun Apr 24 13:18:45 +0000 2011\",\n"
|
499
|
+
" \"favorited\": false,\n"
|
500
|
+
" \"truncated\": false,\n"
|
501
|
+
" \"id_str\": \"62143439344640000\",\n"
|
502
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
503
|
+
" \"contributors\": null,\n"
|
504
|
+
" \"text\": \"Menurutmuuuuuu emememRT @ariesgbgn: Masak di makanin..ckck RT @rindagustina: Emg makan sendiriRT @ariesgbgn: Makan aja sendiri..haha R\",\n"
|
505
|
+
" \"id\": 62143439344640000,\n"
|
506
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
507
|
+
" \"retweet_count\": 0,\n"
|
508
|
+
" \"geo\": null,\n"
|
509
|
+
" \"retweeted\": false,\n"
|
510
|
+
" \"in_reply_to_user_id\": null,\n"
|
511
|
+
" \"place\": null,\n"
|
512
|
+
" \"user\": {\n"
|
513
|
+
" \"name\": \"Rinda Citra Avanti\",\n"
|
514
|
+
" \"profile_sidebar_border_color\": \"f20938\",\n"
|
515
|
+
" \"profile_background_tile\": true,\n"
|
516
|
+
" \"profile_sidebar_fill_color\": \"d3dee8\",\n"
|
517
|
+
" \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1318218525\\/phpJYyKtG_normal\",\n"
|
518
|
+
" \"created_at\": \"Tue Nov 23 12:19:01 +0000 2010\",\n"
|
519
|
+
" \"location\": \"Pasadena, Semarang \",\n"
|
520
|
+
" \"profile_link_color\": \"090a09\",\n"
|
521
|
+
" \"is_translator\": false,\n"
|
522
|
+
" \"id_str\": \"218856519\",\n"
|
523
|
+
" \"follow_request_sent\": null,\n"
|
524
|
+
" \"url\": \"http:\\/\\/m.facebook.com\\/profile.php?id=1850197456&refid=17\",\n"
|
525
|
+
" \"contributors_enabled\": false,\n"
|
526
|
+
" \"default_profile\": false,\n"
|
527
|
+
" \"favourites_count\": 122,\n"
|
528
|
+
" \"utc_offset\": -28800,\n"
|
529
|
+
" \"id\": 218856519,\n"
|
530
|
+
" \"profile_use_background_image\": true,\n"
|
531
|
+
" \"listed_count\": 1,\n"
|
532
|
+
" \"lang\": \"en\",\n"
|
533
|
+
" \"protected\": false,\n"
|
534
|
+
" \"followers_count\": 301,\n"
|
535
|
+
" \"profile_text_color\": \"333333\",\n"
|
536
|
+
" \"profile_background_color\": \"f03046\",\n"
|
537
|
+
" \"geo_enabled\": false,\n"
|
538
|
+
" \"time_zone\": \"Pacific Time (US & Canada)\",\n"
|
539
|
+
" \"notifications\": null,\n"
|
540
|
+
" \"description\": \"Low profile | Simple | o2 December 2o1o \\u2665\",\n"
|
541
|
+
" \"verified\": false,\n"
|
542
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/199969730\\/76456_105694036168812_100001846488330_42447_4503930_n.jpg\",\n",
|
543
|
+
" \"default_profile_image\": false,\n"
|
544
|
+
" \"friends_count\": 202,\n"
|
545
|
+
" \"statuses_count\": 11353,\n"
|
546
|
+
" \"show_all_inline_media\": false,\n"
|
547
|
+
" \"screen_name\": \"rindagustina\",\n"
|
548
|
+
" \"following\": null\n"
|
549
|
+
" },\n"
|
550
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/ubersocial.com\\\" rel=\\\"nofollow\\\"\\u003E\\u00dcberSocial\\u003C\\/a\\u003E\",\n"
|
551
|
+
" \"in_reply_to_screen_name\": null,\n"
|
552
|
+
" \"in_reply_to_status_id\": null\n"
|
553
|
+
" },\n"
|
554
|
+
" {\n"
|
555
|
+
" \n"
|
556
|
+
" \"coordinates\": null,\n"
|
557
|
+
" \"created_at\": \"Sun Apr 24 13:18:45 +0000 2011\",\n"
|
558
|
+
" \"favorited\": false,\n"
|
559
|
+
" \"truncated\": false,\n"
|
560
|
+
" \"id_str\": \"62143439235584000\",\n"
|
561
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
562
|
+
" \"contributors\": null,\n"
|
563
|
+
" \"text\": \"Hate wearing dresses, now I gotta sit with my legs shut.\",\n"
|
564
|
+
" \"id\": 62143439235584000,\n"
|
565
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
566
|
+
" \"retweet_count\": 0,\n"
|
567
|
+
" \"geo\": null,\n"
|
568
|
+
" \"retweeted\": false,\n"
|
569
|
+
" \"in_reply_to_user_id\": null,\n"
|
570
|
+
" \"place\": null,\n"
|
571
|
+
" \"user\": {\n"
|
572
|
+
" \"name\": \"Alexis Sparrow\",\n"
|
573
|
+
" \"profile_sidebar_border_color\": \"eb157d\",\n"
|
574
|
+
" \"profile_background_tile\": true,\n"
|
575
|
+
" \"profile_sidebar_fill_color\": \"ff8ae4\",\n"
|
576
|
+
" \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1285784046\\/110324-160733_normal.jpg\",\n"
|
577
|
+
" \"created_at\": \"Thu Feb 10 03:34:07 +0000 2011\",\n"
|
578
|
+
" \"location\": \"four one two.\",\n"
|
579
|
+
" \"is_translator\": false,\n"
|
580
|
+
" \"follow_request_sent\": null,\n"
|
581
|
+
" \"profile_link_color\": \"6b1f58\",\n"
|
582
|
+
" \"id_str\": \"249956435\",\n"
|
583
|
+
" \"url\": null,\n"
|
584
|
+
" \"contributors_enabled\": false,\n"
|
585
|
+
" \"default_profile\": false,\n"
|
586
|
+
" \"favourites_count\": 0,\n"
|
587
|
+
" \"utc_offset\": -21600,\n"
|
588
|
+
" \"id\": 249956435,\n"
|
589
|
+
" \"profile_use_background_image\": true,\n"
|
590
|
+
" \"listed_count\": 0,\n",
|
591
|
+
" \"lang\": \"en\",\n"
|
592
|
+
" \"protected\": false,\n"
|
593
|
+
" \"followers_count\": 52,\n"
|
594
|
+
" \"profile_text_color\": \"333333\",\n"
|
595
|
+
" \"profile_background_color\": \"f099c5\",\n"
|
596
|
+
" \"geo_enabled\": false,\n"
|
597
|
+
" \"time_zone\": \"Central Time (US & Canada)\",\n"
|
598
|
+
" \"notifications\": null,\n"
|
599
|
+
" \"description\": \"#iup #teamblackberry #sixburgh (:\",\n"
|
600
|
+
" \"verified\": false,\n"
|
601
|
+
" \"profile_background_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_background_images\\/236015295\\/pink.gif\",\n"
|
602
|
+
" \"statuses_count\": 971,\n"
|
603
|
+
" \"default_profile_image\": false,\n"
|
604
|
+
" \"friends_count\": 56,\n"
|
605
|
+
" \"screen_name\": \"alexis_sparrow\",\n"
|
606
|
+
" \"show_all_inline_media\": false,\n"
|
607
|
+
" \"following\": null\n"
|
608
|
+
" },\n"
|
609
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/devices\\\" rel=\\\"nofollow\\\"\\u003Etxt\\u003C\\/a\\u003E\",\n"
|
610
|
+
" \"in_reply_to_screen_name\": null,\n"
|
611
|
+
" \"in_reply_to_status_id\": null\n"
|
612
|
+
" },\n"
|
613
|
+
" {\n"
|
614
|
+
" \n"
|
615
|
+
" \"coordinates\": null,\n"
|
616
|
+
" \"created_at\": \"Sun Apr 24 13:18:44 +0000 2011\",\n"
|
617
|
+
" \"favorited\": false,\n"
|
618
|
+
" \"truncated\": false,\n"
|
619
|
+
" \"id_str\": \"62143437247488000\",\n"
|
620
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
621
|
+
" \"contributors\": null,\n"
|
622
|
+
" \"text\": \"Net ppas wakker:o ZONDE!!\",\n"
|
623
|
+
" \"id\": 62143437247488000,\n"
|
624
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
625
|
+
" \"retweet_count\": 0,\n"
|
626
|
+
" \"geo\": null,\n"
|
627
|
+
" \"retweeted\": false,\n"
|
628
|
+
" \"in_reply_to_user_id\": null,\n"
|
629
|
+
" \"place\": null,\n"
|
630
|
+
" \"user\": {\n"
|
631
|
+
" \"name\": \"Rohit\",\n"
|
632
|
+
" \"profile_sidebar_border_color\": \"C0DEED\",\n"
|
633
|
+
" \"profile_background_tile\": false,\n"
|
634
|
+
" \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
|
635
|
+
" \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1305531627\\/IMG-20110404-00125_normal.jpg\",\n"
|
636
|
+
" \"created_at\": \"Sun Feb 06 16:34:11 +0000 2011\",\n"
|
637
|
+
" \"location\": \"The Hague\",\n",
|
638
|
+
" \"follow_request_sent\": null,\n"
|
639
|
+
" \"profile_link_color\": \"0084B4\",\n"
|
640
|
+
" \"id_str\": \"248263091\",\n"
|
641
|
+
" \"is_translator\": false,\n"
|
642
|
+
" \"url\": \"http:\\/\\/www.roo11.hyves.nl\",\n"
|
643
|
+
" \"contributors_enabled\": false,\n"
|
644
|
+
" \"favourites_count\": 0,\n"
|
645
|
+
" \"default_profile\": true,\n"
|
646
|
+
" \"utc_offset\": null,\n"
|
647
|
+
" \"id\": 248263091,\n"
|
648
|
+
" \"profile_use_background_image\": true,\n"
|
649
|
+
" \"listed_count\": 0,\n"
|
650
|
+
" \"lang\": \"en\",\n"
|
651
|
+
" \"protected\": false,\n"
|
652
|
+
" \"followers_count\": 17,\n"
|
653
|
+
" \"profile_text_color\": \"333333\",\n"
|
654
|
+
" \"profile_background_color\": \"C0DEED\",\n"
|
655
|
+
" \"geo_enabled\": false,\n"
|
656
|
+
" \"time_zone\": null,\n"
|
657
|
+
" \"notifications\": null,\n"
|
658
|
+
" \"description\": \"Bb ping, just ask! X\",\n"
|
659
|
+
" \"verified\": false,\n"
|
660
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1302724321\\/images\\/themes\\/theme1\\/bg.png\",\n"
|
661
|
+
" \"default_profile_image\": false,\n"
|
662
|
+
" \"friends_count\": 102,\n"
|
663
|
+
" \"statuses_count\": 257,\n"
|
664
|
+
" \"show_all_inline_media\": false,\n"
|
665
|
+
" \"screen_name\": \"prince__ro\",\n"
|
666
|
+
" \"following\": null\n"
|
667
|
+
" },\n"
|
668
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003ETwitter for BlackBerry\\u00ae\\u003C\\/a\\u003E\",\n"
|
669
|
+
" \"in_reply_to_screen_name\": null,\n"
|
670
|
+
" \"in_reply_to_status_id\": null\n"
|
671
|
+
" },\n"
|
672
|
+
" {\n"
|
673
|
+
" \n"
|
674
|
+
" \"coordinates\": null,\n"
|
675
|
+
" \"created_at\": \"Sun Apr 24 13:18:44 +0000 2011\",\n"
|
676
|
+
" \"favorited\": false,\n"
|
677
|
+
" \"truncated\": false,\n"
|
678
|
+
" \"id_str\": \"62143434932224000\",\n"
|
679
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
680
|
+
" \"contributors\": null,\n"
|
681
|
+
" \"text\": \"HaPpY eAsTeR pEePs!!!\",\n"
|
682
|
+
" \"id\": 62143434932224000,\n"
|
683
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
684
|
+
" \"retweet_count\": 0,\n"
|
685
|
+
" \"geo\": null,\n",
|
686
|
+
" \"retweeted\": false,\n"
|
687
|
+
" \"in_reply_to_user_id\": null,\n"
|
688
|
+
" \"place\": null,\n"
|
689
|
+
" \"user\": {\n"
|
690
|
+
" \"name\": \"Chris Curzon\",\n"
|
691
|
+
" \"profile_sidebar_border_color\": \"65B0DA\",\n"
|
692
|
+
" \"profile_background_tile\": true,\n"
|
693
|
+
" \"profile_sidebar_fill_color\": \"7AC3EE\",\n"
|
694
|
+
" \"profile_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_images\\/1239641260\\/image_normal.jpg\",\n"
|
695
|
+
" \"created_at\": \"Wed Jun 17 15:35:33 +0000 2009\",\n"
|
696
|
+
" \"location\": \"Wilmslow, Cheshire, U.K\",\n"
|
697
|
+
" \"is_translator\": false,\n"
|
698
|
+
" \"profile_link_color\": \"FF0000\",\n"
|
699
|
+
" \"follow_request_sent\": null,\n"
|
700
|
+
" \"id_str\": \"47998574\",\n"
|
701
|
+
" \"url\": \"http:\\/\\/www.chriscurzon.co.uk\",\n"
|
702
|
+
" \"default_profile\": false,\n"
|
703
|
+
" \"contributors_enabled\": false,\n"
|
704
|
+
" \"favourites_count\": 2,\n"
|
705
|
+
" \"utc_offset\": 0,\n"
|
706
|
+
" \"id\": 47998574,\n"
|
707
|
+
" \"profile_use_background_image\": true,\n"
|
708
|
+
" \"listed_count\": 0,\n"
|
709
|
+
" \"lang\": \"en\",\n"
|
710
|
+
" \"protected\": false,\n"
|
711
|
+
" \"followers_count\": 16,\n"
|
712
|
+
" \"profile_text_color\": \"3D1957\",\n"
|
713
|
+
" \"profile_background_color\": \"642D8B\",\n"
|
714
|
+
" \"time_zone\": \"London\",\n"
|
715
|
+
" \"geo_enabled\": false,\n"
|
716
|
+
" \"notifications\": null,\n"
|
717
|
+
" \"description\": \"\",\n"
|
718
|
+
" \"verified\": false,\n"
|
719
|
+
" \"profile_background_image_url\": \"http:\\/\\/a2.twimg.com\\/a\\/1302214109\\/images\\/themes\\/theme10\\/bg.gif\",\n"
|
720
|
+
" \"statuses_count\": 186,\n"
|
721
|
+
" \"friends_count\": 72,\n"
|
722
|
+
" \"default_profile_image\": false,\n"
|
723
|
+
" \"screen_name\": \"ChrisCurzon\",\n"
|
724
|
+
" \"show_all_inline_media\": false,\n"
|
725
|
+
" \"following\": null\n"
|
726
|
+
" },\n"
|
727
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\n"
|
728
|
+
" \"in_reply_to_screen_name\": null,\n"
|
729
|
+
" \"in_reply_to_status_id\": null\n"
|
730
|
+
" },\n"
|
731
|
+
" {\n"
|
732
|
+
" \n",
|
733
|
+
" \"coordinates\": null,\n"
|
734
|
+
" \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
|
735
|
+
" \"favorited\": false,\n"
|
736
|
+
" \"truncated\": false,\n"
|
737
|
+
" \"id_str\": \"62143434101760000\",\n"
|
738
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
739
|
+
" \"contributors\": null,\n"
|
740
|
+
" \"text\": \"sadaaaapp...jawaban yg bijak *salut* hahahaha RT @ade_agus_rahman: Biar waktu yg menjawabna hahahahaRT @CSuhendra:... http:\\/\\/mtw.tl\\/lqdn3si\",\n"
|
741
|
+
" \"id\": 62143434101760000,\n"
|
742
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
743
|
+
" \"retweet_count\": 0,\n"
|
744
|
+
" \"geo\": null,\n"
|
745
|
+
" \"retweeted\": false,\n"
|
746
|
+
" \"in_reply_to_user_id\": null,\n"
|
747
|
+
" \"place\": null,\n"
|
748
|
+
" \"user\": {\n"
|
749
|
+
" \"name\": \"christian suhendra\",\n"
|
750
|
+
" \"profile_sidebar_border_color\": \"ffef0f\",\n"
|
751
|
+
" \"profile_background_tile\": true,\n"
|
752
|
+
" \"profile_sidebar_fill_color\": \"efefef\",\n"
|
753
|
+
" \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1306502119\\/172657_1754759681733_1621188498_1678640_1734292_o_normal.jpg\",\n"
|
754
|
+
" \"created_at\": \"Tue Jul 14 14:02:20 +0000 2009\",\n"
|
755
|
+
" \"location\": \"\",\n"
|
756
|
+
" \"is_translator\": false,\n"
|
757
|
+
" \"profile_link_color\": \"ba7309\",\n"
|
758
|
+
" \"follow_request_sent\": null,\n"
|
759
|
+
" \"id_str\": \"56700895\",\n"
|
760
|
+
" \"url\": \"http:\\/\\/www.facebook.com\\/?ref=home#!\\/christian.suhendra\",\n"
|
761
|
+
" \"default_profile\": false,\n"
|
762
|
+
" \"contributors_enabled\": false,\n"
|
763
|
+
" \"favourites_count\": 0,\n"
|
764
|
+
" \"utc_offset\": -36000,\n"
|
765
|
+
" \"id\": 56700895,\n"
|
766
|
+
" \"profile_use_background_image\": true,\n"
|
767
|
+
" \"listed_count\": 9,\n"
|
768
|
+
" \"lang\": \"en\",\n"
|
769
|
+
" \"protected\": false,\n"
|
770
|
+
" \"followers_count\": 225,\n"
|
771
|
+
" \"profile_text_color\": \"333333\",\n"
|
772
|
+
" \"profile_background_color\": \"131516\",\n"
|
773
|
+
" \"time_zone\": \"Hawaii\",\n"
|
774
|
+
" \"geo_enabled\": true,\n"
|
775
|
+
" \"notifications\": null,\n"
|
776
|
+
" \"description\": \"it's not about me , it's all about style..HAHA\",\n"
|
777
|
+
" \"verified\": false,\n"
|
778
|
+
" \"profile_background_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_background_images\\/166923240\\/maryPraying1024.jpg\",\n"
|
779
|
+
" \"statuses_count\": 5705,\n",
|
780
|
+
" \"friends_count\": 256,\n"
|
781
|
+
" \"default_profile_image\": false,\n"
|
782
|
+
" \"screen_name\": \"CSuhendra\",\n"
|
783
|
+
" \"show_all_inline_media\": false,\n"
|
784
|
+
" \"following\": null\n"
|
785
|
+
" },\n"
|
786
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/m.tweete.net\\\" rel=\\\"nofollow\\\"\\u003Em.tweete.net\\u003C\\/a\\u003E\",\n"
|
787
|
+
" \"in_reply_to_screen_name\": null,\n"
|
788
|
+
" \"in_reply_to_status_id\": null\n"
|
789
|
+
" },\n"
|
790
|
+
" {\n"
|
791
|
+
" \n"
|
792
|
+
" \"coordinates\": null,\n"
|
793
|
+
" \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
|
794
|
+
" \"favorited\": false,\n"
|
795
|
+
" \"truncated\": false,\n"
|
796
|
+
" \"id_str\": \"62143433577472000\",\n"
|
797
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
798
|
+
" \"contributors\": null,\n"
|
799
|
+
" \"text\": \"Feliz ressurrei\\u00e7\\u00e3o de Jesus Cristo. http:\\/\\/tumblr.com\\/xye28y8fgp\",\n"
|
800
|
+
" \"id\": 62143433577472000,\n"
|
801
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
802
|
+
" \"retweet_count\": 0,\n"
|
803
|
+
" \"geo\": null,\n"
|
804
|
+
" \"retweeted\": false,\n"
|
805
|
+
" \"in_reply_to_user_id\": null,\n"
|
806
|
+
" \"place\": null,\n"
|
807
|
+
" \"user\": {\n"
|
808
|
+
" \"name\": \"Elisa\",\n"
|
809
|
+
" \"profile_sidebar_border_color\": \"ffffff\",\n"
|
810
|
+
" \"profile_background_tile\": true,\n"
|
811
|
+
" \"profile_sidebar_fill_color\": \"ffffff\",\n"
|
812
|
+
" \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1245238667\\/DSC03818_normal.JPG\",\n"
|
813
|
+
" \"created_at\": \"Sat Apr 03 20:55:57 +0000 2010\",\n"
|
814
|
+
" \"location\": \"\",\n"
|
815
|
+
" \"follow_request_sent\": null,\n"
|
816
|
+
" \"profile_link_color\": \"ff5c82\",\n"
|
817
|
+
" \"id_str\": \"129297077\",\n"
|
818
|
+
" \"is_translator\": false,\n"
|
819
|
+
" \"url\": null,\n"
|
820
|
+
" \"contributors_enabled\": false,\n"
|
821
|
+
" \"favourites_count\": 0,\n"
|
822
|
+
" \"default_profile\": false,\n"
|
823
|
+
" \"utc_offset\": -10800,\n"
|
824
|
+
" \"id\": 129297077,\n"
|
825
|
+
" \"profile_use_background_image\": true,\n"
|
826
|
+
" \"listed_count\": 1,\n",
|
827
|
+
" \"lang\": \"en\",\n"
|
828
|
+
" \"protected\": false,\n"
|
829
|
+
" \"followers_count\": 61,\n"
|
830
|
+
" \"profile_text_color\": \"ff4c76\",\n"
|
831
|
+
" \"profile_background_color\": \"ffffff\",\n"
|
832
|
+
" \"time_zone\": \"Brasilia\",\n"
|
833
|
+
" \"notifications\": null,\n"
|
834
|
+
" \"description\": \"eu fa\\u00e7o da dificuldade a minha motiva\\u00e7\\u00e3o.\",\n"
|
835
|
+
" \"geo_enabled\": false,\n"
|
836
|
+
" \"verified\": false,\n"
|
837
|
+
" \"profile_background_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_background_images\\/230245704\\/tumblr_lj97wofglY1qb67gho1_500_large.jpg\",\n"
|
838
|
+
" \"statuses_count\": 1287,\n"
|
839
|
+
" \"default_profile_image\": false,\n"
|
840
|
+
" \"friends_count\": 175,\n"
|
841
|
+
" \"screen_name\": \"eliisarocha\",\n"
|
842
|
+
" \"following\": null,\n"
|
843
|
+
" \"show_all_inline_media\": false\n"
|
844
|
+
" },\n"
|
845
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.tumblr.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETumblr\\u003C\\/a\\u003E\",\n"
|
846
|
+
" \"in_reply_to_screen_name\": null,\n"
|
847
|
+
" \"in_reply_to_status_id\": null\n"
|
848
|
+
" },\n"
|
849
|
+
" {\n"
|
850
|
+
" \n"
|
851
|
+
" \"coordinates\": null,\n"
|
852
|
+
" \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
|
853
|
+
" \"favorited\": false,\n"
|
854
|
+
" \"truncated\": false,\n"
|
855
|
+
" \"id_str\": \"62143432310784000\",\n"
|
856
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
857
|
+
" \"contributors\": null,\n"
|
858
|
+
" \"text\": \"\\u3053\\u308c\\u3067\\u30e9\\u30b9\\u67a0\\u304b\\u306a\\uff5e\",\n"
|
859
|
+
" \"id\": 62143432310784000,\n"
|
860
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
861
|
+
" \"retweet_count\": 0,\n"
|
862
|
+
" \"geo\": null,\n"
|
863
|
+
" \"retweeted\": false,\n"
|
864
|
+
" \"in_reply_to_user_id\": null,\n"
|
865
|
+
" \"place\": null,\n"
|
866
|
+
" \"user\": {\n"
|
867
|
+
" \"name\": \"\\u30b7\\u30ab\\u30c8\\uff20Mr.\\u5668\\u7528\\u8ca7\\u4e4f\",\n"
|
868
|
+
" \"profile_sidebar_border_color\": \"C0DEED\",\n"
|
869
|
+
" \"profile_background_tile\": false,\n"
|
870
|
+
" \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
|
871
|
+
" \"profile_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_images\\/1204747446\\/100819_1913_010001_normal.jpg\",\n"
|
872
|
+
" \"created_at\": \"Sat Nov 13 02:55:41 +0000 2010\",\n"
|
873
|
+
" \"location\": \"\\u30b7\\u30ab\\u30c8\\u306e\\u306a\\u3093\\u3068\\u306a\\u304f\\u30cb\\u30b3\\u751f(\\u6c5a)\",\n",
|
874
|
+
" \"profile_link_color\": \"0084B4\",\n"
|
875
|
+
" \"is_translator\": false,\n"
|
876
|
+
" \"follow_request_sent\": null,\n"
|
877
|
+
" \"id_str\": \"215139533\",\n"
|
878
|
+
" \"url\": \"http:\\/\\/com.nicovideo.jp\\/community\\/co568211\",\n"
|
879
|
+
" \"default_profile\": true,\n"
|
880
|
+
" \"favourites_count\": 0,\n"
|
881
|
+
" \"contributors_enabled\": false,\n"
|
882
|
+
" \"utc_offset\": 32400,\n"
|
883
|
+
" \"id\": 215139533,\n"
|
884
|
+
" \"profile_use_background_image\": true,\n"
|
885
|
+
" \"listed_count\": 1,\n"
|
886
|
+
" \"lang\": \"ja\",\n"
|
887
|
+
" \"protected\": false,\n"
|
888
|
+
" \"followers_count\": 17,\n"
|
889
|
+
" \"profile_text_color\": \"333333\",\n"
|
890
|
+
" \"profile_background_color\": \"C0DEED\",\n"
|
891
|
+
" \"time_zone\": \"Tokyo\",\n"
|
892
|
+
" \"geo_enabled\": false,\n"
|
893
|
+
" \"notifications\": null,\n"
|
894
|
+
" \"description\": \"\\u4e00\\u822c\\u5927\\u5b66\\u751f\\u517c\\u3001\\u30a2\\u30cb\\u30b2\\u30fc\\u30fb\\u30e1\\u30bf\\u30eb\\u30d0\\u30f3\\u30c9\\u30c9\\u30e9\\u30de\\u30fc\\u517cAO\\u52e2\\u3084\\u3063\\u3066\\u307e\\u3059\\u2605 \\u30b3\\u30df\\u30e5\\u3067\\u306fAO\\u52e2\\u6d3e\\u751f\\u30d7\\u30ed\\u30b8\\u30a7\\u30af\\u30c8\\u3068\\u3057\\u3066\\u3001\\u79c1\\u3092\\u542b\\u3081\\u30e1\\u30f3\\u30d0\\u30fc\\u306e\\u65b9\\u3005\\u304c\\u751f\\u653e\\u9001\\u3092\\u884c\\u3063\\u3066\\u304a\\u308a\\u307e\\u3059\\u266a \\u79c1\\u306e\\u653e\\u9001\\u3067\\u306f\\u3001\\u30e9\\u30b8\\u30aa\\u7684\\u30ea\\u30b9\\u30ca\\u30fc\\u53c2\\u52a0\\u578b\\u306e\\u30b9\\u30bf\\u30a4\\u30eb\\u3067\\u653e\\u9001\\u4e2d\\u3067\\u3059\\u2605 \\u8a71\\u984c\\u306b\\u95a2\\u3057\\u3066\\u306f\\u30b8\\u30e3\\u30f3\\u30eb\\u554f\\u308f\\u305a\\u3001\\u5668\\u7528\\u8ca7\\u4e4f\\u3092\\u767a\\u63ee\\u3057\\u3066\\u307e\\u3059\\u266a\\u266a\",\n"
|
895
|
+
" \"verified\": false,\n"
|
896
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1303316982\\/images\\/themes\\/theme1\\/bg.png\",\n"
|
897
|
+
" \"default_profile_image\": false,\n"
|
898
|
+
" \"statuses_count\": 526,\n"
|
899
|
+
" \"friends_count\": 10,\n"
|
900
|
+
" \"screen_name\": \"Shikato_Drs_AO\",\n"
|
901
|
+
" \"following\": null,\n"
|
902
|
+
" \"show_all_inline_media\": false\n"
|
903
|
+
" },\n"
|
904
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/twtr.jp\\\" rel=\\\"nofollow\\\"\\u003EKeitai Web\\u003C\\/a\\u003E\",\n"
|
905
|
+
" \"in_reply_to_screen_name\": null,\n"
|
906
|
+
" \"in_reply_to_status_id\": null\n"
|
907
|
+
" },\n"
|
908
|
+
" {\n"
|
909
|
+
" \n"
|
910
|
+
" \"coordinates\": null,\n"
|
911
|
+
" \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
|
912
|
+
" \"favorited\": false,\n",
|
913
|
+
" \"truncated\": false,\n"
|
914
|
+
" \"id_str\": \"62143431262208000\",\n"
|
915
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
916
|
+
" \"contributors\": null,\n"
|
917
|
+
" \"text\": \"casa da v\\u00f3, vo fika vo cel\",\n"
|
918
|
+
" \"id\": 62143431262208000,\n"
|
919
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
920
|
+
" \"retweet_count\": 0,\n"
|
921
|
+
" \"geo\": null,\n"
|
922
|
+
" \"retweeted\": false,\n"
|
923
|
+
" \"in_reply_to_user_id\": null,\n"
|
924
|
+
" \"place\": null,\n"
|
925
|
+
" \"user\": {\n"
|
926
|
+
" \"name\": \"Lucas Murbach Pierin\",\n"
|
927
|
+
" \"profile_sidebar_border_color\": \"eeeeee\",\n"
|
928
|
+
" \"profile_background_tile\": true,\n"
|
929
|
+
" \"profile_sidebar_fill_color\": \"efefef\",\n"
|
930
|
+
" \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1321857197\\/Twitter_normal.jpg\",\n"
|
931
|
+
" \"created_at\": \"Tue Oct 12 02:14:40 +0000 2010\",\n"
|
932
|
+
" \"location\": \"Lapa\\/Ctba\",\n"
|
933
|
+
" \"profile_link_color\": \"009999\",\n"
|
934
|
+
" \"is_translator\": false,\n"
|
935
|
+
" \"follow_request_sent\": null,\n"
|
936
|
+
" \"id_str\": \"201538116\",\n"
|
937
|
+
" \"url\": \"http:\\/\\/xenedapuc.tumblr.com\",\n"
|
938
|
+
" \"default_profile\": false,\n"
|
939
|
+
" \"favourites_count\": 8,\n"
|
940
|
+
" \"contributors_enabled\": false,\n"
|
941
|
+
" \"utc_offset\": -10800,\n"
|
942
|
+
" \"id\": 201538116,\n"
|
943
|
+
" \"profile_use_background_image\": true,\n"
|
944
|
+
" \"listed_count\": 22,\n"
|
945
|
+
" \"lang\": \"en\",\n"
|
946
|
+
" \"protected\": false,\n"
|
947
|
+
" \"followers_count\": 68,\n"
|
948
|
+
" \"profile_text_color\": \"333333\",\n"
|
949
|
+
" \"profile_background_color\": \"131516\",\n"
|
950
|
+
" \"time_zone\": \"Brasilia\",\n"
|
951
|
+
" \"geo_enabled\": true,\n"
|
952
|
+
" \"notifications\": null,\n"
|
953
|
+
" \"description\": \"So um Pi\\u00e1 bm gnt boa, de gosto musical ecl\\u00e9tico + prefiro um bom Rock n' Roll, Curto anda de Bike e joga um futeba d veiz incuando e Atleticano com orgulho. =D \",\n"
|
954
|
+
" \"verified\": false,\n"
|
955
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/profile_background_images\\/206676494\\/twitter_pattern_background_by_ainon.jpg\",\n"
|
956
|
+
" \"default_profile_image\": false,\n"
|
957
|
+
" \"statuses_count\": 5470,\n"
|
958
|
+
" \"friends_count\": 145,\n",
|
959
|
+
" \"screen_name\": \"Xeneral\",\n"
|
960
|
+
" \"following\": null,\n"
|
961
|
+
" \"show_all_inline_media\": false\n"
|
962
|
+
" },\n"
|
963
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.tweetdeck.com\\\" rel=\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\n"
|
964
|
+
" \"in_reply_to_screen_name\": null,\n"
|
965
|
+
" \"in_reply_to_status_id\": null\n"
|
966
|
+
" },\n"
|
967
|
+
" {\n"
|
968
|
+
" \n"
|
969
|
+
" \"coordinates\": null,\n"
|
970
|
+
" \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
|
971
|
+
" \"favorited\": false,\n"
|
972
|
+
" \"truncated\": false,\n"
|
973
|
+
" \"id_str\": \"62143430956032000\",\n"
|
974
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
975
|
+
" \"contributors\": null,\n"
|
976
|
+
" \"text\": \"ATSUSHI\\u75e9\\u305b\\u305f\\uff1f\",\n"
|
977
|
+
" \"id\": 62143430956032000,\n"
|
978
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
979
|
+
" \"retweet_count\": 0,\n"
|
980
|
+
" \"geo\": null,\n"
|
981
|
+
" \"retweeted\": false,\n"
|
982
|
+
" \"in_reply_to_user_id\": null,\n"
|
983
|
+
" \"place\": null,\n"
|
984
|
+
" \"user\": {\n"
|
985
|
+
" \"name\": \"yui\",\n"
|
986
|
+
" \"profile_sidebar_border_color\": \"CC3366\",\n"
|
987
|
+
" \"profile_background_tile\": true,\n"
|
988
|
+
" \"profile_sidebar_fill_color\": \"E5507E\",\n"
|
989
|
+
" \"profile_image_url\": \"http:\\/\\/a0.twimg.com\\/profile_images\\/1210885986\\/image_normal.jpg\",\n"
|
990
|
+
" \"created_at\": \"Tue Oct 20 04:16:52 +0000 2009\",\n"
|
991
|
+
" \"location\": \"MEGURO TOKYO\",\n"
|
992
|
+
" \"profile_link_color\": \"B40B43\",\n"
|
993
|
+
" \"is_translator\": false,\n"
|
994
|
+
" \"follow_request_sent\": null,\n"
|
995
|
+
" \"id_str\": \"83766274\",\n"
|
996
|
+
" \"url\": \"http:\\/\\/ameblo.jp\\/yuikame61\\/\",\n"
|
997
|
+
" \"default_profile\": false,\n"
|
998
|
+
" \"favourites_count\": 16,\n"
|
999
|
+
" \"contributors_enabled\": false,\n"
|
1000
|
+
" \"utc_offset\": -36000,\n"
|
1001
|
+
" \"id\": 83766274,\n"
|
1002
|
+
" \"profile_use_background_image\": true,\n"
|
1003
|
+
" \"listed_count\": 6,\n"
|
1004
|
+
" \"lang\": \"ja\",\n"
|
1005
|
+
" \"protected\": false,\n"
|
1006
|
+
" \"followers_count\": 175,\n",
|
1007
|
+
" \"profile_text_color\": \"362720\",\n"
|
1008
|
+
" \"profile_background_color\": \"FF6699\",\n"
|
1009
|
+
" \"time_zone\": \"Hawaii\",\n"
|
1010
|
+
" \"geo_enabled\": false,\n"
|
1011
|
+
" \"notifications\": null,\n"
|
1012
|
+
" \"description\": \"I'm stylist's assistant^^ \\/ I love fashion,japanese reggae and hiphop\",\n"
|
1013
|
+
" \"verified\": false,\n"
|
1014
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1302724321\\/images\\/themes\\/theme11\\/bg.gif\",\n"
|
1015
|
+
" \"default_profile_image\": false,\n"
|
1016
|
+
" \"statuses_count\": 4048,\n"
|
1017
|
+
" \"friends_count\": 184,\n"
|
1018
|
+
" \"screen_name\": \"kamewada\",\n"
|
1019
|
+
" \"following\": null,\n"
|
1020
|
+
" \"show_all_inline_media\": false\n"
|
1021
|
+
" },\n"
|
1022
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\n"
|
1023
|
+
" \"in_reply_to_screen_name\": null,\n"
|
1024
|
+
" \"in_reply_to_status_id\": null\n"
|
1025
|
+
" },\n"
|
1026
|
+
" {\n"
|
1027
|
+
" \n"
|
1028
|
+
" \"coordinates\": null,\n"
|
1029
|
+
" \"created_at\": \"Sun Apr 24 13:18:43 +0000 2011\",\n"
|
1030
|
+
" \"favorited\": false,\n"
|
1031
|
+
" \"truncated\": false,\n"
|
1032
|
+
" \"id_str\": \"62143430540800000\",\n"
|
1033
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
1034
|
+
" \"contributors\": null,\n"
|
1035
|
+
" \"text\": \"Well that's the last time I eat chocolate because of #EASTER\",\n"
|
1036
|
+
" \"id\": 62143430540800000,\n"
|
1037
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
1038
|
+
" \"retweet_count\": 0,\n"
|
1039
|
+
" \"geo\": null,\n"
|
1040
|
+
" \"retweeted\": false,\n"
|
1041
|
+
" \"in_reply_to_user_id\": null,\n"
|
1042
|
+
" \"place\": null,\n"
|
1043
|
+
" \"user\": {\n"
|
1044
|
+
" \"name\": \"TheRabbitsToldMe\",\n"
|
1045
|
+
" \"profile_sidebar_border_color\": \"C0DEED\",\n"
|
1046
|
+
" \"profile_background_tile\": false,\n"
|
1047
|
+
" \"profile_sidebar_fill_color\": \"DDEEF6\",\n"
|
1048
|
+
" \"profile_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_images\\/1314186122\\/image_normal.jpg\",\n"
|
1049
|
+
" \"created_at\": \"Fri Mar 18 23:27:45 +0000 2011\",\n"
|
1050
|
+
" \"location\": \"Bat Country bitch!!!! :D\",\n"
|
1051
|
+
" \"profile_link_color\": \"0084B4\",\n"
|
1052
|
+
" \"is_translator\": false,\n",
|
1053
|
+
" \"follow_request_sent\": null,\n"
|
1054
|
+
" \"id_str\": \"268522712\",\n"
|
1055
|
+
" \"url\": null,\n"
|
1056
|
+
" \"default_profile\": true,\n"
|
1057
|
+
" \"favourites_count\": 0,\n"
|
1058
|
+
" \"contributors_enabled\": false,\n"
|
1059
|
+
" \"utc_offset\": null,\n"
|
1060
|
+
" \"id\": 268522712,\n"
|
1061
|
+
" \"profile_use_background_image\": true,\n"
|
1062
|
+
" \"listed_count\": 0,\n"
|
1063
|
+
" \"lang\": \"en\",\n"
|
1064
|
+
" \"protected\": false,\n"
|
1065
|
+
" \"followers_count\": 33,\n"
|
1066
|
+
" \"profile_text_color\": \"333333\",\n"
|
1067
|
+
" \"profile_background_color\": \"C0DEED\",\n"
|
1068
|
+
" \"time_zone\": null,\n"
|
1069
|
+
" \"geo_enabled\": true,\n"
|
1070
|
+
" \"notifications\": null,\n"
|
1071
|
+
" \"description\": \"Sup! I am the back up singer and electric guitarist in the band Your Broken Innocence. U jealous? ps. i luv Short Stack!\",\n"
|
1072
|
+
" \"verified\": false,\n"
|
1073
|
+
" \"profile_background_image_url\": \"http:\\/\\/a3.twimg.com\\/a\\/1303425044\\/images\\/themes\\/theme1\\/bg.png\",\n"
|
1074
|
+
" \"default_profile_image\": false,\n"
|
1075
|
+
" \"statuses_count\": 115,\n"
|
1076
|
+
" \"friends_count\": 57,\n"
|
1077
|
+
" \"screen_name\": \"GraceShortStack\",\n"
|
1078
|
+
" \"following\": null,\n"
|
1079
|
+
" \"show_all_inline_media\": false\n"
|
1080
|
+
" },\n"
|
1081
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\n"
|
1082
|
+
" \"in_reply_to_screen_name\": null,\n"
|
1083
|
+
" \"in_reply_to_status_id\": null\n"
|
1084
|
+
" },\n"
|
1085
|
+
" {\n"
|
1086
|
+
" \n"
|
1087
|
+
" \"coordinates\": null,\n"
|
1088
|
+
" \"created_at\": \"Sun Apr 24 13:18:42 +0000 2011\",\n"
|
1089
|
+
" \"favorited\": false,\n"
|
1090
|
+
" \"truncated\": false,\n"
|
1091
|
+
" \"id_str\": \"62143429689344000\",\n"
|
1092
|
+
" \"in_reply_to_user_id_str\": null,\n"
|
1093
|
+
" \"contributors\": null,\n"
|
1094
|
+
" \"text\": \"RT @eireen37: Abis makan sop+sate kambing di kedai Ahmad Dani,recomended :q\",\n"
|
1095
|
+
" \"id\": 62143429689344000,\n"
|
1096
|
+
" \"in_reply_to_status_id_str\": null,\n"
|
1097
|
+
" \"retweet_count\": 0,\n"
|
1098
|
+
" \"geo\": null,\n",
|
1099
|
+
" \"retweeted\": false,\n"
|
1100
|
+
" \"in_reply_to_user_id\": null,\n"
|
1101
|
+
" \"place\": null,\n"
|
1102
|
+
" \"user\": {\n"
|
1103
|
+
" \"name\": \"Yuki Endah\",\n"
|
1104
|
+
" \"profile_sidebar_border_color\": \"ffadff\",\n"
|
1105
|
+
" \"profile_background_tile\": true,\n"
|
1106
|
+
" \"profile_sidebar_fill_color\": \"e645db\",\n"
|
1107
|
+
" \"profile_image_url\": \"http:\\/\\/a2.twimg.com\\/profile_images\\/1308637078\\/Copy_of_Copy_of_DSC01894_normal.jpg\",\n"
|
1108
|
+
" \"created_at\": \"Wed Jul 15 04:39:42 +0000 2009\",\n"
|
1109
|
+
" \"location\": \"Samarinda, Indonesia\",\n"
|
1110
|
+
" \"profile_link_color\": \"94039c\",\n"
|
1111
|
+
" \"is_translator\": false,\n"
|
1112
|
+
" \"follow_request_sent\": null,\n"
|
1113
|
+
" \"id_str\": \"56926527\",\n"
|
1114
|
+
" \"url\": \"http:\\/\\/id-id.facebook.com\\/people\\/Yuki-Endah\\/1646561051\",\n"
|
1115
|
+
" \"default_profile\": false,\n"
|
1116
|
+
" \"favourites_count\": 39,\n"
|
1117
|
+
" \"contributors_enabled\": false,\n"
|
1118
|
+
" \"utc_offset\": 28800,\n"
|
1119
|
+
" \"id\": 56926527,\n"
|
1120
|
+
" \"profile_use_background_image\": true,\n"
|
1121
|
+
" \"listed_count\": 2,\n"
|
1122
|
+
" \"lang\": \"en\",\n"
|
1123
|
+
" \"protected\": false,\n"
|
1124
|
+
" \"followers_count\": 377,\n"
|
1125
|
+
" \"profile_text_color\": \"a30c64\",\n"
|
1126
|
+
" \"profile_background_color\": \"fafafa\",\n"
|
1127
|
+
" \"time_zone\": \"Kuala Lumpur\",\n"
|
1128
|
+
" \"geo_enabled\": true,\n"
|
1129
|
+
" \"notifications\": null,\n"
|
1130
|
+
" \"description\": \"I LOVE MUSIC. Anytime I want, I will take my time & I will take my earphone to listening my favourite songs..\\r\\n\",\n"
|
1131
|
+
" \"verified\": false,\n"
|
1132
|
+
" \"profile_background_image_url\": \"http:\\/\\/a1.twimg.com\\/profile_background_images\\/175641717\\/Sakura_1.jpg\",\n"
|
1133
|
+
" \"default_profile_image\": false,\n"
|
1134
|
+
" \"statuses_count\": 5731,\n"
|
1135
|
+
" \"friends_count\": 197,\n"
|
1136
|
+
" \"screen_name\": \"yuki_endah\",\n"
|
1137
|
+
" \"following\": null,\n"
|
1138
|
+
" \"show_all_inline_media\": true\n"
|
1139
|
+
" },\n"
|
1140
|
+
" \"source\": \"\\u003Ca href=\\\"http:\\/\\/www.snaptu.com\\\" rel=\\\"nofollow\\\"\\u003ESnaptu\\u003C\\/a\\u003E\",\n"
|
1141
|
+
" \"in_reply_to_screen_name\": null,\n"
|
1142
|
+
" \"in_reply_to_status_id\": null\n"
|
1143
|
+
" }\n"
|
1144
|
+
"]\n",
|
1145
|
+
NULL
|
1146
|
+
};
|
1147
|
+
|
1148
|
+
/* recent flickr photos on monday morning */
|
1149
|
+
const char * doc2[] = {
|
1150
|
+
"{\n"
|
1151
|
+
" \"title\": \"Uploads from everyone\",\n"
|
1152
|
+
" \"link\": \"http://www.flickr.com/photos/\",\n"
|
1153
|
+
" \"description\": \"\",\n"
|
1154
|
+
" \"modified\": \"2011-04-25T11:41:03Z\",\n"
|
1155
|
+
" \"generator\": \"http://www.flickr.com/\",\n"
|
1156
|
+
" \"items\": [\n"
|
1157
|
+
" {\n"
|
1158
|
+
" \"title\": \"sylhet 963\",\n"
|
1159
|
+
" \"link\": \"http://www.flickr.com/photos/saifmanna/5652906125/\",\n"
|
1160
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5268/5652906125_c113213248_m.jpg\"},\n"
|
1161
|
+
" \"date_taken\": \"2011-04-09T04:31:45-08:00\",\n"
|
1162
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/saifmanna/\\\">saifmanna<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/saifmanna/5652906125/\\\" title=\\\"sylhet 963\\\"><img src=\\\"http://farm6.static.flickr.com/5268/5652906125_c113213248_m.jpg\\\" width=\\\"240\\\" height=\\\"159\\\" alt=\\\"sylhet 963\\\" /><\\/a><\\/p> \",\n"
|
1163
|
+
" \"published\": \"2011-04-25T11:41:03Z\",\n"
|
1164
|
+
" \"author\": \"nobody@flickr.com (saifmanna)\",\n"
|
1165
|
+
" \"author_id\": \"9712792@N05\",\n"
|
1166
|
+
" \"tags\": \"sylhet\"\n"
|
1167
|
+
" },\n"
|
1168
|
+
" {\n"
|
1169
|
+
" \"title\": \"DSCN7238\",\n"
|
1170
|
+
" \"link\": \"http://www.flickr.com/photos/54062330@N03/5652906139/\",\n"
|
1171
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5182/5652906139_550aa6702f_m.jpg\"},\n"
|
1172
|
+
" \"date_taken\": \"2011-04-25T12:26:17-08:00\",\n"
|
1173
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/54062330@N03/\\\">acvаrelium<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/54062330@N03/5652906139/\\\" title=\\\"DSCN7238\\\"><img src=\\\"http://farm6.static.flickr.com/5182/5652906139_550aa6702f_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"DSCN7238\\\" /><\\/a><\\/p> \",\n"
|
1174
|
+
" \"published\": \"2011-04-25T11:41:03Z\",\n"
|
1175
|
+
" \"author\": \"nobody@flickr.com (acvаrelium)\",\n"
|
1176
|
+
" \"author_id\": \"54062330@N03\",\n"
|
1177
|
+
" \"tags\": \"\"\n"
|
1178
|
+
" },\n"
|
1179
|
+
" {\n"
|
1180
|
+
" \"title\": \"Siena-014\",\n"
|
1181
|
+
" \"link\": \"http://www.flickr.com/photos/katharinaegarter/5652906201/\",\n"
|
1182
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5062/5652906201_c7307b23e1_m.jpg\"},\n"
|
1183
|
+
" \"date_taken\": \"2011-04-22T12:51:58-08:00\",\n"
|
1184
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/katharinaegarter/\\\">Katharina Egarter<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/katharinaegarter/5652906201/\\\" title=\\\"Siena-014\\\"><img src=\\\"http://farm6.static.flickr.com/5062/5652906201_c7307b23e1_m.jpg\\\" width=\\\"180\\\" height=\\\"240\\\" alt=\\\"Siena-014\\\" /><\\/a><\\/p> \",\n"
|
1185
|
+
" \"published\": \"2011-04-25T11:41:05Z\",\n"
|
1186
|
+
" \"author\": \"nobody@flickr.com (Katharina Egarter)\",\n",
|
1187
|
+
" \"author_id\": \"51712997@N04\",\n"
|
1188
|
+
" \"tags\": \"\"\n"
|
1189
|
+
" },\n"
|
1190
|
+
" {\n"
|
1191
|
+
" \"title\": \"avd-1.jpg\",\n"
|
1192
|
+
" \"link\": \"http://www.flickr.com/photos/arjanvandam/5652906213/\",\n"
|
1193
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5066/5652906213_9ed963d069_m.jpg\"},\n"
|
1194
|
+
" \"date_taken\": \"2011-04-25T13:41:06-08:00\",\n"
|
1195
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/arjanvandam/\\\">Arjan van Dam<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/arjanvandam/5652906213/\\\" title=\\\"avd-1.jpg\\\"><img src=\\\"http://farm6.static.flickr.com/5066/5652906213_9ed963d069_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"avd-1.jpg\\\" /><\\/a><\\/p> \",\n"
|
1196
|
+
" \"published\": \"2011-04-25T11:41:06Z\",\n"
|
1197
|
+
" \"author\": \"nobody@flickr.com (Arjan van Dam)\",\n"
|
1198
|
+
" \"author_id\": \"44451778@N06\",\n"
|
1199
|
+
" \"tags\": \"\"\n"
|
1200
|
+
" },\n"
|
1201
|
+
" {\n"
|
1202
|
+
" \"title\": \"IMG_4146\",\n"
|
1203
|
+
" \"link\": \"http://www.flickr.com/photos/14414603@N08/5652906245/\",\n"
|
1204
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5148/5652906245_8e9717e8c3_m.jpg\"},\n"
|
1205
|
+
" \"date_taken\": \"2011-04-13T03:53:52-08:00\",\n"
|
1206
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/14414603@N08/\\\">A :-)<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/14414603@N08/5652906245/\\\" title=\\\"IMG_4146\\\"><img src=\\\"http://farm6.static.flickr.com/5148/5652906245_8e9717e8c3_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"IMG_4146\\\" /><\\/a><\\/p> \",\n"
|
1207
|
+
" \"published\": \"2011-04-25T11:41:06Z\",\n"
|
1208
|
+
" \"author\": \"nobody@flickr.com (A :-))\",\n"
|
1209
|
+
" \"author_id\": \"14414603@N08\",\n"
|
1210
|
+
" \"tags\": \"\"\n"
|
1211
|
+
" },\n"
|
1212
|
+
" {\n"
|
1213
|
+
" \"title\": \"550907i20020624_13\",\n"
|
1214
|
+
" \"link\": \"http://www.flickr.com/photos/ltppims/5652906275/\",\n"
|
1215
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5022/5652906275_467d6f36ed_m.jpg\"},\n"
|
1216
|
+
" \"date_taken\": \"2003-02-06T09:14:11-08:00\",\n"
|
1217
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/ltppims/\\\">ltppims<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/ltppims/5652906275/\\\" title=\\\"550907i20020624_13\\\"><img src=\\\"http://farm6.static.flickr.com/5022/5652906275_467d6f36ed_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"550907i20020624_13\\\" /><\\/a><\\/p> <p>550907i20020624_13<\\/p>\",\n"
|
1218
|
+
" \"published\": \"2011-04-25T11:41:08Z\",\n"
|
1219
|
+
" \"author\": \"nobody@flickr.com (ltppims)\",\n"
|
1220
|
+
" \"author_id\": \"61401047@N03\",\n"
|
1221
|
+
" \"tags\": \"550907i2002062413\"\n"
|
1222
|
+
" },\n"
|
1223
|
+
" {\n"
|
1224
|
+
" \"title\": \"P4193424\",\n"
|
1225
|
+
" \"link\": \"http://www.flickr.com/photos/aifromla/5652906305/\",\n"
|
1226
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5266/5652906305_a72c1050c4_m.jpg\"},\n"
|
1227
|
+
" \"date_taken\": \"2011-04-25T04:41:08-08:00\",\n",
|
1228
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/aifromla/\\\">愛 from LA<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/aifromla/5652906305/\\\" title=\\\"P4193424\\\"><img src=\\\"http://farm6.static.flickr.com/5266/5652906305_a72c1050c4_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"P4193424\\\" /><\\/a><\\/p> \",\n"
|
1229
|
+
" \"published\": \"2011-04-25T11:41:08Z\",\n"
|
1230
|
+
" \"author\": \"nobody@flickr.com (愛 from LA)\",\n"
|
1231
|
+
" \"author_id\": \"60647869@N06\",\n"
|
1232
|
+
" \"tags\": \"\"\n"
|
1233
|
+
" },\n"
|
1234
|
+
" {\n"
|
1235
|
+
" \"title\": \"In need of a wash but not on the last day Midland Red D9 on the last day of service 31,Dec,1979, in Leicester photo lifted from a super 8 film\",\n"
|
1236
|
+
" \"link\": \"http://www.flickr.com/photos/transport_photos/5652906307/\",\n"
|
1237
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5189/5652906307_e5da6d2d29_m.jpg\"},\n"
|
1238
|
+
" \"date_taken\": \"2011-04-25T12:41:08-08:00\",\n"
|
1239
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/transport_photos/\\\">Horsencart<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/transport_photos/5652906307/\\\" title=\\\"In need of a wash but not on the last day Midland Red D9 on the last day of service 31,Dec,1979, in Leicester photo lifted from a super 8 film\\\"><img src=\\\"http://farm6.static.flickr.com/5189/5652906307_e5da6d2d29_m.jpg\\\" width=\\\"240\\\" height=\\\"135\\\" alt=\\\"In need of a wash but not on the last day Midland Red D9 on the last day of service 31,Dec,1979, in Leicester photo lifted from a super 8 film\\\" /><\\/a><\\/p> \",\n"
|
1240
|
+
" \"published\": \"2011-04-25T11:41:08Z\",\n"
|
1241
|
+
" \"author\": \"nobody@flickr.com (Horsencart)\",\n"
|
1242
|
+
" \"author_id\": \"36803579@N07\",\n"
|
1243
|
+
" \"tags\": \"\"\n"
|
1244
|
+
" },\n"
|
1245
|
+
" {\n"
|
1246
|
+
" \"title\": \"11182862509\",\n"
|
1247
|
+
" \"link\": \"http://www.flickr.com/photos/58240971@N06/5652906329/\",\n"
|
1248
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5188/5652906329_0cebae6d65_m.jpg\"},\n"
|
1249
|
+
" \"date_taken\": \"2011-04-25T04:41:09-08:00\",\n"
|
1250
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/58240971@N06/\\\">caciousclei<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/58240971@N06/5652906329/\\\" title=\\\"11182862509\\\"><img src=\\\"http://farm6.static.flickr.com/5188/5652906329_0cebae6d65_m.jpg\\\" width=\\\"180\\\" height=\\\"240\\\" alt=\\\"11182862509\\\" /><\\/a><\\/p> <p>ღneslyluka ni kennethocuteღ<\\/p>\",\n"
|
1251
|
+
" \"published\": \"2011-04-25T11:41:09Z\",\n"
|
1252
|
+
" \"author\": \"nobody@flickr.com (caciousclei)\",\n"
|
1253
|
+
" \"author_id\": \"58240971@N06\",\n"
|
1254
|
+
" \"tags\": \"\"\n"
|
1255
|
+
" },\n"
|
1256
|
+
" {\n"
|
1257
|
+
" \"title\": \"Resting in the woods\",\n"
|
1258
|
+
" \"link\": \"http://www.flickr.com/photos/benrobson2999/5653475856/\",\n"
|
1259
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5301/5653475856_550aa6702f_m.jpg\"},\n"
|
1260
|
+
" \"date_taken\": \"2011-04-24T14:23:43-08:00\",\n"
|
1261
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/benrobson2999/\\\">benrobson2999<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/benrobson2999/5653475856/\\\" title=\\\"Resting in the woods\\\"><img src=\\\"http://farm6.static.flickr.com/5301/5653475856_550aa6702f_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"Resting in the woods\\\" /><\\/a><\\/p> \",\n",
|
1262
|
+
" \"published\": \"2011-04-25T11:41:03Z\",\n"
|
1263
|
+
" \"author\": \"nobody@flickr.com (benrobson2999)\",\n"
|
1264
|
+
" \"author_id\": \"59245229@N04\",\n"
|
1265
|
+
" \"tags\": \"\"\n"
|
1266
|
+
" },\n"
|
1267
|
+
" {\n"
|
1268
|
+
" \"title\": \"IMG_4696\",\n"
|
1269
|
+
" \"link\": \"http://www.flickr.com/photos/feltedpleasure/5653475918/\",\n"
|
1270
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5188/5653475918_a06fd2400c_m.jpg\"},\n"
|
1271
|
+
" \"date_taken\": \"2011-04-25T08:05:11-08:00\",\n"
|
1272
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/feltedpleasure/\\\">FeltedPleasure<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/feltedpleasure/5653475918/\\\" title=\\\"IMG_4696\\\"><img src=\\\"http://farm6.static.flickr.com/5188/5653475918_a06fd2400c_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"IMG_4696\\\" /><\\/a><\\/p> \",\n"
|
1273
|
+
" \"published\": \"2011-04-25T11:41:04Z\",\n"
|
1274
|
+
" \"author\": \"nobody@flickr.com (FeltedPleasure)\",\n"
|
1275
|
+
" \"author_id\": \"41967161@N03\",\n"
|
1276
|
+
" \"tags\": \"\"\n"
|
1277
|
+
" },\n"
|
1278
|
+
" {\n"
|
1279
|
+
" \"title\": \"DSC04271\",\n"
|
1280
|
+
" \"link\": \"http://www.flickr.com/photos/ze_ero/5653475956/\",\n"
|
1281
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5144/5653475956_31da27478a_m.jpg\"},\n"
|
1282
|
+
" \"date_taken\": \"2011-04-17T09:45:21-08:00\",\n"
|
1283
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/ze_ero/\\\">ze_ero<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/ze_ero/5653475956/\\\" title=\\\"DSC04271\\\"><img src=\\\"http://farm6.static.flickr.com/5144/5653475956_31da27478a_m.jpg\\\" width=\\\"240\\\" height=\\\"135\\\" alt=\\\"DSC04271\\\" /><\\/a><\\/p> \",\n"
|
1284
|
+
" \"published\": \"2011-04-25T11:41:05Z\",\n"
|
1285
|
+
" \"author\": \"nobody@flickr.com (ze_ero)\",\n"
|
1286
|
+
" \"author_id\": \"49631749@N06\",\n"
|
1287
|
+
" \"tags\": \"japan kyoto arashiyama 京都 日本 嵐山 kansai 関西\"\n"
|
1288
|
+
" },\n"
|
1289
|
+
" {\n"
|
1290
|
+
" \"title\": \"DSC07923\",\n"
|
1291
|
+
" \"link\": \"http://www.flickr.com/photos/lamolda/5653475962/\",\n"
|
1292
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5063/5653475962_8fc2b9f460_m.jpg\"},\n"
|
1293
|
+
" \"date_taken\": \"2011-04-24T22:44:50-08:00\",\n"
|
1294
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/lamolda/\\\">lamolda<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/lamolda/5653475962/\\\" title=\\\"DSC07923\\\"><img src=\\\"http://farm6.static.flickr.com/5063/5653475962_8fc2b9f460_m.jpg\\\" width=\\\"213\\\" height=\\\"240\\\" alt=\\\"DSC07923\\\" /><\\/a><\\/p> \",\n"
|
1295
|
+
" \"published\": \"2011-04-25T11:41:05Z\",\n"
|
1296
|
+
" \"author\": \"nobody@flickr.com (lamolda)\",\n"
|
1297
|
+
" \"author_id\": \"60466736@N02\",\n"
|
1298
|
+
" \"tags\": \"\"\n"
|
1299
|
+
" },\n"
|
1300
|
+
" {\n"
|
1301
|
+
" \"title\": \"DSC00773\",\n",
|
1302
|
+
" \"link\": \"http://www.flickr.com/photos/zhanghao/5653475998/\",\n"
|
1303
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5141/5653475998_ef1ee0de1e_m.jpg\"},\n"
|
1304
|
+
" \"date_taken\": \"2006-12-23T15:36:57-08:00\",\n"
|
1305
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/zhanghao/\\\">贰月<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/zhanghao/5653475998/\\\" title=\\\"DSC00773\\\"><img src=\\\"http://farm6.static.flickr.com/5141/5653475998_ef1ee0de1e_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"DSC00773\\\" /><\\/a><\\/p> \",\n"
|
1306
|
+
" \"published\": \"2011-04-25T11:41:06Z\",\n"
|
1307
|
+
" \"author\": \"nobody@flickr.com (贰月)\",\n"
|
1308
|
+
" \"author_id\": \"32806588@N00\",\n"
|
1309
|
+
" \"tags\": \"日本 新宿御苑 東京 出差\"\n"
|
1310
|
+
" },\n"
|
1311
|
+
" {\n"
|
1312
|
+
" \"title\": \"DSCF3051\",\n"
|
1313
|
+
" \"link\": \"http://www.flickr.com/photos/30045765@N07/5653476064/\",\n"
|
1314
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5305/5653476064_c55cd687a1_m.jpg\"},\n"
|
1315
|
+
" \"date_taken\": \"2011-04-25T23:58:27-08:00\",\n"
|
1316
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/30045765@N07/\\\">jamerco<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/30045765@N07/5653476064/\\\" title=\\\"DSCF3051\\\"><img src=\\\"http://farm6.static.flickr.com/5305/5653476064_c55cd687a1_m.jpg\\\" width=\\\"240\\\" height=\\\"163\\\" alt=\\\"DSCF3051\\\" /><\\/a><\\/p> \",\n"
|
1317
|
+
" \"published\": \"2011-04-25T11:41:08Z\",\n"
|
1318
|
+
" \"author\": \"nobody@flickr.com (jamerco)\",\n"
|
1319
|
+
" \"author_id\": \"30045765@N07\",\n"
|
1320
|
+
" \"tags\": \"\"\n"
|
1321
|
+
" },\n"
|
1322
|
+
" {\n"
|
1323
|
+
" \"title\": \"DSC_0440\",\n"
|
1324
|
+
" \"link\": \"http://www.flickr.com/photos/carolineteselle/5653476082/\",\n"
|
1325
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5023/5653476082_3884a09f91_m.jpg\"},\n"
|
1326
|
+
" \"date_taken\": \"2011-04-20T19:29:33-08:00\",\n"
|
1327
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/carolineteselle/\\\">ecteselle<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/carolineteselle/5653476082/\\\" title=\\\"DSC_0440\\\"><img src=\\\"http://farm6.static.flickr.com/5023/5653476082_3884a09f91_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"DSC_0440\\\" /><\\/a><\\/p> \",\n"
|
1328
|
+
" \"published\": \"2011-04-25T11:41:08Z\",\n"
|
1329
|
+
" \"author\": \"nobody@flickr.com (ecteselle)\",\n"
|
1330
|
+
" \"author_id\": \"57944678@N08\",\n"
|
1331
|
+
" \"tags\": \"\"\n"
|
1332
|
+
" },\n"
|
1333
|
+
" {\n"
|
1334
|
+
" \"title\": \"IMG_2301\",\n"
|
1335
|
+
" \"link\": \"http://www.flickr.com/photos/marcolympics/5653476084/\",\n"
|
1336
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5307/5653476084_00abc74e08_m.jpg\"},\n"
|
1337
|
+
" \"date_taken\": \"2010-12-14T11:52:23-08:00\",\n"
|
1338
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/marcolympics/\\\">mbk28<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/marcolympics/5653476084/\\\" title=\\\"IMG_2301\\\"><img src=\\\"http://farm6.static.flickr.com/5307/5653476084_00abc74e08_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"IMG_2301\\\" /><\\/a><\\/p> \",\n"
|
1339
|
+
" \"published\": \"2011-04-25T11:41:08Z\",\n",
|
1340
|
+
" \"author\": \"nobody@flickr.com (mbk28)\",\n"
|
1341
|
+
" \"author_id\": \"16181899@N00\",\n"
|
1342
|
+
" \"tags\": \"\"\n"
|
1343
|
+
" },\n"
|
1344
|
+
" {\n"
|
1345
|
+
" \"title\": \"shot_1303650234358\",\n"
|
1346
|
+
" \"link\": \"http://www.flickr.com/photos/mirtedevries/5653476086/\",\n"
|
1347
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5145/5653476086_cb998056eb_m.jpg\"},\n"
|
1348
|
+
" \"date_taken\": \"2011-04-24T15:03:54-08:00\",\n"
|
1349
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/mirtedevries/\\\">Krullenbol1987<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/mirtedevries/5653476086/\\\" title=\\\"shot_1303650234358\\\"><img src=\\\"http://farm6.static.flickr.com/5145/5653476086_cb998056eb_m.jpg\\\" width=\\\"207\\\" height=\\\"240\\\" alt=\\\"shot_1303650234358\\\" /><\\/a><\\/p> \",\n"
|
1350
|
+
" \"published\": \"2011-04-25T11:41:08Z\",\n"
|
1351
|
+
" \"author\": \"nobody@flickr.com (Krullenbol1987)\",\n"
|
1352
|
+
" \"author_id\": \"61985194@N03\",\n"
|
1353
|
+
" \"tags\": \"\"\n"
|
1354
|
+
" },\n"
|
1355
|
+
" {\n"
|
1356
|
+
" \"title\": \"GWP Rochefort 2011 De Leerboom (602) (Small)\",\n"
|
1357
|
+
" \"link\": \"http://www.flickr.com/photos/26703364@N05/5653476088/\",\n"
|
1358
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5307/5653476088_3fc497eea8_m.jpg\"},\n"
|
1359
|
+
" \"date_taken\": \"2011-03-28T09:05:21-08:00\",\n"
|
1360
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/26703364@N05/\\\">bertrand.demiddeleer<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/26703364@N05/5653476088/\\\" title=\\\"GWP Rochefort 2011 De Leerboom (602) (Small)\\\"><img src=\\\"http://farm6.static.flickr.com/5307/5653476088_3fc497eea8_m.jpg\\\" width=\\\"240\\\" height=\\\"180\\\" alt=\\\"GWP Rochefort 2011 De Leerboom (602) (Small)\\\" /><\\/a><\\/p> \",\n"
|
1361
|
+
" \"published\": \"2011-04-25T11:41:09Z\",\n"
|
1362
|
+
" \"author\": \"nobody@flickr.com (bertrand.demiddeleer)\",\n"
|
1363
|
+
" \"author_id\": \"26703364@N05\",\n"
|
1364
|
+
" \"tags\": \"\"\n"
|
1365
|
+
" },\n"
|
1366
|
+
" {\n"
|
1367
|
+
" \"title\": \"IMG_3650\",\n"
|
1368
|
+
" \"link\": \"http://www.flickr.com/photos/fatpoppadaddys/5653476104/\",\n"
|
1369
|
+
" \"media\": {\"m\":\"http://farm6.static.flickr.com/5183/5653476104_462f44a3e5_m.jpg\"},\n"
|
1370
|
+
" \"date_taken\": \"2011-04-22T00:26:40-08:00\",\n"
|
1371
|
+
" \"description\": \" <p><a href=\\\"http://www.flickr.com/people/fatpoppadaddys/\\\">fatpoppadaddys<\\/a> posted a photo:<\\/p> <p><a href=\\\"http://www.flickr.com/photos/fatpoppadaddys/5653476104/\\\" title=\\\"IMG_3650\\\"><img src=\\\"http://farm6.static.flickr.com/5183/5653476104_462f44a3e5_m.jpg\\\" width=\\\"240\\\" height=\\\"160\\\" alt=\\\"IMG_3650\\\" /><\\/a><\\/p> \",\n"
|
1372
|
+
" \"published\": \"2011-04-25T11:41:09Z\",\n"
|
1373
|
+
" \"author\": \"nobody@flickr.com (fatpoppadaddys)\",\n"
|
1374
|
+
" \"author_id\": \"28382183@N04\",\n"
|
1375
|
+
" \"tags\": \"efs1855mmf3556\"\n"
|
1376
|
+
" }\n"
|
1377
|
+
" ]\n"
|
1378
|
+
"}\n",
|
1379
|
+
NULL
|
1380
|
+
};
|
1381
|
+
|
1382
|
+
/* commits on the yajl 2.x branch */
|
1383
|
+
const char * doc3[] = {
|
1384
|
+
"{\"commits\":[{\"parents\":[{\"id\":\"1b9995a0a341096afdf3e13a70f2185e438c4452\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/0d5000f0ad0ef9d94bd2bbcf2188b813a60d452a\",\"id\":\"0d5000f0ad0ef9d94bd2bbcf2188b813a60d452a\",\"committed_date\":\"2011-04-24T11:48:34-07:00\",\"authored_date\":\"2011-04-24T11:48:34-07:00\",\"message\":\"update docs for perf gains with yajl_dont_validate_strings\",\"tree\":\"af70481aad00b4ce9e2f23cdd23e58d735c50072\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"453aa706cc86425bea35195e454f80941a7fbc4a\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/1b9995a0a341096afdf3e13a70f2185e438c4452\",\"id\":\"1b9995a0a341096afdf3e13a70f2185e438c4452\",\"committed_date\":\"2011-04-24T07:10:58-07:00\",\"authored_date\":\"2011-04-24T07:10:58-07:00\",\"message\":\"first pass at a little in-tree perf test for a stable way to quantify optimization efforts\",\"tree\":\"39884f09d59312dbeea4a7ab7d46a56320cb986c\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"25133e5508b979fdf6814832d4355f46bd26db43\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/453aa706cc86425bea35195e454f80941a7fbc4a\",\"id\":\"453aa706cc86425bea35195e454f80941a7fbc4a\",\"committed_date\":\"2011-04-24T07:06:14-07:00\",\"authored_date\":\"2011-04-24T07:06:14-07:00\",\"message\":\"fix debug compile error\",\"tree\":\"e10ab42ec2577bc19163222f445532958fe51f3b\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"b36a8bd294cbeeaab7149402f369fdd9be95aec1\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/25133e5508b979fdf6814832d4355f46bd26db43\",\"id\":\"25133e5508b979fdf6814832d4355f46bd26db43\",\"committed_date\":\"2011-04-23T12:42:19-07:00\",\"authored_date\":\"2011-04-23T12:42:19-07:00\",\"message\":\"documentation updates\",\"tree\":\"e49e7296c1f82f78f359636ce6aa600e7c3ef73a\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"9bf2ad882bb98710949b1e3262bddff67845bb87\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/b36a8bd294cbeeaab7149402f369fdd9be95aec1\",\"id\":\"b36a8bd294cbeeaab7149402f369fdd9be95aec1\",\"committed_date\":\"2011-04-23T10:17:35-07:00\",\"authored_date\":\"2011-04-23T10:17:35-07:00\",\"message\":\"update documentation and tighten API for yajl_tree.h, inline several structures so a reader can grok the structure in hopefully one pass without jumping all over the file.\",\"tree\":\"7e2ab759926148ad03d1931c8a768abe5301bff9\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"69a9c263b5e3c2019dc258d3e75c95ad7267ea16\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/9bf2ad882bb98710949b1e3262bddff67845bb87\",\"id\":\"9bf2ad882bb98710949b1e3262bddff67845bb87\",\"committed_date\":\"2011-04-22T18:21:52-07:00\",\"authored_date\":\"2011-04-22T18:21:52-07:00\",\"message\":\"move unnec. includes out of public api, more yajl_type propogation\",\"tree\":\"f30c2f4962abb020a64d0bc4773db1b704053b1d\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"d24690ee5cc09ea2cf6bbd152f2627e8ee1986e7\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/69a9c263b5e3c2019dc258d3e75c95ad7267ea16\",\"id\":\"69a9c263b5e3c2019dc258d3e75c95ad7267ea16\",\"committed_date\":\"2011-04-22T18:17:44-07:00\",\"authored_date\":\"2011",
|
1385
|
+
"-04-22T18:17:44-07:00\",\"message\":\"change types from preprocessor macros to an enum, add yajl_t_any for use with yajl_tree_get()\",\"tree\":\"46f88aa049c3016e68a93463ff265fcdd38d879a\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"8e5d0b15415c6422365f6ececff5190499b43bd5\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/d24690ee5cc09ea2cf6bbd152f2627e8ee1986e7\",\"id\":\"d24690ee5cc09ea2cf6bbd152f2627e8ee1986e7\",\"committed_date\":\"2011-04-22T18:11:55-07:00\",\"authored_date\":\"2011-04-22T18:11:55-07:00\",\"message\":\"reduce output noise during testing\",\"tree\":\"c92162f0875998309e33af415510db3ecd592559\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"dd18f6182e58bb81368b30d33262e58fca7a532c\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/8e5d0b15415c6422365f6ececff5190499b43bd5\",\"id\":\"8e5d0b15415c6422365f6ececff5190499b43bd5\",\"committed_date\":\"2011-04-22T16:05:38-07:00\",\"authored_date\":\"2011-04-22T16:05:38-07:00\",\"message\":\"fix compiler warning. he's right.\",\"tree\":\"b7350153b2d9ba99e83540a0caaca73b6ac8367f\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"aedaa9e449e03af866c0e594014cd7e78dc7c98b\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/dd18f6182e58bb81368b30d33262e58fca7a532c\",\"id\":\"dd18f6182e58bb81368b30d33262e58fca7a532c\",\"committed_date\":\"2011-04-22T15:52:23-07:00\",\"authored_date\":\"2011-04-22T15:52:23-07:00\",\"message\":\"add a couple convenience routines for dealing with numbers, more copious yajl_tree reformatting\",\"tree\":\"e7767ad0ded6924ee6d9af4b59842148f9409cd6\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"baf9c39797fce24b89398a3e94ff27ae4074867a\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/aedaa9e449e03af866c0e594014cd7e78dc7c98b\",\"id\":\"aedaa9e449e03af866c0e594014cd7e78dc7c98b\",\"committed_date\":\"2011-04-22T15:38:55-07:00\",\"authored_date\":\"2011-04-22T15:38:55-07:00\",\"message\":\"object keys should just be bare strings, the indirection is useless\",\"tree\":\"73dc7fb46872a78d6516fadb2197519d8d6ac3f0\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"742a1cd7c66d64d45e25a016e506d555834f087b\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/baf9c39797fce24b89398a3e94ff27ae4074867a\",\"id\":\"baf9c39797fce24b89398a3e94ff27ae4074867a\",\"committed_date\":\"2011-04-22T15:32:59-07:00\",\"authored_date\":\"2011-04-22T15:32:59-07:00\",\"message\":\"be terse & piss all over that tree.\",\"tree\":\"6103a99867b21a5d844bb84eb49e84c4f393d1ec\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"86f5093024d434eb989c4d6c7ad657a31f5f4bf1\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/742a1cd7c66d64d45e25a016e506d555834f087b\",\"id\":\"742a1cd7c66d64d45e25a016e506d555834f087b\",\"committed_date\":\"2011-04-22T14:53:32-07:00\",\"authored_date\":\"2011-04-22T14:53:32-07:00\",\"message\":\"cosmetic, indention and code formatting for yajl_tree\",\"tree\":\"0c883d58cfd69bfaba84a54be4912dd2edb86095\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"b53a6cb3ee91d2a7765bff88e41089ce17ec7b4a\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/86f509302",
|
1386
|
+
"4d434eb989c4d6c7ad657a31f5f4bf1\",\"id\":\"86f5093024d434eb989c4d6c7ad657a31f5f4bf1\",\"committed_date\":\"2011-04-22T14:47:44-07:00\",\"authored_date\":\"2011-04-22T14:47:44-07:00\",\"message\":\"remove a useless level of indirection for strings\",\"tree\":\"f734163b55a78c41ca157cc90096fe0db3152737\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"e976b21748c5fd8b6ca4d28470d8a70f69890ecd\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/b53a6cb3ee91d2a7765bff88e41089ce17ec7b4a\",\"id\":\"b53a6cb3ee91d2a7765bff88e41089ce17ec7b4a\",\"committed_date\":\"2011-04-22T14:43:29-07:00\",\"authored_date\":\"2011-04-22T14:43:29-07:00\",\"message\":\"ISC license the configuration file parser example\",\"tree\":\"fe9bea332cf4a1ea8c3843035abddf64ba2a501d\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"a03bd0c9c61092f664c97a51b1b0262f8499e21b\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/e976b21748c5fd8b6ca4d28470d8a70f69890ecd\",\"id\":\"e976b21748c5fd8b6ca4d28470d8a70f69890ecd\",\"committed_date\":\"2011-04-22T14:43:13-07:00\",\"authored_date\":\"2011-04-22T14:43:13-07:00\",\"message\":\"relicense florian's contribution ISC, (still pending his approval, but I'm an optimist)\",\"tree\":\"1b4fbbf98af3ee641692e6f0ba045e8343ac2386\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"668e787b1cdba118d73efc233e8a48306c2033d6\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/a03bd0c9c61092f664c97a51b1b0262f8499e21b\",\"id\":\"a03bd0c9c61092f664c97a51b1b0262f8499e21b\",\"committed_date\":\"2011-04-22T14:40:45-07:00\",\"authored_date\":\"2011-04-22T14:40:45-07:00\",\"message\":\"talk a little bit more about this yajl_tree.h example\",\"tree\":\"e297fd14812d926f005919a1d3a28d8ad427521c\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"d2ec58b70b429b908d9f395ef378443b6101153b\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/668e787b1cdba118d73efc233e8a48306c2033d6\",\"id\":\"668e787b1cdba118d73efc233e8a48306c2033d6\",\"committed_date\":\"2011-04-22T14:39:40-07:00\",\"authored_date\":\"2011-04-22T14:39:40-07:00\",\"message\":\"initial merge/port of Florian Forster's yajl_tree implementation, along with a new utility routine yajl_tree_get() and an example\",\"tree\":\"38488d9afe9d58c47e1c6ed5c6f7ad1cbed5cd45\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"9538bda17bef60642f2ed3ff2f6bfd29785c36df\"},{\"id\":\"a7ab7633a603c6c3e31bb54a45da2afbb54a98c9\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/d2ec58b70b429b908d9f395ef378443b6101153b\",\"id\":\"d2ec58b70b429b908d9f395ef378443b6101153b\",\"committed_date\":\"2011-04-22T13:11:24-07:00\",\"authored_date\":\"2011-04-22T13:11:24-07:00\",\"message\":\"Merge branch 'parsetree' of https://github.com/octo/yajl into parsetree\",\"tree\":\"207162f20d8d97eafe0c9e899d9ffad32c36c0c2\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"bb21bcdb4ced287e7aea8285904ad3540560558a\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/9538bda17bef60642f2ed3ff2f6bfd29785c36df\",\"id\":\"9538bda17bef60642f2ed3ff2f6bfd29785c36df\",\"committed_date\":\"2011-04-22T12:17:29-07:00\",\"authored_date\":\"2011-04-22T12:17:29-07:00\",\"message\":\"Add a generator feature to validate UTF8 strings as they are written to output. closes #25\",\"tree\":\"24ebb57",
|
1387
|
+
"3fadebcf0387f73b3feb9a83ac2bf080d\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"9813127163116b7f928c383f14bb8618675a9694\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/bb21bcdb4ced287e7aea8285904ad3540560558a\",\"id\":\"bb21bcdb4ced287e7aea8285904ad3540560558a\",\"committed_date\":\"2011-04-22T11:37:04-07:00\",\"authored_date\":\"2011-04-22T11:37:04-07:00\",\"message\":\"use new configuration features to simplify the json verifier\",\"tree\":\"9450c43b683056391b936c05ec88dad1333fa628\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"0858bb341280956947df1cfae33eb5ac6ecfe6f7\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/9813127163116b7f928c383f14bb8618675a9694\",\"id\":\"9813127163116b7f928c383f14bb8618675a9694\",\"committed_date\":\"2011-04-21T12:58:28-07:00\",\"authored_date\":\"2011-04-21T09:56:51-07:00\",\"message\":\"rename yajl_parse_complete to yajl_complete_parse. the latter is correctly an imperative, while the former might be confused for a question.\",\"tree\":\"66fbf6ebf56d9bbe75095f5b97bab7fc22b2115e\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"6aefdaab38d81f33c46e33353c5a156884ea022d\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/0858bb341280956947df1cfae33eb5ac6ecfe6f7\",\"id\":\"0858bb341280956947df1cfae33eb5ac6ecfe6f7\",\"committed_date\":\"2011-04-21T12:55:45-07:00\",\"authored_date\":\"2011-04-21T08:36:26-07:00\",\"message\":\"rework programmatic configuration of yajl. both generator and parser now have a yajl_XXX_config() function that accepts varargs so that configuration is simple, and new config options can be added in the future that preserve backwards binary compatibility. closes #23.\",\"tree\":\"2f61e004f7a892f00f6f34d38a8a194618400b59\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"b6b44127f23d70231156a8d20fa7d437cac1588f\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/6aefdaab38d81f33c46e33353c5a156884ea022d\",\"id\":\"6aefdaab38d81f33c46e33353c5a156884ea022d\",\"committed_date\":\"2011-04-20T15:25:43-07:00\",\"authored_date\":\"2011-04-20T15:25:43-07:00\",\"message\":\"oh, ok. osx ld doesn't like more than two digits in shared lib version numbers. weenies.\",\"tree\":\"8b13d0a2e7870253be11fe6ba20e73dc64f2586e\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"f542280579e0a98a172e38631e972acbd6dc1195\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/b6b44127f23d70231156a8d20fa7d437cac1588f\",\"id\":\"b6b44127f23d70231156a8d20fa7d437cac1588f\",\"committed_date\":\"2011-04-20T15:23:09-07:00\",\"authored_date\":\"2011-04-20T15:23:09-07:00\",\"message\":\"add tests cases for partial value config\",\"tree\":\"52392b3b62a212d17b9e6b4fa865620d3603d7b6\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"de81b1fcd22b29b152f921f23faab759c79da7e1\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/f542280579e0a98a172e38631e972acbd6dc1195\",\"id\":\"f542280579e0a98a172e38631e972acbd6dc1195\",\"committed_date\":\"2011-04-20T14:57:42-07:00\",\"authored_date\":\"2011-04-20T14:57:42-07:00\",\"message\":\"cosmetic, indentation and whitespace\",\"tree\":\"736c631155d85e83b0cbede9223d4ea1a98d43fa\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"7852c0a19",
|
1388
|
+
"70b67c22b7b7bfeb29095bcc21ca12f\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/de81b1fcd22b29b152f921f23faab759c79da7e1\",\"id\":\"de81b1fcd22b29b152f921f23faab759c79da7e1\",\"committed_date\":\"2011-04-20T14:48:36-07:00\",\"authored_date\":\"2011-04-20T14:48:36-07:00\",\"message\":\"yajl 2 will be relicensed under the ISC license. same idea, fewer bytes.\",\"tree\":\"4cc7e0c2d9bde7f1c739fda71bec6491b381b6d2\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"986516e15b7b331a19fe317e2c828c5352d5b72e\"}],\"author\":{\"name\":\"Greg Olszewski\",\"login\":\"gno\",\"email\":\"gno@gropeep.org\"},\"url\":\"/lloyd/yajl/commit/7852c0a1970b67c22b7b7bfeb29095bcc21ca12f\",\"id\":\"7852c0a1970b67c22b7b7bfeb29095bcc21ca12f\",\"committed_date\":\"2011-04-20T14:24:19-07:00\",\"authored_date\":\"2010-10-17T17:05:01-07:00\",\"message\":\"o closes #5 - replace strtol with own implementation, uses pascal strings.\\no issue #6 - check a few malloc error cases.\\n\\nSigned-off-by: Lloyd Hilaiel <lloyd@hilaiel.com>\",\"tree\":\"6c5ee341a57ddc31ea920eae720083d50b55436c\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"9b88b94429985a8579161ea99754cfa5e66a54bb\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/986516e15b7b331a19fe317e2c828c5352d5b72e\",\"id\":\"986516e15b7b331a19fe317e2c828c5352d5b72e\",\"committed_date\":\"2011-04-20T11:22:50-07:00\",\"authored_date\":\"2011-04-20T11:22:50-07:00\",\"message\":\"add a test case which demonstrates how new parsing configuration in yajl 2.x closes #7\",\"tree\":\"274bf0c359ff4a30cc913c8614beed0b68ef615e\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"888d390f4e3642f2bafff7e5489810cc695843d1\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/9b88b94429985a8579161ea99754cfa5e66a54bb\",\"id\":\"9b88b94429985a8579161ea99754cfa5e66a54bb\",\"committed_date\":\"2011-04-20T11:20:45-07:00\",\"authored_date\":\"2011-04-20T11:20:45-07:00\",\"message\":\"fixes to testing system. allowGarbage is misnamed, it actually means *forbid* garbage\",\"tree\":\"6a165f8af10271b6b3605ef9a78bc6d88a73184a\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"ecd8008a32677f4d03f8c9231ece27732a248404\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/888d390f4e3642f2bafff7e5489810cc695843d1\",\"id\":\"888d390f4e3642f2bafff7e5489810cc695843d1\",\"committed_date\":\"2011-04-20T11:08:15-07:00\",\"authored_date\":\"2011-04-20T11:08:15-07:00\",\"message\":\"add a missing test case - multiple integers in a stream\",\"tree\":\"206438ff65252b1a77e4301688ce025cabf13c70\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"b9e91a37f7132bf7f5b91de895b766db06ae3072\"}],\"author\":{\"name\":\"Conrad Irwin\",\"login\":\"ConradIrwin\",\"email\":\"conrad.irwin@gmail.com\"},\"url\":\"/lloyd/yajl/commit/ecd8008a32677f4d03f8c9231ece27732a248404\",\"id\":\"ecd8008a32677f4d03f8c9231ece27732a248404\",\"committed_date\":\"2011-04-20T10:17:40-07:00\",\"authored_date\":\"2011-03-19T18:32:21-07:00\",\"message\":\"Parse null bytes correctly.\\n\\nSigned-off-by: Lloyd Hilaiel <lloyd@hilaiel.com>\",\"tree\":\"f88244c16383ca4377e9cbadc4e5a7fb0ab1324a\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"dc206cf75b8489b4cdcc8ff0cdbe94cbcc61a551\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/b9e91a37f7132bf7f5b91de895b766db06ae3072\",\"id\":\"b9e91a37f7132bf7f5b91de895b76",
|
1389
|
+
"6db06ae3072\",\"committed_date\":\"2011-04-20T09:41:14-07:00\",\"authored_date\":\"2011-04-20T09:41:14-07:00\",\"message\":\"o rework yajl api\\n - remove yajl_status_parse_incomplete, replace with three\\n flag settings\\n - yajl_allow_multiple_values\\n - yajl_forbid_trailing_garbage\\n - yajl_forbid_partial_values\\n\\n In the new model, callers must consistently call yajl_parse_complete\\n and check it's return. Two new parse errors have been introduced:\\n \\\"premature EOF\\\" and \\\"trailing garbage\\\".\\n\\n yajl_test.c demonstrates the simplifying effect on calling code.\\n\\n adds 3 flags to yajl_test\\n -g forbids trailing garbage\\n -p forbids partial values\\n -m allows multiple values to be parsed.\\n\\n and complementary tests.\\n\\nlth: Addresses the majority of issue #24. gno is awesomesauce.\\n\\nSigned-off-by: Lloyd Hilaiel <lloyd@hilaiel.com>\",\"tree\":\"a2f006d686e40502ebc74be858992db52ba2204b\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"1ecfbc0b3458420feba033cd2c25a4f5e9bac0b4\"},{\"id\":\"49116c941312b78ca6768b916fd0d247147f1f47\"}],\"author\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"},\"url\":\"/lloyd/yajl/commit/dc206cf75b8489b4cdcc8ff0cdbe94cbcc61a551\",\"id\":\"dc206cf75b8489b4cdcc8ff0cdbe94cbcc61a551\",\"committed_date\":\"2011-04-20T09:27:46-07:00\",\"authored_date\":\"2011-04-20T09:27:46-07:00\",\"message\":\"Merge branch 'master' into 2.x\",\"tree\":\"e9d6f3873dfe530e11009bbf0fa1e858f27d968b\",\"committer\":{\"name\":\"Lloyd Hilaiel\",\"login\":\"lloyd\",\"email\":\"lloyd@hilaiel.com\"}},{\"parents\":[{\"id\":\"0d9e3589bc8d59ce963937587f634c8c9cc61643\"}],\"author\":{\"name\":\"Mirek Rusin\",\"login\":\"mirek\",\"email\":\"mirek@me.com\"},\"url\":\"/lloyd/yajl/commit/49116c941312b78ca6768b916fd0d247147f1f47\",\"id\":\"49116c941312b78ca6768b916fd0d247147f1f47\",\"committed_date\":\"2011-04-19T04:46:52-07:00\",\"authored_date\":\"2011-04-19T04:46:52-07:00\",\"message\":\"LLVM warnings\",\"tree\":\"57eac7400e476299277490f9253e059e4d00085b\",\"committer\":{\"name\":\"Mirek Rusin\",\"login\":\"mirek\",\"email\":\"mirek@me.com\"}}]}",
|
1390
|
+
NULL
|
1391
|
+
};
|
1392
|
+
|
1393
|
+
const char ** g_documents[] = {
|
1394
|
+
doc1,
|
1395
|
+
doc2,
|
1396
|
+
doc3,
|
1397
|
+
NULL
|
1398
|
+
};
|
1399
|
+
|
1400
|
+
int num_docs(void)
|
1401
|
+
{
|
1402
|
+
int i = 0;
|
1403
|
+
for (i=0;g_documents[i];i++);
|
1404
|
+
return i;
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
const char ** get_doc(int i)
|
1408
|
+
{
|
1409
|
+
return g_documents[i];
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
unsigned int doc_size(int i)
|
1413
|
+
{
|
1414
|
+
int sz = 0;
|
1415
|
+
const char ** p = get_doc(i);
|
1416
|
+
do { sz += strlen(*p); } while(*(++p));
|
1417
|
+
return sz;
|
1418
|
+
}
|