Skip to content

Commit 6a40d65

Browse files
committed
first version.
Should work. tested manually.
1 parent f6fb0a7 commit 6a40d65

File tree

181 files changed

+20207
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+20207
-0
lines changed

Instructions.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Instructions for install:
2+
3+
Install latest yii framework (name it as framework).
4+
for instance if you are using xampp.
5+
6+
./framework
7+
8+
./htdocs/todo
9+
10+
See the database access and other configs at: /protected/config/main.php
11+
12+
(if needed you can adjust settings also at: index.php in root folder of todo)
13+
14+
Uses mysql as the database. set up the database as: todo.
15+
16+
Developed using eclipse (zend)
17+

descrioption.txt

Whitespace-only changes.

todo/.buildpath

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<buildpath>
3+
<buildpathentry kind="src" path=""/>
4+
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
5+
</buildpath>

todo/.project

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>todo</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.validation.validationbuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.dltk.core.scriptbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.php.core.PHPNature</nature>
21+
</natures>
22+
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
include_path=0;/todo

todo/assets/1054fed4/pager.css

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/**
2+
* CSS styles for CLinkPager.
3+
*
4+
* @author Qiang Xue <[email protected]>
5+
* @link http://www.yiiframework.com/
6+
* @copyright Copyright &copy; 2008-2010 Yii Software LLC
7+
* @license http://www.yiiframework.com/license/
8+
* @version $Id: pager.css 1678 2010-01-07 21:02:00Z qiang.xue $
9+
* @since 1.0
10+
*/
11+
12+
ul.yiiPager
13+
{
14+
font-size:11px;
15+
border:0;
16+
margin:0;
17+
padding:0;
18+
line-height:100%;
19+
display:inline;
20+
}
21+
22+
ul.yiiPager li
23+
{
24+
display:inline;
25+
}
26+
27+
ul.yiiPager a:link,
28+
ul.yiiPager a:visited
29+
{
30+
border:solid 1px #9aafe5;
31+
font-weight:bold;
32+
color:#0e509e;
33+
padding:1px 6px;
34+
text-decoration:none;
35+
}
36+
37+
ul.yiiPager .page a
38+
{
39+
font-weight:normal;
40+
}
41+
42+
ul.yiiPager a:hover
43+
{
44+
border:solid 1px #0e509e;
45+
}
46+
47+
ul.yiiPager .selected a
48+
{
49+
background:#2e6ab1;
50+
color:#FFFFFF;
51+
font-weight:bold;
52+
}
53+
54+
ul.yiiPager .hidden a
55+
{
56+
border:solid 1px #DEDEDE;
57+
color:#888888;
58+
}
59+
60+
/**
61+
* Hide first and last buttons by default.
62+
*/
63+
ul.yiiPager .first,
64+
ul.yiiPager .last
65+
{
66+
display:none;
67+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
table.detail-view .null
2+
{
3+
color: pink;
4+
}
5+
6+
table.detail-view
7+
{
8+
background: white;
9+
border-collapse: collapse;
10+
width: 100%;
11+
margin: 0;
12+
}
13+
14+
table.detail-view th, table.detail-view td
15+
{
16+
font-size: 0.9em;
17+
border: 1px white solid;
18+
padding: 0.3em 0.6em;
19+
vertical-align: top;
20+
}
21+
22+
table.detail-view th
23+
{
24+
text-align: right;
25+
width: 160px;
26+
}
27+
28+
table.detail-view tr.odd
29+
{
30+
background:#E5F1F4;
31+
}
32+
33+
table.detail-view tr.even
34+
{
35+
background:#F8F8F8;
36+
}
37+
38+
table.detail-view tr.odd th
39+
{
40+
}
41+
42+
table.detail-view tr.even th
43+
{
44+
}
243 Bytes
Loading
715 Bytes
Loading
55 Bytes
Loading

0 commit comments

Comments
 (0)