-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
5181 lines (4437 loc) · 268 KB
/
CHANGES
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
======================================================================
idFORGE Framework v0.2 (2015-03-26) [stable]
======================================================================
commit 608c26ad83db85a45b3cf570ddf8bf08c8215ba1
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 11:52:21 2015 -0400
Update idforge.spec to add NEWS and CHANGES file
idforge.spec | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 1e2943f07e85c9fea17306b9211655ff3ee7868c
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 11:51:47 2015 -0400
Update the NEWS file header
NEWS | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
commit a6cdfb940afac4052298b9e96815f74fd146862c
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 11:51:26 2015 -0400
Add the CHANGES file
CHANGES | 5154 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 5154 insertions(+), 0 deletions(-)
commit d08c024d5b482e23b8d535a961ef46b536fc1b33
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 11:41:08 2015 -0400
Add the NEWS file
NEWS | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
commit 9009e8a5696e18f9209f4f657fe5c17ec8e8ede2
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 10:22:34 2015 -0400
Fix endless loop after reading idforge man page
- Previously, no shift was performed after processing the --help
option in idforge command-line. As consequence the script entered in
an endless loop whenever you executed the "idforge --help" command.
This update changes the idforge_setOptions function to shift the
--help option in idforge command-line and fix, this way, the endless
loop issue.
Library/idforge_setOptions.sh | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit 556127870685fb4e02f5accde35f6e599d365910
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 09:46:25 2015 -0400
Fix reference to COPYING in idforge.spec
idforge.spec | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 49337d9d47095629e17058896559e81913a69f67
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 01:56:43 2015 -0400
Update obsoletes and changelog in idforge.spec
idforge.spec | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
commit f1678707b2109fc6bb5eb62507f0801ef4556b54
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 01:42:27 2015 -0400
Update reference to COPYING in the README file
README | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 0a38583adca07f5daa8ee7a926a440ada0411bf1
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 01:40:18 2015 -0400
Rename file from LICENSE to COPYING
- To comply with GNU standards.
COPYING | 339 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
LICENSE | 339 ---------------------------------------------------------------
2 files changed, 339 insertions(+), 339 deletions(-)
commit 159c43b09209085b8d5db0f738bfc0bd9886797f
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 01:39:30 2015 -0400
Update README file
README | 72 +++++++++++++++++++++++++++++++++++----------------------------
1 files changed, 40 insertions(+), 32 deletions(-)
commit 02bdf49fdea5cf7ee13dba6bed11f9b3ed481f2c
Author: Alain Reguera Delgado <[email protected]>
Date: Thu Mar 26 01:39:14 2015 -0400
Update idforge.spec description
idforge.spec | 40 ++++++++++++++++++++++++++--------------
1 files changed, 26 insertions(+), 14 deletions(-)
commit 1bcd343ec0ab0efffd64ef6b1b360eb96a140dba
Author: Alain Reguera Delgado <[email protected]>
Date: Wed Mar 25 23:45:44 2015 -0400
Add idforge.spec back for mock
idforge.spec | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 93 insertions(+), 0 deletions(-)
commit 6837574cd9c1e46676b15ee264a156ddda3525c5
Author: Alain Reguera Delgado <[email protected]>
Date: Wed Mar 25 18:57:20 2015 -0400
Update Makefile to add IDFORGE_MODELS definition
Makefile | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit ac764ff441690e14aab917fdeaf40036cc5665cb
Author: Alain Reguera Delgado <[email protected]>
Date: Wed Mar 25 18:53:26 2015 -0400
Fix variable definition in quality assurance test
.../qatest-20150322160025434509955-en_US.UTF-8.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 88348bd7f8ce4a5eb723af9cca75385e90d6f35f
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 24 21:14:46 2015 -0400
Update INSTALL file.
INSTALL | 49 ++++++++++++++++++++-----------------------------
1 files changed, 20 insertions(+), 29 deletions(-)
commit 48ff0a7029b6290aa13e46b1a4fc040471b28af7
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 24 12:23:29 2015 -0400
Update Makefiles
Library/Manuals/Makefile | 7 +------
Library/Messages/Makefile | 2 +-
Makefile | 5 +++++
3 files changed, 7 insertions(+), 7 deletions(-)
commit 7d942a17508cf9e0141cb0d5f4b38d0aa9d26285
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 24 10:50:06 2015 -0400
Update shell scripts for quality assurance tests
- Previously, shell scripts used to trigger quality assurance tests
didn't specify the locale information that would be used during its
execution. As consequence, the environment information was taken as
reference which may not be what one might expect. This update
changes the shell scripts used to trigger quality assurance tests to
explicitly set the locale information that will be used to run
tests.
- Previously, shell scripts used to trigger quality assurance tests
didn't specify the path of models. As consequence, the
interpretation of configuration files that make use of this
information relayed in the default value of IDFORGE_MODELS or its
definition in the command-line environment, which might not be what
one expects. This update changes the shell scripts used to trigger
quality assurance tests to explicitly set the value of
IDFORGE_MODELS variable in each specific case, to the specific value
that will make configuration files to have the correct path
information, needed to reach the input files.
- Previously, there wasn't shell scripts to validate the construction
of library messages and library manuals in different locales. This
update adds new shell scripts to test the correct construction of
library manuals and messages in en.UTF-8 and es.UTF-8 locales.
.../qatest-2015010820975052943.en_US.UTF-8.sh | 7 ++-
.../qatest-2015010849776781980.en_US.UTF-8.sh | 7 ++-
.../qatest-20150203225846497213870.es_ES.UTF-8.sh | 7 ++-
.../qatest-20150308125651913660732.en_US.UTF-8.sh | 7 ++-
.../qatest-20150322160025434509955-en_US.UTF-8.sh | 7 ++-
.../qatest-20150322160025434509955-es_ES.UTF-8.sh | 7 ++-
.../qatest-20150322160025434509957-en.UTF-8.sh | 58 +++++++++++++++++
.../qatest-20150322160025434509957-es.UTF-8.sh | 58 +++++++++++++++++
.../qatest-20150322160025434509958-en.UTF-8.sh | 67 ++++++++++++++++++++
.../qatest-20150322160025434509958-es.UTF-8.sh | 67 ++++++++++++++++++++
10 files changed, 286 insertions(+), 6 deletions(-)
commit 999bbd430e455642169554020c51370d70ec9f42
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 24 10:39:24 2015 -0400
Update library manuals and messages configuration
- Previously, the configuration files used to produce library manuals
and messages were relative to idforge.sh script. As consequence, it
was not possible to use these configuration files as argument to
idforge-qatest(1) command in order to run quality assurance tests
over them. This update changes the configuration files used to
produce library manuals and messages based on the value of
IDFORGE_MODELS variable which can be redefined based on the
execution contexts. Consequently, it is possible to run quality
assurance tests over configuration files used to produce library
manuals and messages.
Library/Manuals/idforge.conf | 42 +++++++++++++++++++++++-----------------
Library/Messages/idforge.conf | 20 +++++++++---------
2 files changed, 34 insertions(+), 28 deletions(-)
commit d9176e9cf6a8618654eea8a702522b2e712b038c
Author: Alain Reguera Delgado <[email protected]>
Date: Mon Mar 23 21:26:48 2015 -0400
Update documentation file names
- Previously, the files included from other files had the .inc file
extension. Now they have the .asciidoc extension to make clear that
they are also asciidoc files.
Library/Manuals/Commons/also.asciidoc | 3 +++
Library/Manuals/Commons/also.inc | 3 ---
Library/Manuals/Commons/author.asciidoc | 3 +++
Library/Manuals/Commons/author.inc | 3 ---
Library/Manuals/Commons/bugs.asciidoc | 3 +++
Library/Manuals/Commons/bugs.inc | 3 ---
Library/Manuals/Commons/copyright.asciidoc | 17 +++++++++++++++++
Library/Manuals/Commons/copyright.inc | 17 -----------------
Library/Manuals/Commons/environment.asciidoc | 21 +++++++++++++++++++++
Library/Manuals/Commons/environment.inc | 21 ---------------------
Library/Manuals/Commons/options.asciidoc | 16 ++++++++++++++++
Library/Manuals/Commons/options.inc | 16 ----------------
Library/Manuals/idforge-config.1.asciidoc | 10 +++++-----
Library/Manuals/idforge-hello.1.asciidoc | 10 +++++-----
Library/Manuals/idforge-locale.1.asciidoc | 12 ++++++------
Library/Manuals/idforge-modules.5.asciidoc | 8 ++++----
Library/Manuals/idforge-prepare.1.asciidoc | 12 ++++++------
Library/Manuals/idforge-qatest.1.asciidoc | 12 ++++++------
Library/Manuals/idforge-render.1.asciidoc | 12 ++++++------
Library/Manuals/idforge-tuneup.1.asciidoc | 10 +++++-----
Library/Manuals/idforge.1.asciidoc | 12 ++++++------
21 files changed, 112 insertions(+), 112 deletions(-)
commit 6de9f9b0c2c3ea89f0c5253ef91484abbc725caf
Author: Alain Reguera Delgado <[email protected]>
Date: Mon Mar 23 21:09:46 2015 -0400
Refactor quality assurance tests
- Previously, quality assurance tests used input files from
Library/QaTests/qatest-commons directory structure. This update
changes the quality assurance tests to read input files from
${IDFORGE_MODELS}/Models/Common directory structure and removes the
qatest-commons directory.
- Remove shell scripts (and their auxiliary files) that implement
redundant validations. For example, most rendition validations take
place in the qatest-20150322160025434509955-en_US.UTF-8.sh and
qatest-20150322160025434509955-es_ES.UTF-8.sh shell scripts. So,
other files like qatest-2015012847797252944.sh were removed.
- Previously, the shell scripts didn't include the locale information
in their names, nor inside. As consequence, the locale information
used to run tests was conditioned by the value of LANG environment
variable in the idforge-qatest command-line. This update changes the
shell scripts to redefine the LANG environment variable inside them
before running tests and include the locale information used to run
tests in their file names.
.../qatest-2015010820975052943.en_US.UTF-8.sh | 49 +
.../qatest-2015010820975052943.en_US.UTF-8.conf | 13 +
Library/QaTests/qatest-2015010820975052943.sh | 40 -
.../qatest-2015010820975052943.conf | 13 -
Library/QaTests/qatest-2015010826381448211.sh | 17 -
.../QaTests/qatest-2015010826381448211/create.sh | 5 -
.../qatest-2015010826381448211.md5sum | 2 -
.../qatest-2015010826381448211.mime | 2 -
.../qatest-2015010826381448211.sha1sum | 2 -
.../qatest-2015010826381448211.sha256sum | 2 -
.../qatest-2015010849776781980.en_US.UTF-8.sh | 28 +
Library/QaTests/qatest-2015010849776781980.sh | 19 -
Library/QaTests/qatest-2015011112987178553.sh | 20 -
Library/QaTests/qatest-2015011123671981543.sh | 17 -
.../qatest-2015011123671981543.conf | 24 -
.../qatest-2015011123671981543.mime | 1 -
Library/QaTests/qatest-2015011135476500711.sh | 21 -
.../qatest-2015011135476500711.conf | 68 -
.../qatest-2015011135476500711.mime | 8 -
Library/QaTests/qatest-2015012550849511192.sh | 18 -
.../qatest-2015012550849511192.conf | 32 -
.../qatest-2015012550849511192.mime | 3 -
Library/QaTests/qatest-2015012847797252944.sh | 35 -
.../qatest-2015012847797252944.conf | 275 ----
.../qatest-2015012847797252944.mime | 68 -
Library/QaTests/qatest-20150203184309856197746.sh | 23 -
.../qatest-20150203225846497213870.es_ES.UTF-8.sh | 64 +
.../file.asciidoc | 4 +
.../file.html | 23 +
.../file.svg | 26 +
.../hello.svg | 75 +
...qatest-20150203225846497213870.es_ES.UTF-8.conf | 63 +
.../world.svg | 75 +
Library/QaTests/qatest-20150203225846497213870.sh | 63 -
.../qatest-20150203225846497213870/file.asciidoc | 4 -
.../qatest-20150203225846497213870/file.html | 23 -
.../qatest-20150203225846497213870/file.svg | 26 -
.../qatest-20150203225846497213870/hello.svg | 75 -
.../qatest-20150203225846497213870.conf | 63 -
.../qatest-20150203225846497213870/world.svg | 75 -
Library/QaTests/qatest-20150211182206285536962.sh | 21 -
.../qatest-20150211182206285536962.conf | 91 --
.../qatest-20150211182206285536962.mime | 7 -
Library/QaTests/qatest-20150301011701901419493.sh | 24 -
.../qatest-20150301011701901419493.conf | 33 -
.../qatest-20150301011701901419493.mime | 3 -
.../qatest-20150308125651913660732.en_US.UTF-8.sh | 33 +
Library/QaTests/qatest-20150308125651913660732.sh | 28 -
Library/QaTests/qatest-20150310141853357156504.sh | 22 -
.../qatest-20150310141853357156504.conf | 28 -
.../qatest-20150310141853357156504.mime | 3 -
.../qatest-20150322160025434509955-en_US.UTF-8.sh | 54 +
.../qatest-20150322160025434509955-es_ES.UTF-8.sh | 54 +
.../QaTests/qatest-commons/Backgrounds/640x480.png | Bin 478715 -> 0 bytes
.../Backgrounds/640x480.png-16colors.gpl | 20 -
.../Documentation/Locales/en_US/manpage.1.po | 40 -
.../Documentation/Locales/es_ES/manpage.1.po | 47 -
.../Models/Documentation/article.asciidoc | 10 -
.../Models/Documentation/manpage.1.asciidoc | 23 -
.../Models/Documentation/manpage.1.docbook | 28 -
.../Models/Documentation/manpage.1.es.asciidoc | 22 -
.../Images/Locales/en_US/document-cd-label.po | 90 --
.../Images/Locales/en_US/document-copyright.po | 30 -
.../Models/Images/Locales/en_US/document-text.po | 98 --
.../Images/Locales/es_ES/document-cd-label.po | 86 --
.../Images/Locales/es_ES/document-copyright.po | 26 -
.../Models/Images/Locales/es_ES/document-text.po | 94 --
.../Models/Images/document-background-inner.svg | 20 -
.../Models/Images/document-background.svg | 20 -
.../Models/Images/document-cd-label.svg | 569 --------
.../Models/Images/document-copyright.svg | 128 --
.../qatest-commons/Models/Images/document-text.svg | 1518 --------------------
.../Models/Images/idforge-logo-message.svg | 195 ---
.../qatest-commons/Models/Images/idforge-logo.svg | 73 -
.../Models/Images/idforge-symbol.svg | 37 -
75 files changed, 561 insertions(+), 4478 deletions(-)
commit f03a3e3bc8deebaad5b932aa0583f6446179726c
Author: Alain Reguera Delgado <[email protected]>
Date: Mon Mar 23 21:06:59 2015 -0400
Fix path to common design models
Library/Modules/Prepare/prepare.sh | 6 +++++-
Library/Modules/Prepare/prepare_setWorkplace.sh | 6 +++---
Library/idforge.sh | 2 +-
3 files changed, 9 insertions(+), 5 deletions(-)
commit 59015efe5dbeb433ff9e25554ee8732dd73b3c4c
Author: Alain Reguera Delgado <[email protected]>
Date: Mon Mar 23 20:57:48 2015 -0400
Add Models directory to organize common designs
- Previously, I was trying to simulate all possible rendition needs
for an organization inside the directory structure where automation
scripts also are stored in. That was exhausting. This update changes
the paradigm to put only the minimum number of possible rendition
needs an organization could perform with idforge automation scripts.
The content of this directory is also the target of quality
assurance tests since it defines what idforge automation scripts can
do. The configuration files in this directory use comments to
describe the features the idforge command implements based on them.
Models/Common/Backgrounds/640x480.png | Bin 0 -> 478715 bytes
Models/Common/Backgrounds/640x480.png-16c.gpl | 20 +
Models/Common/Backgrounds/html-bg.svg | 58 +
Models/Common/Brands/idforge-logo-message.svg | 195 ++
Models/Common/Brands/idforge-logo.svg | 73 +
Models/Common/Brands/idforge-symbol.svg | 37 +
Models/Common/Documents/Css/base.css | 73 +
Models/Common/Documents/Css/headings.css | 108 +
Models/Common/Documents/Css/lists.css | 67 +
Models/Common/Documents/Css/paragraphs.css | 59 +
Models/Common/Documents/Css/reset.css | 346 +++
Models/Common/Documents/Css/stylesheet.css | 36 +
Models/Common/Documents/Css/tables.css | 162 ++
Models/Common/Documents/Images/1.png | Bin 0 -> 564 bytes
Models/Common/Documents/Images/1.svg | 22 +
Models/Common/Documents/Images/10.png | Bin 0 -> 796 bytes
Models/Common/Documents/Images/10.svg | 22 +
Models/Common/Documents/Images/11.png | Bin 0 -> 611 bytes
Models/Common/Documents/Images/11.svg | 22 +
Models/Common/Documents/Images/12.png | Bin 0 -> 796 bytes
Models/Common/Documents/Images/12.svg | 22 +
Models/Common/Documents/Images/13.png | Bin 0 -> 817 bytes
Models/Common/Documents/Images/13.svg | 22 +
Models/Common/Documents/Images/14.png | Bin 0 -> 763 bytes
Models/Common/Documents/Images/14.svg | 22 +
Models/Common/Documents/Images/15.png | Bin 0 -> 810 bytes
Models/Common/Documents/Images/15.svg | 22 +
Models/Common/Documents/Images/16.png | Bin 0 -> 832 bytes
Models/Common/Documents/Images/16.svg | 22 +
Models/Common/Documents/Images/17.png | Bin 0 -> 729 bytes
Models/Common/Documents/Images/17.svg | 22 +
Models/Common/Documents/Images/18.png | Bin 0 -> 824 bytes
Models/Common/Documents/Images/18.svg | 22 +
Models/Common/Documents/Images/19.png | Bin 0 -> 821 bytes
Models/Common/Documents/Images/19.svg | 22 +
Models/Common/Documents/Images/2.png | Bin 0 -> 746 bytes
Models/Common/Documents/Images/2.svg | 22 +
Models/Common/Documents/Images/20.png | Bin 0 -> 925 bytes
Models/Common/Documents/Images/20.svg | 22 +
Models/Common/Documents/Images/21.png | Bin 0 -> 801 bytes
Models/Common/Documents/Images/21.svg | 22 +
Models/Common/Documents/Images/22.png | Bin 0 -> 916 bytes
Models/Common/Documents/Images/22.svg | 22 +
Models/Common/Documents/Images/23.png | Bin 0 -> 947 bytes
Models/Common/Documents/Images/23.svg | 22 +
Models/Common/Documents/Images/3.png | Bin 0 -> 756 bytes
Models/Common/Documents/Images/3.svg | 22 +
Models/Common/Documents/Images/4.png | Bin 0 -> 683 bytes
Models/Common/Documents/Images/4.svg | 22 +
Models/Common/Documents/Images/5.png | Bin 0 -> 740 bytes
Models/Common/Documents/Images/5.svg | 22 +
Models/Common/Documents/Images/6.png | Bin 0 -> 755 bytes
Models/Common/Documents/Images/6.svg | 22 +
Models/Common/Documents/Images/7.png | Bin 0 -> 654 bytes
Models/Common/Documents/Images/7.svg | 22 +
Models/Common/Documents/Images/8.png | Bin 0 -> 763 bytes
Models/Common/Documents/Images/8.svg | 22 +
Models/Common/Documents/Images/9.png | Bin 0 -> 756 bytes
Models/Common/Documents/Images/9.svg | 22 +
Models/Common/Documents/Images/dot.png | Bin 0 -> 98 bytes
Models/Common/Documents/Images/dot2.png | Bin 0 -> 98 bytes
Models/Common/Documents/Images/h1-bg.png | Bin 0 -> 204111 bytes
Models/Common/Documents/Images/html-bg.png | Bin 0 -> 434 bytes
Models/Common/Documents/Images/important.png | Bin 0 -> 1918 bytes
Models/Common/Documents/Images/important.svg | 30 +
Models/Common/Documents/Images/note.png | Bin 0 -> 1616 bytes
Models/Common/Documents/Images/note.svg | 28 +
Models/Common/Documents/Images/stock-go-back.png | Bin 0 -> 571 bytes
.../Common/Documents/Images/stock-go-forward.png | Bin 0 -> 531 bytes
Models/Common/Documents/Images/stock-go-up.png | Bin 0 -> 582 bytes
Models/Common/Documents/Images/stock-home.png | Bin 0 -> 772 bytes
Models/Common/Documents/Images/warning.png | Bin 0 -> 1940 bytes
Models/Common/Documents/Images/warning.svg | 32 +
Models/Common/Documents/Images/watermark-draft.png | Bin 0 -> 25365 bytes
Models/Common/Documents/Images/watermark-draft.svg | 21 +
Models/Common/Documents/Locales/en_US/article.po | 1737 +++++++++++++
Models/Common/Documents/Locales/en_US/book.po | 143 ++
Models/Common/Documents/Locales/en_US/bookmulti.po | 165 ++
Models/Common/Documents/Locales/en_US/manpage.1.po | 49 +
Models/Common/Documents/Locales/es_ES/article.po | 129 +
Models/Common/Documents/Locales/es_ES/book.po | 156 ++
Models/Common/Documents/Locales/es_ES/bookmulti.po | 172 ++
Models/Common/Documents/Locales/es_ES/manpage.1.po | 49 +
Models/Common/Documents/Xsl/defaults.xsl | 227 ++
Models/Common/Documents/Xsl/docbook2fo.xsl | 2621 ++++++++++++++++++++
Models/Common/Documents/Xsl/docbook2manpage.xsl | 13 +
.../Common/Documents/Xsl/docbook2xhtml-chunks.xsl | 43 +
.../Documents/Xsl/docbook2xhtml-single-notoc.xsl | 25 +
.../Common/Documents/Xsl/docbook2xhtml-single.xsl | 18 +
Models/Common/Documents/article.asciidoc | 38 +
.../Common/Documents/article.asciidoc-docinfo.xml | 71 +
Models/Common/Documents/book.asciidoc | 54 +
Models/Common/Documents/book.asciidoc-docinfo.xml | 71 +
Models/Common/Documents/book.docbook | 261 ++
Models/Common/Documents/bookmulti.asciidoc | 112 +
.../Documents/bookmulti.asciidoc-docinfo.xml | 71 +
Models/Common/Documents/idforge.conf | 275 ++
Models/Common/Documents/manpage.1.asciidoc | 23 +
Models/Common/Documents/manpage.1.docbook | 28 +
Models/Common/Documents/manpage.1.es.asciidoc | 22 +
Models/Common/Images/Indexed/idforge.conf | 80 +
.../Images/Locales/en_US/document-cd-label.po | 90 +
.../Images/Locales/en_US/document-copyright.po | 30 +
.../Common/Images/Locales/en_US/document-text.po | 98 +
.../Images/Locales/es_ES/document-cd-label.po | 86 +
.../Images/Locales/es_ES/document-copyright.po | 26 +
.../Common/Images/Locales/es_ES/document-text.po | 94 +
Models/Common/Images/document-background-inner.svg | 20 +
Models/Common/Images/document-background.svg | 20 +
Models/Common/Images/document-cd-label.svg | 569 +++++
Models/Common/Images/document-copyright.svg | 128 +
Models/Common/Images/document-text.svg | 1518 ++++++++++++
Models/Common/Images/idforge.conf | 234 ++
Models/Common/Mails/idforge.conf | 32 +
114 files changed, 11449 insertions(+), 0 deletions(-)
commit 56061a2bf563d7d1ed416955c950e0b08a1a31b1
Author: Alain Reguera Delgado <[email protected]>
Date: Mon Mar 23 20:30:16 2015 -0400
Update render module's instance creation
- Previously, the render module didn't add images and common style
sheets to final directory where HTML output was produced. As
consequence, it wasn't possible for users customized the look and
feel of final documents in HTML format. This update changes the
xhtml module to copy images and style sheets from
${IDFORGE_MODELS}/Documents/Images and
${IDFORGE_MODELS}/Documents/Css directories, respectively. Once the
common images ans style sheets have been copied, the xhtml module
evaluates whether render-from-img and render-from-css configuration
options were provided in the configuration section and copies images
and styles sheets from the specified location. This action replaces
the common files previously copied from the models directory making
possible to customize them.
- Previously, when PDF files were produced, the render module didn't
create the images directory in the temporal directory where the FOP
to PDF file format transformation took place. As consequence, the
final PDF files didn't show images related to admonitions and
callouts in them. This update changes the pdf module to create the
images directory in the temporal directory where the FOP to PDF file
format transformation takes place making admonition and callout
images to be included in final PDF files. Once the images directory
is created, the images are linked directly from the
${IDFORGE_MODELS}/Documents/Images directory. Once this action
concludes, the pdf module uses the directory provided as value to
render-from-img configuration option to re-link images in the
temporal directory based on its content. This action overlaps the
images previously linked from the models directory and permits their
customization.
- Update idforge-render(1) documentation to describe new configuration
options added.
Library/Manuals/Commons/environment.inc | 4 +-
Library/Manuals/idforge-render.1.asciidoc | 56 ++++++++++++-----
.../Render/Modules/Docbook/Modules/Pdf/pdf.sh | 2 +
.../Docbook/Modules/Pdf/pdf_setConfigOption.sh | 8 +++
.../Modules/Docbook/Modules/Pdf/pdf_setImages.sh | 64 +++++++++++++++++++
.../Render/Modules/Docbook/Modules/Xhtml/xhtml.sh | 4 +
.../Docbook/Modules/Xhtml/xhtml_setConfigOption.sh | 8 +++
.../Docbook/Modules/Xhtml/xhtml_setImages.sh | 63 +++++++++++++++++++
.../Docbook/Modules/Xhtml/xhtml_setStyles.sh | 65 ++++++++++++++++++++
9 files changed, 256 insertions(+), 18 deletions(-)
commit 9d8e881d135ac3a8d412ebbdfdec44aa9dcfac12
Author: Alain Reguera Delgado <[email protected]>
Date: Fri Mar 20 13:09:02 2015 -0400
Update instances and final directories creation
- Previously, when the docinfo attribute was provided to asciidoc,
neither idforge-locale(1) nor idforge-render(1) commands created the
final docbook file in the way expected by asciidoc. As consequence
it was not possible to expand docinfo files because the file names
didn't match asciidoc's expected naming convention. This update
changes both idforge-locale(1) and idforge-render(1) commands to
modify the final docbook file creation so it matches the naming
convention expected by asciidoc to apply docinfo files.
- Previously, the idforge-render(1) created the Final directory when
it localized the XML document only. As consequence, it was not
possible to store information for modules that didn't localize the
XML file. This update changes idforge-render(1) command to move the
creation of Final directory to render_setConfigOptions function.
.../Modules/Update/Modules/Asciidoc/asciidoc.sh | 1 -
.../Asciidoc/asciidoc_convertAsciidocToDocbook.sh | 2 ++
.../Modules/Render/Modules/Asciidoc/asciidoc.sh | 3 ---
.../Render/Modules/Asciidoc/asciidoc_setDocbook.sh | 4 ++--
.../Render/Modules/Xml/xml_setInstanceLocalized.sh | 2 --
Library/Modules/Render/render_setConfigOption.sh | 3 +++
6 files changed, 7 insertions(+), 8 deletions(-)
commit 303319346de8fd174223e2828296b5df66b9661e
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 16:58:21 2015 -0400
Update idforge quality assurance tests
- Previously the --help made the quality assurance test stopped the
validation flow. This update comments the line where the --help
option is verified so the validation flow can continue.
- Fix path information in qatest-2015011123671981543.
Library/QaTests/qatest-2015010820975052943.sh | 2 +-
Library/QaTests/qatest-2015010849776781980.sh | 2 +-
Library/QaTests/qatest-2015011112987178553.sh | 2 +-
Library/QaTests/qatest-2015011123671981543.sh | 2 +-
Library/QaTests/qatest-20150203184309856197746.sh | 2 +-
Library/QaTests/qatest-20150308125651913660732.sh | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
commit 6fd110abb4da266dcc8f3246dc3d68944968eb96
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 13:56:24 2015 -0400
Update Makefile
Makefile | 21 ++++++++++++++-------
1 files changed, 14 insertions(+), 7 deletions(-)
commit 3431ce03ac962387a2f9a516d6d05a64d22fa82f
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 13:04:26 2015 -0400
Redefined TEXTDOMAINDIR environment variable
- Previously, it was not possible to redefined the value of
TEXTDOMAINDIR environment variable from the command-line. As
consequence, it was not possible to customize the directory where
localization files were stored in. This update changes idforge.sh
initialization function to redefine the TEXTDOMAINDIR environment
variable so it can receive a value assignment from the command-line.
The customization of TEXTDOMAINDIR is necessary to test localized
shell scripts messages.
Library/idforge.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit c8eb68053f30e7dd9bb56d1f0adb0d318df8b3b8
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 12:54:45 2015 -0400
Relocate quality assurance tests
- Previously, quality assurance tests were organized inside
subdirectories of Library/QaTests directory. As consequence only one
set of tests could be evaluated in a single iteration of
idforge-qatest(1) command. This update relocates all the quality
assurance tests inside the Library/QaTests directory so they can be
all executed and evaluated with a single instance of
idforge-qatest(1) command.
- The auxiliary files were also updated to reflect the path changing.
.../idforge-config/qatest-2015010820975052943.sh | 40 -
.../qatest-2015010820975052943.conf | 13 -
.../qatest-20150308125651913660732.sh | 28 -
.../qatest-20150203184309856197746.sh | 23 -
.../qatest-20150203225846497213870.sh | 63 -
.../qatest-20150203225846497213870/file.asciidoc | 4 -
.../qatest-20150203225846497213870/file.html | 23 -
.../qatest-20150203225846497213870/file.svg | 26 -
.../qatest-20150203225846497213870/hello.svg | 75 -
.../qatest-20150203225846497213870.conf | 63 -
.../qatest-20150203225846497213870/world.svg | 75 -
.../idforge-qatest/qatest-2015010826381448211.sh | 17 -
.../qatest-2015010826381448211/create.sh | 5 -
.../qatest-2015010826381448211.md5sum | 2 -
.../qatest-2015010826381448211.mime | 2 -
.../qatest-2015010826381448211.sha1sum | 2 -
.../qatest-2015010826381448211.sha256sum | 2 -
.../idforge-qatest/qatest-2015010849776781980.sh | 19 -
.../idforge-render/qatest-2015011112987178553.sh | 20 -
.../idforge-render/qatest-2015011123671981543.sh | 17 -
.../qatest-2015011123671981543.conf | 24 -
.../qatest-2015011123671981543.mime | 1 -
.../idforge-render/qatest-2015011135476500711.sh | 21 -
.../qatest-2015011135476500711.conf | 68 -
.../qatest-2015011135476500711.mime | 8 -
.../idforge-render/qatest-2015012550849511192.sh | 18 -
.../qatest-2015012550849511192.conf | 32 -
.../qatest-2015012550849511192.mime | 3 -
.../idforge-render/qatest-2015012847797252944.sh | 35 -
.../qatest-2015012847797252944.conf | 275 ----
.../qatest-2015012847797252944.mime | 68 -
.../qatest-20150211182206285536962.sh | 21 -
.../qatest-20150211182206285536962.conf | 91 --
.../qatest-20150211182206285536962.mime | 7 -
.../qatest-20150301011701901419493.sh | 24 -
.../qatest-20150301011701901419493.conf | 33 -
.../qatest-20150301011701901419493.mime | 3 -
.../qatest-20150310141853357156504.sh | 22 -
.../qatest-20150310141853357156504.conf | 28 -
.../qatest-20150310141853357156504.mime | 3 -
.../qatest-commons/Backgrounds/640x480.png | Bin 478715 -> 0 bytes
.../Backgrounds/640x480.png-16colors.gpl | 20 -
.../Documentation/Locales/en_US/manpage.1.po | 40 -
.../Documentation/Locales/es_ES/manpage.1.po | 47 -
.../Models/Documentation/article.asciidoc | 10 -
.../Models/Documentation/manpage.1.asciidoc | 23 -
.../Models/Documentation/manpage.1.docbook | 28 -
.../Models/Documentation/manpage.1.es.asciidoc | 22 -
.../Images/Locales/en_US/document-cd-label.po | 90 --
.../Images/Locales/en_US/document-copyright.po | 30 -
.../Models/Images/Locales/en_US/document-text.po | 98 --
.../Images/Locales/es_ES/document-cd-label.po | 86 --
.../Images/Locales/es_ES/document-copyright.po | 26 -
.../Models/Images/Locales/es_ES/document-text.po | 94 --
.../Models/Images/document-background-inner.svg | 20 -
.../Models/Images/document-background.svg | 20 -
.../Models/Images/document-cd-label.svg | 569 --------
.../Models/Images/document-copyright.svg | 128 --
.../qatest-commons/Models/Images/document-text.svg | 1518 --------------------
.../Models/Images/idforge-logo-message.svg | 195 ---
.../qatest-commons/Models/Images/idforge-logo.svg | 73 -
.../Models/Images/idforge-symbol.svg | 37 -
Library/QaTests/qatest-2015010820975052943.sh | 40 +
.../qatest-2015010820975052943.conf | 13 +
Library/QaTests/qatest-2015010826381448211.sh | 17 +
.../QaTests/qatest-2015010826381448211/create.sh | 5 +
.../qatest-2015010826381448211.md5sum | 2 +
.../qatest-2015010826381448211.mime | 2 +
.../qatest-2015010826381448211.sha1sum | 2 +
.../qatest-2015010826381448211.sha256sum | 2 +
Library/QaTests/qatest-2015010849776781980.sh | 19 +
Library/QaTests/qatest-2015011112987178553.sh | 20 +
Library/QaTests/qatest-2015011123671981543.sh | 17 +
.../qatest-2015011123671981543.conf | 24 +
.../qatest-2015011123671981543.mime | 1 +
Library/QaTests/qatest-2015011135476500711.sh | 21 +
.../qatest-2015011135476500711.conf | 68 +
.../qatest-2015011135476500711.mime | 8 +
Library/QaTests/qatest-2015012550849511192.sh | 18 +
.../qatest-2015012550849511192.conf | 32 +
.../qatest-2015012550849511192.mime | 3 +
Library/QaTests/qatest-2015012847797252944.sh | 35 +
.../qatest-2015012847797252944.conf | 275 ++++
.../qatest-2015012847797252944.mime | 68 +
Library/QaTests/qatest-20150203184309856197746.sh | 23 +
Library/QaTests/qatest-20150203225846497213870.sh | 63 +
.../qatest-20150203225846497213870/file.asciidoc | 4 +
.../qatest-20150203225846497213870/file.html | 23 +
.../qatest-20150203225846497213870/file.svg | 26 +
.../qatest-20150203225846497213870/hello.svg | 75 +
.../qatest-20150203225846497213870.conf | 63 +
.../qatest-20150203225846497213870/world.svg | 75 +
Library/QaTests/qatest-20150211182206285536962.sh | 21 +
.../qatest-20150211182206285536962.conf | 91 ++
.../qatest-20150211182206285536962.mime | 7 +
Library/QaTests/qatest-20150301011701901419493.sh | 24 +
.../qatest-20150301011701901419493.conf | 33 +
.../qatest-20150301011701901419493.mime | 3 +
Library/QaTests/qatest-20150308125651913660732.sh | 28 +
Library/QaTests/qatest-20150310141853357156504.sh | 22 +
.../qatest-20150310141853357156504.conf | 28 +
.../qatest-20150310141853357156504.mime | 3 +
.../QaTests/qatest-commons/Backgrounds/640x480.png | Bin 0 -> 478715 bytes
.../Backgrounds/640x480.png-16colors.gpl | 20 +
.../Documentation/Locales/en_US/manpage.1.po | 40 +
.../Documentation/Locales/es_ES/manpage.1.po | 47 +
.../Models/Documentation/article.asciidoc | 10 +
.../Models/Documentation/manpage.1.asciidoc | 23 +
.../Models/Documentation/manpage.1.docbook | 28 +
.../Models/Documentation/manpage.1.es.asciidoc | 22 +
.../Images/Locales/en_US/document-cd-label.po | 90 ++
.../Images/Locales/en_US/document-copyright.po | 30 +
.../Models/Images/Locales/en_US/document-text.po | 98 ++
.../Images/Locales/es_ES/document-cd-label.po | 86 ++
.../Images/Locales/es_ES/document-copyright.po | 26 +
.../Models/Images/Locales/es_ES/document-text.po | 94 ++
.../Models/Images/document-background-inner.svg | 20 +
.../Models/Images/document-background.svg | 20 +
.../Models/Images/document-cd-label.svg | 569 ++++++++
.../Models/Images/document-copyright.svg | 128 ++
.../qatest-commons/Models/Images/document-text.svg | 1518 ++++++++++++++++++++
.../Models/Images/idforge-logo-message.svg | 195 +++
.../qatest-commons/Models/Images/idforge-logo.svg | 73 +
.../Models/Images/idforge-symbol.svg | 37 +
124 files changed, 4478 insertions(+), 4478 deletions(-)
commit 24909623dd02da86fc961a5edd774a0c3ef264b5
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 12:41:05 2015 -0400
Redefined IDFORGE_MANUALS environment variable
- Previously, it was not possible to redefined the value of
IDFORGE_MANUALS environment variable from the command-line. As
consequence, the documentation-related validation tests failed
because it was pointing to a directory where documentation files
didn't exit. This update changes idforge.sh initialization function
to redefine the IDFORGE_MANUALS environment variable so it can
receive a value assignment from the command-line.
Library/idforge.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 9a671d5f608154f51e730881360490b2ac1a2531
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 12:14:19 2015 -0400
Update quality assurance tests in the Makefile
Makefile | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
commit e7d1c2bd7fccd24c838563718522686ba512f9a8
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 00:57:47 2015 -0400
Remove idforge.spec file
- The idfroge.spec file was moved to its own repository named
idforge-specs.git.
idforge.spec | 88 ----------------------------------------------------------
1 files changed, 0 insertions(+), 88 deletions(-)
commit cc4fb2bf3547e4e1d5aa93aa8703b366ff901299
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 00:37:32 2015 -0400
Update Makefile and its dependencies
Library/Manuals/Makefile | 2 -
Library/Messages/Makefile | 4 +--
Makefile | 50 +++++++-------------------------------------
3 files changed, 9 insertions(+), 47 deletions(-)
commit 2c06636535fa29c8b16f7942dfcc8b5dbdf07de8
Author: Alain Reguera Delgado <[email protected]>
Date: Tue Mar 17 00:14:58 2015 -0400
Update idforge library localization files
Library/Messages/Locales/es/idforge-config.po | 15 ++++-----
Library/Messages/Locales/es/idforge-hello.po | 4 +-
Library/Messages/Locales/es/idforge-locale.po | 27 +++++++----------
Library/Messages/Locales/es/idforge-prepare.po | 16 +++++----
Library/Messages/Locales/es/idforge-qatest.po | 39 +++++++++++------------
Library/Messages/Locales/es/idforge-render.po | 17 ++--------
Library/Messages/Locales/es/idforge-tuneup.po | 8 ++--
Library/Messages/Locales/es/idforge-usage.po | 12 ++++----
Library/Messages/Locales/es/idforge-version.po | 15 ++++-----
Library/Messages/Locales/es/idforge.po | 4 +-
Library/Messages/Makefile | 5 +--
Library/Messages/idforge.conf | 20 ++++++------
12 files changed, 83 insertions(+), 99 deletions(-)
commit ee83fa6b16e691ca4645fc38bdbcc4bd438a1ea3
Author: Alain Reguera Delgado <[email protected]>
Date: Mon Mar 16 21:34:36 2015 -0400
Update creation process of new POT files
- Previously, the POT files created with xgettext were created with an
undefined charset information. As consequence a warning messages was
prinited when either msginit or msgmerge commands were executed.
This update fixes the charset information in the POT file by
replacing the undefined value with the charset information provided
in the LANG environment variable. In case no charset information is
provided in the LANG environment variable, UTF-8 is used as default
charset in the POT file.
.../Modules/Locale/Modules/Update/Modules/Sh/sh.sh | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
commit dc540c4e7cc7092140abb6fa67b5dca4302cbf3c
Author: Alain Reguera Delgado <[email protected]>
Date: Mon Mar 16 21:17:27 2015 -0400
Update creation process of new PO files
- Previously, when new PO files were created, no charset information
was considered as argument to "msginit --locale" option. As
consequence, the PO files were created with a charset information
that might or might not be appropriate for the target language.
This update changes the po_convertPotToPo function to use the LANG
environment variable instead of IDFORGE_LANG_LC as argument to
"msginit --locale" option. This permit to control the charset that
PO files uses at creation time.
- A previous intention to solve the charset issue when new PO files
were created was through the po_setPotMetadata function. This
function replaced any occurrence of CHARSET string in the POT file
by a fixed charset (e.g., ISO-8859-1). Such workaround limited the
number of possible charset that can be provided and so, the number
of languages that was possible to process. This update removes the
po_setPotMetadata and calls to it entirely from idforge-locale(1).
.../Modules/Update/Modules/Po/Modules/Base/base.sh | 2 -
.../Update/Modules/Po/Modules/Extended/extended.sh | 2 -
.../Modules/Update/Modules/Po/po_convertPotToPo.sh | 22 +++++++++--
.../Modules/Update/Modules/Po/po_setPotMetadata.sh | 38 --------------------
Library/Modules/Usage/usage_setOptions.sh | 2 +-
Library/Modules/Version/Modules/Status/status.sh | 2 +-
Library/Modules/Version/version_setOptions.sh | 2 +-
7 files changed, 21 insertions(+), 49 deletions(-)
commit e4be74a5961f8b48be24a95d744c912e820782ee
Author: Alain Reguera Delgado <[email protected]>
Date: Mon Mar 16 18:08:49 2015 -0400
Update idforge library localization messages
Library/Locales/es_ES/idforge-config.po | 30 ----
Library/Locales/es_ES/idforge-hello.po | 22 ---
Library/Locales/es_ES/idforge-locale.po | 60 -------
Library/Locales/es_ES/idforge-qatest.po | 92 -----------
Library/Locales/es_ES/idforge-render.po | 108 ------------
Library/Locales/es_ES/idforge.po | 205 -----------------------
Library/Locales/idforge.conf | 35 ----
Library/Messages/Locales/es/idforge-config.po | 30 ++++
Library/Messages/Locales/es/idforge-hello.po | 25 +++
Library/Messages/Locales/es/idforge-locale.po | 60 +++++++
Library/Messages/Locales/es/idforge-prepare.po | 33 ++++
Library/Messages/Locales/es/idforge-qatest.po | 92 +++++++++++
Library/Messages/Locales/es/idforge-render.po | 126 ++++++++++++++
Library/Messages/Locales/es/idforge-tuneup.po | 25 +++
Library/Messages/Locales/es/idforge-usage.po | 50 ++++++
Library/Messages/Locales/es/idforge-version.po | 56 +++++++
Library/Messages/Locales/es/idforge.po | 209 ++++++++++++++++++++++++
Library/Messages/Makefile | 18 ++
Library/Messages/idforge.conf | 59 +++++++
19 files changed, 783 insertions(+), 552 deletions(-)
commit 9311ca8f0be227664bf436e9bd81ad173c723bd9
Author: Alain Reguera Delgado <[email protected]>
Date: Sat Mar 14 20:58:44 2015 -0400
Add idforge-tuneup(1) command and documentation
Library/Manuals/Locales/en/idforge-config.1.po | 4 +-
Library/Manuals/Locales/en/idforge-hello.1.po | 4 +-
Library/Manuals/Locales/en/idforge-locale.1.po | 4 +-
Library/Manuals/Locales/en/idforge-modules.5.po | 4 +-
Library/Manuals/Locales/en/idforge-prepare.1.po | 4 +-
Library/Manuals/Locales/en/idforge-qatest.1.po | 4 +-
Library/Manuals/Locales/en/idforge-render.1.po | 4 +-
Library/Manuals/Locales/en/idforge-tuneup.1.po | 167 +++++++++++++++++++++++
Library/Manuals/Locales/en/idforge.1.po | 4 +-
Library/Manuals/Locales/es/idforge-config.1.po | 6 +-
Library/Manuals/Locales/es/idforge-hello.1.po | 6 +-
Library/Manuals/Locales/es/idforge-locale.1.po | 6 +-
Library/Manuals/Locales/es/idforge-modules.5.po | 6 +-
Library/Manuals/Locales/es/idforge-prepare.1.po | 6 +-
Library/Manuals/Locales/es/idforge-qatest.1.po | 6 +-
Library/Manuals/Locales/es/idforge-render.1.po | 6 +-
Library/Manuals/Locales/es/idforge-tuneup.1.po | 152 +++++++++++++++++++++
Library/Manuals/Locales/es/idforge.1.po | 6 +-
Library/Manuals/idforge-tuneup.1.asciidoc | 43 ++++++
Library/Manuals/idforge.conf | 22 +++
Library/Modules/Tuneup/tuneup.sh | 62 +++++++++
Library/Modules/Tuneup/tuneup_setOptions.sh | 71 ++++++++++
22 files changed, 557 insertions(+), 40 deletions(-)
commit 1db7181bce7ded21d96f0e344d44d747401a7ae1
Author: Alain Reguera Delgado <[email protected]>
Date: Sat Mar 14 16:31:21 2015 -0400
Tuneup qatest-commons source files in svg format
.../Models/Images/document-background-inner.svg | 74 +--
.../Models/Images/document-background.svg | 63 +--
.../Models/Images/document-cd-label.svg | 133 +--
.../Models/Images/document-copyright.svg | 199 ++----
.../qatest-commons/Models/Images/document-text.svg | 886 +++++++++-----------
.../Models/Images/idforge-logo-message.svg | 86 +--
.../qatest-commons/Models/Images/idforge-logo.svg | 74 +--
.../Models/Images/idforge-symbol.svg | 78 +--
8 files changed, 555 insertions(+), 1038 deletions(-)
commit 2a8fe31710bf6ae4f55dcd1689545245e2a36eb7
Author: Alain Reguera Delgado <[email protected]>
Date: Sat Mar 14 15:37:07 2015 -0400
Update idforge-prepare(1) command
- Previously, the top comment inside idforge-prepare(1) shell scripts
did show references to tcar copyright and legal status. This update
changes the top comment in the shell scripts so they point idFORGE
Framework's current copyright and legal status.
- Previously, the idforge-prepare(1) command didn't do what was said
in its documentation manual (create workplaces based on
configuration files). This update changes the idforge-prepare(1)
command to be consequent with its documentation manual.
- Update idforge-prepare.1.asciidoc and related localization files.
Library/Manuals/Locales/en/idforge-prepare.1.po | 10 ++--
Library/Manuals/Locales/es/idforge-prepare.1.po | 10 ++--
Library/Manuals/idforge-prepare.1.asciidoc | 7 +--
Library/Modules/Prepare/prepare.sh | 23 +++++-----
Library/Modules/Prepare/prepare_setOptions.sh | 30 ++++++++-----
Library/Modules/Prepare/prepare_setWorkplace.sh | 53 +++++++++++++++++++++++
6 files changed, 97 insertions(+), 36 deletions(-)
commit b57e229fa868dbd1dda4443eb4d4fed76181eb1d
Author: Alain Reguera Delgado <[email protected]>
Date: Sat Mar 14 12:16:21 2015 -0400
Update paths inside Library/Manuals/Makefile
Library/Manuals/Makefile | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
commit 23d6b700553676246328b609ae2ad82ab5b8eb27
Author: Alain Reguera Delgado <[email protected]>
Date: Sat Mar 14 12:14:54 2015 -0400