forked from dajobe/flickcurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3776 lines (2538 loc) · 117 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
2011-03-31 Dave Beckett <[email protected]>
* utils/Makefile.am: Add raptor_fake.h to sources and
distribution.
2011-03-30 Dave Beckett <[email protected]>
* NEWS.html, configure.ac:
Bumped version to 1.22
* docs/tmpl/section-tag.sgml:
Added flickcurl_free_tags to doc tmpls
* docs/flickcurl-sections.txt:
(flickcurl_free_tags): Added
2011-03-30 Naruto TAKAHASHI <[email protected]>
* src/flickcurl.h, src/photo.c, src/tags.c: add
flickcurl_free_tags
* docs/tmpl/section-photoset.sgml, src/flickcurl.h,
src/photoset.c: move owner filed to the end of the structure.
2011-03-29 Naruto TAKAHASHI <[email protected]>
* docs/tmpl/section-photoset.sgml, src/flickcurl.h,
src/photoset.c: add owner to flickcurl_photoset
2011-03-26 Dave Beckett <[email protected]>
* Snapshotted flickcurl_1_21 for 1.21 release (GIT
7fe09ab24658240b02a1ba43d84d6df6814e8fb7)
* configure.ac: 1.21
* LICENSE.html, README.html, coverage.html: 2011
* NEWS.html: 1.21
2011-03-25 Dave Beckett <[email protected]>
* configure.ac, src/common.c, src/flickcurl.h, utils/Makefile.am,
utils/flickrdf.c, utils/raptor_fake.c, utils/raptor_fake.h:
Support Raptor V1 and Raptor V2 with flickrdf utility
(configure.ac): Add check for raptor V1 or V2. Support
--with-raptor values '1'/'yes' for V1, '2' for V2 and 'no' for
none/fake.
(utils/flickrdf.c): can now support raptor V1, V2 or fake
(utils/raptor_fake.c, utils/raptor_fake.h): Added module to
emulate Raptor V2 emulation for flickrdf
(src/flickcurl.h): Updated flickcurl_term_type autodocs
2011-02-27 Dave Beckett <[email protected]>
* src/photos-api.c:
(flickcurl_photos_setPerms): Allow false boolean permissions. Bug
report and patch from Henning Spruth - thanks.
2011-02-22 Naruto TAKAHASHI <[email protected]>
* src/photo.c: leak--
2010-11-17 Dave Beckett <[email protected]>
* Snapshotted flickcurl_1_20 for 1.20 release (GIT
36da7d18f61cacc33808d20fb9a00455b5dc34c6)
* NEWS.html: 1.20
* src/photosets-api.c:
(flickcurl_photosets_getPhotos_params): Make it work again.
2010-09-29 Dave Beckett <[email protected]>
* src/gallery.c: Casts for C++
* configure.ac: Use AC_LANG_SOURCE for gcc flag test
* NEWS.html, configure.ac: 1.20
* src/photos-api.c, src/photos-comments-api.c,
src/photos-geo-api.c, src/stats-api.c, src/tags-api.c: Adjust all
callers to flickcurl_invoke_photos_list() to not pass /photo xpath
suffix This makes searches work again.
2010-09-02 Dave Beckett <[email protected]>
* src/photo.c:
(flickcurl_invoke_photos_list): End with no-error if no <photo>
found.
* src/photo.c:
(flickcurl_invoke_photos_list): End with error if no <photo> found.
2010-07-24 Dave Beckett <[email protected]>
* Snapshotted flickcurl_1_19 for 1.19 release (GIT
acd343b3b123211be65b8b8539e847d8575fe56f)
* docs/tmpl/section-photo.sgml: Update doc tmpl for
flickcurl_photo struct
* docs/tmpl/section-note.sgml: Add doc tmpl
* src/flickcurl.h: autodocs
* src/note.c: autodocs
* docs/flickcurl-sections.txt: Added section note for
flickcurl_free_note and flickcurl_note
* utils/flickcurl.c:
Print photo notes using flickcurl_note fields from photo object.
(command_print_tags): Print a tags: label if nothing passed in.
(command_print_notes): Added to print a list of notes
(command_print_photo): Call above.
* src/note.c: remove C++ comments
2010-07-22 Dave Beckett <[email protected]>
* src/Makefile.am, src/flickcurl.h, src/flickcurl_internal.h,
src/note.c, src/photo.c:
Add flickr notes class flickcurl_note and use for photos
Added flickcurl_note class.
flickcurl_photo struct gains notes and and notes_count fields.
(flickcurl_free_note): Added.
(flickcurl_build_notes): Added internal function.
(flickcurl_build_photos): Use flickcurl_build_notes to add notes
structure.
2010-07-02 Dave Beckett <[email protected]>
* docs/tmpl/section-photoset.sgml, docs/tmpl/section-stats.sgml:
Update doc tmpls
* coverage.html: Update coverage for 1.19
* src/photos-api.c: fix autodocs for flickcurl_photos_removeTag
* docs/flickcurl-sections.txt: Add flickcurl_stats_getCSVFiles
* src/stat.c: autodocs for flickcurl_free_stat
* utils/flickcurl.c: Added command support for
flickcurl_photosets_removePhotos,
flickcurl_photosets_reorderPhotos and
flickcurl_photosets_setPrimaryPhoto
* docs/flickcurl-sections.txt, src/flickcurl.h,
src/photosets-api.c: Added flickcurl_photosets_removePhotos,
flickcurl_photosets_reorderPhotos and
flickcurl_photosets_setPrimaryPhoto
* src/galleries-api.c:
(flickcurl_galleries_editPhotos): Fix param check.
2010-05-15 Dave Beckett <[email protected]>
* src/upload-api.c:
(flickcurl_photos_upload): autodocs - note deprecation for
flickcurl_photos_upload_params
* src/upload-api.c: autodocs
2010-05-13 Dave Beckett <[email protected]>
* src/flickcurl.h, src/stats-api.c:
(flickcurl_stats_getCSVFiles): Added, but not implementing an API
with a death date 2 weeks away. Always fails.
2010-05-09 Dave Beckett <[email protected]>
* coverage.html: Updated to 1.18 - 176 API calls
* NEWS.html, configure.ac: 1.19
* utils/flickcurl.c:
(command_print_photos_list): Print out photos list new fields
* src/favorites-api.c, src/galleries-api.c,
src/groups-pools-api.c, src/interestingness-api.c,
src/panda-api.c, src/people-api.c: Update
flickcurl_invoke_photos_list callers to remove '/photos/' from
XPath suffix
* src/photo.c: Capture counts and, change xpath convention for
internal flickcurl_invoke_photos_list.
(flickcurl_invoke_photos_list): Capture the page, per-page and
total photos counts into fields of the returned photos_list
Adjust the calling convention to pass in the top level XPath, and
append '/photo' to it to get the individual photos via the
unchanged internal function flickcurl_build_photos.
* src/flickcurl.h: flickcurl_photos_list gains page, per_page and
total_count
* src/collection.c:
(flickcurl_build_collections): declare debug var in ifdef
2010-05-03 Dave Beckett <[email protected]>
* src/vsnprintf.c: Remove space from '> =' and '+ =' operators
added by accident -
http://github.com/dajobe/flickcurl/issues/#issue/4
2010-04-28 Dave Beckett <[email protected]>
* utils/flickcurl.c:
(main): remove harmless unused set of read_auth var [clang]
* utils/flickcurl.c:
(main): remove harmless unused set of lastdc var [clang]
* utils/flickcurl.c:
(command_people_getPhotos): initialise rc [clang]
* src/photosets-api.c:
(flickcurl_photosets_delete): result var never used [clang]
* src/tags.c:
(flickcurl_build_tag_clusters): cluster_count written but never read
[clang]
* src/context.c:
(flickcurl_build_contexts): setting i is useless in first loop
[clang]
* (flickcurl_build_collections): setting datatype is usless [clang]
2010-04-26 Dave Beckett <[email protected]>
* Snapshotted flickcurl_1_18 for 1.18 release
(GIT ebae39d1cde76c5f805bcd2cc4614615317b7eb0)
* docs/flickcurl-sections.txt, src/common.c, src/flickcurl.h,
src/flickcurl_internal.h:
Added flickcurl_curl_setopt_handler()
flickcurl_curl_setopt_handler: Added new handler typedef for
setting curl options.
(flickcurl_curl_setopt_handler): Added to set handler callback
with docs to note alternative flickcurl_new_with_handle()
* docs/flickcurl-sections.txt, src/common.c, src/flickcurl.h: Add
flickcurl_new_with_handle()
* src/flickcurl.h: autodocs
2010-04-15 Dave Beckett <[email protected]>
* utils/flickcurl.c:
Make command "photos.geo.setLocation" work Fixes second part of Issue
http://github.com/dajobe/flickcurl/issues/#issue/1
* src/photos-geo-api.c: Correct several cut-n-paste "latitude
should be longitude" errors
(flickcurl_photos_geo_batchCorrectLocation,
flickcurl_photos_geo_photosForLocation_params,
flickcurl_photos_geo_setLocation): sprintf longitude value into
longitude_s - not latitude.
Fixes Issue http://github.com/dajobe/flickcurl/issues#issue/1
2010-04-11 Dave Beckett <[email protected]>
* docs/tmpl/section-photos-people.sgml: give section a title
* docs/tmpl/section-gallery.sgml: give section a title
* docs/tmpl/section-stats.sgml: give section a title
* docs/flickcurl-sections.txt: Add new Galleries methods to docs
* NEWS.html: update flickcurl_galleries_editPhoto sig to match
param name.
* NEWS.html: docs
* utils/flickcurl.c: Add utility support for new galleries
commands.
* src/flickcurl.h, src/gallery.c: Make flickcurl_free_gallery()
public
2010-04-09 Dave Beckett <[email protected]>
* NEWS.html: 1.18 gallery docs
* src/flickcurl.h, src/photo.c: Added PHOTO_FIELD_gallery_comment
for photo comments in a gallery context.
* NEWS.html: Update 1.18 news with new galleries functions
* src/flickcurl.h: Update flickcurl_gallery docs
* src/photos-api.c: #docs for in_gallery
* src/flickcurl.h, src/galleries-api.c:
Added implementation for (rest of) galleries APIs
(flickcurl_galleries_create, flickcurl_galleries_editMeta,
flickcurl_galleries_editPhoto, flickcurl_galleries_editPhotos,
flickcurl_galleries_getInfo, flickcurl_galleries_getPhotos_params,
flickcurl_galleries_getPhotos): Added.
* src/flickcurl.h, src/urls-api.c: Added
flickcurl_urls_lookupGallery() As announced
http://code.flickr.com/blog/2010/04/08/galleries-apis/
* src/people-api.c: #autodocs
2010-03-18 Dave Beckett <[email protected]>
* NEWS.html: fix link
* NEWS.html, configure.ac: 1.18
* utils/flickcurl.c: Add command for flickcurl_people_getPhotos
* src/flickcurl.h, src/people-api.c:
Change flickcurl_people_getPhotos* to have int params for filters
(flickcurl_people_getPhotos_params, flickcurl_people_getPhotos);
Take int param for safe_search, content_type, privacy_filter.
* docs/tmpl/section-people.sgml: Add tmpl for
flickcurl_people_getPhotos
* docs/flickcurl-sections.txt: Add flickcurl_people_getPhotos
* src/flickcurl.h, src/people-api.c: Added
flickcurl_people_getPhotos() and
flickcurl_people_getPhotos_params().
2010-03-03 Dave Beckett <[email protected]>
* Snapshotted flickcurl_1_17 for 1.17 release
(GIT d5d0b9e21b3c347d1ce7581367a2de209781045f)
* src/flickcurl.h: autodocs
* docs/flickcurl-docs.xml: Added section-stats.xml
* docs/flickcurl-sections.txt: Added section-stats
* NEWS.html: notes
* src/stats-api.c:
(flickcurl_stats_getPhotostreamStats): Init count to 0
* src/stats-api.c: fix getPhotoDomains xpath
* utils/flickcurl.c: tidy params for required args
* utils/flickcurl.c: fix view command return values
* utils/flickcurl.c: Fix args for photostream commands
* utils/flickcurl.c: Tidy print stats
* src/stat.c: hide view debug message
* src/photo.c: Added photo_fields for counts of comments and
favorites
photo_fields_table gains xpaths for stats/@views, stats/@comments
and stats/@favorites
(flickcurl_build_photos): Skip setting fields with boolean string
value ''
* src/flickcurl.h:
Added photo_fields for counts of comments and favorites
flickcurl_photo_field_type gains PHOTO_FIELD_comments and
PHOTO_FIELD_favorites
* utils/flickcurl.c: fix stats commands
* src/stats-api.c: docs
* utils/flickcurl.c: Add stat commands to utility - not yet tested
* src/flickcurl.h, src/stat.c: Export flickcurl_free_stat
* src/flickcurl.h, src/stat.c:
(flickcurl_free_view_stats): Added to free view stats object.
* src/Makefile.am, src/flickcurl.h, src/stat.c, src/stats-api.c:
Fill out stat APIs with results from responses.
flickcurl_stat and flickcurl_view_stats structs added
Return array of flickcurl_stat** for stat requests that return
domains or referrers.
Return int for stat requests for view counts.
(flickcurl_stats_getTotalViews): Return flickcurl_view_stats* for
total views.
(flickcurl_free_stat): Added.
(flickcurl_free_stats): Added to free array of stats.
(flickcurl_build_stats): Added.
* src/flickcurl_internal.h: code style
* src/blog.c, src/blogs-api.c: code style
* src/flickcurl.h: Added flickr stats API prototypes
* src/Makefile.am, src/stats-api.c: Added flickr.stats API initial
skeleton APIs
2010-01-22 Dave Beckett <[email protected]>
* utils/flickcurl.c:
(command_people_getPhotosOf, command_galleries_getList): args fix
* utils/codegen.c: Handle optional and int args better - hard code
page & per_page for now.
2010-01-21 Dave Beckett <[email protected]>
* src/common.c: f
* src/common.c: Update fflickcurl_field_value_type_label
* docs/tmpl/section-photos-people.sgml: Updated photos.people
template
* docs/flickcurl-docs.xml, docs/flickcurl-sections.txt,
docs/tmpl/section-gallery.sgml, docs/tmpl/section-people.sgml,
src/flickcurl.h: Add documentation for galleries
* src/galleries-api.c, src/gallery.c: Add photo galleries support
- add photos to gallery, list galleries
(flickcurl_galleries_addPhoto, flickcurl_galleries_getList,
flickcurl_galleries_getListForPhoto): Added functions for gallery
API.
(flickcurl_free_galleries): Added destructor
* src/Makefile.am, src/common.c, src/flickcurl.h,
src/flickcurl_internal.h, utils/flickcurl.c: Add photo galleries
support - add photos to gallery, list galleries
flickcurl_gallery: added new type
Added new gallery.c and galleries-api.c modules.
(flickcurl_galleries_addPhoto, flickcurl_galleries_getList,
flickcurl_galleries_getListForPhoto): Added functions for gallery
API.
(flickcurl_free_galleries): Added destructor Updated flickcurl
utility to call above functions.
* src/Makefile.am, src/flickcurl.h, src/photos-people-api.c,
utils/flickcurl.c: Added flickr.photos.people.* APIs -
add/remove/edit/list people in photos.
(flickcurl_photos_people_add, flickcurl_photos_people_delete,
flickcurl_photos_people_deleteCoords,
flickcurl_photos_people_editCoordsflickcurl_photos_people_getList):
Added
Updated utility to support new above functions.
* src/flickcurl.h, src/people-api.c, utils/flickcurl.c: Added
flickr.people.getPhotosOf support in
flickcurl_people_getPhotosOf_params() and
flickcurl_people_getPhotosOf()
(flickcurl_people_getPhotosOf_params): Added with
flickcurl_photos_list_params* list_params for full control of
paging and result formats.
(flickcurl_people_getPhotosOf_params): Added, calling above with
simple photos result and fixed params.
Added support for people.getPhotosOf to flickcurl utility
(command_people_getPhotosOf): Added.
* utils/codegen.c: 2010
* NEWS.html, configure.ac: 1.17
2010-01-13 Dave Beckett <[email protected]>
* Snapshotted flickcurl_1_16 for 1.16 release
(GIT 12509697523a4a91378fbb154a71d1c636d03616)
* docs/Makefile.am, docs/flickcurl-authenticate.xml: Add
appgarden-mobile-auth-page.png for results of mobile auth and
update words
* utils/flickcurl.c: Remove spaces around config examples. Add
pointer to web site auth page
2010-01-04 Dave Beckett <[email protected]>
* src/config.c: Allow spaces around = in config key=value lines
Include ctype.h for isspace()
(read_ini_config): Skip spaces before = in key and after = in
value.
* utils/flickcurl.c: Fix .flickcurl.conf generation to not add
spaces around =
2010-01-03 Dave Beckett <[email protected]>
* configure.ac: do not edit VERSION to make major/minor/release
vars
* NEWS.html, configure.ac: Bump version to 1.16
* docs/flickcurl-docs.xml, LICENSE.html, NEWS.html, README.html,
coverage.html: Update to 2010
* configure.ac, src/Makefile.am:
Add LIBFLICKCURL_LIBTOOL_VERSION and use to explicitly set libtool
library version
* configure.ac:
Remove duplicate AM_INIT_AUTOMAKE call and AC_REVISION
2010-01-02 Dave Beckett <[email protected]>
* configure.ac:
automake 1.11 requires autoconf 2.62
* autogen.sh:
Make autogen.sh skip configuring in release dirs
* Snapshotted flickcurl_1_15 for 1.15 release (GIT
1131dbef927ac920d8b85cee571650293c17015f)
* docs/flickcurl-sections.txt: remove flickcurl_set - never
existed
2009-12-31 Dave Beckett <[email protected]>
* flickcurl.rdf.in: Flickcurl is in GIT
2009-12-21 Dave Beckett <[email protected]>
* autogen.sh: Tidying autogen.
Ignore configure.ac in release dirs.
Add gtkdoc_args iff gtk-doc is present.
Rename ltdl to ltdl_args
Rename silent to silent_args
2009-12-20 Dave Beckett <[email protected]>
* src/common.c: restore "=" character constant
* docs/tmpl/section-photo.sgml: Update templates
* utils/flickcurl.c: remove final nl from photos.search help
* utils/flickcurl.c: photos.search add geo-context is-commons and
is-gallery args Add recent changes to flickcurl_search_params to
the photos.search command: geo-context 1-2, is-commons and
is-gallery args.
* src/activity-api.c, src/activity.c, src/args.c, src/auth-api.c,
src/blog.c, src/blogs-api.c, src/category.c, src/collection.c,
src/comments.c, src/common.c, src/commons-api.c, src/config.c,
src/contacts-api.c, src/contacts.c, src/context.c, src/exif.c,
src/favorites-api.c, src/group.c, src/groups-api.c,
src/groups-members-api.c, src/groups-pools-api.c,
src/institution.c, src/interestingness-api.c, src/location.c,
src/machinetags-api.c, src/machinetags.c, src/md5.c, src/members.c,
src/method.c, src/panda-api.c, src/people-api.c, src/perms.c,
src/person.c, src/photo.c, src/photos-api.c,
src/photos-comments-api.c, src/photos-geo-api.c,
src/photos-licenses-api.c, src/photos-notes-api.c,
src/photos-transform-api.c, src/photos-upload-api.c,
src/photoset.c, src/photosets-api.c, src/photosets-comments-api.c,
src/place.c, src/places-api.c, src/prefs-api.c,
src/reflection-api.c, src/serializer.c, src/shape.c, src/size.c,
src/tags-api.c, src/tags.c, src/test-api.c, src/ticket.c,
src/upload-api.c, src/user_upload_status.c, src/video.c,
src/vsnprintf.c, utils/codegen.c, utils/flickcurl.c,
utils/flickrdf.c, utils/list-methods.c:
Code style - add whitespace around assignments (=, +=, -=)
and comparators (==, <=, >=)
* autogen.sh, build/.gitignore, build/shave-libtool.in,
build/shave.in, build/shave.m4, configure.ac:
Switch from SHAVE to automake 1.11 AM_SILENT_RULES Remove SHAVE
files. Depend on automake 1.11 and it's dependencies. Add
--enable-silent-rules to configure; only enabled for maintainer
builds via autogen.sh Make autogen.sh pick glibtoolize on OSX.
* src/photos-api.c:
(flickcurl_photos_search): Support #flickcurl_search_params
in_gallery field.
* src/flickcurl.h:
flickcurl_search_params gains in_gallery field added to the API
sometime.
2009-12-12 Dave Beckett <[email protected]>
* flickcurl-config.in:
Try computing the decimal version another way
* flickcurl-config.in:
Make flickcurl-config be a wrapper around pkg-config flickcurl.
The --prefix=DIR and --libtool-libs options are no longer
supported.
2009-12-11 Dave Beckett <[email protected]>
* NEWS.html, configure.ac:
Bump version to 1.15
* Update authentication docs to use screen shots
* Add screen dumps to dist
* Added App Garden screen dumps for auth flow
2009-11-26 Dave Beckett <[email protected]>
* appgarden changes
2009-11-20 Dave Beckett <[email protected]>
* prune wiki suffix for pkgconfig url
2009-11-19 Dave Beckett <[email protected]>
* Fail configure if pkg-config is missing to prevent cascading
errors for libxml and curl checks.
2009-09-20 Dave Beckett <[email protected]>
* Snapshotted flickcurl_1_14 for 1.14 release (GIT
34290b418097bb755dccdeaaf2fa45d125957c45)
2009-09-18 Dave Beckett <[email protected]>
* src/photo.c: Add 1 to static strings short_uri_alphabet and
short_uri_prefix for NUL. Remove extra const in other static
strings
2009-09-15 Dave Beckett <[email protected]>
* docs/flickcurl-searching.xml:
words and more words.
explain search params with kitten and spelcheck
* examples/search-photos.c:
do not strdup strings that are saved in a static struct that will
not be freed.
2009-09-14 Dave Beckett <[email protected]>
* docs/Makefile.am:
adjust dist-hook-local rule
* docs/flickcurl-searching.xml:
shorter compile line; words
* examples/search-photos.c:
just print photo ID
* examples/search-photos.c:
restore errno.h
* examples/search-photos.c:
Even smaller - add usage/-h hard coded
* examples/search-photos.c:
remove conditional headers.
* examples/search-photos.c:
Simplify - remove options, to make a better example program.
* docs/Makefile.am:
Copy search.photos.c to docs
* docs/Makefile.am:
Filter search-photos.c to here and clean up after
* docs/flickcurl-searching.xml:
xml; more docs
* docs/Makefile.am:
Fix CSS in srcdir
* docs/flickcurl-searching.xml:
More searching docs
* configure.ac, docs/Makefile.am:
Fixup absolute positioning in
gtkdoc-mkhtml generated CSS
2009-09-13 Dave Beckett <[email protected]>
* docs/flickcurl-searching.xml:
xml; more words
* utils/flickcurl.c:
do not emit blank line at end
* docs/flickcurl-searching.xml:
typo in id
* docs/flickcurl-searching.xml:
move text here from generated code
* src/flickcurl.h:
flickcurl_search_params: correct autodocs to note
when 0 is taken as param is not present.
* src/common.c:
(flickcurl_search_params_init): Internal docs why memset to 0 is ok.
* src/photos-api.c:
(flickcurl_photos_search_params): Only set woe_id if >0
* docs/flickcurl-searching.xml:
add xi xmlns
* docs/Makefile.am, docs/flickcurl-docs.xml,
docs/flickcurl-searching.xml:
Added searching tutorial
* NEWS.html:
words
* NEWS.html:
Update is_commons and geo_context search params notes.
* NEWS.html:
Use path_alias description from
http://tech.groups.yahoo.com/group/yws-flickr/message/5053
* src/common.c:
Add path_alias description from
http://tech.groups.yahoo.com/group/yws-flickr/message/5053
2009-09-08 Dave Beckett <[email protected]>
* NEWS.html: 1.14
* examples/Makefile.am, examples/search-photos.c,
utils/Makefile.am, utils/search-photos.c:
Move search-photos.c from
utils to examples dir.
* .gitignore:
do not ignore flickr.conf
* src/win32_flickcurl_config.h:
2009
* utils/flickcurl.c:
typo
* utils/flickcurl.c:
Add newline to msg
* docs/flickcurl-authenticate.xml:
Update flickr website auth sequence
2009-09-07 Dave Beckett <[email protected]>
* docs/Makefile.am:
Do not erase flickcurl-extras.xml after building it for dist.
* .gitignore: Ignore tarballs
* docs/.gitignore, docs/Makefile.am:
Generate flickcurl-extras.xml via ../utils/flickcurl -m1
* docs/.gitignore: Ignore xml dir here
* docs/Makefile.am, utils/Makefile.am, utils/flickcurl.c:
Adjust flickcurl utility -m maintainer option to generate
extras too The -m option now takes an int arg: 0 for the manpage
fragment and 1 for the docbook extras enumeration fragment - not
currently used. This option remains only built when compiling
for maintainer mode.
* .gitignore, src/common.c:
Switch captured web service response dir to 'captured'
* .gitignore: Do not ignore xml/ in all dirs
* docs/flickcurl-docs.xml: Make this newer legal docbook
2009-09-06 Dave Beckett <[email protected]>
* src/video.c:
code style
2009-09-06 Huge <[email protected]>
* src/video.c:
Some small cleanup, but still don't like that goto;)
And consult the conversion in >> v=(flickcurl_video*)calloc(1,
sizeof(flickcurl_video)); << with bottom lines of this:
http://en.wikipedia.org/wiki/Malloc#Usage_example
Signed-off-by: Dave Beckett <[email protected]>
Original commit was 2009-08-04
2009-09-06 Dave Beckett <[email protected]>
* utils/Makefile.am:
Remove list-methods rule for maintainer
* utils/search-photos.c:
Make this search API example code. Rename list-photos to
search-photos throughout and adjust user messages. Add more
comments about parameter uses.
* utils/.gitignore, utils/Makefile.am, utils/list-photos.c,
utils/search-photos.c:
Rename list-photos to search-photos
* utils/.gitignore:
Add list-photos to ignore
* docs/tmpl/section-photo.sgml:
Add generated docs for new search param fields
2009-08-18 Dave Beckett <[email protected]>
* utils/list-photos.c:
usage
2009-08-18 Dave Beckett <[email protected]>
* utils/list-photos.c:
photos for me (the user) only
2009-08-18 Dave Beckett <[email protected]>
* utils/Makefile.am, utils/list-photos.c:
Add list-photos
2009-08-17 Dave Beckett <[email protected]>
* NEWS.html, configure.ac:
Bump version to 1.14
2009-08-17 Dave Beckett <[email protected]>
* src/photos-api.c:
(flickcurl_photos_search_params): Support geo_context and
is_comments search params.
2009-08-17 Dave Beckett <[email protected]>
* src/flickcurl.h:
flickcurl_search_params gains geo_context and
is_comments search params added to the API at some point
2009-08-17 Dave Beckett <[email protected]>
* src/common.c:
flickcurl_extras_format_info: add new (undocumented?) API
'extras': path_alias, url_m, url_o, url_s, url_sq, url_t
path_alias is the only one not totally clear; the rest provide
URLs of images.
2009-08-01 Dave Beckett <[email protected]>
* Snapshotted flickcurl_1_13 for 1.13 release
2009-07-31 Dave Beckett <[email protected]>
* docs/flickcurl-sections.txt, docs/tmpl/section-photo.sgml:
Added flickcurl_source_uri_as_photo_id
* src/photo.c: add #include <ctype.h> for isdigit()
* src/flickcurl.h, src/photo.c, utils/flickcurl.c:
Added utility function flickcurl_source_uri_as_photo_id to get
photo IDs from image URLs
(flickcurl_source_uri_as_photo_id): Added - decoding the raw image
URL format into a photo ID that can be used for other API calls.
Added flickcurl utility command getphotoid to call this.
2009-07-26 Dave Beckett <[email protected]>
* README.html:
Tidy readme words - do not mention a Flickr API date.
* docs/flickcurl-sections.txt, docs/tmpl/section-core.sgml:
Document flickcurl_get_current_request_wait
* src/common.c, src/flickcurl.h:
Added call to get current web service request delay time.
(flickcurl_get_current_request_wait): Added. Allows applications
to know when the library will delay - sleep - in order to let the
web service rate limiting work. This allows the application to
come back later if it desires rather than have Flickcurl freeze
the entire application.
* src/common.c, src/flickcurl_internal.h:
Use a dynamic buffer size for request URI construction
Flickcurl crashed when dealing with requests e.g photo IDs that
exceeded the "big enough" buffer for a URI. Need to move to a
dynamic model. Bug noticed and reported by Henning Spruth -
thanks!
flickcurl_s structure moves uri to a char* not fixed buffer and
adds a uri_len field to record length of allocated buffer.
(flickcurl_prepare_common): Calculate length needed and create a
new url buffer if current one is too small.
2009-07-09 Dave Beckett <[email protected]>
* src/common.c:
(flickcurl_free): Free any allocated user_agent. Resource leak
found by Debarshi Ray - Thanks.
2009-07-09 Dave Beckett <[email protected]>
* NEWS.html, configure.ac:
Bump version to 1.13
2009-07-04 Dave Beckett <[email protected]>
* NEWS.html: 1.12
* 1.12
2009-07-01 Dave Beckett <[email protected]>
* coverage.html:
Updated for recent API additions: now 145 -
flickr.blogs.getServices - flickr.places.getTopPlacesList
2009-07-01 Dave Beckett <[email protected]>
* docs/tmpl/section-blogs.sgml, docs/tmpl/section-place.sgml:
Updated sgml doc templates for recent APIs
2009-07-01 Dave Beckett <[email protected]>
* docs/flickcurl-sections.txt:
Added flickcurl_blog_service
2009-07-01 Dave Beckett <[email protected]>
* src/places-api.c:
(flickcurl_places_getTopPlacesList): autodocs
2009-07-01 Dave Beckett <[email protected]>
* docs/flickcurl-sections.txt:
Added flickcurl_places_getTopPlacesList
2009-07-01 Dave Beckett <[email protected]>
* utils/flickcurl.c:
Allow WOEID args to be "-" to omit them in
several calls. Update places.getTopPlacesList args doc
2009-07-01 Dave Beckett <[email protected]>
* src/flickcurl.h, src/places-api.c, utils/flickcurl.c:
Implement new Flickr API call flickr.places.getTopPlacesList
(flickcurl_places_getTopPlacesList): Added to implement
flickr.places.getTopPlacesList.