Changeset 863
- Timestamp:
- 09/08/05 09:26:14 (3 years ago)
- Location:
- trunk/rss
- Files:
-
- 20 modified
-
ajax.php (modified) (9 diffs)
-
cls/update.php (modified) (5 diffs)
-
plugins/delicious.php (modified) (2 diffs)
-
plugins/newwindow.php (modified) (1 diff)
-
themes/default/catfolder.php (modified) (1 diff)
-
themes/default/error.php (modified) (1 diff)
-
themes/default/feed.php (modified) (1 diff)
-
themes/default/feeds.php (modified) (1 diff)
-
themes/default/feedsfeed.php (modified) (1 diff)
-
themes/default/feedsfolder.php (modified) (1 diff)
-
themes/default/footer.php (modified) (2 diffs)
-
themes/default/header.php (modified) (1 diff)
-
themes/default/index.php (modified) (2 diffs)
-
themes/default/item.php (modified) (2 diffs)
-
themes/default/itemlist.php (modified) (1 diff)
-
themes/default/nav.php (modified) (1 diff)
-
themes/default/navitem.php (modified) (1 diff)
-
themes/default/searchform.php (modified) (1 diff)
-
themes/rss/index.php (modified) (1 diff)
-
themes/rss/item.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/rss/ajax.php
r846 r863 153 153 var html = ""; 154 154 for (i=0;i<tags.length;i++) { 155 html = html + "<a href=\"<? =getPath()155 html = html + "<a href=\"<?php echo getPath() 156 156 . (getConfig('rss.output.usemodrewrite')?'tag/':'tags.php?tag=') 157 157 ?>" + tags[i] + "\">" + tags[i] + "</a> "; … … 160 160 161 161 var aspan=document.getElementById("ta" + id); 162 aspan.innerHTML = "<a href=\"#\" onclick=\"_et(" +id +"); return false;\"><? =LBL_TAG_EDIT ?></a>";162 aspan.innerHTML = "<a href=\"#\" onclick=\"_et(" +id +"); return false;\"><?php echo LBL_TAG_EDIT ?></a>"; 163 163 } 164 164 … … 177 177 var actionSpan = document.getElementById("ta" + id); 178 178 var toggle = actionSpan.firstChild; 179 if (toggle.innerHTML == "<? =LBL_TAG_SUBMIT ?>") {179 if (toggle.innerHTML == "<?php echo LBL_TAG_SUBMIT ?>") { 180 180 var fld = document.getElementById("tfield" + id); 181 toggle.innerHTML="<? =LBL_TAG_SUBMITTING ?>";181 toggle.innerHTML="<?php echo LBL_TAG_SUBMITTING ?>"; 182 182 submit_tag(id,fld.value); 183 } else if (toggle.innerHTML == "<? =LBL_TAG_EDIT ?>") {183 } else if (toggle.innerHTML == "<?php echo LBL_TAG_EDIT ?>") { 184 184 var isIE=document.all?true:false; 185 185 // the tag container 186 186 var tc=document.getElementById("t"+id); 187 var tags = tc.innerHTML.replace(/<\/?a[^>]*>(\ $)?/gi,"").replace(<? =ALLOWED_TAGS_REGEXP ?>gi,"");187 var tags = tc.innerHTML.replace(/<\/?a[^>]*>(\ $)?/gi,"").replace(<?php echo ALLOWED_TAGS_REGEXP ?>gi,""); 188 188 // submit link 189 toggle.innerHTML="<? =LBL_TAG_SUBMIT ?>";189 toggle.innerHTML="<?php echo LBL_TAG_SUBMIT ?>"; 190 190 // cancel link 191 191 cancel = document.createElement("a"); 192 192 cancel.style.margin="0 0 0 0.5em"; 193 cancel.innerHTML = "<? =LBL_TAG_CANCEL ?>";193 cancel.innerHTML = "<?php echo LBL_TAG_CANCEL ?>"; 194 194 cancel.setAttribute("href","#"); 195 195 if (isIE) { … … 264 264 document.currentSideCache[kind] = content; 265 265 document.getElementById('channels').innerHTML = content; 266 setCookie("side",kind, "<? =getPath() ?>");266 setCookie("side",kind, "<?php echo getPath() ?>"); 267 267 } 268 268 … … 390 390 391 391 if (redirect) { 392 document.location = '<? =getPath() ?>';392 document.location = '<?php echo getPath() ?>'; 393 393 } 394 394 } … … 420 420 421 421 422 onOk = '<? =rss_plugin_hook("rss.plugins.ajax.admindlg.onok",null); ?>'.replace(/_ID_/g,id);423 onCancel = '<? =rss_plugin_hook("rss.plugins.ajax.admindlg.oncancel",null); ?>'.replace(/_ID_/g,id);424 extraCode = '<? =rss_plugin_hook("rss.plugins.ajax.admindlg",null); ?>'.replace(/_ID_/g,id);422 onOk = '<?php echo rss_plugin_hook("rss.plugins.ajax.admindlg.onok",null); ?>'.replace(/_ID_/g,id); 423 onCancel = '<?php echo rss_plugin_hook("rss.plugins.ajax.admindlg.oncancel",null); ?>'.replace(/_ID_/g,id); 424 extraCode = '<?php echo rss_plugin_hook("rss.plugins.ajax.admindlg",null); ?>'.replace(/_ID_/g,id); 425 425 426 426 if (!onOk) { … … 436 436 + '<form class="sf" id="sf"'+id+'" action="#" method="post">' 437 437 + '<p><input type="checkbox" id="sf' + id + 'u" value="1"' 438 + (tmpState & <? =FEED_MODE_UNREAD_STATE ?> ?' checked="checked"':'')438 + (tmpState & <?php echo FEED_MODE_UNREAD_STATE ?> ?' checked="checked"':'') 439 439 + ' />' 440 + '<label for="sf' + id + 'u"><? =LBL_STATE_UNREAD ?></label></p>'440 + '<label for="sf' + id + 'u"><?php echo LBL_STATE_UNREAD ?></label></p>' 441 441 + '<p><input type="checkbox" id="sf' + id + 's" value="1"' 442 + (tmpState & <? =FEED_MODE_STICKY_STATE ?> ?' checked="checked"':'')442 + (tmpState & <?php echo FEED_MODE_STICKY_STATE ?> ?' checked="checked"':'') 443 443 + ' />' 444 + '<label for="sf' + id + 's"><? =LBL_STATE_STICKY ?></label></p>'444 + '<label for="sf' + id + 's"><?php echo LBL_STATE_STICKY ?></label></p>' 445 445 + '<p><input type="checkbox" id="sf' + id + 'p" value="1"' 446 + (tmpState & <? =FEED_MODE_PRIVATE_STATE ?> ?' checked="checked"':'')446 + (tmpState & <?php echo FEED_MODE_PRIVATE_STATE ?> ?' checked="checked"':'') 447 447 + ' />' 448 + '<label for="sf' + id + 'p"><? =LBL_STATE_PRIVATE ?></label></p>'448 + '<label for="sf' + id + 'p"><?php echo LBL_STATE_PRIVATE ?></label></p>' 449 449 + extraCode 450 450 + '<p class="sbm">' 451 + '<a id="ess'+id+'ok" href="#" onclick="'+onOk+'"><? =LBL_ADMIN_OK ?></a>'452 + '<a href="#" onclick="'+onCancel+'"><? =LBL_ADMIN_CANCEL ?></a></p>'451 + '<a id="ess'+id+'ok" href="#" onclick="'+onOk+'"><?php echo LBL_ADMIN_OK ?></a>' 452 + '<a href="#" onclick="'+onCancel+'"><?php echo LBL_ADMIN_CANCEL ?></a></p>' 453 453 + '</form>'; 454 454 … … 474 474 s = 0; 475 475 if ((sfu = document.getElementById('sf'+id+'u')) && sfu.checked) { 476 s += <? =FEED_MODE_UNREAD_STATE ?>;476 s += <?php echo FEED_MODE_UNREAD_STATE ?>; 477 477 } 478 478 if ((sfs = document.getElementById('sf'+id+'s')) && sfs.checked) { 479 s += <? =FEED_MODE_STICKY_STATE ?>;479 s += <?php echo FEED_MODE_STICKY_STATE ?>; 480 480 } 481 481 if ((sfp = document.getElementById('sf'+id+'p')) && sfp.checked) { 482 s += <? =FEED_MODE_PRIVATE_STATE ?>;482 s += <?php echo FEED_MODE_PRIVATE_STATE ?>; 483 483 } 484 484 … … 486 486 487 487 if ((p=document.prevState[id]) != s) { 488 if ((s & <? = FEED_MODE_UNREAD_STATE ?>) != (p & <?=FEED_MODE_UNREAD_STATE ?>)) {489 if (s & <? =FEED_MODE_UNREAD_STATE ?>) {488 if ((s & <?php echo FEED_MODE_UNREAD_STATE ?>) != (p & <?php echo FEED_MODE_UNREAD_STATE ?>)) { 489 if (s & <?php echo FEED_MODE_UNREAD_STATE ?>) { 490 490 setItemClass(id,'item unread'); 491 491 c=unreadCnt(1); 492 492 } else { 493 493 c = unreadCnt(-1); 494 if ((sel = document.getElementById('<? =SHOW_WHAT ?>')) &&495 sel.options[sel.selectedIndex].value == <? =SHOW_UNREAD_ONLY ?>) {494 if ((sel = document.getElementById('<?php echo SHOW_WHAT ?>')) && 495 sel.options[sel.selectedIndex].value == <?php echo SHOW_UNREAD_ONLY ?>) { 496 496 setItemHide(id, (c==0)); 497 497 } else{ -
trunk/rss/cls/update.php
r842 r863 386 386 var batch = new Array(); 387 387 var j=0; 388 for (j=0;(j+document.feedPointer) < document.feedCount && j < <? =AJAX_BATCH_SIZE ?>;j++) {388 for (j=0;(j+document.feedPointer) < document.feedCount && j < <?php echo AJAX_BATCH_SIZE ?>;j++) { 389 389 batch[j]=ids[j+document.feedPointer]; 390 390 if (tdr = document.getElementById('u_r_' + batch[j])) { 391 tdr.innerHTML = '<? =UPDATING ?>';391 tdr.innerHTML = '<?php echo UPDATING ?>'; 392 392 } 393 393 } … … 405 405 function ajaxUpdate_cb(data) { 406 406 //alert(data); 407 superdarr = data.replace(/[^0-9a-zA-Z\(\)\|\s\.,]/gi,'').split('<? =GROUP_SPLITTER ?>');407 superdarr = data.replace(/[^0-9a-zA-Z\(\)\|\s\.,]/gi,'').split('<?php echo GROUP_SPLITTER ?>'); 408 408 var lastId = 0; 409 409 for (var i=0;i<superdarr.length;i++) { 410 darr = superdarr[i].replace(/[^0-9a-zA-Z\(\)\|\s,\.]/gi,'').split('<? =SUB_SPLITTER ?>');410 darr = superdarr[i].replace(/[^0-9a-zA-Z\(\)\|\s,\.]/gi,'').split('<?php echo SUB_SPLITTER ?>'); 411 411 412 412 // channel ID … … 414 414 lastId = id; 415 415 // unread count 416 if (darr[1] && (unread_ids = darr[1].split('<? =SUB_SUB_SPLITTER ?>'))) {416 if (darr[1] && (unread_ids = darr[1].split('<?php echo SUB_SUB_SPLITTER ?>'))) { 417 417 //alert('unread ids: ' + unread_ids); 418 418 document.new_ids=document.new_ids.concat(unread_ids); … … 462 462 sBatch += batch[i]; 463 463 if (i<batch.length-1) { 464 sBatch += '<? =GROUP_SPLITTER ?>';464 sBatch += '<?php echo GROUP_SPLITTER ?>'; 465 465 } 466 466 } … … 475 475 ids += id ; 476 476 if (i<document.new_ids.length-1) { 477 ids += '<? =GROUP_SPLITTER ?>';477 ids += '<?php echo GROUP_SPLITTER ?>'; 478 478 } 479 479 } -
trunk/rss/plugins/delicious.php
r849 r863 61 61 } 62 62 if (html == '') { 63 html = '<? =LBL_TAG_SUGGESTIONS_NONE ?>';63 html = '<?php echo LBL_TAG_SUGGESTIONS_NONE ?>'; 64 64 } 65 65 span.innerHTML = '(' + html + ')'; … … 105 105 newspan.setAttribute("id","dt" + id); 106 106 newspan.style.margin="0 0 0 0.5em"; 107 newspan.innerHTML = "<? =LBL_TAG_SUGGESTIONS ?>: (...) ]";107 newspan.innerHTML = "<?php echo LBL_TAG_SUGGESTIONS ?>: (...) ]"; 108 108 actionSpan.appendChild(newspan); 109 109 get_from_delicious(id); -
trunk/rss/plugins/newwindow.php
r730 r863 43 43 for (var i=0; i<anchors.length; i++) { 44 44 var anchor = anchors[i]; 45 if (anchor.href && (anchor.href.indexOf('<? =$_SERVER['HTTP_HOST'] ?>') < 0)) {45 if (anchor.href && (anchor.href.indexOf('<?php echo $_SERVER['HTTP_HOST'] ?>') < 0)) { 46 46 anchor.target = '_blank'; 47 47 } -
trunk/rss/themes/default/catfolder.php
r817 r863 1 1 <?php if(!rss_feeds_folder_is_root()) { ?> 2 2 <div> 3 <a href="#" onclick="_tgl(<? =rss_feeds_folder_id() ?>,'category'); return false;">4 <img src="<? = rss_theme_path() ?>/media/folder.gif" alt="<?=rss_feeds_folder_name() ?>" />3 <a href="#" onclick="_tgl(<?php echo rss_feeds_folder_id() ?>,'category'); return false;"> 4 <img src="<?php echo rss_theme_path() ?>/media/folder.gif" alt="<?php echo rss_feeds_folder_name() ?>" /> 5 5 </a> 6 <a href="<? = rss_feeds_folder_link() ?>"><?=rss_feeds_folder_name() ?></a>7 <? =rss_feeds_folders_unread_count(); ?>6 <a href="<?php echo rss_feeds_folder_link() ?>"><?php echo rss_feeds_folder_name() ?></a> 7 <?php echo rss_feeds_folders_unread_count(); ?> 8 8 9 9 </div> 10 10 <?php } ?> 11 <ul id="fc<? = rss_feeds_folder_id() ?>" class="<?= rss_feeds_ul_class(); ?>" style="display:<?=rss_feeds_ul_style() ?>">11 <ul id="fc<?php echo rss_feeds_folder_id() ?>" class="<?php echo rss_feeds_ul_class(); ?>" style="display:<?php echo rss_feeds_ul_style() ?>"> 12 12 <?php rss_feeds_folder_feeds() ?> 13 13 </ul> -
trunk/rss/themes/default/error.php
r856 r863 5 5 foreach($errors as $s => $es) { 6 6 foreach($es as $e) { 7 ?><li class="error_l<? = $s ?>"><?=$e ?></li><?php7 ?><li class="error_l<?php echo $s ?>"><?php echo $e ?></li><?php 8 8 } 9 9 } -
trunk/rss/themes/default/feed.php
r692 r863 1 1 <?php if(rss_feed_do_title()) { ?> 2 2 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> 3 <h3<? =rss_feed_class(); ?>>3 <h3<?php echo rss_feed_class(); ?>> 4 4 <?php if(rss_feed_allow_collapsing()) { ?> 5 <a class="<? = (rss_feed_collapsed()?"expand":"collapse") ?>" href="#" onclick="<?=rss_feed_expand_collapse_js() ?>">6 <img src="<? = rss_theme_path() ?>/media/<?= (rss_feed_collapsed()?"plus":"minus") ?>.gif" alt="" <?=rss_feed_id("cli") ?>/>5 <a class="<?php echo (rss_feed_collapsed()?"expand":"collapse") ?>" href="#" onclick="<?php echo rss_feed_expand_collapse_js() ?>"> 6 <img src="<?php echo rss_theme_path() ?>/media/<?php echo (rss_feed_collapsed()?"plus":"minus") ?>.gif" alt="" <?php echo rss_feed_id("cli") ?>/> 7 7 </a> 8 8 9 9 <?php } elseif (rss_feed_do_favicon()) { ?> 10 <img src="<? =rss_feed_favicon_url() ?>" class="favicon" alt="" />10 <img src="<?php echo rss_feed_favicon_url() ?>" class="favicon" alt="" /> 11 11 <?php } ?> 12 <a href="<? = rss_feed_url() ?>" <?= rss_feed_anchor_name() ?>><?=rss_feed_title() ?></a>12 <a href="<?php echo rss_feed_url() ?>" <?php echo rss_feed_anchor_name() ?>><?php echo rss_feed_title() ?></a> 13 13 </h3> 14 14 <?php } ?> 15 15 16 <ul<? =rss_feed_id() ?>>16 <ul<?php echo rss_feed_id() ?>> 17 17 <?php if (!rss_feed_collapsed()) { 18 18 rss_feed_items(); -
trunk/rss/themes/default/feeds.php
r797 r863 1 <h2><? =rss_feeds_column_title() ?></h2>1 <h2><?php echo rss_feeds_column_title() ?></h2> 2 2 <?php list($total, $unread, $channelcount) = rss_feeds_stats(); ?> 3 3 4 <p class="stats"><? =rss_feeds_stats() ?></p>4 <p class="stats"><?php echo rss_feeds_stats() ?></p> 5 5 <?php rss_feeds_folders(); ?> 6 6 -
trunk/rss/themes/default/feedsfeed.php
r725 r863 1 1 2 <li<? =rss_feeds_feed_li_class()?>>2 <li<?php echo rss_feeds_feed_li_class()?>> 3 3 <?php if($icon = rss_feeds_feed_icon()) { ?> 4 <img src="<? =$icon ?>" class="favicon" alt="" />4 <img src="<?php echo $icon ?>" class="favicon" alt="" /> 5 5 <?php } ?> 6 <a class="<? = rss_feeds_feed_class() ?>" title="<?= rss_feeds_feed_description_entities() ?>" href="<?= rss_feeds_feed_link() ?>"><?=rss_feeds_feed_title() ?></a>6 <a class="<?php echo rss_feeds_feed_class() ?>" title="<?php echo rss_feeds_feed_description_entities() ?>" href="<?php echo rss_feeds_feed_link() ?>"><?php echo rss_feeds_feed_title() ?></a> 7 7 <?php if (($rdLbl = rss_feeds_feed_read_label()) != "") { ?> 8 <? =$rdLbl ?>8 <?php echo $rdLbl ?> 9 9 <?php } ?> 10 <? =rss_feeds_feed_meta() ?>10 <?php echo rss_feeds_feed_meta() ?> 11 11 </li> -
trunk/rss/themes/default/feedsfolder.php
r590 r863 1 1 <?php if(!rss_feeds_folder_is_root()) { ?> 2 2 <div> 3 <a href="#" onclick="_tgl(<? =rss_feeds_folder_id() ?>); return false;">4 <img src="<? = rss_theme_path() ?>/media/folder.gif" alt="<?=rss_feeds_folder_name() ?>" />3 <a href="#" onclick="_tgl(<?php echo rss_feeds_folder_id() ?>); return false;"> 4 <img src="<?php echo rss_theme_path() ?>/media/folder.gif" alt="<?php echo rss_feeds_folder_name() ?>" /> 5 5 </a> 6 <a href="<? = rss_feeds_folder_link() ?>"><?=rss_feeds_folder_name() ?></a>7 <? =rss_feeds_folders_unread_count(); ?>6 <a href="<?php echo rss_feeds_folder_link() ?>"><?php echo rss_feeds_folder_name() ?></a> 7 <?php echo rss_feeds_folders_unread_count(); ?> 8 8 9 9 </div> 10 10 <?php } ?> 11 <ul id="fc<? = rss_feeds_folder_id() ?>" class="<?= rss_feeds_ul_class(); ?>" style="display:<?=rss_feeds_ul_style() ?>">11 <ul id="fc<?php echo rss_feeds_folder_id() ?>" class="<?php echo rss_feeds_ul_class(); ?>" style="display:<?php echo rss_feeds_ul_style() ?>"> 12 12 <?php rss_feeds_folder_feeds() ?> 13 13 </ul> -
trunk/rss/themes/default/footer.php
r768 r863 1 1 <span><a href="#top">TOP</a></span> 2 <? =rss_plugin_hook("rss.plugins.footer.span",null); ?>2 <?php echo rss_plugin_hook("rss.plugins.footer.span",null); ?> 3 3 <span> 4 <a href="http://devlog.gregarius.net/">Gregarius</a> <? =_VERSION_ ?><!-- $Revision: 577 $ -->5 <? =LBL_FTR_POWERED_BY ?> <a href="http://php.net">PHP</a>,4 <a href="http://devlog.gregarius.net/">Gregarius</a> <?php echo _VERSION_ ?><!-- $Revision: 577 $ --> 5 <?php echo LBL_FTR_POWERED_BY ?> <a href="http://php.net">PHP</a>, 6 6 <a href="http://magpierss.sourceforge.net/">MagpieRSS</a>, 7 7 <a href="http://sourceforge.net/projects/kses">kses</a>, … … 12 12 </span> 13 13 <span> 14 Last update: <? =rss_footer_last_modif(); ?>14 Last update: <?php echo rss_footer_last_modif(); ?> 15 15 </span> -
trunk/rss/themes/default/header.php
r645 r863 1 <meta http-equiv="Content-Type" content="text/html; charset=<? =rss_header_charset() ?>" />2 <title><? =rss_header_title() ?></title>3 <meta name="robots" content="<? =rss_header_robotmeta(); ?>" />4 <link rel="stylesheet" type="text/css" href="<? =rss_theme_path() ?>/css/layout.css" />5 <link rel="stylesheet" type="text/css" href="<? =rss_theme_path() ?>/css/look.css" />6 <link rel="stylesheet" type="text/css" href="<? =getPath() ?>css/print.css" media="print" />7 <? =rss_plugin_hook('rss.plugins.stylesheets', null); ?>1 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo rss_header_charset() ?>" /> 2 <title><?php echo rss_header_title() ?></title> 3 <meta name="robots" content="<?php echo rss_header_robotmeta(); ?>" /> 4 <link rel="stylesheet" type="text/css" href="<?php echo rss_theme_path() ?>/css/layout.css" /> 5 <link rel="stylesheet" type="text/css" href="<?php echo rss_theme_path() ?>/css/look.css" /> 6 <link rel="stylesheet" type="text/css" href="<?php echo getPath() ?>css/print.css" media="print" /> 7 <?php echo rss_plugin_hook('rss.plugins.stylesheets', null); ?> 8 8 <?php if(rss_header_autorefreshtime() > 0) { ?> 9 <meta http-equiv="refresh" content="<? = rss_header_autorefreshtime() ?>;<?=rss_header_autorefreshurl() ?>" />9 <meta http-equiv="refresh" content="<?php echo rss_header_autorefreshtime() ?>;<?php echo rss_header_autorefreshurl() ?>" /> 10 10 <?php } ?> 11 11 <?php 12 12 foreach(rss_header_links() as $link) { 13 13 list($rel,$title,$href) = $link; ?> 14 <link rel="<? = $rel ?>" title="<?= $title ?>" href="<?=$href ?>" />14 <link rel="<?php echo $rel ?>" title="<?php echo $title ?>" href="<?php echo $href ?>" /> 15 15 <?php } ?> 16 16 <?php foreach(rss_header_javascripts() as $script) { ?> 17 <script type="text/javascript" src="<? =$script ?>"></script>17 <script type="text/javascript" src="<?php echo $script ?>"></script> 18 18 <?php } ?> 19 19 -
trunk/rss/themes/default/index.php
r856 r863 5 5 </head> 6 6 7 <body<? =rss_header_onLoadAction() ?>>7 <body<?php echo rss_header_onLoadAction() ?>> 8 8 9 9 <div id="nav" class="frame"> 10 <? =rss_header_logininfo() ?>10 <?php echo rss_header_logininfo() ?> 11 11 <a class="hidden" href="#feedcontent">skip to content</a> 12 <h1 id="top"><? =rss_main_title() ?></h1>12 <h1 id="top"><?php echo rss_main_title() ?></h1> 13 13 <ul class="navlist"> 14 <? =rss_nav_items() ?>14 <?php echo rss_nav_items() ?> 15 15 </ul> 16 <? =rss_nav_afternav() ?>16 <?php echo rss_nav_afternav() ?> 17 17 </div> 18 18 … … 28 28 29 29 <?php rss_errors_render() ?> 30 <div <? =rss_main_div_id(); ?> class="frame">30 <div <?php echo rss_main_div_id(); ?> class="frame"> 31 31 <?php rss_main_object(); ?> 32 32 </div> -
trunk/rss/themes/default/item.php
r838 r863 1 <li class="<? =rss_item_css_class(); ?>">1 <li class="<?php echo rss_item_css_class(); ?>"> 2 2 <?php if(rss_item_permalink()) { ?> 3 <a class="plink" title="<? = rss_item_pl_title(); ?>" href="<?=rss_item_pl_url(); ?>">4 <img src="<? = rss_theme_path() ?>/media/pl.gif" alt="<?=rss_item_pl_title(); ?>" />3 <a class="plink" title="<?php echo rss_item_pl_title(); ?>" href="<?php echo rss_item_pl_url(); ?>"> 4 <img src="<?php echo rss_theme_path() ?>/media/pl.gif" alt="<?php echo rss_item_pl_title(); ?>" /> 5 5 </a> 6 6 <?php } ?> 7 7 <?php if(!hidePrivate()) { ?> 8 <a id="sa<? = rss_item_id(); ?>" href="#" onclick="_es(<?= rss_item_id(); ?>,<?=rss_item_flags() ?>); return false;">9 <img src="<? =rss_theme_path() ?>/media/edit.gif" alt="edit" />8 <a id="sa<?php echo rss_item_id(); ?>" href="#" onclick="_es(<?php echo rss_item_id(); ?>,<?php echo rss_item_flags() ?>); return false;"> 9 <img src="<?php echo rss_theme_path() ?>/media/edit.gif" alt="edit" /> 10 10 </a> 11 11 <?php } ?> 12 12 <?php rss_plugin_hook("rss.plugins.items.beforetitle", rss_item_id()); ?> 13 <h4><a href="<? = rss_item_url(); ?>"><?=rss_item_title(); ?></a></h4>14 <div id="sad<? =rss_item_id(); ?>" style="display:none"></div>15 <h5><? = rss_item_date(); ?><?=rss_item_author(); ?></h5>13 <h4><a href="<?php echo rss_item_url(); ?>"><?php echo rss_item_title(); ?></a></h4> 14 <div id="sad<?php echo rss_item_id(); ?>" style="display:none"></div> 15 <h5><?php echo rss_item_date(); ?><?php echo rss_item_author(); ?></h5> 16 16 <?php if (rss_item_do_rating()) { ?> 17 17 <div class="rating"> 18 <h5><? =LBL_RATING ?></h5>19 <? =rss_item_rating() ?>18 <h5><?php echo LBL_RATING ?></h5> 19 <?php echo rss_item_rating() ?> 20 20 <?php rss_item_rating() ?> 21 21 </div> … … 23 23 <?php if (rss_item_display_tags()) { ?> 24 24 <h5> 25 <a href="<? = rss_item_tagslink(); ?>"><?=LBL_TAG_TAGS ?></a>: 26 <span id="t<? = rss_item_id(); ?>"><?=rss_item_tags(); ?></span> 25 <a href="<?php echo rss_item_tagslink(); ?>"><?php echo LBL_TAG_TAGS ?></a>: 26 <span id="t<?php echo rss_item_id(); ?>"><?php echo rss_item_tags(); ?></span> 27 27 <?php if (rss_item_can_edit_tags()) { ?> 28 [<span id="ta<? = rss_item_id(); ?>"><a href="#" onclick="_et(<?= rss_item_id(); ?>); return false;"><?=LBL_TAG_EDIT ?></a></span>]28 [<span id="ta<?php echo rss_item_id(); ?>"><a href="#" onclick="_et(<?php echo rss_item_id(); ?>); return false;"><?php echo LBL_TAG_EDIT ?></a></span>] 29 29 <?php } ?> 30 30 </h5> 31 31 <?php } ?> 32 <div class="content" id="c<? =rss_item_id(); ?>">33 <? =rss_item_content(); ?>32 <div class="content" id="c<?php echo rss_item_id(); ?>"> 33 <?php echo rss_item_content(); ?> 34 34 </div> 35 35 </li> -
trunk/rss/themes/default/itemlist.php
r818 r863 5 5 <?php } ?> 6 6 <?php if ($title = rss_itemlist_title()) { ?> 7 <h2<? =rss_itemlist_anchor(); ?>>7 <h2<?php echo rss_itemlist_anchor(); ?>> 8 8 <?php if ($icon = rss_itemlist_icon()) { ?> 9 <img src="<? =$icon ?>" class="favicon" alt="" />9 <img src="<?php echo $icon ?>" class="favicon" alt="" /> 10 10 <?php } ?> 11 <? =$title ?>11 <?php echo $title ?> 12 12 </h2> 13 13 <?php } else { ?> 14 <a <? =rss_itemlist_anchor(); ?>></a>14 <a <?php echo rss_itemlist_anchor(); ?>></a> 15 15 <?php } ?> 16 <? =rss_itemlist_before_list(); ?>16 <?php echo rss_itemlist_before_list(); ?> 17 17 <?php rss_itemlist_feeds(); ?> 18 <? =rss_itemlist_after_list(); ?>18 <?php echo rss_itemlist_after_list(); ?> -
trunk/rss/themes/default/nav.php
r590 r863 1 1 <ul class="navlist"> 2 <? =rss_nav_items() ?>2 <?php echo rss_nav_items() ?> 3 3 </ul> -
trunk/rss/themes/default/navitem.php
r590 r863 1 <li<? = rss_nav_item_class() ?>><a <?= rss_nav_item_accesskey() ?> href="<?= rss_nav_item_href() ?>"><?=rss_nav_item_label() ?></a></li>1 <li<?php echo rss_nav_item_class() ?>><a <?php echo rss_nav_item_accesskey() ?> href="<?php echo rss_nav_item_href() ?>"><?php echo rss_nav_item_label() ?></a></li> -
trunk/rss/themes/default/searchform.php
