Skip to content

Commit 146dc3a

Browse files
committed
README is now adapted from PureMVC AS3 Employee Admin from Github
1 parent 8f69154 commit 146dc3a

File tree

2 files changed

+44
-22
lines changed

2 files changed

+44
-22
lines changed

README.md

Lines changed: 27 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,36 @@
1-
## PureMVC Port to Javascript / Objs / jQuery EmployeeAdmin Demo
1+
## [PureMVC](http://puremvc.github.com/) [TypeScript](https://github.com/tekool/puremvc-typescript-standard-framework/wiki) Demo: Employee Admin
2+
This demo illustrates techniques for performing routine client-side maintenance operations in a PureMVC-based TypeScript application.
23

4+
* [Live Demo](http://www.tekool.net/blogfiles/puremvc-typescript/puremvc-typescript-demo-employeeadmin/)
5+
* [Discussion](http://www.tekool.net/blog/puremvc-typescript/)
36

7+
## Screenshot
8+
![PureMVC TypeScript Demo: Employee Admin](https://github.com/tekool/puremvc-typescript-standard-framework/screenshot.png)
49

10+
## Status
11+
Development - [Version 1.0](https://github.com/PureMVC/puremvc-typescript-demo-employeeadmin/blob/master/VERSION)
512

6-
## Releases
13+
Considered as «development» while the TypeScript language specification is not finalized.
714

8-
### Version 1.1
15+
## Platforms / Technologies
16+
* [TypeScript](http://www.typescriptlang.org/)
17+
* [require.js](http://jqueryui.com/)
18+
* [jQuery](http://jquery.com/)
19+
* [jQuery UI](http://jqueryui.com/)
20+
* [jQgrid](http://www.trirand.com/blog/)
21+
* [YUI Compressor](http://developer.yahoo.com/yui/compressor/)
22+
* [Ant](http://ant.apache.org/)
923

10-
This demo is inspired originally from PureMVC Employee Admin for AS3 standard
11-
port and PureMVC Employee Admin demo for Mootools I made.
24+
## License
25+
* PureMVC TypeScript Demo - TypeScript Employee Admin - Copyright © 2012 Frederic Saunier
26+
* PureMVC AS3 Demo - Flex Employee Admin - Copyright © 2007, 2008 Clifford Hall
27+
* PureMVC - Copyright © 2012 Futurescale, Inc.
28+
* All rights reserved.
1229

13-
Unit Tests follow the PureMVC for AS3 standard port with some specific
14-
additions for the JavaScript language.
30+
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1531

16-
## Build
32+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
33+
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
34+
* Neither the name of Futurescale, Inc., PureMVC.org, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1735

18-
To build the project you'll need "Ant":http://ant.apache.org/ to run the
19-
/build/build.xml file located in the build YUICompressor. The task concat all
20-
the JavaScript files in one, next compress and minify it. The YUICompressor
21-
munge option is activated.
22-
23-
The Ant task need both
24-
"YUICompressor":http://yuilibrary.com/downloads/#yuicompressor and
25-
"YUIant":http://www.ubik-ingenierie.com/miscellanous/YUIAnt/. Respective jar
26-
file for both library need to be copied in the /build/lib/ folder for the task
27-
to run correctly.
36+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

css/employee-admin.css

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ HTML,BODY
6565
{
6666
padding-left:12px;
6767
color:#000000;
68-
font-size:0.6em;
68+
font-size:0.97em;
6969
font-weight:bold;
7070
}
7171

@@ -152,9 +152,9 @@ HTML,BODY
152152
margin:0;
153153
width:150px;
154154
border: thin solid grey;
155+
font-size:0.75em;
155156
}
156157

157-
158158
.user-form-panel-content input.fieldError
159159
{
160160
background:#FFD087;
@@ -164,6 +164,7 @@ HTML,BODY
164164
{
165165
margin:0;
166166
width:155px;
167+
font-size:0.75em;
167168
}
168169

169170
.user-form-panel-content select.fieldError
@@ -193,7 +194,7 @@ HTML,BODY
193194
vertical-align:middle;
194195
}
195196

196-
.role-panel-content
197+
.role-panel .role-panel-content
197198
{
198199
text-align:right;
199200
background-color:#FFF;
@@ -203,9 +204,10 @@ HTML,BODY
203204
margin-bottom:10px;
204205
}
205206

206-
.role-list
207+
.role-panel .role-list
207208
{
208209
width:170px;
210+
font-size:0.75em;
209211
}
210212

211213

@@ -232,3 +234,14 @@ UL[role="listbox"]
232234
padding-left:0.5em;
233235
width:115px;
234236
}
237+
238+
239+
240+
/* =============================================================================== *
241+
* ============================== jQgrid overrides =============================== *
242+
* =============================================================================== */
243+
244+
.ui-jqgrid .ui-jqgrid-view
245+
{
246+
font-size: 1em;
247+
}

0 commit comments

Comments
 (0)