File tree Expand file tree Collapse file tree 12 files changed +25
-25
lines changed Expand file tree Collapse file tree 12 files changed +25
-25
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ <h3>urblog.ur</h3>
70
70
<xml>
71
71
<head>
72
72
<title>All Entries</title>
73
- <link rel="stylesheet" type="text/css" href="https ://github.com/gian/ urtutorial/raw/master /step3/style.css"/>
73
+ <link rel="stylesheet" type="text/css" href="http ://expdev.net/ urtutorial/step3/style.css"/>
74
74
</head>
75
75
<body>
76
76
<h1>All Entries</h1>
@@ -85,7 +85,7 @@ <h3>urblog.ur</h3>
85
85
< h3 > urweb.urp</ h3 >
86
86
87
87
< pre class ="code ">
88
- allow url https ://github.com/gian/ urtutorial/raw/master/step3 /style.css
88
+ allow url http ://expdev.net/ urtutorial/step4 /style.css
89
89
rewrite style Urblog/blogEntry blogEntry
90
90
database dbname=urblog
91
91
sql urblog.sql
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ <h3>urblog.ur</h3>
51
51
| Some r => <xml>
52
52
<head>
53
53
<title>{[r.Entry.Title]}</title>
54
- <link rel="stylesheet" type="text/css" href="https ://github.com/gian/ urtutorial/raw/master/step3 /style.css"/>
54
+ <link rel="stylesheet" type="text/css" href="http ://expdev.net/ urtutorial/step4 /style.css"/>
55
55
</head>
56
56
<body>
57
57
<h1>{[r.Entry.Title]}</h1>
@@ -140,7 +140,7 @@ <h3>urblog.urp</h3>
140
140
< p > We need to update our project file and style sheet (adding the rewrite for the new style declaration):</ p >
141
141
142
142
< pre class ="code ">
143
- allow url https ://github.com/gian/ urtutorial/raw/master /step4/style.css
143
+ allow url http ://expdev.net/ urtutorial/step4/style.css
144
144
rewrite style Urblog/blogEntry blogEntry
145
145
rewrite style Urblog/blogComment blogComment
146
146
database dbname=urblog
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ fun list () =
33
33
<xml>
34
34
<head>
35
35
<title>All Entries </title>
36
- <link rel="stylesheet" type ="text/css" href="https ://github.com/gian/ urtutorial/raw/master /step4/style.css" />
36
+ <link rel="stylesheet" type ="text/css" href="http ://expdev.net/ urtutorial/step4/style.css" />
37
37
</head>
38
38
<body>
39
39
<h1>All Entries </h1>
@@ -55,7 +55,7 @@ and detail (i:int) =
55
55
| Some r => <xml>
56
56
<head>
57
57
<title>{[r.Entry .Title ]}</title>
58
- <link rel="stylesheet" type ="text/css" href="https ://github.com/gian/ urtutorial/raw/master /step4/style.css" />
58
+ <link rel="stylesheet" type ="text/css" href="http ://expdev.net/ urtutorial/step4/style.css" />
59
59
</head>
60
60
<body>
61
61
<h1>{[r.Entry .Title ]}</h1>
Original file line number Diff line number Diff line change 1
- allow url https ://github.com/gian/ urtutorial/raw/master /step4/style.css
1
+ allow url http ://expdev.net/ urtutorial/step4/style.css
2
2
rewrite style Urblog/blogEntry blogEntry
3
3
rewrite style Urblog/blogComment blogComment
4
4
database dbname=urblog
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ <h3>urblog.ur</h3>
52
52
<p>Your Comment:<br/></p><textarea{#Body}/>
53
53
<br/><br/>
54
54
<submit value="Add Comment" action={handler id}/>
55
- <button value="Cancel" onclick={set s False}/></form></xml>
55
+ <button value="Cancel" onclick={ fn _ => set s False}/></form></xml>
56
56
[...]
57
57
</ pre >
58
58
@@ -76,7 +76,7 @@ <h3>urblog.ur</h3>
76
76
[...]
77
77
commentSource <- source False;
78
78
[...]
79
- <button value="Add Comment" onclick={set commentSource True}/>
79
+ <button value="Add Comment" onclick={ fn _ => set commentSource True}/>
80
80
</div>
81
81
<div class={commentForm}>
82
82
<dyn signal={s <- signal commentSource;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ and mkCommentForm (id:int) s : xbody =
31
31
<p>Your Comment :<br/></p><textarea{#Body }/>
32
32
<br/><br/>
33
33
<submit value="Add Comment" action={handler id}/>
34
- <button value="Cancel" onclick={set s False }/></form></xml>
34
+ <button value="Cancel" onclick={ fn _ => set s False }/></form></xml>
35
35
36
36
and list () =
37
37
rows <- queryX (SELECT * FROM entry)
@@ -48,7 +48,7 @@ and list () =
48
48
<xml>
49
49
<head>
50
50
<title>All Entries </title>
51
- <link rel="stylesheet" type ="text/css" href="https ://github.com/gian/ urtutorial/raw/master /step5/style.css" />
51
+ <link rel="stylesheet" type ="text/css" href="http ://expdev.net/ urtutorial/step5/style.css" />
52
52
</head>
53
53
<body>
54
54
<h1>All Entries </h1>
@@ -71,14 +71,14 @@ and detail (i:int) =
71
71
| Some r => <xml>
72
72
<head>
73
73
<title>{[r.Entry .Title ]}</title>
74
- <link rel="stylesheet" type ="text/css" href="https ://github.com/gian/ urtutorial/raw/master /step5/style.css" />
74
+ <link rel="stylesheet" type ="text/css" href="http ://expdev.net/ urtutorial/step5/style.css" />
75
75
</head>
76
76
<body>
77
77
<h1>{[r.Entry .Title ]}</h1>
78
78
<h2>By {[r.Entry .Author ]} at {[r.Entry .Created ]}</h2>
79
79
<div class={blogEntry}>
80
80
<p>{[r.Entry .Body ]}</p>
81
- <button value="Add Comment" onclick={set commentSource True }/>
81
+ <button value="Add Comment" onclick={ fn _ => set commentSource True }/>
82
82
</div>
83
83
<div class={commentForm}>
84
84
<dyn signal={s <- signal commentSource;
Original file line number Diff line number Diff line change 1
- allow url https ://github.com/gian/ urtutorial/raw/master/ step5/style.css
1
+ allow url http ://expdev.net/ urtutorial/step5/style.css
2
2
rewrite style Urblog/blogEntry blogEntry
3
3
rewrite style Urblog/blogComment blogComment
4
4
rewrite style Urblog/commentForm commentForm
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ <h3>urblog.urp</h3>
39
39
< p > Now we need to include our new Crud module:</ p >
40
40
41
41
< pre class ="code ">
42
- allow url https ://github.com/gian/ urtutorial/raw/master /step6/style.css
42
+ allow url http ://expdev.net/ urtutorial/step6/style.css
43
43
rewrite style Urblog/blogEntry blogEntry
44
44
rewrite style Urblog/blogComment blogComment
45
45
rewrite style Urblog/commentForm commentForm
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ and mkCommentForm (id:int) s : xbody =
31
31
<p>Your Comment :<br/></p><textarea{#Body }/>
32
32
<br/><br/>
33
33
<submit value="Add Comment" action={handler}/>
34
- <button value="Cancel" onclick={set s False }/></form></xml>
34
+ <button value="Cancel" onclick={ fn _ => set s False }/></form></xml>
35
35
36
36
and list () =
37
37
rows <- queryX (SELECT * FROM entry)
@@ -48,7 +48,7 @@ and list () =
48
48
<xml>
49
49
<head>
50
50
<title>All Entries </title>
51
- <link rel="stylesheet" type ="text/css" href="https ://github.com/gian/ urtutorial/raw/master /step6/style.css" />
51
+ <link rel="stylesheet" type ="text/css" href="http ://expdev.net/ urtutorial/step6/style.css" />
52
52
</head>
53
53
<body>
54
54
<h1>All Entries </h1>
@@ -71,14 +71,14 @@ and detail (i:int) =
71
71
| Some r => <xml>
72
72
<head>
73
73
<title>{[r.Entry .Title ]}</title>
74
- <link rel="stylesheet" type ="text/css" href="https ://github.com/gian/ urtutorial/raw/master /step6/style.css" />
74
+ <link rel="stylesheet" type ="text/css" href="http ://expdev.net/ urtutorial/step6/style.css" />
75
75
</head>
76
76
<body>
77
77
<h1>{[r.Entry .Title ]}</h1>
78
78
<h2>By {[r.Entry .Author ]} at {[r.Entry .Created ]}</h2>
79
79
<div class={blogEntry}>
80
80
<p>{[r.Entry .Body ]}</p>
81
- <button value="Add Comment" onclick={set commentSource True }/>
81
+ <button value="Add Comment" onclick={ fn _ => set commentSource True }/>
82
82
</div>
83
83
<div class={commentForm}>
84
84
<dyn signal={s <- signal commentSource;
Original file line number Diff line number Diff line change 1
- allow url https ://github.com/gian/ urtutorial/raw/master/ step6/style.css
1
+ allow url http ://expdev.net/ urtutorial/step6/style.css
2
2
rewrite style Urblog/blogEntry blogEntry
3
3
rewrite style Urblog/blogComment blogComment
4
4
rewrite style Urblog/commentForm commentForm
You can’t perform that action at this time.
0 commit comments