~ubuntu-branches/ubuntu/intrepid/libspectre/intrepid

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
commit c81214f5bf9c2340d9af8f047adf166d824fc09f
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Jan 3 17:16:51 2008 +0100

    Fix a typo

 libspectre/spectre-page.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit e541782831f43731b0b0820a487becef088d6bf7
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Jan 3 10:35:26 2008 +0100

    Add spectre_document_get_page_size instead of returning page size in document_render funcs

 libspectre/spectre-document.c |   53 ++++++++++++++++++++++++----------------
 libspectre/spectre-document.h |   14 +++++++---
 test/spectre-test.c           |   50 +++++++++++++++++++++++++++++++++++++-
 3 files changed, 90 insertions(+), 27 deletions(-)

commit 7ef5479d0ff3783d3b416a3e70f69a853e0fa6d5
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Wed Jan 2 14:02:12 2008 +0100

    Do not add x, y offset twice in multi-page documents
    
    Fixes tile rendering in documents like tiger.ps

 libspectre/spectre-gs.c |   12 ++++++++++--
 test/spectre-test.c     |    1 -
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 0bdbc8287aa4fb397babd47f0744d077c271f986
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Wed Jan 2 13:28:18 2008 +0100

    Cache page size

 libspectre/spectre-page.c |   21 +++++++++++++++------
 1 files changed, 15 insertions(+), 6 deletions(-)

commit 8c881e8b3942c703dd6c5b551afb4f1fcdb233f4
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Wed Jan 2 13:21:09 2008 +0100

    Add spectre_document_render and spectre_document_render_full

 TODO                          |    2 +-
 libspectre/spectre-document.c |   61 +++++++++++++++++++++++++++++++++++++++++
 libspectre/spectre-document.h |   34 +++++++++++++++++++++++
 test/spectre-test.c           |   35 +++++++++++++++++++++++
 4 files changed, 131 insertions(+), 1 deletions(-)

commit d63bd29ec639dd670d03022ba1674b2caab5175d
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 23 16:20:35 2007 +0100

    Change get/set_scale to get/set the scale factor for both X and Y dimensions

 libspectre/spectre-device.c         |   13 ++++---------
 libspectre/spectre-private.h        |    3 ++-
 libspectre/spectre-render-context.c |   22 +++++++++++++++-------
 libspectre/spectre-render-context.h |   20 +++++++++++++-------
 4 files changed, 34 insertions(+), 24 deletions(-)

commit c69e57072d1a8554ba98a01ec1c2e12a346f442c
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 23 12:30:03 2007 +0100

    Compile test also with all warnings and fix some of them.

 test/Makefile.am    |    1 +
 test/spectre-test.c |    6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 778c78864a4233f8f27575e9ff40e3323744dad2
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 23 12:25:55 2007 +0100

    Update documentation

 libspectre/spectre-page.h           |   13 +++++++++++++
 libspectre/spectre-render-context.h |    4 +++-
 2 files changed, 16 insertions(+), 1 deletions(-)

commit 6e8bf5d5097f902c447fb3037d139febcac036e9
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 23 12:10:17 2007 +0100

    Add spectre_page_render_slice to render only a rectangle of the page.
    
    Fixes bug #13754.

 libspectre/spectre-device.c       |   71 +++++++++++++-------------
 libspectre/spectre-device.h       |    4 ++
 libspectre/spectre-exporter-pdf.c |    2 +-
 libspectre/spectre-gs.c           |   10 ++--
 libspectre/spectre-gs.h           |    4 +-
 libspectre/spectre-page.c         |   32 +++++++++++-
 libspectre/spectre-page.h         |    9 +++
 test/spectre-test.c               |   98 +++++++++++++++++++++++++++++++++++++
 8 files changed, 187 insertions(+), 43 deletions(-)

commit 714b36d48ed42fc8a45424957b135ee3f23fee31
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Fri Dec 21 13:21:59 2007 +0100

    Update docs

 libspectre/spectre-page.h           |    8 +++++---
 libspectre/spectre-render-context.h |    4 +++-
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 995787d096d6b5c955f2ea6e8ca6f273e7441118
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Dec 17 18:34:26 2007 +0100

    We need to increment libspectre version before running make distcheck

 RELEASING |   36 ++++++++++++++++++------------------
 1 files changed, 18 insertions(+), 18 deletions(-)

commit c13f45aefef396cc232939a455fda22fc5855290
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 16 17:24:46 2007 +0100

    Update for release 0.1.0

 NEWS         |    4 ++++
 configure.ac |    4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 3c57e6d71491c1001c61947a006f33cb17d4e0bd
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 16 17:10:42 2007 +0100

    Add scripts and instructions for releasing, based on cairo release system

 Makefile.am |  123 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 RELEASING   |  101 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 219 insertions(+), 5 deletions(-)

commit 764c681fa2fa0bc91f8b7ba535b5fc2b35ae4b25
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 16 16:39:48 2007 +0100

    Write README file

 README |   33 +++++++++++++++++++++++++++++++++
 TODO   |    2 +-
 2 files changed, 34 insertions(+), 1 deletions(-)

commit 9c2b70d1edc95bc3b86c2bd1ef6e856d8f0e6d65
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Dec 15 18:26:28 2007 +0100

    Use Doxyfile.in instead of Doxyfile and update it

 Doxyfile     |  244 ---------------------------------------------------------
 Doxyfile.in  |  247 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |    4 +
 3 files changed, 251 insertions(+), 244 deletions(-)

commit a45cf18b80c044f68061d54837ca361131e8a070
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Dec 15 17:48:47 2007 +0100

    Doxyfile for giving doxygen on how to generate docu

 Doxyfile |  244 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 244 insertions(+), 0 deletions(-)

commit a7a4d056adc742c8edfa9923a24c2abc71cdf8f1
Author: Albert Astals Cid <aacid@kde.org>
Date:   Mon Dec 10 19:42:43 2007 +0100

    dummy commit to see if i got rights

 TODO |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit da5ef29ee05eaca46d588e5c46c6f0120a5ca228
Merge: 0f85e0a... d53d9fc...
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Dec 9 20:34:17 2007 +0100

    Merge branch 'master' of ssh://aacid@git.freedesktop.org/git/libspectre

commit d53d9fc01133e8a24fa716b4b3296904fe5ae9bb
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 9 19:46:43 2007 +0100

    Make libspectre require libgs >= 8.61

 configure.ac |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

commit 0f85e0aede7bad490433f982163b8184dabbed28
Merge: 708c652... 3d2c0fd...
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Dec 9 19:15:55 2007 +0100

    Merge branch 'master' of ssh://aacid@git.freedesktop.org/git/libspectre

commit 3d2c0fd90a796c5fd40acf053e3e3b57357a017c
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 9 18:29:28 2007 +0100

    Update TODO

 TODO |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 6229b9665ff4c93ad75195f8f33e4745d6f3a0d4
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 9 18:26:55 2007 +0100

    Add macros to allow getting information about libspectre version from clients

 configure.ac                    |    1 +
 libspectre/Makefile.am          |    5 ++++-
 libspectre/spectre-version.h.in |   38 ++++++++++++++++++++++++++++++++++++++
 libspectre/spectre.h            |    1 +
 test/spectre-test.c             |    2 ++
 5 files changed, 46 insertions(+), 1 deletions(-)

commit 708c6525124c3c6a4ecd82caabf6d8358b5469cc
Merge: 41ee378... 43024fb...
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Dec 9 18:07:46 2007 +0100

    Merge branch 'master' of ssh://aacid@git.freedesktop.org/git/libspectre

commit 43024fb54e14181ac8fbe5c68810ba1a012756c6
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Dec 9 17:57:42 2007 +0100

    Add .gitignore files

 .gitignore            |   19 +++++++++++++++++++
 libspectre/.gitignore |    4 ++++
 test/.gitignore       |    4 ++++
 3 files changed, 27 insertions(+), 0 deletions(-)

commit a94bb48a45a5b14cf6d7457138363e5057a78269
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 9 18:05:53 2007 +0100

    Add libtool versioning stuff to configure.ac

 configure.ac           |   45 ++++++++++++++++++++++++++++++++++++++++++++-
 libspectre/Makefile.am |    2 +-
 2 files changed, 45 insertions(+), 2 deletions(-)

commit 41ee3787b032421986c44845c72cb26d0512b0c5
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Dec 9 17:57:42 2007 +0100

    Add .gitignore files

 .gitignore            |   19 +++++++++++++++++++
 libspectre/.gitignore |    4 ++++
 test/.gitignore       |    4 ++++
 3 files changed, 27 insertions(+), 0 deletions(-)

commit f1d8d85556bfd7ac4efd78d0dbc1f65180e45565
Merge: d216ccd... c04b5db...
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Dec 9 17:27:54 2007 +0100

    Merge branch 'master' of ssh://aacid@git.freedesktop.org/git/libspectre

commit c04b5db53e4447f861f58e074cab12843ba95531
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Dec 9 16:20:32 2007 +0100

    Fix memory leak

 libspectre/spectre-exporter.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 3fe829cbad56bfdc84f87b96ea3e72d76c0482b1
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Dec 8 18:00:29 2007 +0100

    Fix SpectreOrientation enum items order

 libspectre/spectre-page.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit d2a3abcc066330f893fa53dee8ad71dbc452d95a
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Dec 8 17:40:47 2007 +0100

    Skip nested documents that don't have BeginDocument and EndDocument but have %PS and %%EOF

 libspectre/ps.c |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

commit 3c90fb679d3654dcee6ced40030ba7730dd10fac
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Dec 8 15:18:42 2007 +0100

    Add library version info

 libspectre/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit d216ccd6d245f4be51675b42887f19ce2161b90a
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Dec 8 13:01:29 2007 +0100

    Typo--

 TODO |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 182697ecefc0e72527e45b7c2d5b2059300831d7
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Dec 8 12:56:21 2007 +0100

    Handle ghostscript stdout

 libspectre/spectre-gs.c |   15 ++++++++++++++-
 1 files changed, 14 insertions(+), 1 deletions(-)

commit 6f77c1859e75ab5814e80103723356650fe25c3c
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Fri Dec 7 11:23:58 2007 +0100

    Add assert and check functions

 TODO                                |    6 +-
 configure.ac                        |   18 +++++
 libspectre/ps.c                     |    5 +-
 libspectre/spectre-document.c       |   54 ++++++++++++++++
 libspectre/spectre-exporter.c       |   11 +++-
 libspectre/spectre-page.c           |   15 ++++-
 libspectre/spectre-render-context.c |   41 +++++-------
 libspectre/spectre-utils.c          |  119 +++++++++++++++++++++++++++++++++++
 libspectre/spectre-utils.h          |   81 +++++++++++++++++++++++-
 test/spectre-test.c                 |    2 +
 10 files changed, 316 insertions(+), 36 deletions(-)

commit f553a5ba63cfc1e44bdf07979be1233a6ba5c9fb
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Nov 26 16:20:47 2007 +0100

    Revert a change committed by mistake

 libspectre/spectre-device.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 6fd512eac8bb503a520f1ffe9ecd4c4bd6690de4
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Nov 26 11:55:39 2007 +0100

    Add a Makefile.am to ghostscript dir in order to make it distribuible

 Makefile.am                        |    2 +-
 TODO                               |    2 +-
 configure.ac                       |    1 +
 libspectre/Makefile.am             |    2 ++
 libspectre/ghostscript/Makefile.am |    4 ++++
 libspectre/spectre-device.c        |    2 +-
 libspectre/spectre-gs.c            |    4 ++--
 7 files changed, 12 insertions(+), 5 deletions(-)

commit 68a5c9b2b9f94a203232960793e6cbfd29181b27
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Nov 26 10:52:48 2007 +0100

    Add -sDEVICE=display to spectre device arguments list
    
    Before libgs 8.61 display was the default device, so that we didn't need to
    specify it. However since libgs 8.61 x11 is the default device and it's used
    when no device is specified.

 libspectre/spectre-device.c |   23 ++++++++++++-----------
 1 files changed, 12 insertions(+), 11 deletions(-)

commit 4be9e3eff04b979368892cabcc5b32c03a0a3ac4
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Nov 12 21:05:50 2007 +0100

    Do not translate twice when document BBox == PageBBox

 libspectre/spectre-gs.c |   29 +++++++++++++++++++++++------
 1 files changed, 23 insertions(+), 6 deletions(-)

commit f3e8df3c4547195954f3c16597d23d073febfcb2
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Nov 12 14:43:02 2007 +0100

    Apply debian patch 299447and433898-nested-eps
    
    See gv bug http://savannah.gnu.org/bugs/?20752

 libspectre/ps.c |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

commit d30c9cdf18a87d43c53210be789e6a9b0c67f100
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Nov 12 14:12:32 2007 +0100

    Fix a crash when trying to get the page label in non structured documents

 libspectre/spectre-page.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit c80ced3b48e8bac6ba5b0a554c466c0b0737d377
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Nov 8 12:24:31 2007 +0100

    Add spectre_document_get_by_label

 libspectre/spectre-document.c |   27 +++++++++++++++++++++++++++
 libspectre/spectre-document.h |    9 +++++++++
 test/spectre-test.c           |   11 ++++++++++-
 3 files changed, 46 insertions(+), 1 deletions(-)

commit d9f39c9aed2543a3b8142cd5bd6c93b978a14bf0
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Nov 8 12:06:53 2007 +0100

    Add spectre_page_get_label

 libspectre/spectre-page.c |    6 ++++++
 libspectre/spectre-page.h |    5 +++++
 test/spectre-test.c       |    6 ++++--
 3 files changed, 15 insertions(+), 2 deletions(-)

commit bac7b503fc5b6ddc451fbcd28797be5ed1b307c8
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Nov 8 10:43:09 2007 +0100

    malloc needs #include <stdlib.h>

 libspectre/spectre-utils.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 4b8bea962dc5b5f9a048f00070ee91a2f5d9873e
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Wed Nov 7 13:03:08 2007 +0100

    Pass BBox coords to spectre_gs_process when sending page contents to gs
    
    Fixes test case no-left-turns.ps

 libspectre/spectre-gs.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit c881467b74aec8e1b6988fc94b613366932f4d4a
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Tue Nov 6 12:23:32 2007 +0100

    Fix a crash in test when exporter fails

 test/spectre-test.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 99c2311f470900798d283cc138325af92161dfb9
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Tue Nov 6 12:06:49 2007 +0100

    Add spectre_document_save_to_pdf

 libspectre/spectre-document.c |   48 ++++++++++++++++++++++++++++++++++++++++-
 libspectre/spectre-document.h |    8 ++++++-
 test/spectre-test.c           |   23 +++++++++++++++++++
 3 files changed, 77 insertions(+), 2 deletions(-)

commit 8f14a557158bb33d610a5493401a2b8a02fec1d5
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Tue Nov 6 11:24:22 2007 +0100

    Handle errors in spectre_exporter_ps_begin

 libspectre/spectre-exporter-ps.c |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

commit 6bfbffda58456ee228bc87bda6681049b96382c4
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Tue Nov 6 11:23:40 2007 +0100

    Add spectre_document_save

 TODO                          |    7 ++++---
 libspectre/ps.c               |   10 ++++++++++
 libspectre/ps.h               |   10 ++++++++++
 libspectre/spectre-document.c |   40 ++++++++++++++++++++++++++++++++++++++++
 libspectre/spectre-document.h |    7 +++++++
 libspectre/spectre-status.c   |    2 ++
 libspectre/spectre-status.h   |    4 +++-
 test/spectre-test.c           |   18 +++++++++++++++++-
 8 files changed, 93 insertions(+), 5 deletions(-)

commit a7fdd1340bb0edeaaf57db1a7698ffbaa974848d
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Nov 5 17:09:15 2007 +0100

    Add lots of warning flags for gcc and compatible compilers. Fix some compile warnings.

 configure.ac            |   71 ++++++++++++++++++++++++++++++++++++++++++++++-
 libspectre/Makefile.am  |    4 ++-
 libspectre/ps.c         |   26 ++++++++---------
 libspectre/spectre-gs.c |    2 +-
 4 files changed, 86 insertions(+), 17 deletions(-)

commit 0e87354d2be1f3307cc0b3ad8dc2b6e03c7225cc
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Nov 5 16:38:38 2007 +0100

    Add our own implementation of strdup, strncasecmp and strcasecmp since they are not ansic

 libspectre/spectre-utils.c |   60 ++++++++++++++++++++++++++++++++++++++++++++
 libspectre/spectre-utils.h |    6 ++++
 2 files changed, 66 insertions(+), 0 deletions(-)

commit ab27ac85714502846c72926fbeba263a1ede6bfc
Author: Albert Astals Cid <aacid@kde.org>
Date:   Mon Nov 5 10:18:35 2007 +0100

    Update COPYING and FSF address

 COPYING                             |   27 +++++++++++++--------------
 libspectre/ps.c                     |    4 ++--
 libspectre/ps.h                     |    4 ++--
 libspectre/spectre-device.c         |    2 +-
 libspectre/spectre-device.h         |    2 +-
 libspectre/spectre-document.c       |    2 +-
 libspectre/spectre-document.h       |    2 +-
 libspectre/spectre-exporter-pdf.c   |    2 +-
 libspectre/spectre-exporter-ps.c    |    2 +-
 libspectre/spectre-exporter.c       |    2 +-
 libspectre/spectre-exporter.h       |    2 +-
 libspectre/spectre-gs.c             |    2 +-
 libspectre/spectre-gs.h             |    2 +-
 libspectre/spectre-macros.h         |    2 +-
 libspectre/spectre-page.c           |    2 +-
 libspectre/spectre-page.h           |    2 +-
 libspectre/spectre-private.h        |    2 +-
 libspectre/spectre-render-context.c |    2 +-
 libspectre/spectre-render-context.h |    2 +-
 libspectre/spectre-status.c         |    2 +-
 libspectre/spectre-status.h         |    2 +-
 libspectre/spectre-utils.c          |    2 +-
 libspectre/spectre-utils.h          |    2 +-
 libspectre/spectre.h                |    2 +-
 24 files changed, 38 insertions(+), 39 deletions(-)

commit 3419a054fc916aff188582bbaa5cee1f80778b43
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Nov 4 20:44:26 2007 +0100

    Add SpectreExporter to export to PS and PDF

 libspectre/Makefile.am            |    9 +-
 libspectre/ps.c                   |   80 +++++++++++
 libspectre/ps.h                   |   27 ++++
 libspectre/spectre-device.c       |  217 ++++---------------------------
 libspectre/spectre-document.c     |    6 +
 libspectre/spectre-exporter-pdf.c |  105 +++++++++++++++
 libspectre/spectre-exporter-ps.c  |   80 +++++++++++
 libspectre/spectre-exporter.c     |  100 ++++++++++++++
 libspectre/spectre-exporter.h     |   49 +++++++
 libspectre/spectre-gs.c           |  261 +++++++++++++++++++++++++++++++++++++
 libspectre/spectre-gs.h           |   56 ++++++++
 libspectre/spectre-private.h      |   29 ++++-
 libspectre/spectre-status.c       |    2 +
 libspectre/spectre-status.h       |    4 +-
 libspectre/spectre.h              |    1 +
 test/spectre-test.c               |   44 ++++++
 16 files changed, 877 insertions(+), 193 deletions(-)

commit 6e5849a2ab3143ecf78c7ee1b1df405429a3d946
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Nov 4 13:06:33 2007 +0100

    First step for documenting the public api

 TODO                                |    2 +-
 libspectre/spectre-document.h       |   72 +++++++++++++++++++++++++++++++++++
 libspectre/spectre-page.h           |   42 ++++++++++++++++++--
 libspectre/spectre-render-context.c |    1 -
 libspectre/spectre-render-context.h |   70 ++++++++++++++++++++++++++++++++++
 libspectre/spectre-status.h         |   25 +++++++++---
 6 files changed, 200 insertions(+), 12 deletions(-)

commit b750675f315b5325ccdaeed279cd449376d9898b
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Nov 4 13:03:26 2007 +0100

    Add spectre_document_get_for

 libspectre/ps.c               |    3 +++
 libspectre/ps.h               |    1 +
 libspectre/spectre-document.c |   11 +++++++++++
 libspectre/spectre-document.h |    1 +
 test/spectre-test.c           |    2 ++
 5 files changed, 18 insertions(+), 0 deletions(-)

commit 8c925ad2176507d03817c7f7b9e5b2921608ace4
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Nov 3 15:31:12 2007 +0100

    Add spectre_document_get_creation_date

 libspectre/spectre-document.c |   13 ++++++++++++-
 libspectre/spectre-document.h |    1 +
 test/spectre-test.c           |    2 ++
 3 files changed, 15 insertions(+), 1 deletions(-)

commit 07e13606894b22a8750356b72b58e4c02e6e5cd3
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Nov 3 12:58:47 2007 +0100

    Add spectre_document_get_format

 libspectre/ps.c               |   14 +++++++++-----
 libspectre/ps.h               |    1 +
 libspectre/spectre-document.c |   11 +++++++++++
 libspectre/spectre-document.h |    1 +
 test/spectre-test.c           |    5 +++++
 5 files changed, 27 insertions(+), 5 deletions(-)

commit 77d2715386c92aa04fb659e00cf187c0b106e816
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Nov 3 12:36:54 2007 +0100

    Add tests for is_eps and get_language_level

 test/spectre-test.c |   27 ++++++++++++++++++---------
 1 files changed, 18 insertions(+), 9 deletions(-)

commit 6c3d6bc2ec6db0dfed1fe5bb1765603b9f4495c2
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Nov 3 12:28:34 2007 +0100

    Init ghostscript_instance to NULL as libgs checks its value

 libspectre/spectre-device.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 1d19056eaba47a848a1b3175cd094df7d0b99f24
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Nov 3 12:20:18 2007 +0100

    Added spectre_document_get_language_level

 libspectre/ps.c               |    3 +++
 libspectre/ps.h               |    1 +
 libspectre/spectre-document.c |   11 +++++++++++
 libspectre/spectre-document.h |   27 ++++++++++++++-------------
 4 files changed, 29 insertions(+), 13 deletions(-)

commit e702c34bccbc70ba209eba4d0ae8301d40164665
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Nov 3 12:06:44 2007 +0100

    Add spectre_document_is_eps

 libspectre/spectre-document.c |   11 +++++++++++
 libspectre/spectre-document.h |    1 +
 2 files changed, 12 insertions(+), 0 deletions(-)

commit 92273d6238f9240e6d11abe9984c98754a78fc0c
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Fri Nov 2 18:24:16 2007 +0100

    Calculate scale factor when not provided

 libspectre/spectre-device.c |   39 +++++++++++++++++++++++++--------------
 1 files changed, 25 insertions(+), 14 deletions(-)

commit d9a291ef8230d607d9f5e8adac1e13ee6296e383
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Fri Nov 2 15:47:57 2007 +0100

    Fix a crash when rendering rotated. Add rotation test.

 libspectre/spectre-device.c |   41 +++++++++++++--------------
 test/spectre-test.c         |   64 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 84 insertions(+), 21 deletions(-)

commit c9e069b1ee62590efbe0b530e5b08a29873dff38
Author: Albert Astals Cid <aacid@kde.org>
Date:   Fri Nov 2 11:20:51 2007 +0100

    Ignore update calls after page

 libspectre/spectre-device.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

commit a023134a97124919690c82b8330e647f8bce5ab2
Author: Albert Astals Cid <aacid@kde.org>
Date:   Fri Nov 2 11:11:47 2007 +0100

    Fix crashes on documents that never call page

 libspectre/spectre-device.c |   28 +++++++++++++++++++++++++---
 1 files changed, 25 insertions(+), 3 deletions(-)

commit 411a940bd498c0af8246533d40950e0e10e63222
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Nov 1 17:17:51 2007 +0100

    Fix orientation issues, gs expects orientation not rotation.

 libspectre/spectre-device.c         |   36 ++++++++++++++++++++++++----------
 libspectre/spectre-page.h           |    4 +-
 libspectre/spectre-private.h        |   18 ++++++++--------
 libspectre/spectre-render-context.c |   28 ++++++++++++++++++++++++--
 4 files changed, 61 insertions(+), 25 deletions(-)

commit 7545daaccade5b16dcaea5c4643eff42e5aa0346
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Nov 1 16:05:19 2007 +0100

    Add libs and cflags to libspectre.pc file

 libspectre.pc.in |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit d956cf9ad243790481774ecec631b6e7d4fb35d7
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Nov 1 16:04:49 2007 +0100

    Fix a typo in Makefile.am

 libspectre/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit fb9a1722108d812e150046c06e2d4960c3562c36
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Nov 1 11:53:52 2007 +0100

    Continue parsing files which don't have %PS instead of returning inmediately
    
    Fixes test cases fontlist2.ps, fractal-fern.ps, paper.ps and restest.ps

 libspectre/ps.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

commit 8557aaa6786d2cf631e2d03953e13b5a99db970c
Author: Albert Astals Cid <aacid@kde.org>
Date:   Thu Nov 1 11:39:59 2007 +0100

    Do not check whether document is structured, just if it has pages
    
    Fixes test cases tiger.ps and virsim2.ps

 libspectre/spectre-device.c |    3 +--
 libspectre/spectre-page.c   |    4 +---
 2 files changed, 2 insertions(+), 5 deletions(-)

commit 80f2957be9391caa78899f14a8c492e2015b7472
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Wed Oct 31 13:06:55 2007 +0100

    Init document filename for documents without %PS at the beginning

 libspectre/ps.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit d42da5b055af69900a459d35dbb4c6783639f71b
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Wed Oct 31 12:56:47 2007 +0100

    Init document ref_count for documents without %PS at the beginning
    
    Fixes the Assertion `doc->ref_count > 0' failed crash

 libspectre/ps.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 7aaf78b972014a46af2c03f05f0305f6c0ee87b6
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Wed Oct 31 12:48:26 2007 +0100

    Translate to the right coords when bounding box is not at 0,0.
    
    Fixes test case coverfig.ps

 libspectre/spectre-device.c |   27 +++++++++++++++++++++++++--
 1 files changed, 25 insertions(+), 2 deletions(-)

commit 73f3ff3b834bde3b6aa78c5ab81b7a7def6affcb
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Oct 29 21:23:02 2007 +0100

    Fix check whether document is structured before trying to feed gs with page data

 libspectre/spectre-device.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 13681de34af197a41d831cb3b8af0ed291ee9358
Author: Albert Astals Cid <aacid@kde.org>
Date:   Mon Oct 29 21:06:36 2007 +0100

    Feed document trailer to ghostscript too, fixes 46d333bb7fe46f90.ps

 libspectre/spectre-device.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

commit 3ffcc2e66f7d1421a867ccb81034670fa2d2a733
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Oct 29 21:03:58 2007 +0100

    Add document_get_orientation and page_get_orientation

 libspectre/ps.c               |   32 ++++++++++++++++++++++++++------
 libspectre/spectre-document.c |   26 ++++++++++++++++++++++++++
 libspectre/spectre-document.h |   23 ++++++++++++-----------
 libspectre/spectre-page.c     |   29 +++++++++++++++++++++++++++++
 libspectre/spectre-page.h     |   30 +++++++++++++++++++-----------
 test/spectre-test.c           |   21 +++++++++++++++++++++
 6 files changed, 133 insertions(+), 28 deletions(-)

commit c164a79e7ce00961ce6cc2c347287e189192bf84
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Oct 29 20:22:41 2007 +0100

    Merge several fixes from evince and macgsview into ps.c

 libspectre/ps.c |   60 ++++++++++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 51 insertions(+), 9 deletions(-)

commit 4134e1c4e765d23c2e1ed958642e823e95a0dda9
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Oct 29 15:23:33 2007 +0100

    EPS support

 TODO                          |    2 +-
 libspectre/spectre-device.c   |   20 +++++++++++---------
 libspectre/spectre-document.c |    9 +++++++--
 3 files changed, 19 insertions(+), 12 deletions(-)

commit d6d52888eff215287065a89ac1c427d320c07fbe
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Oct 29 12:17:21 2007 +0100

    Make spectre_device_cleanup static

 libspectre/spectre-device.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit ef37d296279aff48a95a85e37116bc646f4b18a9
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Oct 29 12:16:43 2007 +0100

    Implement spectre_page_status and use it in tests

 libspectre/spectre-page.c |    6 ++++++
 test/spectre-test.c       |    8 +++++++-
 2 files changed, 13 insertions(+), 1 deletions(-)

commit a1003a2d7d483616a988ea0bbab2a5cdf574a764
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Mon Oct 29 12:16:12 2007 +0100

    Fix order fo delete and exit in spectre_device_cleanup
    
    It should be first exit and then delete_instance. Otherwise it will crash.

 libspectre/spectre-device.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit f1501a936991c13fcefd7806ac8639df6b942eb8
Author: Albert Astals Cid <aacid@kde.org>
Date:   Mon Oct 29 11:44:55 2007 +0100

    Set page status to renderer status in spectre_page_render

 libspectre/spectre-device.c |  137 +++++++++++++++++++++++++++++++-----------
 libspectre/spectre-device.h |    3 +-
 libspectre/spectre-page.c   |    4 +-
 libspectre/spectre-status.c |    2 +
 libspectre/spectre-status.h |    3 +-
 5 files changed, 109 insertions(+), 40 deletions(-)

commit 0aa1d2e4c47e1fb678e28fa60787a5c38a732b89
Author: Albert Astals Cid <aacid@kde.org>
Date:   Mon Oct 29 11:13:33 2007 +0100

    Use correct doxygen syntax for the comment

 libspectre/spectre-device.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit bc88df557348846f24f243223435094319a0839a
Author: Albert Astals Cid <aacid@kde.org>
Date:   Mon Oct 29 11:11:40 2007 +0100

    Add setter and getter for RenderContext graphic_alpha_bits and text_alpha_bits

 libspectre/spectre-render-context.c |   25 +++++++++++++++++++++++++
 libspectre/spectre-render-context.h |    6 ++++++
 2 files changed, 31 insertions(+), 0 deletions(-)

commit a851081b8be2d5a3231d71d530a60b9ebf05fdd7
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Oct 28 22:38:41 2007 +0100

    Add missing spectre-utils.h to Makefile.am

 libspectre/Makefile.am |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 0e17690bd6dc7d35b99b664bba580c783f2f32aa
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Oct 28 22:35:49 2007 +0100

    Add TODO file

 TODO |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

commit ccb164d529eedafdf430a2bda3204dcd37b23736
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sun Oct 28 22:32:36 2007 +0100

    Initialize use platform fonts as TRUE by default

 libspectre/spectre-render-context.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit db648b204ddff8c9c8a236a1173b82d90eacdc61
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Oct 28 21:50:44 2007 +0100

    Fix several memory leaks

 libspectre/spectre-device.c |   46 ++++++++++++++++++++++++++++---------------
 1 files changed, 30 insertions(+), 16 deletions(-)

commit 0134ff52ff543d1394be56a74136f0e81e74ce26
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Oct 28 20:55:32 2007 +0100

    Use render context for rendering

 libspectre/ps.h                     |    1 +
 libspectre/spectre-device.c         |   66 ++++++++++++++++++-----------------
 libspectre/spectre-device.h         |   20 ++++------
 libspectre/spectre-page.c           |   28 +++++----------
 libspectre/spectre-page.h           |   28 ++++++--------
 libspectre/spectre-private.h        |   13 +++++++
 libspectre/spectre-render-context.c |   17 ++-------
 libspectre/spectre.h                |    2 +
 test/spectre-test.c                 |   13 +++++--
 9 files changed, 91 insertions(+), 97 deletions(-)

commit 77361e9195d41d68417bf41c275ad646d9a5f483
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sun Oct 28 20:22:01 2007 +0100

    Introduce SpectreRenderContext, will be used for passing the render options to the renderer

 libspectre/Makefile.am              |    3 +
 libspectre/spectre-render-context.c |  175 +++++++++++++++++++++++++++++++++++
 libspectre/spectre-render-context.h |   57 +++++++++++
 3 files changed, 235 insertions(+), 0 deletions(-)

commit e82c4200bbd16ead8a5fd2d149eb047e96dedcc2
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Oct 27 18:15:31 2007 +0200

    Rename spectre_strdup_printf to _spectre_strdup_printf

 libspectre/spectre-device.c |   22 +++++++++++-----------
 libspectre/spectre-utils.c  |    2 +-
 libspectre/spectre-utils.h  |    2 +-
 test/spectre-test.c         |    2 +-
 4 files changed, 14 insertions(+), 14 deletions(-)

commit 464ac800026e948c91b3c21d66a6bb0be1a95d9f
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Oct 27 18:06:53 2007 +0200

    Render pages to png files using cairo in spectre-test

 Makefile.am         |    6 +++++-
 configure.ac        |   15 +++++++++++++++
 test/Makefile.am    |    6 ++++--
 test/spectre-test.c |   29 ++++++++++++++++++++++++-----
 4 files changed, 48 insertions(+), 8 deletions(-)

commit ec155fdac5e4d94dfe227ff269df7eefe55a8ebc
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Oct 27 17:08:32 2007 +0200

    Fix memory leak

 libspectre/ps.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 7a14123c6ee320771fa3d94df6b80f3212d28825
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Oct 27 17:05:23 2007 +0200

    Add reference counter to struct document in ps.[ch]

 libspectre/ps.c               |   40 +++++++++++++++++++++++++++++++---------
 libspectre/ps.h               |   10 +++++++++-
 libspectre/spectre-device.c   |    7 ++++++-
 libspectre/spectre-document.c |    4 ++--
 libspectre/spectre-page.c     |    7 ++++++-
 5 files changed, 54 insertions(+), 14 deletions(-)

commit c737b17fa80e411916ffa21553926718c96effbb
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Sat Oct 27 16:31:35 2007 +0200

    Open and close the file in psscan instead of spectre_document_load

 libspectre/ps.c               |   11 ++++++++++-
 libspectre/ps.h               |    1 -
 libspectre/spectre-document.c |   15 +--------------
 3 files changed, 11 insertions(+), 16 deletions(-)

commit caf81f64e573c05f0082026383f1859bbef950ba
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Oct 27 13:47:56 2007 +0200

    Add first implementation of a libgs based render

 libspectre/Makefile.am        |    1 +
 libspectre/ps.c               |    2 +
 libspectre/ps.h               |    1 +
 libspectre/spectre-device.c   |  270 ++++++++++++++++++++++++++++++++++++++++-
 libspectre/spectre-device.h   |   16 +++
 libspectre/spectre-document.c |   30 ++---
 libspectre/spectre-document.h |    5 +-
 libspectre/spectre-page.c     |   40 +++++--
 libspectre/spectre-page.h     |   29 +++--
 libspectre/spectre-private.h  |    2 +-
 test/spectre-test.c           |   16 ++-
 11 files changed, 360 insertions(+), 52 deletions(-)

commit 24f89dd393b2fabe27fe3b464a85074151e72198
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Oct 27 11:35:14 2007 +0200

    Needed files to use libgs, got them from gs svn

 libspectre/ghostscript/gdevdsp.h |  266 +++++++++++++++++++++++++++++++++
 libspectre/ghostscript/iapi.h    |  300 ++++++++++++++++++++++++++++++++++++++
 libspectre/ghostscript/ierrors.h |  153 +++++++++++++++++++
 3 files changed, 719 insertions(+), 0 deletions(-)

commit 9843a6c4d9ba183b114766750b38e7932c972ac5
Author: Albert Astals Cid <aacid@kde.org>
Date:   Sat Oct 27 11:32:11 2007 +0200

    Add helper spectre_strdup_printf function

 libspectre/spectre-utils.c |   50 ++++++++++++++++++++++++++++++++++++++++++++
 libspectre/spectre-utils.h |   35 ++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+), 0 deletions(-)

commit b1aae6a007158eb36c97b761cf0fc526e079d0cf
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Fri Oct 26 14:02:51 2007 +0200

    Add empty files spectre-device.[ch] where we'll implement the gdevdsp.

 libspectre/Makefile.am      |    2 ++
 libspectre/spectre-device.c |   23 +++++++++++++++++++++++
 libspectre/spectre-device.h |   32 ++++++++++++++++++++++++++++++++
 libspectre/spectre-page.c   |    2 +-
 4 files changed, 58 insertions(+), 1 deletions(-)

commit 13f05f38b1347be39ac569c070f376de0e745ef4
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Fri Oct 26 13:51:04 2007 +0200

    Add GPL header license

 libspectre/spectre-document.c |   20 ++++++++++++++++++++
 libspectre/spectre-document.h |   20 ++++++++++++++++++++
 libspectre/spectre-macros.h   |   20 ++++++++++++++++++++
 libspectre/spectre-page.c     |   20 ++++++++++++++++++++
 libspectre/spectre-page.h     |   20 ++++++++++++++++++++
 libspectre/spectre-private.h  |   20 ++++++++++++++++++++
 libspectre/spectre-status.c   |   20 ++++++++++++++++++++
 libspectre/spectre-status.h   |   20 ++++++++++++++++++++
 libspectre/spectre.h          |   20 ++++++++++++++++++++
 9 files changed, 180 insertions(+), 0 deletions(-)

commit 6e1d2d6c65c37e09ed68d71eeb2e4fbc4068b42f
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Fri Oct 26 13:39:04 2007 +0200

    Add psgetpagebox (taken from Evince) and implement spectre_page_get_size

 libspectre/ps.c               |   86 +++++++++++++++++++++++++++++++++++++++++
 libspectre/ps.h               |   23 ++++++++++-
 libspectre/spectre-document.c |    2 +-
 libspectre/spectre-page.c     |   21 ++++++++--
 libspectre/spectre-private.h  |    4 +-
 test/spectre-test.c           |   18 +++++++++
 6 files changed, 147 insertions(+), 7 deletions(-)

commit 70d9b664a8fa496caad521a7bd00772d4ece9d07
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Fri Oct 26 13:05:06 2007 +0200

    Merge ps.c and ps.h taken from GV.

 libspectre/Makefile.am        |    7 +-
 libspectre/ps.c               | 1944 +++++++++++++++++++++++++++++++++++++++++
 libspectre/ps.h               |  145 +++
 libspectre/spectre-document.c |   92 ++-
 libspectre/spectre-document.h |    5 +-
 libspectre/spectre-status.c   |    4 +
 libspectre/spectre-status.h   |    2 +
 test/spectre-test.c           |   12 +-
 8 files changed, 2197 insertions(+), 14 deletions(-)

commit d5be0148810ab70d58bc678b7aa65730bf4d5e54
Author: Carlos Garcia Campos <carlosgc@gnome.org>
Date:   Thu Oct 25 11:46:12 2007 +0200

    Initial import

 AUTHORS                       |    2 +
 COPYING                       |  340 +++++++++++++++++++++++++++++++++++++++++
 INSTALL                       |  236 ++++++++++++++++++++++++++++
 Makefile.am                   |   13 ++
 autogen.sh                    |  197 ++++++++++++++++++++++++
 configure.ac                  |   26 +++
 libspectre.pc.in              |    9 +
 libspectre/Makefile.am        |   27 ++++
 libspectre/spectre-document.c |   74 +++++++++
 libspectre/spectre-document.h |   22 +++
 libspectre/spectre-macros.h   |   27 ++++
 libspectre/spectre-page.c     |   61 ++++++++
 libspectre/spectre-page.h     |   27 ++++
 libspectre/spectre-private.h  |   13 ++
 libspectre/spectre-status.c   |   16 ++
 libspectre/spectre-status.h   |   18 +++
 libspectre/spectre.h          |    7 +
 test/Makefile.am              |    9 +
 test/spectre-test.c           |   12 ++
 19 files changed, 1136 insertions(+), 0 deletions(-)