public
Description: An OS X application to build a standalone web site as an export from my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photosync/
Clone URL: git://github.com/dustin/photosync.git
Search Repo:
some fancied-up UI for search and stuff
dustin (author)
Sun Aug 21 01:41:52 -0700 2005
commit  e4dc5e0bba6412656fd47c680807d912c6f572f4
tree    1fd7c4342cd25adef50c75c7025564369a07429d
parent  ba7453de6151c7ea6972570a9275aa2a13266505
...
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
60
61
...
30
31
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
0
@@ -30,32 +30,44 @@
0
 
0
   <body>
0
 
0
- <script language="JavaScript" src="searchdata.js"></script>
0
- <script language="JavaScript" src="searchfun.js"></script>
0
-
0
- <form name="bigform" method="POST" action=""
0
- onsubmit="search(); return false;">
0
- Keywords:
0
- <input id="keywords" name="keywords" size="60" value=""
0
- OnKeyUp="keyUp(this);"/>
0
- <div style="font-size: x-small" id="keywordlist"><span/></div>
0
- <div id="keywordmatches"><span/></div>
0
- Newest images
0
- <select id="sdir" name="sdir">
0
- <option value="newfirst">first</option>
0
- <option value="newlast">last</option>
0
- </select>
0
- <br/>
0
- Results Per Page:
0
- <select id="perpage" name="perpage">
0
- <option value="10">10</option>
0
- <option value="50" selected="selected">50</option>
0
- <option value="100">100</option>
0
- </select>
0
- <br/>
0
- <input type="submit" value="Search"/>
0
- <input type="reset" value="Clear"
0
- onclick="updateKwInfo(''); setResults('');"/>
0
+ <script type="text/javascript" src="searchdata.js"></script>
0
+ <script type="text/javascript" src="searchfun.js"></script>
0
+
0
+ <form method="post" action="" onsubmit="search(); return false;">
0
+ <fieldset>
0
+ <legend>Search for Photos</legend>
0
+ <label for="keywords">Keywords</label>
0
+ <div>
0
+ <input id="keywords" name="keywords" size="60" value=""
0
+ onkeyup="keyUp(this);"/>
0
+ </div>
0
+ <div style="font-size: x-small" id="keywordlist"><span/></div>
0
+ <div id="keywordmatches"><span/></div>
0
+ <label for="sdir">Newest images</label>
0
+
0
+ <div>
0
+ <select id="sdir" name="sdir">
0
+ <option value="newfirst">first</option>
0
+ <option value="newlast">last</option>
0
+ </select>
0
+ </div>
0
+
0
+ <label for="perpage">Results Per Page</label>
0
+ <div>
0
+ <select id="perpage" name="perpage">
0
+ <option value="10">10</option>
0
+ <option value="50" selected="selected">50</option>
0
+ <option value="100">100</option>
0
+ </select>
0
+ </div>
0
+
0
+ <div>
0
+ <input type="submit" value="Search"/>
0
+ <input type="reset" value="Clear"
0
+ onclick="updateKwInfo(''); setResults('');"/>
0
+ </div>
0
+
0
+ </fieldset>
0
     </form>
0
     <div id="found"><span/></div>
0
   </body>
...
4
5
6
 
 
 
 
 
 
 
 
 
7
8
9
...
30
31
32
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
...
39
40
41
 
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
0
@@ -4,6 +4,15 @@ body,td,th {
0
     color: black;
0
 }
0
 
0
+h1 {
0
+ background: #99f;
0
+ color: white;
0
+}
0
+
0
+a {
0
+ color: green;
0
+}
0
+
0
 .hidden {
0
   display: none;
0
 }
0
@@ -30,4 +39,19 @@ body,td,th {
0
 img {
0
     border: none;
0
 }
0
-
0
+
0
+fieldset, select, input {
0
+ color: #33c;
0
+ font-size: large;
0
+}
0
+
0
+fieldset label {
0
+ float: left;
0
+ width: 180px;
0
+ text-align: right;
0
+}
0
+
0
+fieldset div {
0
+ margin-left: 190px;
0
+ margin-bottom: 3px;
0
+}

Comments

    No one has commented yet.