-
Notifications
You must be signed in to change notification settings - Fork 28
/
CHANGELOG
1263 lines (753 loc) · 43.8 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Wed Aug 17 05:14:32 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Warn about old nokogiri
* lib/rets4r/client/parsers/compact_nokogiri.rb
(RETS4R::Client::CompactNokogiriParser#parse_file): add deprecation
warning for nokogiri >= 1.4.3
Wed Aug 17 04:54:18 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Support ActiveSupport 2.3
* lib/rets4r/listing_service.rb: fix requires as needed for AS 2.3
* rets4r.gemspec: require activesupport >= 2.3.2
Wed Aug 17 04:10:52 2011 Joseph Anthony Pasquale Holsten <[email protected]>
turn off jruby, rbx and ruby-head tests
Wed Aug 17 03:53:26 2011 Joseph Anthony Pasquale Holsten <[email protected]>
more whitespace clean up in changelog
Wed Aug 17 03:48:37 2011 Joseph Anthony Pasquale Holsten <[email protected]>
clean up whitespace in changelog
Wed Aug 17 02:36:12 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Merge branch 'fix-nokogiri'
Wed Aug 17 02:35:59 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Merge branch 'master' of github.com:josephholsten/rets4r
Wed Aug 17 02:35:21 2011 Joseph Anthony Pasquale Holsten <[email protected]>
open up nokogiri requirements
* rets4r.gemspec: require nokogiri >= 1.3.2
Wed Aug 17 02:19:42 2011 Joseph Anthony Pasquale Holsten <[email protected]>
support nokogiri >= 1.4.4
* lib/rets4r/client/parsers/compact_nokogiri.rb
(RETS4R::Client::CompactNokogiriParser::CompactDocument#parse_file):
support nokogiri >= 1.4.4. warn for older versions
Wed Aug 17 01:58:40 2011 Joseph Anthony Pasquale Holsten <[email protected]>
silence warnings in deprecated code
Wed Aug 17 01:55:23 2011 Joseph Anthony Pasquale Holsten <[email protected]>
initialize requester method to get
* lib/rets4r/client/requester.rb: (RETS4R::Client::Requester#initialize):
initialize method instance variable
Wed Aug 17 01:50:56 2011 Joseph Anthony Pasquale Holsten <[email protected]>
switch from deprecated Pathname#chdir to Dir::chdir
Wed Aug 17 01:47:25 2011 Joseph Anthony Pasquale Holsten <[email protected]>
clean up warnings in parser tests, removing deprecated use from response document base
* lib/rets4r/response_document/base.rb:
(RETS4R::ResponseDocument::Base#to_transaction): remove deprecated
access to RETS4R::Client::Transaction
Wed Aug 17 01:20:42 2011 Joseph Anthony Pasquale Holsten <[email protected]>
initialize variables in compact document
* lib/rets4r/client/parsers/compact_nokogiri.rb
(RETS4R::Client::CompactNokogiriParser::CompactDocument#initialize):
initialize instance variables
Wed Aug 17 01:18:29 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix warnings for uninitialized instance variables
Wed Aug 17 01:13:56 2011 Joseph Anthony Pasquale Holsten <[email protected]>
split up client tests
Wed Aug 17 01:03:26 2011 Joseph Anthony Pasquale Holsten <[email protected]>
use unified project root
Wed Aug 17 01:01:25 2011 Joseph Anthony Pasquale Holsten <[email protected]>
check for up to date manifest
Wed Aug 17 00:59:02 2011 Joseph Anthony Pasquale Holsten <[email protected]>
simplify fixture access
Wed Aug 17 00:52:18 2011 Joseph Anthony Pasquale Holsten <[email protected]>
update manifest
Wed Aug 17 00:34:06 2011 Joseph Anthony Pasquale Holsten <[email protected]>
use unified fixture access
Wed Aug 17 00:24:41 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix namespace for test_metadata_parser
Wed Aug 17 00:23:20 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix namespace for test_client
Wed Aug 17 00:20:44 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix namespace for test_auth
Wed Aug 17 00:17:46 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix isolation for test_parser
* lib/rets4r/client/parsers/response_parser.rb: require response_parser
Wed Aug 17 00:12:48 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix isolation for test_client_metadata_request
Wed Aug 17 00:10:12 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix isolation of test/test_loader
* lib/rets4r/client/parsers/compact_nokogiri.rb, lib/rets4r/loader.rb: fix requires
Wed Aug 17 00:04:45 2011 Joseph Anthony Pasquale Holsten <[email protected]>
unify load path in tests
Tue Aug 16 22:16:23 2011 Joseph Anthony Pasquale Holsten <[email protected]>
sort dev deps
* rets4r.gemspec: sort deps
Tue Aug 16 19:12:01 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Merge pull request #22 from pacino/patch-1
Updated to write the photo object as binary for Rails 3 and Ruby 1.9.2...
Tue Aug 16 18:41:00 2011 pacino <[email protected]>
With Rails 3 & Ruby 1.9.2, it will attempt to convert the object data to
a string which caused a ""\xFF" from ASCII-8BIT to UTF-8" error for me.
Changing the file to open in Binary mode avoids this encoding issue.
* examples/client_get_object.rb (handle_object): open file with binary flag
Mon Aug 8 09:47:43 2011 Joseph Anthony Pasquale Holsten <[email protected]>
add mapping support for dmql queries
* lib/rets4r/listing_mapper.rb (RETS4R::ListingMapper#to_dmql)
(#reverse_map): add
Mon Aug 8 08:24:29 2011 Joseph Anthony Pasquale Holsten <[email protected]>
pull out metadata request
* lib/rets4r/client/metadata_request.rb (RETS4R::Client::MetadataRequest): add
* lib/rets4r/client.rb (RETS4R::Client#download_metadata): defer
to RETS4R::Client::MetadataRequest
Fri Jul 22 19:44:26 2011 Joseph Anthony Pasquale Holsten <[email protected]>
merge out code file check changes
Fri Jul 22 19:42:19 2011 Joseph Anthony Pasquale Holsten <[email protected]>
invert the check for code files
Fri Jul 22 19:22:32 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Merge branch 'master' of github.com:josephholsten/rets4r
Fri Jul 22 19:21:57 2011 Joseph Anthony Pasquale Holsten <[email protected]>
ignore whitespace in XML fixture data
Fri Jul 22 19:20:15 2011 Joseph Anthony Pasquale Holsten <[email protected]>
merge, removing futuristic nokogiri and adding rdoc
Fri Jul 22 17:04:32 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Merge pull request #18 from rpm/master
Added nested delimiter and a way to repeat cookies
Mon May 9 12:06:42 2011 Eric Taylor <[email protected]>
Need method of repeating cookies
* lib/rets4r/client.rb (RETS4R::Client#set_post_request_block): add
* lib/rets4r/client/requester.rb (RETS4R::Client::Requester#request)
(#post_request_block, #post_request_block=): add post request callback
Mon May 9 12:03:50 2011 Eric Taylor <[email protected]>
Find nested delimiter
* lib/rets4r/client/parsers/compact_nokogiri.rb
(RETS4R::Client::CompactNokogiriParser#parse_file): access delimeter
from nokogiri 1.4.4 attributes
Fri Jul 22 19:00:32 2011 Joseph Anthony Pasquale Holsten <[email protected]>
merge metadata test files
Fri Jul 22 18:57:59 2011 Joseph Anthony Pasquale Holsten <[email protected]>
merge many changes
Thu Apr 28 22:22:53 2011 Scott Patterson <[email protected]>
Added sample metadata from the RETS specification.
Fri Jul 22 16:22:15 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Merge pull request #20 from jschairb/master
FIXED: build failures on 1.9.1, 1.9.2, HEAD
Mon May 23 20:37:40 2011 Josh Schairbaum <[email protected]>
re-adding a require for 'rets4r/auth', this was causing errors on 1.9.2
for me. adding the line fixed it
* lib/rets4r.rb: require 'rets4r/auth'
Mon May 23 19:57:03 2011 Josh Schairbaum <[email protected]>
Ensuring the Auth called is properly namespaced. Removing an unnecessary
line from a previous refactoring
* lib/rets4r/client/requester.rb
(RETS4R::Client::Requester#request): use namespaced Auth
Mon May 23 15:15:57 2011 Anton Djurasaj <[email protected]>
Loosen up Nokogiri version requirement, and require at least 1.4.3.1
* rets4r.gemspec: require nokogiri >= 1.4.3.1
Mon May 23 14:43:21 2011 Anton Djurasaj <[email protected]>
Fix failing whitespace test
Mon May 23 14:24:05 2011 Anton Djurasaj <[email protected]>
Fix failing test due to changes in 1.9.2
* lib/rets4r/response_document/base.rb
(RETS4R::ResponseDocument::Base#to_h): explicitly iterate over lines
Mon May 23 11:02:17 2011 Anton Djurasaj <[email protected]>
Ignore .rvmrc
Wed May 18 12:57:53 2011 Josh Schairbaum <[email protected]>
fixing load error on 1.9.2, it's better to use the full path when requiring
Wed May 18 12:33:37 2011 Josh Schairbaum <[email protected]>
re-worked which files are tested for code quality, removed README and other text-only files
Wed May 18 11:58:55 2011 Josh Schairbaum <[email protected]>
fixed failing spec. 1.9.2 String no longer includes Enumerable so a
method that returns an Enumerable has to be added
* lib/rets4r/response_document/base.rb
(RETS4R::ResponseDocument::Base#to_h): explicitly iterate over lines
Fri May 13 04:37:28 2011 Joseph Anthony Pasquale Holsten <[email protected]>
travis should build in all rvms
Fri May 13 04:34:00 2011 Joseph Anthony Pasquale Holsten <[email protected]>
add mailing list
Fri May 13 04:33:08 2011 Joseph Anthony Pasquale Holsten <[email protected]>
add build status
Fri May 13 03:57:17 2011 Joseph Anthony Pasquale Holsten <[email protected]>
remove unneeded requires
* lib/rets4r/client.rb, lib/rets4r/client/metadata.rb
lib/rets4r/client/parsers/response_parser.rb: remove unneeded requires
Fri May 13 03:51:04 2011 Joseph Anthony Pasquale Holsten <[email protected]>
clean up dependencies
* lib/rets4r/response_document/base.rb: require nokogiri, rexml
Fri May 13 03:29:36 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix ascii delimiter
* lib/rets4r/response_document/search.rb
(RETS4R::ResponseDocument::Search#ascii_delimiter): alias to delimiter
Fri May 13 03:23:18 2011 Joseph Anthony Pasquale Holsten <[email protected]>
add test:isolated task
Fri May 13 03:14:20 2011 Joseph Anthony Pasquale Holsten <[email protected]>
add files to clobber
Fri May 13 03:10:24 2011 Joseph Anthony Pasquale Holsten <[email protected]>
fix independence of tests
Fri May 13 03:01:40 2011 Joseph Anthony Pasquale Holsten <[email protected]>
flesh out testing response document search, including deprecated methods
Fri May 13 02:57:46 2011 Joseph Anthony Pasquale Holsten <[email protected]>
flesh out testing response document base
Fri May 13 02:55:22 2011 Joseph Anthony Pasquale Holsten <[email protected]>
remove unused spec
Fri May 13 02:53:49 2011 Joseph Anthony Pasquale Holsten <[email protected]>
remove core_exts in favor of activesupport
* lib/rets4r/core_ext/array/extract_options.rb
lib/rets4r/core_ext/class/attribute_accessors.rb
lib/rets4r/core_ext/hash/keys.rb, lib/rets4r/core_ext/hash/slice.rb: remove
* lib/rets4r/listing_service.rb: replace references with ones to activesupport
Fri May 13 02:21:02 2011 Joseph Anthony Pasquale Holsten <[email protected]>
clean up requires
* examples/client_get_object.rb, examples/client_login.rb
examples/client_mapper.rb, examples/client_metadata.rb
examples/client_search.rb, lib/rets4r.rb, lib/rets4r/client.rb
lib/rets4r/client/parsers/compact_nokogiri.rb
lib/rets4r/client/parsers/metadata.rb
lib/rets4r/client/parsers/response_parser.rb
lib/rets4r/client/transaction.rb, lib/rets4r/response_document/base.rb:
separate foreign from local requires, sort
Fri May 13 02:03:01 2011 Joseph Anthony Pasquale Holsten <[email protected]>
use normal require path
* lib/rets4r.rb, lib/rets4r/client.rb: change require to be relative to lib/
Fri May 13 01:59:31 2011 Joseph Anthony Pasquale Holsten <[email protected]>
remove live test, demo server is gone
Fri May 13 01:37:12 2011 Joseph Anthony Pasquale Holsten <[email protected]>
stub http request
Fri May 13 00:43:25 2011 Joseph Anthony Pasquale Holsten <[email protected]>
source rubygems
Fri May 6 12:55:18 2011 Scott Patterson <[email protected]>
Added empty xml file and updated response document 'empty doc' examples to
use that since metadata.xml now contains data.
Fri May 6 12:52:46 2011 Scott Patterson <[email protected]>
Updated ResponseDocument#to_h be 1.9.2 friendly.
* lib/rets4r/response_document.rb (RETS4R::ResponseDocument#to_h):
explicitly iterate over lines
Fri May 6 12:43:50 2011 Scott Patterson <[email protected]>
Removed unneeded metadata assertion that was invalid.
Fri May 6 12:42:41 2011 Scott Patterson <[email protected]>
Bumped nokogiri version up to 1.4.3.1 to address nokogiri/version_warning missing bug.
* rets4r.gemspec: change nokogiri dependency to ~>1.4.3.1
Fri May 6 12:41:45 2011 Scott Patterson <[email protected]>
Changed contributors, changelog, and readme to UTF8 encoding.
Wed May 4 02:05:24 2011 Scott Patterson <[email protected]>
Removed non-relevant TODO comment.
Wed May 4 01:50:35 2011 Scott Patterson <[email protected]>
Revert "Added support for tag date and versions. Minor cleanup of unit test."
Decided that the additional date and version keys weren't really worth the added complexity.
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata::CompactDocument#parse_file): stop including
date and version attributes for container tags
Wed May 4 01:38:35 2011 Scott Patterson <[email protected]>
Added tab that was missing from metadata.
Tue May 3 19:54:25 2011 Scott Patterson <[email protected]>
The system close tag now properly removes itself from the stack, leaving
us with a clean (empty) stack at the end.
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata::CompactDocument#parse_file): pop empty
SYSTEM elements from the stack
Tue May 3 19:33:41 2011 Scott Patterson <[email protected]>
Added explicit require delegate.
* lib/rets4r/client/parsers/metadata.rb: add require
Tue May 3 19:15:37 2011 Scott Patterson <[email protected]>
Added support for tag date and versions. Minor cleanup of unit test.
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata::CompactDocument#parse_file): include date and
version attributes for container tags
Fri Apr 29 19:23:12 2011 Scott Patterson <[email protected]>
Added documentation for metadata.
Fri Apr 29 18:14:58 2011 Scott Patterson <[email protected]>
Added editmask and search_help metadata support
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata#search_help, #edit_masks): add
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata::CompactDocument#parse_file): add
METADATA-SEARCH_HELP and METADATA-EDITMASK element support
Fri Apr 29 17:27:34 2011 Scott Patterson <[email protected]>
Added foreign keys to metadata parser and added ForeignKeyID to sample metadata.
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata#foreign_keys): add
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata::CompactDocument#parse_file): add
METADATA-FOREIGNKEYS element support
Fri Apr 29 02:47:16 2011 Scott Patterson <[email protected]>
Removed old metadata class and file that wasn't being used anymore.
* lib/rets4r/client/metadata.rb: remove
Fri Apr 29 02:44:37 2011 Scott Patterson <[email protected]>
Switched to more verbose handling of nested metadata hashes for backwards compatibility.
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata#initialize): remove default_proc
* lib/rets4r/client/parsers/metadata.rb (RETS4R::Client::Metadata#resource)
(#resource_classes, #resource_class, #class_tables, #resource_objects)
(#resource_lookups, #resource_lookup_types): add default hash helpers
for each type of data
Fri Apr 29 02:04:02 2011 Scott Patterson <[email protected]>
Cleaned up parser a bit, as well as fixed support for comments and system data.
* lib/rets4r/client/parsers/metadata.rb
(RETS4R::Client::Metadata::CompactDocument#parse_file): clean up DATA
element handling. strip whitespace from COMMENTS elements. initialize
each item using a default proc. collect text from SYSTEM elements.
Fri Apr 29 02:03:29 2011 Scott Patterson <[email protected]>
Added assertions for system id, name, and comments.
Fri Apr 29 01:02:51 2011 Scott Patterson <[email protected]>
Replaced rexml metadata parser with nokogiri stream metadata parser.
* lib/rets4r/client/parsers/metadata.rb (RETS4R::Client::MetadataParser):
rewrite and rename to RETS4R::Client::Metadata::CompactDocument
Thu Apr 28 23:51:22 2011 Scott Patterson <[email protected]>
Added tests for existing metadata parser.
Thu Apr 28 23:22:53 2011 Scott Patterson <[email protected]>
Added sample metadata from the RETS specification.
Wed Mar 30 14:00:32 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Delegate to ResponseDocument::Search
* lib/rets4r/client/parsers/compact.rb: delegate to
ResponseDocument::Search and deprecate
* lib/rets4r/client/parsers/compact_nokogiri.rb,
lib/rets4r/client/transaction.rb: delegate to ResponseDocument::Search
Wed Mar 30 13:59:07 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Add ResponseDocument::Search to parse COMPACT
* lib/rets4r/response_document.rb: defer to base and search
* lib/rets4r/response_document/base.rb: renamed from ResponseDocument
* lib/rets4r/response_document/search.rb: add
* lib/rets4r/client/parsers/response_parser.rb: change calls from
ResponseDocument to Base or Search
Wed Mar 23 05:58:30 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Update docs and comments
Wed Mar 23 04:50:47 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Delegate response parser to response document
* lib/rets4r/client/parsers/response_parser.rb: delegate all methods
to ResponseDocument
* lib/rets4r/response_document.rb: add all parsing methods
Wed Mar 23 02:37:32 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Parse RETS responses using a ResponseDocument
* lib/rets4r.rb: require response_document
* lib/rets4r/response_document.rb: add
* lib/rets4r/client/parsers/response_parser.rb
(RETS4R::Client::ResponseParser#parse_common):
(private) parse using ResponseDocument
* MANIFEST: add new files
Wed Mar 23 02:33:44 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Don't require rubygems in runtime (dev is still okay)
* lib/rets4r.rb, test/test_helper.rb: unrequire rubygems
Wed Mar 23 02:29:25 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Update manifest using git files
* .gitignore: ignore generated files
* MANIFEST: add test_requester.rb
* Rakefile: use git ls-files to check manifest
Wed Mar 23 02:24:10 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Fix test classes to match files
* test/test_compact_nokogiri.rb: rename to TestCompactNokogiri
* test/test_listing_mapper.rb: rename to TestListingMapper
* test/test_loader.rb: rename to TestLoader
Wed Mar 23 00:49:22 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Update changelog
Wed Mar 23 00:44:24 2011 Joseph Anthony Pasquale Holsten <[email protected]>
update news
Wed Mar 23 00:35:48 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Use more idiomatic nokogiri
* lib/rets4r/client/parsers/response_parser.rb
(RETS4R::Client::ResponseParser#parse_key_value)
(RETS4R::Client::ResponseParser#parse_common)
(RETS4R::Client::ResponseParser#parse_count): use idiomatic nokogiri
Wed Mar 23 00:30:04 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Use simpler nokogiri calls
* lib/rets4r/client/parsers/compact.rb (RETS4R::Client::CompactDataParser#parse_results):
use simpler nokogiri methods helper
Wed Mar 23 00:19:34 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Allow options for count
* lib/rets4r/client.rb (RETS4R::Client#count): merge and remove custom_count
* test/test_client.rb: add count tests
Tue Mar 22 23:28:21 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Clean up comments
* lib/rets4r/auth.rb: clean up comments
Tue Mar 22 22:03:25 2011 Joseph Anthony Pasquale Holsten <[email protected]>
merge news
Fri Jan 21 17:22:01 2011 Braxton Beyer <[email protected]>
stepped version, added author and removed redundant user_agent method
Thu Jan 20 17:41:52 2011 Braxton Beyer <[email protected]>
* allowing for basic authentication
* added custom_count function which allows you to pass options could
probably just be combined with count function
* switched to nokogiri for xml parsing.
Tue Mar 22 21:33:39 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Update documentation
Tue Mar 22 19:36:54 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Bump and tag for release
* lib/rets4r.rb (RETS4R::VERSION): bump to 1.1.18
Tue Mar 22 19:34:26 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Support rubygems-test
* .gemtest: add
* MANIFEST (.gemtest): add
* rets4r.gemspec: remove test files
Tue Mar 22 19:30:42 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Use bundler for gem tasks
* Rakefile: install bundler gem helper
Tue Mar 22 19:10:43 2011 Joseph Anthony Pasquale Holsten <[email protected]>
Use rake
* rets4r.gemspec: add development dep rake
Sun Feb 27 18:48:18 2011 Brian Dunn <[email protected]>
lock in the nokogiri version: fixes the sax parser
* Gemfile: use the gemfile
* Rakefile: load the bundle
* rets4r.gemspec: lock in the nokogiri version
Wed Aug 25 16:48:32 2010 Brian Dunn <[email protected]>
raise exceptions when the service responds with an error message
* lib/rets4r/client/parsers/compact_nokogiri.rb (RETS4R::Client::CompactNokogiriParser::CompactDocument#start_element): handle RETS element
* lib/rets4r/client/parsers/compact_nokogiri.rb (RETS4R::Client::CompactNokogiriParser::CompactDocument#characters): raise exception on error
Tue Aug 24 21:59:50 2010 Brian Dunn <[email protected]>
remove misunderstood session id header stuff
* lib/rets4r/client/requester.rb (Requester#initialize): remove headers['RETS-Session-ID']
Fri Aug 20 16:25:55 2010 Brian Dunn <[email protected]>
cleanups, remove bogus top level header RETS-Sesson-ID
* lib/rets4r/client/requester.rb (Requester#request): set RETS-Sesson-ID header to nil
Tue Aug 17 14:49:49 2010 Joseph Anthony Pasquale Holsten <[email protected]>
change useragent to something not a total hack
* lib/rets4r.rb: set version before requires
* lib/rets4r/client/requester
(RETS4R::Client::Requester::DEFAULT_USER_AGENT): set to rets4r/n.n.n
Tue Aug 17 14:43:42 2010 Joseph Anthony Pasquale Holsten <[email protected]>
remove links to dead ci and metric services
Mon Aug 16 11:17:38 2010 Joseph Anthony Pasquale Holsten <[email protected]>
fix whitespace
Mon Aug 16 11:13:30 2010 Joseph Anthony Pasquale Holsten <[email protected]>
update manifest
Mon Aug 16 11:13:02 2010 Joseph Anthony Pasquale Holsten <[email protected]>
clean built gems
* Rakefile (clean): add rets4r-#{version}.gem to list of files to delete
Mon Aug 16 10:58:26 2010 Joseph Anthony Pasquale Holsten <[email protected]>
ignore test data from quality checks
Mon Aug 16 10:57:58 2010 Joseph Anthony Pasquale Holsten <[email protected]>
fix whitespace
Mon Aug 16 10:43:44 2010 Joseph Anthony Pasquale Holsten <[email protected]>
add test for code quality
Mon Aug 2 04:56:12 2010 Joseph Anthony Pasquale Holsten <[email protected]>
pull out request support
* lib/rets4r/client.rb: remove request operations into RETS4R::Client::Requester
* lib/rets4r/client/requester.rb: add
Mon Aug 2 04:50:18 2010 Joseph Anthony Pasquale Holsten <[email protected]>
remove old setters and getters
* lib/rets4r/client.rb (Client#set_user_agent, #get_user_agent)
(#set_request_method, #get_request_method, #set_rets_version)
(#get_rets_version): remove, as replacements exist
Mon Aug 2 04:36:03 2010 Joseph Anthony Pasquale Holsten <[email protected]>
pull out capability links
* lib/rets4r/client.rb: factor urls hash into links object
* lib/rets4r/client/links.rb: add
Mon Aug 2 04:17:47 2010 Joseph Anthony Pasquale Holsten <[email protected]>
remove exceptions
* lib/rets4r/client.rb: remove exceptions into lib/rets4r/client/exceptions.rb
Mon Aug 2 01:07:59 2010 Joseph Anthony Pasquale Holsten <[email protected]>
merge gemspec changes
Mon Aug 2 01:03:28 2010 Joseph Anthony Pasquale Holsten <[email protected]>
make gem without jeweler
* GPL: removed with permission from other authors
* VERSION.yml: remove
* lib/rets4r.rb: add VERSION
* MANIFEST: added
* rets4r.gemspec: remove jeweler, add manifest
* Rakefile: remove jeweler, add manifest
* Gemfile: remove jeweler
Mon Aug 2 00:48:47 2010 Joseph Anthony Pasquale Holsten <[email protected]>
rename tests to standard test_ form
* test/compact_nokogiri_test.rb -> test/test_compact_nokogiri.rb
* test/listing_mapper_test.rb -> test/test_listing_mapper.rb
* test/loader_test.rb -> test/test_loader.rb
Tue Jul 20 10:30:51 2010 Joseph Anthony Pasquale Holsten <[email protected]>
merge with briandunnn
Tue Jul 20 10:18:18 2010 Joseph Anthony Pasquale Holsten <[email protected]>
Merge branch 'briandunn' into integration
Tue Jul 13 15:27:12 2010 Brian Dunn <[email protected]>
fixed misleading parameter name in loader
* lib/rets4r/loader.rb (Loader::load): rename file to io
Tue Jul 13 10:36:34 2010 Joseph Anthony Pasquale Holsten <[email protected]>
remove threads, use noko parser
* lib/rets4r/client.rb (Client#search): streaming yield through SAX parser
(Client#request): remove semaphores
Tue Jul 13 10:17:36 2010 Joseph Anthony Pasquale Holsten <[email protected]>
note issue with queryless search
* test/test_client.rb (test_search_without_query_should_not_raise_no_metho_error): comment out
Fri Jul 2 11:43:38 2010 Joseph Anthony Pasquale Holsten <[email protected]>
add a mapper example
* examples/client_mapper.rb: add
Fri Jul 2 11:30:44 2010 Joseph Anthony Pasquale Holsten <[email protected]>
update todo
Fri Jul 2 11:25:35 2010 Joseph Anthony Pasquale Holsten <[email protected]>
Add clean task
* Rakefile: add clean task
Fri Jun 25 09:22:07 2010 Brian Dunn <[email protected]>
narrow a test, clean up get object signature
* lib/rets4r/client.rb (Client#get_object): use true and false for location
* test/test_client.rb (test_search_without_query_should_not_raise_no_metho_error):
just check for that particular exception.
Wed Jun 23 09:33:21 2010 Brian Dunn <[email protected]>
correctly handle location header in get_object
* lib/rets4r/client.rb (Client#process_header): use webrick header parsing
* lib/rets4r/client/dataobject.rb: case insensitive headers
Tue Jun 22 17:38:58 2010 Brian Dunn <[email protected]>
new happy fails
* lib/rets4r.rb: require rubygems
* lib/rets4r/client/parsers/compact_nokogiri.rb (CompactNokogiriParser): include Enumerable
* test/compact_nokogiri_test.rb (test_should_not_include_column_elements_in_keys): add
* test/test_client.rb (test_correcly_handles_location_header_url): add
Tue Jun 22 17:04:44 2010 Brian Dunn <[email protected]>
Merge SAX changes into master
Fri Jun 18 17:48:40 2010 Joseph Anthony Pasquale Holsten <[email protected]>
fix nil escaping bug
* examples/settings.yml: add wildcard query
* lib/rets4r/client.rb (Client#create_query_string): ignore nil keys and values
Fri Jun 18 17:19:17 2010 Joseph Anthony Pasquale Holsten <[email protected]>
initialize pre_request_block to shut up warning
* lib/rets4r/client.rb (Client#initialize): set @pre_request_block to nil
Fri Jun 18 17:11:12 2010 Joseph Anthony Pasquale Holsten <[email protected]>
fix example scripts
* Gemfile: add activesupport
* examples/settings.yml: add environments
* examples/client_get_object.rb, examples/client_login.rb
examples/client_metadata.rb, examples/client_search.rb: use env
ruby. load settings based on LISTING_ENV
Fri Jun 18 15:53:15 2010 Joseph Anthony Pasquale Holsten <[email protected]>
remove rubygems from here too
* examples/client_parser.rb: remove require
Fri Jun 18 15:50:04 2010 Joseph Anthony Pasquale Holsten <[email protected]>
remove rubygems requires
* Rakefile, lib/rets4r/client/parsers/compact_nokogiri.rb
test/test_client.rb, test/test_helper.rb: remove require
Fri Jun 18 15:44:47 2010 Joseph Anthony Pasquale Holsten <[email protected]>
use bundler for less gem headaches in dev
* Gemfile: add
Fri Jun 18 15:42:51 2010 Joseph Anthony Pasquale Holsten <[email protected]>
fix annotations task
* lib/tasks/annotations.rake: replace require with inline code
Wed Mar 3 16:02:11 2010 Joseph Anthony Pasquale Holsten <[email protected]>
Update gemspec to v1.1.17
* rets4r.gemspec: update
Wed Mar 3 16:01:12 2010 Joseph Anthony Pasquale Holsten <[email protected]>
Version bump to 1.1.17
* VERSION.yml: bump patch
Wed Mar 3 15:59:44 2010 Joseph Anthony Pasquale Holsten <[email protected]>
Update change documentation
Wed Mar 3 12:43:25 2010 Joseph Anthony Pasquale Holsten <[email protected]>
Require mocha before shoulda to fix 'uninitialized constant Test::Unit::TestResult::TestResultFailureSupport'
* test/test_helper.rb: require mocha earlier
Tue Feb 23 07:12:46 2010 Joseph Anthony Pasquale Holsten <[email protected]>
Add ListingMapper to convert listing keys
* lib/rets4r.rb: require listing service, mapper
* lib/rets4r/listing_mapper.rb: new file
* lib/rets4r/listing_service.rb: new file
* test/data/listing_service.yml: new file
* test/listing_mapper_test.rb: new file
* test/test_helper.rb: new file
* lib/rets4r/core_ext/array/extract_options.rb: helper from rails
* lib/rets4r/core_ext/class/attribute_accessors.rb: likewise
* lib/rets4r/core_ext/hash/keys.rb: likewise
* lib/rets4r/core_ext/hash/slice.rb: likewise
Sat Feb 20 05:39:51 2010 Brian Dunn <[email protected]>
Test that SAX parser yeilds durring read.
* test/compact_nokogiri_test.rb: modified
* test/data/1.5/search_compact_big.xml: new file
Thu Feb 11 06:21:54 2010 Brian Dunn <[email protected]>
* lib/rets4r/client/parsers/compact_nokogiri.rb
(CompactNokogiriParser#each): new. should yield each row as the stream is
read
(CompactNokogiriParser#to_a): reads the whole stream and returns
rows in an array
* lib/rets4r/loader.rb: uses the each method to yield as the stream
is read
* test/compact_nokogiri_test.rb: uses to_a instead.
Sun Feb 7 19:05:46 2010 Scott Patterson <[email protected]>
Removed unnecessary writing of response to xml file in /tmp dir.
Sun Feb 7 19:11:38 2010 Scott Patterson <[email protected]>
Reversed aliases and accessors to use Ruby-style accessors with the get/set methods aliased.
Sun Feb 7 19:04:17 2010 Scott Patterson <[email protected]>
Added in #data alias to #response for compatibility.
Sun Feb 7 18:57:50 2010 Scott Patterson <[email protected]>
Removed old experiment.
Sun Feb 7 18:56:24 2010 Scott Patterson <[email protected]>
Added compact response with only a count.
Thu Sep 10 23:47:49 2009 Andrew Vit <[email protected]>
Support response without a delimiter or column names
Mon Sep 14 22:21:35 2009 Andrew Vit <[email protected]>
requiring needed compact parser
Wed Sep 16 04:06:16 2009 Andrew Vit <[email protected]>
Handle compact-decoded format using same parser
Wed Sep 16 04:06:35 2009 Andrew Vit <[email protected]>