Changeset 35

Show
Ignore:
Timestamp:
07/16/07 16:15:20 (18 months ago)
Author:
aarkerio
Message:

Add themes scaffold and some images

Location:
trunk/app
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/controllers/news_controller.php

    r34 r35  
    5757        } 
    5858         
     59        $this->layout = 'portal'; 
     60         
    5961        $conditions = array("News.status"=>1, "News.id"=>$id); 
    6062         
    61         $fields     = array("News.id", "News.title", "News.votes", "News.comments", "News.body", "News.created", "News.reference", "News.theme_id", "News.user_id", "Theme.img", "Theme.theme", "User.username"); 
     63        $fields     = array("News.id", "News.title", "News.comments", "News.body", "News.created", "News.reference", "News.theme_id", "News.user_id", "Theme.img", "Theme.theme", "User.username"); 
    6264         
    6365        $this->pageTitle = 'Hacktivismo'; 
  • trunk/app/controllers/users_controller.php

    r34 r35  
    255255        $this->layout    = 'portal'; 
    256256    } 
    257     
     257     
    258258    public function recover() 
    259259    { 
     
    264264        $this->layout    = 'portal'; 
    265265    } 
    266  
    267266     
    268267    public function bloggers($order = 'username', $desc = 'DESC') 
     
    280279    public function login() 
    281280    {  
     281       $this->layout    = 'portal'; 
     282        
    282283       $this->pageTitle = 'Login :: Karamelo E-learning'; 
    283284        
     
    310311   { 
    311312    $this->layout    = 'portal'; 
    312      
    313313     
    314314    $this->Group = new Group; 
  • trunk/app/views/news/rss.thtml

    r20 r35  
    11<rss version="2.0"> 
    22<channel> 
    3 <title>::Karamelo RSS::</title> 
     3<title>::MonoNeurona RSS::</title> 
    44   <link>http://<?php echo $_SERVER['SERVER_NAME'] ?></link> 
    55   <description>Noticias del mundo libre</description> 
     
    77   <image>  
    88      <title>MonoNeurona - Minuto x Minuto</title> 
    9       <url>http://<?php echo $_SERVER['SERVER_NAME']; ?>/img/static/mn-small.png</url> 
    10       <link>http://<?php echo $_SERVER['SERVER_NAME']; ?></link> 
     9      <url>http://www.mononeurona.org/img/static/mn-small.png</url> 
     10      <link>http://www.monneurona.org</link> 
    1111          <width>100</width> 
    1212          <height>71</height> 
     
    2121        <title><?php echo $v["News"]['title']; ?></title> 
    2222        <link>http://<?php echo $_SERVER['SERVER_NAME'] ?>/news/display/<?php echo  $v["News"]["id"]; ?></link> 
    23         <comments><?php echo $_SERVER['SERVER_NAME']; ?>/news/display/<?php echo $v["News"]["id"] ?></comments> 
     23        <comments><?php echo $_SERVER['SERVER_NAME'] ?>/news/display/<?php echo $v["News"]["id"] ?></comments> 
    2424        <description><![CDATA[<?php echo $body; ?>]]></description> 
    2525             <pubdate><?php  echo $v["News"]["created"] ?></pubdate> 
    2626         <creator><?php  echo $v["News"]["created"] ?></creator> 
    27              <category><?php echo $v["News"]['subject_id']; ?></category> 
     27             <category><?php echo $v["News"]['theme_id']; ?></category> 
    2828        <guid><?php echo $_SERVER['SERVER_NAME'] ?>/news/display/<?php echo $v["News"]["id"] ?></guid> 
    2929    </item>