-
Notifications
You must be signed in to change notification settings - Fork 8
/
ampersand.cabal
830 lines (822 loc) · 34.7 KB
/
ampersand.cabal
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
cabal-version: 2.0
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: ampersand
version: 5.2.4
synopsis: Toolsuite for automated design of enterprise information systems.
description: You can define your business processes by means of rules, written in Relation Algebra.
category: Database Design
stability: beta
homepage: http://ampersandtarski.github.io/
bug-reports: https://github.com/AmpersandTarski/ampersand/issues
author: Stef Joosten
maintainer: stef.joosten@ou.nl
copyright: Stef Joosten
license: GPL
license-file: LICENSE
tested-with:
GHC == 9.6.4
build-type: Custom
extra-source-files:
LICENSE
ReleaseNotes.md
AmpersandData/FormalAmpersand/Concepts.adl
AmpersandData/FormalAmpersand/Concepts.docadl
AmpersandData/FormalAmpersand/Conjuncts.adl
AmpersandData/FormalAmpersand/Conjuncts.docadl
AmpersandData/FormalAmpersand/Contexts.adl
AmpersandData/FormalAmpersand/Contexts.docadl
AmpersandData/FormalAmpersand/Documentation.adl
AmpersandData/FormalAmpersand/FormalAmpersand.adl
AmpersandData/FormalAmpersand/Generics.adl
AmpersandData/FormalAmpersand/Interfaces.adl
AmpersandData/FormalAmpersand/Interfaces.docadl
AmpersandData/FormalAmpersand/MinimalAST.xlsx
AmpersandData/FormalAmpersand/Patterns.adl
AmpersandData/FormalAmpersand/Patterns.docadl
AmpersandData/FormalAmpersand/README.txt
AmpersandData/FormalAmpersand/Relations.adl
AmpersandData/FormalAmpersand/Rules.adl
AmpersandData/FormalAmpersand/Rules.docadl
AmpersandData/FormalAmpersand/Terms.adl
AmpersandData/FormalAmpersand/Terms.docadl
AmpersandData/PrototypeContext/Interfaces.adl
AmpersandData/PrototypeContext/Interfaces.ifc
AmpersandData/PrototypeContext/Navbar.adl
AmpersandData/PrototypeContext/Navbar.ifc
AmpersandData/PrototypeContext/PrototypeContext.adl
AmpersandData/PrototypeContext/PrototypeContext.docadl
AmpersandData/PrototypeContext/Roles.adl
outputTemplates/default.asciidoc
outputTemplates/default.asciidoctor
outputTemplates/default.commonmark
outputTemplates/default.context
outputTemplates/default.docbook4
outputTemplates/default.docbook5
outputTemplates/default.dokuwiki
outputTemplates/default.dzslides
outputTemplates/default.epub2
outputTemplates/default.epub3
outputTemplates/default.haddock
outputTemplates/default.html4
outputTemplates/default.html5
outputTemplates/default.icml
outputTemplates/default.jats
outputTemplates/default.jira
outputTemplates/default.latex
outputTemplates/default.latex.orig
outputTemplates/default.latex.rej
outputTemplates/default.man
outputTemplates/default.markdown
outputTemplates/default.mediawiki
outputTemplates/default.ms
outputTemplates/default.muse
outputTemplates/default.opendocument
outputTemplates/default.opml
outputTemplates/default.org
outputTemplates/default.plain
outputTemplates/default.revealjs
outputTemplates/default.rst
outputTemplates/default.rtf
outputTemplates/default.s5
outputTemplates/default.slideous
outputTemplates/default.slidy
outputTemplates/default.tei
outputTemplates/default.texinfo
outputTemplates/default.textile
outputTemplates/default.xwiki
outputTemplates/default.zimwiki
outputTemplates/README.md
testing/performance/Issue1409/Issue1409.xlsx
testing/performance/Issue1409/Issue1409A.adl
testing/performance/Issue1409/Issue1409B.adl
testing/README.md
testing/Sentinel/README.md
testing/Sentinel/Tests/NoSentinel/Conjuncts.adl
testing/Sentinel/Tests/NoSentinel/Crud.adl
testing/Sentinel/Tests/NoSentinel/Issue1465Test.adl
testing/Sentinel/Tests/NoSentinel/Issue1465Test.xlsx
testing/Sentinel/Tests/NoSentinel/Issue192.xlsx
testing/Sentinel/Tests/NoSentinel/Issue192Test.adl
testing/Sentinel/Tests/NoSentinel/Multiplicities.adl
testing/Sentinel/Tests/ShouldFail/OnlyProto/testinfo.yaml
testing/Sentinel/Tests/ShouldFail/OnlyProto/ViewAnnotationCheck.adl
testing/Sentinel/Tests/ShouldFail/singletontest.adl
testing/Sentinel/Tests/ShouldSucceed/OnlyValidation/Bug337_FatalONE.adl
testing/Sentinel/Tests/ShouldSucceed/OnlyValidation/Issue233.adl
testing/Sentinel/Tests/ShouldSucceed/OnlyValidation/Issue280.adl
testing/Sentinel/Tests/ShouldSucceed/OnlyValidation/Issue751.adl
testing/Sentinel/Tests/ShouldSucceed/OnlyValidation/Issue853.adl
testing/Sentinel/Tests/ShouldSucceed/OnlyValidation/testinfo.yaml
testing/Sentinel/Tests/ShouldSucceed/OnlyValidation/Ticket580.adl
testing/Sentinel/Tests/ShouldSucceed/OnlyValidation/ViewAnnotationCheck.adl
testing/Sentinel/Tests/ShouldSucceed/testinfo.yaml
testing/StillUnsupported/Issue1127.adl
testing/StillUnsupported/Issue1127.xlsx
testing/StillUnsupported/Issue1397-1.adl
testing/StillUnsupported/Issue1397.adl
testing/StillUnsupported/Issue1419.adl
testing/StillUnsupported/Issue1420.adl
testing/StillUnsupported/Issue166.adl
testing/StillUnsupported/Issue166_2.adl
testing/StillUnsupported/singletontest.adl
testing/Travis/README.md
testing/Travis/testcases/Archimate/repositoryumcu.archimate
testing/Travis/testcases/Archimate/testinfo.yaml
testing/Travis/testcases/Bugs/Current/SQL/ARM20-Test8.adl
testing/Travis/testcases/Bugs/Current/SQL/testinfo.yaml
testing/Travis/testcases/Bugs/Current/SQLFail/Bug302_IgnoredV.adl
testing/Travis/testcases/Bugs/Current/SQLFail/Bug331_TotalInjective.adl
testing/Travis/testcases/Bugs/Current/SQLFail/testinfo.yaml
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/ALS.pop
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/IFC-Demo.ifc
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/IFC-Developer.ifc
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/RETINABUG.adl
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/RuntimeStuff.partialadl
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/SystemStuff.partialadl
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/testinfo.yaml
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/WBP-Glossary.partialadl
testing/Travis/testcases/Bugs/CurrentMultiFile/Bug388_Retina/WBP-Ontologie.partialadl
testing/Travis/testcases/Bugs/Fixed/Other/Bug_ColumnProperties.adl
testing/Travis/testcases/Bugs/Fixed/Other/Bug_DiamondOperator.adl
testing/Travis/testcases/Bugs/Fixed/Other/Bug_GeneratedTables.adl
testing/Travis/testcases/Bugs/Fixed/Other/Bug_InjectiveFunction_Fatal152.adl
testing/Travis/testcases/Bugs/Fixed/Other/testinfo.yaml
testing/Travis/testcases/Bugs/Fixed/SQL/Bug_HaskellViolationTest.adl
testing/Travis/testcases/Bugs/Fixed/SQL/Bug_RelAdd.adl
testing/Travis/testcases/Bugs/Fixed/SQL/Bug_SingletonExpression.adl
testing/Travis/testcases/Bugs/Fixed/SQL/Bug_Totality.adl
testing/Travis/testcases/Bugs/Fixed/SQL/testinfo.yaml
testing/Travis/testcases/Bugs/NoSentinel/Bug29_InterfaceRefLoop.adl
testing/Travis/testcases/Bugs/NoSentinel/Bug30_InterfaceRefBug.adl
testing/Travis/testcases/Bugs/NoSentinel/Bug434.adl
testing/Travis/testcases/Bugs/NoSentinel/TechDataModelTest.adl
testing/Travis/testcases/Bugs/NoSentinel/testinfo.yaml
testing/Travis/testcases/Check/EnforceTest1.adl
testing/Travis/testcases/Check/NamespaceRule.adl
testing/Travis/testcases/Check/ShouldFail/EnforceTest1.adl
testing/Travis/testcases/Check/ShouldFail/Issue1063.adl
testing/Travis/testcases/Check/ShouldFail/Issue1281.adl
testing/Travis/testcases/Check/ShouldFail/Issue298.adl
testing/Travis/testcases/Check/ShouldFail/Issue335.adl
testing/Travis/testcases/Check/ShouldFail/Issue406.adl
testing/Travis/testcases/Check/ShouldFail/Session.adl
testing/Travis/testcases/Check/ShouldFail/testinfo.yaml
testing/Travis/testcases/Check/testinfo.yaml
testing/Travis/testcases/FuncSpec/Issue1275.adl
testing/Travis/testcases/FuncSpec/Mandatering/Mandatering.adl
testing/Travis/testcases/FuncSpec/Mandatering/ToevoegenMandaat.adl
testing/Travis/testcases/FuncSpec/testinfo.yaml
testing/Travis/testcases/FuncSpec/testIssue1183.adl
testing/Travis/testcases/FuncSpec/testPredLogic.adl
testing/Travis/testcases/meatgrinder/Issue1484.adl
testing/Travis/testcases/meatgrinder/Issue1487.adl
testing/Travis/testcases/meatgrinder/testinfo.yaml
testing/Travis/testcases/Misc/Arbeidsduur.adl
testing/Travis/testcases/Misc/ArchiTest1.adl
testing/Travis/testcases/Misc/ArchiTest3.adl
testing/Travis/testcases/Misc/ArchiTest4.adl
testing/Travis/testcases/Misc/ArchiTest5.adl
testing/Travis/testcases/Misc/ARM-Test1.adl
testing/Travis/testcases/Misc/ARM-Test2.adl
testing/Travis/testcases/Misc/ARM20-Test1.adl
testing/Travis/testcases/Misc/ARM20-Test2.adl
testing/Travis/testcases/Misc/ARM20-Test3.adl
testing/Travis/testcases/Misc/ARM20-Test4.adl
testing/Travis/testcases/Misc/ARM20-Test5.adl
testing/Travis/testcases/Misc/ARM20-Test6.adl
testing/Travis/testcases/Misc/ARM20-Test7.adl
testing/Travis/testcases/Misc/ARM20-Test8.adl
testing/Travis/testcases/Misc/css/Custom.css
testing/Travis/testcases/Misc/FraakTest1.adl
testing/Travis/testcases/Misc/FraakTest2.adl
testing/Travis/testcases/Misc/Hello.adl
testing/Travis/testcases/Misc/Issue1499.adl
testing/Travis/testcases/Misc/Kernmodel.adl
testing/Travis/testcases/Misc/testinfo.yaml
testing/Travis/testcases/Parsing/shouldFail/Issue1029a.adl
testing/Travis/testcases/Parsing/shouldFail/Issue1029b.adl
testing/Travis/testcases/Parsing/shouldFail/Issue1189.adl
testing/Travis/testcases/Parsing/shouldFail/Issue923.adl
testing/Travis/testcases/Parsing/shouldFail/Issue980.adl
testing/Travis/testcases/Parsing/shouldFail/testinfo.yaml
testing/Travis/testcases/Parsing/shouldSucceed/Issue1014.adl
testing/Travis/testcases/Parsing/shouldSucceed/Issue1183.adl
testing/Travis/testcases/Parsing/shouldSucceed/Issue1189.adl
testing/Travis/testcases/Parsing/shouldSucceed/Issue899b.adl
testing/Travis/testcases/Parsing/shouldSucceed/Issue960.adl
testing/Travis/testcases/Parsing/shouldSucceed/testinfo.yaml
testing/Travis/testcases/Parsing/xlsxParsing/Issue1056.adl
testing/Travis/testcases/Parsing/xlsxParsing/Issue1056.xlsx
testing/Travis/testcases/Parsing/xlsxParsing/testinfo.yaml
testing/Travis/testcases/Preprocessor/includes/PreprocTest.adl
testing/Travis/testcases/Preprocessor/includes/PreprocTestPopulation.adl
testing/Travis/testcases/Preprocessor/Preprocessor.adl
testing/Travis/testcases/Preprocessor/testinfo.yaml
testing/Travis/testcases/prototype/ISAtest/ISAtest1.adl
testing/Travis/testcases/prototype/ISAtest/ISAtest2.adl
testing/Travis/testcases/prototype/ISAtest/Limorange-EditValidation/AddOwnedCitrus.after.pop
testing/Travis/testcases/prototype/ISAtest/Limorange-EditValidation/AddOwnedCitrus.before.pop
testing/Travis/testcases/prototype/ISAtest/Limorange-EditValidation/AddOwnedCitrus.edit.json
testing/Travis/testcases/prototype/ISAtest/Limorange-EditValidation/AddOwnedLimorange.after.pop
testing/Travis/testcases/prototype/ISAtest/Limorange-EditValidation/AddOwnedLimorange.before.pop
testing/Travis/testcases/prototype/ISAtest/Limorange-EditValidation/AddOwnedLimorange.edit.json
testing/Travis/testcases/prototype/ISAtest/Limorange.adl
testing/Travis/testcases/prototype/ISAtest/Strange.adl
testing/Travis/testcases/prototype/ISAtest/testinfo.yaml
testing/Travis/testcases/prototype/shouldFail/InvariantViolations/IDENT-test-fail.adl
testing/Travis/testcases/prototype/shouldFail/InvariantViolations/Issue708.adl
testing/Travis/testcases/prototype/shouldFail/InvariantViolations/showViolationMessages.adl
testing/Travis/testcases/prototype/shouldFail/InvariantViolations/testinfo.yaml
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/443_InterfaceRefType.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/ARM20-Test2wrong.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/ARM_Test10.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/CyclicInterfaceRef.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/DoubleLabel.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/DuplicateInterfaces.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/InterfaceRefCheck.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/InterfaceTest1.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Issue142Fail.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Issue163.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Issue181.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Issue726.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Issue757.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Issue890.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/ParseFail.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/phone.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/RuleNamesMustBeUnique.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/SingleRoot.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/testinfo.yaml
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Ticket237.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Ticket441.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Ticket442.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Ticket726.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try1.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try10.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try11.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try12.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try13.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try14.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try15.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try17.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try17b.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try18b.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try2.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try20.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try2b.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try34.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try36.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try4.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try41.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try48.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/Try49.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try7.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try8.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/try9.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/tryRieks.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/typecheckerror.adl
testing/Travis/testcases/prototype/shouldFail/ParserOrTypecheckFailures/ViewAnnotationCheck.adl
testing/Travis/testcases/prototype/shouldSucceed/aliasTests.adl
testing/Travis/testcases/prototype/shouldSucceed/ARM-Test12.adl
testing/Travis/testcases/prototype/shouldSucceed/ARM_Test10.adl
testing/Travis/testcases/prototype/shouldSucceed/BroadTableTest.adl
testing/Travis/testcases/prototype/shouldSucceed/Bug335_Kl0Kl1.adl
testing/Travis/testcases/prototype/shouldSucceed/Bug435.adl
testing/Travis/testcases/prototype/shouldSucceed/CP23xBug1.adl
testing/Travis/testcases/prototype/shouldSucceed/CP23xBug2.adl
testing/Travis/testcases/prototype/shouldSucceed/CPLbug1.adl
testing/Travis/testcases/prototype/shouldSucceed/CPLbug2.adl
testing/Travis/testcases/prototype/shouldSucceed/empty.adl
testing/Travis/testcases/prototype/shouldSucceed/EscapeTest.adl
testing/Travis/testcases/prototype/shouldSucceed/fatal313bug.adl
testing/Travis/testcases/prototype/shouldSucceed/FlipPHPBug.adl
testing/Travis/testcases/prototype/shouldSucceed/IDENT-test-succeed.adl
testing/Travis/testcases/prototype/shouldSucceed/IdentTest.adl
testing/Travis/testcases/prototype/shouldSucceed/InterfaceRefCheck.adl
testing/Travis/testcases/prototype/shouldSucceed/InterfaceTest1.adl
testing/Travis/testcases/prototype/shouldSucceed/InterfaceTest2.adl
testing/Travis/testcases/prototype/shouldSucceed/InterfaceTest3.adl
testing/Travis/testcases/prototype/shouldSucceed/InterfaceTest4.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue1018.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue1026.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue1261.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue1281.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue1413.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue142.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue142.xlsx
testing/Travis/testcases/prototype/shouldSucceed/Issue142TooGeneric.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue142TooGeneric.xlsx
testing/Travis/testcases/prototype/shouldSucceed/Issue148.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue152.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue174.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue192.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue192.xlsx
testing/Travis/testcases/prototype/shouldSucceed/Issue194.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue194.xlsx
testing/Travis/testcases/prototype/shouldSucceed/Issue257.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue260.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue280.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue340.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue711.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue746.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue760.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue766.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue785.adl
testing/Travis/testcases/prototype/shouldSucceed/Issue855.adl
testing/Travis/testcases/prototype/shouldSucceed/MultipleDeclaredRules.adl
testing/Travis/testcases/prototype/shouldSucceed/NoMinMinValidate-Issue557/Archimate1.adl
testing/Travis/testcases/prototype/shouldSucceed/NoMinMinValidate-Issue557/README.md
testing/Travis/testcases/prototype/shouldSucceed/NoMinMinValidate-Issue557/testinfo.yaml
testing/Travis/testcases/prototype/shouldSucceed/propertytests.adl
testing/Travis/testcases/prototype/shouldSucceed/SelectExprTest.adl
testing/Travis/testcases/prototype/shouldSucceed/SequencesBug.adl
testing/Travis/testcases/prototype/shouldSucceed/specializeTest.adl
testing/Travis/testcases/prototype/shouldSucceed/testinfo.yaml
testing/Travis/testcases/prototype/shouldSucceed/Ticket237.adl
testing/Travis/testcases/prototype/shouldSucceed/Ticket342.adl
testing/Travis/testcases/prototype/shouldSucceed/Ticket35GitHub.adl
testing/Travis/testcases/prototype/shouldSucceed/Ticket398.adl
testing/Travis/testcases/prototype/shouldSucceed/Ticket445.adl
testing/Travis/testcases/prototype/shouldSucceed/Ticket454.adl
testing/Travis/testcases/prototype/shouldSucceed/try1.adl
testing/Travis/testcases/prototype/shouldSucceed/try10.adl
testing/Travis/testcases/prototype/shouldSucceed/try11.adl
testing/Travis/testcases/prototype/shouldSucceed/try12.adl
testing/Travis/testcases/prototype/shouldSucceed/try13.adl
testing/Travis/testcases/prototype/shouldSucceed/try13b.adl
testing/Travis/testcases/prototype/shouldSucceed/try15.adl
testing/Travis/testcases/prototype/shouldSucceed/try16.adl
testing/Travis/testcases/prototype/shouldSucceed/try18.adl
testing/Travis/testcases/prototype/shouldSucceed/try18fail.adl
testing/Travis/testcases/prototype/shouldSucceed/try19.adl
testing/Travis/testcases/prototype/shouldSucceed/try2.adl
testing/Travis/testcases/prototype/shouldSucceed/try20.adl
testing/Travis/testcases/prototype/shouldSucceed/try22.adl
testing/Travis/testcases/prototype/shouldSucceed/try23.adl
testing/Travis/testcases/prototype/shouldSucceed/try24.adl
testing/Travis/testcases/prototype/shouldSucceed/try25.adl
testing/Travis/testcases/prototype/shouldSucceed/try26.adl
testing/Travis/testcases/prototype/shouldSucceed/try28.adl
testing/Travis/testcases/prototype/shouldSucceed/try29.adl
testing/Travis/testcases/prototype/shouldSucceed/try3.adl
testing/Travis/testcases/prototype/shouldSucceed/try30.adl
testing/Travis/testcases/prototype/shouldSucceed/try31.adl
testing/Travis/testcases/prototype/shouldSucceed/Try32.adl
testing/Travis/testcases/prototype/shouldSucceed/Try33.adl
testing/Travis/testcases/prototype/shouldSucceed/Try34.adl
testing/Travis/testcases/prototype/shouldSucceed/Try35.adl
testing/Travis/testcases/prototype/shouldSucceed/try36.adl
testing/Travis/testcases/prototype/shouldSucceed/try37.adl
testing/Travis/testcases/prototype/shouldSucceed/Try38.adl
testing/Travis/testcases/prototype/shouldSucceed/Try39.adl
testing/Travis/testcases/prototype/shouldSucceed/try40.adl
testing/Travis/testcases/prototype/shouldSucceed/try41.adl
testing/Travis/testcases/prototype/shouldSucceed/try41a.adl
testing/Travis/testcases/prototype/shouldSucceed/try42.adl
testing/Travis/testcases/prototype/shouldSucceed/Try43.adl
testing/Travis/testcases/prototype/shouldSucceed/try43a.adl
testing/Travis/testcases/prototype/shouldSucceed/Try44.adl
testing/Travis/testcases/prototype/shouldSucceed/try45.adl
testing/Travis/testcases/prototype/shouldSucceed/Try46.adl
testing/Travis/testcases/prototype/shouldSucceed/try47.adl
testing/Travis/testcases/prototype/shouldSucceed/try5.adl
testing/Travis/testcases/prototype/shouldSucceed/Try50.adl
testing/Travis/testcases/prototype/shouldSucceed/Try51.adl
testing/Travis/testcases/prototype/shouldSucceed/Try52.adl
testing/Travis/testcases/prototype/shouldSucceed/Try53.adl
testing/Travis/testcases/prototype/shouldSucceed/Try54.adl
testing/Travis/testcases/prototype/shouldSucceed/try6.adl
testing/Travis/testcases/prototype/shouldSucceed/try7.adl
testing/Travis/testcases/prototype/shouldSucceed/try8.adl
testing/Travis/testcases/prototype/shouldSucceed/try9.adl
testing/Travis/testcases/prototype/shouldSucceed/TTypeTest1.adl
testing/Travis/testcases/prototype/shouldSucceed/validate/Issue1293.adl
testing/Travis/testcases/prototype/shouldSucceed/validate/Issue148.adl
testing/Travis/testcases/prototype/shouldSucceed/validate/Issue862a.adl
testing/Travis/testcases/prototype/shouldSucceed/validate/Issue865.adl
testing/Travis/testcases/prototype/shouldSucceed/validate/testinfo.yaml
testing/Travis/testcases/prototype/shouldSucceed/WithMeatgrinder/CheckDanglingPurposes.adl
testing/Travis/testcases/prototype/shouldSucceed/WithMeatgrinder/CheckDanglingPurposes_generated_pop.json
testing/Travis/testcases/prototype/shouldSucceed/WithMeatgrinder/PossibleSQLbug.adl
testing/Travis/testcases/prototype/shouldSucceed/WithMeatgrinder/residutest.adl
testing/Travis/testcases/prototype/shouldSucceed/WithMeatgrinder/SpecEdit.adl
testing/Travis/testcases/prototype/shouldSucceed/WithMeatgrinder/testinfo.yaml
testing/Travis/testcases/prototype/shouldSucceed/WithMeatgrinder/Ticket440.adl
testing/Travis/testcases/Simple/Delivery.adl
testing/Travis/testcases/Simple/DeliverySimple.adl
testing/Travis/testcases/Simple/DeliverySimple.css
testing/Travis/testcases/Simple/DeliverySimpleOPA.adl
testing/Travis/testcases/Simple/Roles.adl
testing/Travis/testcases/Simple/testinfo.yaml
testing/Travis/testcases/tutorial/MyModel.adl
testing/Travis/testcases/tutorial/README.md
testing/Travis/testcases/tutorial/testinfo.yaml
custom-setup
setup-depends:
Cabal
, base
, bytestring
, directory
, filepath
, hexpat
, process
, rio
, salve
, time
, zip-archive
flag buildAll
description: Build both ampersand and ampPreProc.
manual: True
default: False
library
exposed-modules:
Ampersand
Ampersand.ADL1
Ampersand.ADL1.Disambiguate
Ampersand.ADL1.Expression
Ampersand.ADL1.Lattices
Ampersand.ADL1.P2A_Converters
Ampersand.ADL1.PrettyPrinters
Ampersand.ADL1.Rule
Ampersand.Basics
Ampersand.Basics.Auxiliaries
Ampersand.Basics.Exit
Ampersand.Basics.Languages
Ampersand.Basics.PandocExtended
Ampersand.Basics.Prelude
Ampersand.Basics.String
Ampersand.Basics.Unique
Ampersand.Basics.Version
Ampersand.Classes
Ampersand.Classes.ConceptStructure
Ampersand.Classes.Relational
Ampersand.Classes.ViewPoint
Ampersand.Core.A2P_Converters
Ampersand.Core.AbstractSyntaxTree
Ampersand.Core.ParseTree
Ampersand.Core.ShowAStruct
Ampersand.Core.ShowPStruct
Ampersand.FSpec
Ampersand.FSpec.Crud
Ampersand.FSpec.FSpec
Ampersand.FSpec.FSpecAux
Ampersand.FSpec.Motivations
Ampersand.FSpec.SQL
Ampersand.FSpec.ShowHS
Ampersand.FSpec.ToFSpec.ADL2FSpec
Ampersand.FSpec.ToFSpec.ADL2Plug
Ampersand.FSpec.ToFSpec.Calc
Ampersand.FSpec.ToFSpec.CreateFspec
Ampersand.FSpec.ToFSpec.NormalForms
Ampersand.FSpec.ToFSpec.Populated
Ampersand.FSpec.Transformers
Ampersand.Graphic.ClassDiag2Dot
Ampersand.Graphic.ClassDiagram
Ampersand.Graphic.Fspec2ClassDiagrams
Ampersand.Graphic.Graphics
Ampersand.Input
Ampersand.Input.ADL1.CtxError
Ampersand.Input.ADL1.FilePos
Ampersand.Input.ADL1.Lexer
Ampersand.Input.ADL1.LexerMessage
Ampersand.Input.ADL1.LexerMonad
Ampersand.Input.ADL1.LexerTexts
Ampersand.Input.ADL1.LexerToken
Ampersand.Input.ADL1.Parser
Ampersand.Input.ADL1.ParsingLib
Ampersand.Input.Parsing
Ampersand.Input.PreProcessor
Ampersand.Input.Xslx.XLSX
Ampersand.Misc.Commands
Ampersand.Misc.HasClasses
Ampersand.Options.GlobalParser
Ampersand.Options.LogLevelParser
Ampersand.Options.Utils
Ampersand.Output
Ampersand.Output.FSpec2Pandoc
Ampersand.Output.FSpec2SQL
Ampersand.Output.PandocAux
Ampersand.Output.Population2Xlsx
Ampersand.Output.ToJSON.Concepts
Ampersand.Output.ToJSON.Conjuncts
Ampersand.Output.ToJSON.Interfaces
Ampersand.Output.ToJSON.JSONutils
Ampersand.Output.ToJSON.Populations
Ampersand.Output.ToJSON.Relations
Ampersand.Output.ToJSON.Roles
Ampersand.Output.ToJSON.Rules
Ampersand.Output.ToJSON.Settings
Ampersand.Output.ToJSON.ToJson
Ampersand.Output.ToJSON.Views
Ampersand.Output.ToPandoc
Ampersand.Output.ToPandoc.ChapterConceptualAnalysis
Ampersand.Output.ToPandoc.ChapterDataAnalysis
Ampersand.Output.ToPandoc.ChapterDiagnosis
Ampersand.Output.ToPandoc.ChapterIntroduction
Ampersand.Output.ToPandoc.ChapterNatLangReqs
Ampersand.Output.ToPandoc.SharedAmongChapters
Ampersand.Prototype.GenAngularFrontend
Ampersand.Prototype.GenBackend
Ampersand.Prototype.GenFrontend
Ampersand.Prototype.PHP
Ampersand.Prototype.ProtoUtil
Ampersand.Prototype.TableSpec
Ampersand.Prototype.ValidateSQL
Ampersand.Runners
Ampersand.Test
Ampersand.Test.Parser.ArbitraryTree
Ampersand.Test.Parser.ParserTest
Ampersand.Test.Parser.QuickChecks
Ampersand.Test.Regression
MainApps
Options.Applicative.Builder.Extra
Ampersand.Basics.BuildInfo_Generated
Ampersand.Prototype.StaticFiles_Generated
other-modules:
Ampersand.Basics.Hashing
Ampersand.Basics.Name
Ampersand.Commands.Daemon
Ampersand.Commands.Devoutput
Ampersand.Commands.Documentation
Ampersand.Commands.ExportAsADL
Ampersand.Commands.Init
Ampersand.Commands.Population
Ampersand.Commands.Proof
Ampersand.Commands.Proto
Ampersand.Commands.Test
Ampersand.Commands.Validate
Ampersand.Daemon.Daemon
Ampersand.Daemon.Escape
Ampersand.Daemon.Parser
Ampersand.Daemon.Terminal
Ampersand.Daemon.Types
Ampersand.Daemon.Util
Ampersand.Daemon.Wait
Ampersand.FSpec.FPA
Ampersand.FSpec.Instances
Ampersand.Input.Archi.ArchiAnalyze
Ampersand.Input.AtlasImport
Ampersand.Misc.Defaults
Ampersand.Options.DaemonParser
Ampersand.Options.DevoutputOptsParser
Ampersand.Options.DocOptsParser
Ampersand.Options.FSpecGenOptsParser
Ampersand.Options.InputOutputOpts
Ampersand.Options.PopulationOptsParser
Ampersand.Options.ProofOptsParser
Ampersand.Options.ProtoOptsParser
Ampersand.Options.TestOptsParser
Ampersand.Options.ValidateOptsParser
Ampersand.Output.PredLogic
Ampersand.Types.Config
Paths_ampersand
autogen-modules:
Paths_ampersand
Ampersand.Basics.BuildInfo_Generated
Ampersand.Prototype.StaticFiles_Generated
hs-source-dirs:
src/
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options: -Wall -Wcompat -Widentities -optP-Wno-nonportable-include-path -Wredundant-constraints -fwrite-ide-info -hiedir=.hie
build-depends:
HStringTemplate
, QuickCheck
, aeson
, aeson-pretty
, ansi-terminal
, base
, casing
, conduit
, containers
, cryptonite
, data-default
, directory
, doctemplates
, extra
, filepath
, fsnotify
, generic-deriving
, graphviz
, hashable
, hxt
, lens
, mtl
, optparse-applicative
, pandoc
, pandoc-crossref
, pandoc-types
, parsec
, process
, quickcheck-instances
, rio
, simple-sql-parser
, terminal-size
, text
, text1
, time
, transformers
, uri-encode
, wl-pprint
, xlsx
, yaml
, zip-archive
default-language: Haskell2010
if os(windows)
build-depends:
Win32
else
build-depends:
unix
executable ampPreProc
main-is: Main.hs
other-modules:
Paths_ampersand
autogen-modules:
Paths_ampersand
hs-source-dirs:
app/AmpPreProc
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options: -Wall -Wcompat -Widentities -optP-Wno-nonportable-include-path -Wredundant-constraints -fwrite-ide-info -hiedir=.hie -threaded
build-depends:
HStringTemplate
, QuickCheck
, aeson
, aeson-pretty
, ampersand
, ansi-terminal
, base
, casing
, conduit
, containers
, cryptonite
, data-default
, directory
, doctemplates
, extra
, filepath
, fsnotify
, generic-deriving
, graphviz
, hashable
, hxt
, lens
, mtl
, optparse-applicative
, pandoc
, pandoc-crossref
, pandoc-types
, parsec
, process
, quickcheck-instances
, rio
, simple-sql-parser
, terminal-size
, text
, text1
, time
, transformers
, uri-encode
, wl-pprint
, xlsx
, yaml
, zip-archive
default-language: Haskell2010
if os(windows)
build-depends:
Win32
else
build-depends:
unix
if !(flag(buildAll))
buildable: False
executable ampersand
main-is: Main.hs
other-modules:
Paths_ampersand
autogen-modules:
Paths_ampersand
hs-source-dirs:
app/Ampersand
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options: -Wall -Wcompat -Widentities -optP-Wno-nonportable-include-path -Wredundant-constraints -fwrite-ide-info -hiedir=.hie -threaded -fwrite-ide-info
build-depends:
Cabal
, HStringTemplate
, QuickCheck
, aeson
, aeson-pretty
, ampersand
, ansi-terminal
, base
, casing
, conduit
, containers
, cryptonite
, data-default
, directory
, doctemplates
, extra
, filepath
, fsnotify
, generic-deriving
, graphviz
, hashable
, hxt
, lens
, mtl
, optparse-applicative
, pandoc
, pandoc-crossref
, pandoc-types
, parsec
, process
, quickcheck-instances
, rio
, simple-sql-parser
, terminal-size
, text
, text1
, time
, transformers
, uri-encode
, wl-pprint
, xlsx
, yaml
, zip-archive
default-language: Haskell2010
if os(windows)
build-depends:
Win32
else
build-depends:
unix
test-suite ampersand-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_ampersand
autogen-modules:
Paths_ampersand
hs-source-dirs:
app/Test
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options: -Wall -Wcompat -Widentities -optP-Wno-nonportable-include-path -Wredundant-constraints -fwrite-ide-info -hiedir=.hie -threaded
build-depends:
HStringTemplate
, QuickCheck
, aeson
, aeson-pretty
, ampersand
, ansi-terminal
, base
, casing
, conduit
, containers
, cryptonite
, data-default
, directory
, doctemplates
, extra
, filepath
, fsnotify
, generic-deriving
, graphviz
, hashable
, hxt
, lens
, mtl
, optparse-applicative
, pandoc
, pandoc-crossref
, pandoc-types
, parsec
, process
, quickcheck-instances
, rio
, simple-sql-parser
, terminal-size
, text
, text1
, time
, transformers
, uri-encode
, wl-pprint
, xlsx
, yaml
, zip-archive
default-language: Haskell2010
if os(windows)
build-depends:
Win32
else
build-depends:
unix