Skip to content

Commit 5f7dc01

Browse files
authored
Merge pull request #25 from koriym/image_html
Wrap asd svg image with <iframe> tag
2 parents b8913b2 + 72509d2 commit 5f7dc01

File tree

15 files changed

+116
-63
lines changed

15 files changed

+116
-63
lines changed

docs/docs/asd.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<html lang="en">
2+
<head>
3+
<title>ALPS example</title>
4+
</head>
5+
<body>
6+
<iframe src="../profile.svg" style="border:0; width:100%; height:95%" allow="fullscreen"></iframe>
7+
</body>
8+
</html>

docs/docs/image.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<html lang="en">
2+
<head>
3+
<title>ALPS example</title>
4+
</head>
5+
<body>
6+
<iframe src="example/blog/profile.svg" style="border:0; width:100%; height:95%" allow="fullscreen"></iframe>
7+
<p>ALPS example</p>
8+
</body>
9+
</html>

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1>ALPS example</h1>
2626

2727
<ul>
2828
<li><a href="profile.json">ALPS</a></li>
29-
<li><a href="profile.svg">Application State Diagram</a></li>
29+
<li><a href="docs/asd.html">Application State Diagram</a></li>
3030
<li>Semantic Descriptors
3131

3232
<ul>

docs/profile.dot

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ digraph application_state_diagram {
33
labelloc="b";
44
fontname="Helvetica"
55
label="ALPS example";
6-
URL="index.html"
6+
URL="index.html" target="_parent"
77
];
88
node [shape = box, style = "bold,filled"];
99

10-
Blog [style=solid, margin=0.02, label=<<table cellspacing="0" cellpadding="5" cellborder="1" border="0"><tr><td bgcolor="#dddddd">Blog<br />(BlogPosting)<br /></td></tr></table>>,shape=box URL="docs/semantic.Blog.html"]
11-
BlogPosting [style=solid, margin=0.02, label=<<table cellspacing="0" cellpadding="5" cellborder="1" border="0"><tr><td bgcolor="#dddddd">BlogPosting<br />(id)<br />(articleBody)<br />(dateCreated)<br /></td></tr></table>>,shape=box URL="docs/semantic.BlogPosting.html"]
10+
Blog [style=solid, margin=0.02, label=<<table cellspacing="0" cellpadding="5" cellborder="1" border="0"><tr><td bgcolor="#dddddd">Blog<br />(BlogPosting)<br /></td></tr></table>>,shape=box URL="docs/semantic.Blog.html" target="_parent"]
11+
BlogPosting [style=solid, margin=0.02, label=<<table cellspacing="0" cellpadding="5" cellborder="1" border="0"><tr><td bgcolor="#dddddd">BlogPosting<br />(id)<br />(articleBody)<br />(dateCreated)<br /></td></tr></table>>,shape=box URL="docs/semantic.BlogPosting.html" target="_parent"]
1212

13-
Index -> Blog [label = "start (safe)" URL="docs/safe.start.html" fontsize=13];
14-
About -> Blog [label = "backToBlog (safe)" URL="docs/safe.backToBlog.html" fontsize=13];
15-
Blog -> BlogPosting [label = "blogPosting, item (safe)" URL="docs/safe.blogPosting.html" fontsize=13];
16-
Blog -> Blog [label = "post (unsafe)" URL="docs/unsafe.post.html" fontsize=13];
17-
Blog -> About [label = "about (safe)" URL="docs/safe.about.html" fontsize=13];
18-
BlogPosting -> Blog [label = "blog, collection (safe)" URL="docs/safe.blog.html" fontsize=13];
13+
Index -> Blog [label = "start (safe)" URL="docs/safe.start.html" target="_parent" fontsize=13];
14+
About -> Blog [label = "backToBlog (safe)" URL="docs/safe.backToBlog.html" target="_parent" fontsize=13];
15+
Blog -> BlogPosting [label = "blogPosting, item (safe)" URL="docs/safe.blogPosting.html" target="_parent" fontsize=13];
16+
Blog -> Blog [label = "post (unsafe)" URL="docs/unsafe.post.html" target="_parent" fontsize=13];
17+
Blog -> About [label = "about (safe)" URL="docs/safe.about.html" target="_parent" fontsize=13];
18+
BlogPosting -> Blog [label = "blog, collection (safe)" URL="docs/safe.blog.html" target="_parent" fontsize=13];
1919

20-
Index [URL="docs/semantic.Index.html"]
21-
About [URL="docs/semantic.About.html"]
20+
Index [URL="docs/semantic.Index.html" target="_parent"]
21+
About [URL="docs/semantic.About.html" target="_parent"]
2222

2323
}

docs/profile.svg

Lines changed: 17 additions & 17 deletions
Loading

example/todomvc/docs/asd.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<html lang="en">
2+
<head>
3+
<title>MVC ToDo List</title>
4+
</head>
5+
<body>
6+
<iframe src="../profile.svg" style="border:0; width:100%; height:95%" allow="fullscreen"></iframe>
7+
</body>
8+
</html>

example/todomvc/docs/image.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<html lang="en">
2+
<head>
3+
<title>MVC ToDo List</title>
4+
</head>
5+
<body>
6+
<iframe src="example/todomvc/profile.svg" style="border:0; width:100%; height:95%" allow="fullscreen"></iframe>
7+
<p>MVC ToDo List</p>
8+
</body>
9+
</html>

example/todomvc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1>MVC ToDo List</h1>
2626

2727
<ul>
2828
<li><a href="profile.json">ALPS</a></li>
29-
<li><a href="profile.svg">Application State Diagram</a></li>
29+
<li><a href="docs/asd.html">Application State Diagram</a></li>
3030
<li>Semantic Descriptors
3131

3232
<ul>

example/todomvc/profile.dot

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@ digraph application_state_diagram {
33
labelloc="b";
44
fontname="Helvetica"
55
label="MVC ToDo List";
6-
URL="index.html"
6+
URL="index.html" target="_parent"
77
];
88
node [shape = box, style = "bold,filled"];
99

10-
todoList [style=solid, margin=0.02, label=<<table cellspacing="0" cellpadding="5" cellborder="1" border="0"><tr><td bgcolor="#dddddd">todoList<br />(id)<br />(title)<br />(completed)<br /></td></tr></table>>,shape=box URL="docs/semantic.todoList.html"]
11-
todoItem [style=solid, margin=0.02, label=<<table cellspacing="0" cellpadding="5" cellborder="1" border="0"><tr><td bgcolor="#dddddd">todoItem<br />(id)<br />(title)<br />(completed)<br /></td></tr></table>>,shape=box URL="docs/semantic.todoItem.html"]
10+
todoList [style=solid, margin=0.02, label=<<table cellspacing="0" cellpadding="5" cellborder="1" border="0"><tr><td bgcolor="#dddddd">todoList<br />(id)<br />(title)<br />(completed)<br /></td></tr></table>>,shape=box URL="docs/semantic.todoList.html" target="_parent"]
11+
todoItem [style=solid, margin=0.02, label=<<table cellspacing="0" cellpadding="5" cellborder="1" border="0"><tr><td bgcolor="#dddddd">todoItem<br />(id)<br />(title)<br />(completed)<br /></td></tr></table>>,shape=box URL="docs/semantic.todoItem.html" target="_parent"]
1212

13-
home -> todoList [label = "listAll (safe)" URL="docs/safe.listAll.html" fontsize=13];
14-
home -> related [label = "goRelated (safe)" URL="docs/safe.goRelated.html" fontsize=13];
15-
related -> home [label = "goHome (safe)" URL="docs/safe.goHome.html" fontsize=13];
13+
home -> todoList [label = "listAll (safe)" URL="docs/safe.listAll.html" target="_parent" fontsize=13];
14+
home -> related [label = "goRelated (safe)" URL="docs/safe.goRelated.html" target="_parent" fontsize=13];
15+
related -> home [label = "goHome (safe)" URL="docs/safe.goHome.html" target="_parent" fontsize=13];
1616
related -> todoList [label=<<table border="0"><tr><td align="left" href="docs/safe.listAll.html">listAll (safe)</td></tr><tr><td align="left" href="docs/safe.listActive.html">listActive (safe)</td></tr><tr><td align="left" href="docs/safe.listCompleted.html">listCompleted (safe)</td></tr><tr><td align="left" href="docs/idempotent.remove.html">remove (idempotent)</td></tr></table>> fontsize=13];
1717
related -> todoItem [label=<<table border="0"><tr><td align="left" href="docs/safe.read.html">read (safe)</td></tr><tr><td align="left" href="docs/unsafe.add.html">add (unsafe)</td></tr><tr><td align="left" href="docs/idempotent.edit.html">edit (idempotent)</td></tr></table>> fontsize=13];
1818
todoList -> todoItem [label=<<table border="0"><tr><td align="left" href="docs/safe.read.html">read (safe)</td></tr><tr><td align="left" href="docs/unsafe.add.html">add (unsafe)</td></tr></table>> fontsize=13];
1919
todoList -> todoList [label=<<table border="0"><tr><td align="left" href="docs/safe.listAll.html">listAll (safe)</td></tr><tr><td align="left" href="docs/safe.listActive.html">listActive (safe)</td></tr><tr><td align="left" href="docs/safe.listCompleted.html">listCompleted (safe)</td></tr><tr><td align="left" href="docs/safe.goFirst.html">goFirst (safe)</td></tr><tr><td align="left" href="docs/safe.goNext.html">goNext (safe)</td></tr><tr><td align="left" href="docs/safe.goPrevious.html">goPrevious (safe)</td></tr><tr><td align="left" href="docs/safe.goLast.html">goLast (safe)</td></tr></table>> fontsize=13];
20-
todoList -> home [label = "goHome (safe)" URL="docs/safe.goHome.html" fontsize=13];
21-
todoList -> related [label = "goRelated (safe)" URL="docs/safe.goRelated.html" fontsize=13];
20+
todoList -> home [label = "goHome (safe)" URL="docs/safe.goHome.html" target="_parent" fontsize=13];
21+
todoList -> related [label = "goRelated (safe)" URL="docs/safe.goRelated.html" target="_parent" fontsize=13];
2222
todoItem -> todoList [label=<<table border="0"><tr><td align="left" href="docs/safe.listAll.html">listAll (safe)</td></tr><tr><td align="left" href="docs/idempotent.remove.html">remove (idempotent)</td></tr></table>> fontsize=13];
2323
todoItem -> todoItem [label=<<table border="0"><tr><td align="left" href="docs/idempotent.edit.html">edit (idempotent)</td></tr><tr><td align="left" href="docs/idempotent.markCompleted.html">markCompleted (idempotent)</td></tr><tr><td align="left" href="docs/idempotent.clearCompleted.html">clearCompleted (idempotent)</td></tr></table>> fontsize=13];
24-
todoItem -> related [label = "goRelated (safe)" URL="docs/safe.goRelated.html" fontsize=13];
24+
todoItem -> related [label = "goRelated (safe)" URL="docs/safe.goRelated.html" target="_parent" fontsize=13];
2525

26-
home [URL="docs/semantic.home.html"]
27-
related [URL="docs/semantic.related.html"]
26+
home [URL="docs/semantic.home.html" target="_parent"]
27+
related [URL="docs/semantic.related.html" target="_parent"]
2828

2929
}

0 commit comments

Comments
 (0)