basic functionality pass 8
This commit is contained in:
parent
007bda3585
commit
71ad39598b
|
@ -33,9 +33,14 @@
|
|||
|
||||
$entry_timestamp = strtotime($entry_timestamp);
|
||||
|
||||
if (!$entry_timestamp) continue;
|
||||
|
||||
$entry_title = $item["title"];
|
||||
$entry_link = $item["link"];
|
||||
|
||||
if (!$entry_title) continue;
|
||||
if (!$entry_link) continue;
|
||||
|
||||
$entry_content = $item["description"];
|
||||
if (!$entry_content) $entry_content = $item["content"];
|
||||
|
||||
|
|
12
prefs.js
12
prefs.js
|
@ -77,6 +77,18 @@ function toggleSelectRow(sender) {
|
|||
}
|
||||
}
|
||||
|
||||
function addFeed() {
|
||||
|
||||
var link = document.getElementById("fadd_link").value;
|
||||
var title = document.getElementById("fadd_title").value;
|
||||
|
||||
if (link.length == 0 || title.length == 0) {
|
||||
notify("Error: all fields must be filled in.");
|
||||
} else {
|
||||
notify("addFeed : " + link + ", " + title);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function init() {
|
||||
|
||||
|
|
27
prefs.php
27
prefs.php
|
@ -10,35 +10,46 @@
|
|||
|
||||
<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
|
||||
<tr>
|
||||
<td class="header" valign="middle" colspan="1">
|
||||
<td class="header" valign="middle" colspan="2">
|
||||
Preferences
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="toolbar" valign="middle" colspan="1">
|
||||
<a class="button">Close</a>
|
||||
<td class="toolbar" valign="middle">
|
||||
<div id="notify"> </div>
|
||||
</td>
|
||||
<td class="toolbar" valign="middle" colspan="2" align="right">
|
||||
<a href="tt-rss.php" class="button">Return to main</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tr>
|
||||
<td class="content" id="content" valign="top">
|
||||
<td class="content" id="content" valign="top" colspan="2">
|
||||
<h2>Feed Configuration</h2>
|
||||
|
||||
<table class="prefAddFeed">
|
||||
<!-- <input type="submit" value="Add feed"> -->
|
||||
|
||||
<!-- <table class="prefAddFeed">
|
||||
<tr><td>Title:</td><td><input id="fadd_title"></td></tr>
|
||||
<tr><td>Link:</td><td><input id="fadd_link"></td></tr>
|
||||
<tr><td colspan="2" align="right">
|
||||
<a class="button" href="javascript:addFeed()">Add feed</a></td></tr>
|
||||
</table>
|
||||
</table> -->
|
||||
|
||||
<!-- <input type="submit" value="Add feed"> -->
|
||||
<table class="prefAddFeed">
|
||||
<tr><td>Title:</td><td><input id="fadd_title"></td>
|
||||
<td>Link:</td><td><input id="fadd_link"></td></tr>
|
||||
<tr><td colspan="4" align="right">
|
||||
<a class="button" href="javascript:addFeed()">Add feed</a></td></tr>
|
||||
</table>
|
||||
|
||||
<div id="feeds"> </div>
|
||||
|
||||
<hr>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" id="notify" class="notify">
|
||||
<td colspan="2" class="notify">
|
||||
<a href="">Tiny-Tiny RSS</a> v0.1 © 2005 Andrew Dolgov
|
||||
</td>
|
||||
</td>
|
||||
|
|
21
tt-rss.css
21
tt-rss.css
|
@ -103,13 +103,24 @@ table.main td.toolbar {
|
|||
/* background-image : url("shadow_top.png");
|
||||
background-position : bottom left;
|
||||
background-repeat : repeat-x; */
|
||||
padding-right : 5px;
|
||||
padding-right : 10px;
|
||||
padding-left : 10px;
|
||||
font-size : small;
|
||||
text-align : right;
|
||||
}
|
||||
|
||||
#notify {
|
||||
font-weight : bold;
|
||||
border : 1px solid #c0c0c0;
|
||||
font-size : small;
|
||||
display : block;
|
||||
background : white;
|
||||
-moz-border-radius : 5px;
|
||||
padding : 3px 10px 3px 10px;
|
||||
width : 300px;
|
||||
}
|
||||
|
||||
table.main td.header {
|
||||
font-size : 18pt;
|
||||
font-size : 21pt;
|
||||
background-color : #f0f0f0;
|
||||
background-image : url("header.png");
|
||||
background-position : top left;
|
||||
|
@ -118,6 +129,7 @@ table.main td.header {
|
|||
padding-left : 80px;
|
||||
padding-top : 30px;
|
||||
font-weight : bold;
|
||||
color : black;
|
||||
}
|
||||
|
||||
table.main td.feeds {
|
||||
|
@ -150,9 +162,10 @@ td.content a {
|
|||
text-decoration : none;
|
||||
}
|
||||
|
||||
/*
|
||||
td.content a:hover {
|
||||
text-decoration : underline;
|
||||
}
|
||||
} */
|
||||
|
||||
table.main td.notify {
|
||||
height : 40px;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
Search: <input name="q" onclick=\"javascript:search(this);\">
|
||||
</td> -->
|
||||
<td class="toolbar" valign="middle" colspan="2">
|
||||
<a class="button">Preferences</a>
|
||||
<a href="prefs.php" class="button">Preferences</a>
|
||||
<!-- <a class="button" href="javascript:refresh()">Refresh</a> -->
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue