]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.php
implement per-user timezone support; store dates in UTC internally (closes #254)
[tt-rss.git] / tt-rss.php
index ccd4a4b9afceabd5d4d8c8542d8fb7a37a4550d0..2dbf78b7d26564f51cf8552fae70304fe9f0ac66 100644 (file)
@@ -10,6 +10,8 @@
 
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); 
 
+       init_connection($link);
+
        login_sequence($link);
 
        $dt_add = get_script_dt_add();
        <title>Tiny Tiny RSS</title>
 
        <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
+       <link rel="stylesheet" type="text/css" href="infobox.css?<?php echo $dt_add ?>"/>
 
-       <?php   $user_theme = $_SESSION["theme"];
+       <?php   $user_theme = get_user_theme_path($link);
                if ($user_theme) { ?>
-                       <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css?<?php echo $dt_add ?>">
+                       <link rel="stylesheet" type="text/css" href="<?php echo $user_theme ?>/theme.css?<?php echo $dt_add ?>">
        <?php } ?>
 
-       <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
-
        <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
        <?php if ($user_css_url) { ?>
                <link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/> 
 </div>
 
 <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
-
 <div id="dialog_overlay" style="display : none"> </div>
-
-<ul id="debug_output" style='display : none'><li>&nbsp;</li></ul>
-
 <div id="infoBoxShadow" style="display : none"><div id="infoBox">&nbsp;</div></div>
-
 <div id="cmdline" style="display : none"></div>
 <div id="auxDlg" style="display : none"></div>
 
        </div>
 
        <img id="newVersionIcon" style="display:none;" onclick="javascript:explainError(2)" 
-               width="13" height="13" src="images/new_version.png" 
+               width="13" height="13" 
+               src="<?php echo theme_image($link, 'images/new_version.png') ?>"
                title="<?php echo __('New version of Tiny Tiny RSS is available!') ?>" 
                alt="new_version_icon"/>
 
 
        </div>
 
-       <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>   
+       <img src="<?php echo theme_image($link, 'images/ttrss_logo.png') ?>" alt="Tiny Tiny RSS"/>      
 </div>
 
 <div id="feeds-holder">
                                        <optgroup label="<?php echo __('Feed actions:') ?>">
                                        <option value="qmcAddFeed"><?php echo __('Subscribe to feed...') ?></option>
                                        <option value="qmcEditFeed"><?php echo __('Edit this feed...') ?></option>
-                                       <!-- <option value="qmcClearFeed"><?php echo __('Clear articles') ?></option> -->
                                        <option value="qmcRescoreFeed"><?php echo __('Rescore feed') ?></option>
                                        <option value="qmcRemoveFeed"><?php echo __('Unsubscribe') ?></option>
                                        </optgroup>
                                        <option value="qmcCatchupAll"><?php echo __('Mark as read') ?></option>
                                        <option value="qmcShowOnlyUnread"><?php echo __('(Un)hide read feeds') ?></option>
                                        </optgroup>
+                                       <optgroup label="<?php echo __('Categories:') ?>">
+
+                                       <option value="qmcToggleReorder"><?php echo __('Toggle reordering mode') ?></option>
+                                       <option value="qmcResetCats"><?php echo __('Reset order') ?></option>
+                                       </optgroup>
+
                                        <optgroup label="<?php echo __('Other actions:') ?>">
 
                                        <option value="qmcAddLabel"><?php echo __('Create label...') ?></option>
                                        <option value="qmcAddFilter"><?php echo __('Create filter...') ?></option>
                                        <option value="qmcResetUI"><?php echo __('Reset UI layout') ?></option>
-                                       <option value="qmcResetCats"><?php echo __('Reset category order') ?></option>
-                                       <option value="qmcHKhelp"><?php echo __('Keyboard shortcuts') ?></option>
+                                       <option value="qmcHKhelp"><?php echo __('Keyboard shortcuts help') ?></option>
                                        </optgroup>
 
                        </select>
                        title="<?php echo __('Collapse feedlist') ?>" style="display : none">
                        &lt;&lt;</button>
 
-               &nbsp;
-
                <select name="view_mode" title="<?php echo __('Show articles') ?>" 
                                onchange="viewModeChanged()">
                        <option selected="selected" value="adaptive"><?php echo __('Adaptive') ?></option>
                        <option value="all_articles"><?php echo __('All Articles') ?></option>
                        <option value="marked"><?php echo __('Starred') ?></option>
+                       <option value="published"><?php echo __('Published') ?></option>
                        <option value="unread"><?php echo __('Unread') ?></option>
                        <!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
                        <option value="updated"><?php echo __('Updated') ?></option>
                        <option value="score"><?php echo __('Score') ?></option>
                </select>
 
-               &nbsp;
-
-               <button onclick="return viewCurrentFeed('ForceUpdate')">
+               <button name="update" onclick="return viewCurrentFeed('ForceUpdate')">
                        <?php echo __('Update') ?></button>
 
                <button onclick="return catchupCurrentFeed()">
 
 <?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
        <div id="headlines-frame" class="headlines_normal">
-               <div class="whiteBox"><?php echo __('No feed selected.') ?></div></div>
+               <div class="whiteBox"><?php echo __('Loading, please wait...') ?></div></div>
        <div id="content-frame">
        <div id="resize-grabber"
                onmouseover="enable_resize(true)" onmouseout="enable_resize(false)"
                title="<?php echo __('Drag me to resize panels') ?>"> 
-               <img src="images/resize_handle_horiz.png" id="resize-handle" 
+               <img src="<?php echo theme_image($link, 
+                       'images/resize_handle_horiz.png') ?>" id="resize-handle" 
                        onmouseover="enable_resize(true)" onmouseout="enable_resize(false)"
                        alt=""/>
                </div>
        <!-- <div class="whiteBox">&nbsp;</div> --> </div>
 <?php } else { ?>
        <div id="headlines-frame" class="headlines_cdm">
-               <div class="whiteBox"><?php echo __('No feed selected.') ?></div></div>
+               <div class="whiteBox"><?php echo __('Loading, please wait...') ?></div></div>
 <?php } ?>
 
 <div id="footer">
-       <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
-               <select id="userSwitch" onchange="userSwitch()">
-               <?php 
-                       foreach (array('admin', 'fox', 'test') as $u) {
-                               $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
-                               print "<option $op_sel>$u</option>";
-                       }
-               ?>
-               </select>
-       <?php } ?>
        <a href="http://tt-rss.org/">Tiny Tiny RSS</a>
        <?php if (!defined('HIDE_VERSION')) { ?>
                 v<?php echo VERSION ?> 
        <?php } ?>
-       &copy; 2005&ndash;2009 <a href="http://bah.org.ru/">Andrew Dolgov</a>
+       &copy; 2005&ndash;<?php echo date('Y') ?> <a href="http://fakecake.org/">Andrew Dolgov</a>
 </div>
 
 <?php db_close($link); ?>