Skip to content

Commit 09803a0

Browse files
author
Olivier Giulieri
committed
No more "-" in evolutility name + Renamed a few files.
1 parent 7e310ae commit 09803a0

17 files changed

Lines changed: 279 additions & 44 deletions

Gruntfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module.exports = function (grunt) {
4848
'js/filter.js',
4949
'js/ui-models/dico/field.js'
5050
],
51-
dest: '<%= pkg.target %>/evol-utility.js'
51+
dest: '<%= pkg.target %>/evolutility.js'
5252
},
5353
css: {
5454
options: {
@@ -64,7 +64,7 @@ module.exports = function (grunt) {
6464
'js/export.css',
6565
'js/filter.css'
6666
],
67-
dest: '<%= pkg.target %>/css/evol-utility.css'
67+
dest: '<%= pkg.target %>/css/evolutility.css'
6868
}
6969
},
7070

@@ -107,8 +107,8 @@ module.exports = function (grunt) {
107107
all: {
108108
files: [
109109
{
110-
src: '<%= pkg.target %>/evol-utility.js',
111-
dest: '<%= pkg.target %>/evol-utility.min.js'
110+
src: '<%= pkg.target %>/evolutility.js',
111+
dest: '<%= pkg.target %>/evolutility.min.js'
112112
},
113113
{
114114
src: '<%= pkg.target %>/vendors.js',

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ These generic Backbone views will all be defined in a single UI-model containing
77

88
## The Plan
99

10-
1 Update [Evolutility metamodel] (http://www.codeproject.com/Articles/28636/Minimalist-Meta-Model-for-CRUD-Applications) (model of the UI models)
11-
2 Code the generic UI views based on the metamodel
12-
3 Add a toolbar and a controller for all these views
13-
4 Make demo apps
14-
5 Make [an app to make apps] (http://www.codeproject.com/Articles/28810/Wizard-and-CRUD-Applications-to-Build-other-CRUD-A)
10+
1. Update [Evolutility metamodel] (http://www.codeproject.com/Articles/28636/Minimalist-Meta-Model-for-CRUD-Applications) (model of the UI models)
11+
2. Code the generic UI views based on the metamodel
12+
3. Add a toolbar and a controller for all these views
13+
4. Make demo apps
14+
5. Make [an app to make apps] (http://www.codeproject.com/Articles/28810/Wizard-and-CRUD-Applications-to-Build-other-CRUD-A)
1515

1616

1717
## 1 - UI-model
@@ -50,7 +50,7 @@ A set of ui-models and models for the ui-model itself: fields, panels, tabs.
5050
(...and some code in the view themselves to make it possible)
5151

5252

53-
## Techno
53+
## Techno and Libraries
5454

5555
Javascript, HTML5, CSS3,
5656
[Backbone] (http://backbonejs.org),

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "evol-utility",
2+
"name": "evolutility",
33
"version": "0.0.1",
44
"dependencies": {
55
"jquery": "2.0.3",
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<meta charset="utf-8">
55

66
<link href="../css/demo.css" rel="stylesheet" />
7-
<link href="../dist/css/evol-utility.css" rel="stylesheet" />
7+
<link href="../dist/css/evolutility.css" rel="stylesheet" />
88
<link id="bwCSS" href="../dist/css/bootstrap.min.css" rel="stylesheet" />
99

1010
<script src="../dist/vendors.min.js" type="text/javascript"></script>
11-
<script src="../dist/evol-utility.js" type="text/javascript"></script>
11+
<script src="../dist/evolutility.js" type="text/javascript"></script>
1212

1313
<script src="../js/demo.js" type="text/javascript"></script>
1414
<script src="../js/ui-models/apps/contacts.js" type="text/javascript"></script>
@@ -26,9 +26,9 @@
2626
<li><a href="https://github.com/evoluteur/evolutility" target="_new">GitHub</a></li>
2727
</ul>
2828
<div class="demo-links">
29-
<a href="demo-todo.html">todo</a> -
30-
<a href="demo-contact.html" class="sel">addressbook</a> -
31-
<a href="demo-winecellar.html">wine cellar</a>
29+
<a href="todo.html">todo</a> -
30+
<a href="contact.html" class="sel">addressbook</a> -
31+
<a href="winecellar.html">wine cellar</a>
3232
</div>
3333
<div class="clearfix"></div>
3434
</div>

demo/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<li><a href="https://github.com/evoluteur/evolutility" target="_new">GitHub</a></li>
1818
</ul>
1919
<div class="demo-links">
20-
<a href="demo-todo.html">todo</a> -
21-
<a href="demo-contact.html">addressbook</a> -
22-
<a href="demo-winecellar.html">wine cellar</a>
20+
<a href="todo.html">todo</a> -
21+
<a href="contact.html">addressbook</a> -
22+
<a href="winecellar.html">wine cellar</a>
2323
</div>
2424
<div class="clearfix"></div>
2525
</div>
@@ -31,9 +31,9 @@ <h1 id="title">demos :: evolutility.js</h1>
3131
and do not require any Javascript code at all.</p>
3232

3333
<ul class="">
34-
<li><a href="demo-todo.html"><img src="pix/todo.gif" class="evo-icon-16">To Do</a></li>
35-
<li><a href="demo-contact.html"><img src="pix/contact.gif" class="evo-icon-16">AddressBook</a></li>
36-
<li><a href="demo-winecellar.html"><img src="pix/wine.gif" class="evo-icon-16">Wine cellar</a></li>
34+
<li><a href="todo.html"><img src="pix/todo.gif" class="evo-icon-16">To Do</a></li>
35+
<li><a href="contact.html"><img src="pix/contact.gif" class="evo-icon-16">AddressBook</a></li>
36+
<li><a href="winecellar.html"><img src="pix/wine.gif" class="evo-icon-16">Wine cellar</a></li>
3737
</ul>
3838

3939
<p>The data for these demos is stored in your browser local storage
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<meta charset="utf-8">
55

66
<link href="../css/demo.css" rel="stylesheet" />
7-
<link href="../dist/css/evol-utility.css" rel="stylesheet" />
7+
<link href="../dist/css/evolutility.css" rel="stylesheet" />
88
<link id="bwCSS" href="../dist/css/bootstrap.min.css" rel="stylesheet" />
99

1010
<script src="../dist/vendors.min.js" type="text/javascript"></script>
11-
<script src="../dist/evol-utility.js" type="text/javascript"></script>
11+
<script src="../dist/evolutility.js" type="text/javascript"></script>
1212

1313
<script src="../js/demo.js" type="text/javascript"></script>
1414
<script src="../js/ui-models/test/test.js" type="text/javascript"></script>
@@ -17,7 +17,7 @@
1717
<body>
1818

1919
<div class="demo-links">
20-
<a href="demo-test.html" class="sel">Test</a>
20+
<a href="test.html" class="sel">Test</a>
2121
</div>
2222

2323
<a id="uideflink" href="javascript:showUIdef(test_ui)">See form definition</a>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<meta charset="utf-8">
55

66
<link href="../css/demo.css" rel="stylesheet" />
7-
<link href="../dist/css/evol-utility.css" rel="stylesheet" />
7+
<link href="../dist/css/evolutility.css" rel="stylesheet" />
88
<link id="bwCSS" href="../dist/css/bootstrap.min.css" rel="stylesheet" />
99

1010
<script src="../dist/vendors.min.js" type="text/javascript"></script>
11-
<script src="../dist/evol-utility.js" type="text/javascript"></script>
11+
<script src="../dist/evolutility.js" type="text/javascript"></script>
1212

1313
<script src="../js/demo.js" type="text/javascript"></script>
1414
<script src="../js/ui-models/apps/todo.js" type="text/javascript"></script>
@@ -25,9 +25,9 @@
2525
<li><a href="https://github.com/evoluteur/evolutility" target="_new">GitHub</a></li>
2626
</ul>
2727
<div class="demo-links">
28-
<a href="demo-todo.html" class="sel">todo</a> -
29-
<a href="demo-contact.html">addressbook</a> -
30-
<a href="demo-winecellar.html">wine cellar</a>
28+
<a href="todo.html" class="sel">todo</a> -
29+
<a href="contact.html">addressbook</a> -
30+
<a href="winecellar.html">wine cellar</a>
3131
</div>
3232
<div class="clearfix"></div>
3333
</div>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<meta charset="utf-8">
55

66
<link href="../css/demo.css" rel="stylesheet" />
7-
<link href="../dist/css/evol-utility.css" rel="stylesheet" />
7+
<link href="../dist/css/evolutility.css" rel="stylesheet" />
88
<link id="bwCSS" href="../dist/css/bootstrap.min.css" rel="stylesheet" />
99

1010
<script src="../dist/vendors.min.js" type="text/javascript"></script>
11-
<script src="../dist/evol-utility.js" type="text/javascript"></script>
11+
<script src="../dist/evolutility.js" type="text/javascript"></script>
1212

1313
<script src="../js/demo.js" type="text/javascript"></script>
1414
<script src="../js/ui-models/apps/winecellar.js" type="text/javascript"></script>
@@ -24,9 +24,9 @@
2424
<li><a href="https://github.com/evoluteur/evolutility" target="_new">GitHub</a></li>
2525
</ul>
2626
<div class="demo-links">
27-
<a href="demo-todo.html">todo</a> -
28-
<a href="demo-contact.html">addressbook</a> -
29-
<a href="demo-winecellar.html" class="sel">wine cellar</a>
27+
<a href="todo.html">todo</a> -
28+
<a href="contact.html">addressbook</a> -
29+
<a href="winecellar.html" class="sel">wine cellar</a>
3030
</div>
3131
<div class="clearfix"></div>
3232
</div>

0 commit comments

Comments
 (0)