Skip to content

Commit 94d8135

Browse files
committed
ENAHNCED: Added pack support.
1 parent 0a624da commit 94d8135

File tree

13 files changed

+238
-389
lines changed

13 files changed

+238
-389
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

LICENSE.txt renamed to LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017 Wouter Beek
3+
Copyright (c) 2020 Wouter Beek
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.org renamed to README.md

Lines changed: 218 additions & 240 deletions
Large diffs are not rendered by default.

example/hello.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:- use_module(library(graph/gv)).
1+
:- use_module(library(gv)).
22
:- use_module(library(yall)).
33

44
run :-

example/loves.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:- use_module(library(graph/gv)).
1+
:- use_module(library(gv)).
22
:- use_module(library(yall)).
33

44
run :-

example/parse_tree.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:- use_module(library(apply)).
2-
:- use_module(library(graph/gv)).
2+
:- use_module(library(gv)).
33
:- use_module(library(yall)).
44

55
run :-

example/proof_tree.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:- use_module(library(apply)).
2-
:- use_module(library(graph/gv)).
2+
:- use_module(library(gv)).
33
:- use_module(library(yall)).
44

55
run :-

pack.pl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
author('Wouter Beek', 'wouter@triply.cc').
2+
dependency(prolog_library_collection).
3+
download('https://github.com/wouterbeek/prolog_graphviz/releases/*.zip').
4+
home('https://github.com/wouterbeek/prolog_graphviz').
5+
maintainer('Wouter Beek', 'wouter@triply.cc').
6+
name(prolog_graphviz).
7+
packager('Wouter Beek', 'wouter@triply.cc').
8+
title('Prolog Graph Visualization').
9+
version('1.0.0').

prolog/graph/dot.pl renamed to prolog/dot.pl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@
3131

3232
/* <module> DOT serialization
3333
34-
@author Wouter Beek
3534
@see https://www.graphviz.org
36-
@version 2018
35+
3736
*/
3837

3938
:- use_module(library(apply)).

prolog/graph/dot_html.pl renamed to prolog/dot_html.pl

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,16 @@
2727
| <TABLE> (row (<HR/>)?)* </TABLE>
2828
```
2929
30-
---
31-
32-
@author Wouter Beek
3330
@see http://www.graphviz.org/content/node-shapes#html
34-
@version 2015-2018
31+
3532
*/
3633

3734
:- use_module(library(error)).
3835

36+
:- use_module(library(abnf)).
3937
:- use_module(library(dcg)).
40-
:- use_module(library(dcg/dcg_abnf)).
41-
:- use_module(library(dcg/dcg_html)).
42-
:- use_module(library(graph/dot)).
38+
:- use_module(library(dcg_html)).
39+
:- use_module(library(dot)).
4340

4441

4542

0 commit comments

Comments
 (0)