From oi-commits at pardus.org.tr Fri Aug 3 14:15:57 2007 From: oi-commits at pardus.org.tr (oi-commits at pardus.org.tr) Date: Fri, 3 Aug 2007 14:15:57 +0300 (EEST) Subject: [Oi-commits] r490 - trunk/st Message-ID: <20070803111557.1910F7C0028@liste.uludag.org.tr> Author: erenturkay Date: Fri Aug 3 14:15:56 2007 New Revision: 490 Modified: trunk/st/feeds.py Log: anasayfada filter yapmay? unutmu?uz :) Modified: trunk/st/feeds.py ================================================================= --- trunk/st/feeds.py (original) +++ trunk/st/feeds.py Fri Aug 3 14:15:56 2007 @@ -20,19 +20,19 @@ def items(self): output = [] - for news in News.objects.order_by('-date')[:NEWS_IN_HOMEPAGE]: + for news in News.objects.filter(status=1).order_by('-date')[:NEWS_IN_HOMEPAGE]: news.title = 'Haber: %s' % news.title output.append(news) - for package in Package.objects.order_by('-update')[:PACKAGES_IN_HOMEPAGE]: + for package in Package.objects.filter(status=1).order_by('-update')[:PACKAGES_IN_HOMEPAGE]: package.title = 'Paket: %s' % package.title output.append(package) - for game in Game.objects.order_by('-update')[:GAMES_IN_HOMEPAGE]: + for game in Game.objects.filter(status=1).order_by('-update')[:GAMES_IN_HOMEPAGE]: game.title = 'Oyun: %s' % game.title output.append(game) - for fs in FS.objects.order_by('-update')[:FS_IN_HOMEPAGE]: + for fs in FS.objects.filter(status=1).order_by('-update')[:FS_IN_HOMEPAGE]: fs.title = '?lk Ad?m: %s' % fs.title output.append(fs) From oi-commits at pardus.org.tr Fri Aug 3 17:07:50 2007 From: oi-commits at pardus.org.tr (oi-commits at pardus.org.tr) Date: Fri, 3 Aug 2007 17:07:50 +0300 (EEST) Subject: [Oi-commits] r491 - trunk/media/css Message-ID: <20070803140751.02F487C0028@liste.uludag.org.tr> Author: ahmet Date: Fri Aug 3 17:07:50 2007 New Revision: 491 Modified: trunk/media/css/style.css Log: try. Modified: trunk/media/css/style.css ================================================================= --- trunk/media/css/style.css (original) +++ trunk/media/css/style.css Fri Aug 3 17:07:50 2007 @@ -638,7 +638,7 @@ } /* sidebar */ -.sidebar { +#sidebar, .sidebar { padding-left: 648px; margin-bottom: 10px; margin-right: 20px; From oi-commits at pardus.org.tr Fri Aug 3 17:10:49 2007 From: oi-commits at pardus.org.tr (oi-commits at pardus.org.tr) Date: Fri, 3 Aug 2007 17:10:49 +0300 (EEST) Subject: [Oi-commits] r492 - trunk/media/css Message-ID: <20070803141050.077537C00AA@liste.uludag.org.tr> Author: ahmet Date: Fri Aug 3 17:10:47 2007 New Revision: 492 Modified: trunk/media/css/style.css Log: g?kmen ?ok konu?uyor Modified: trunk/media/css/style.css ================================================================= --- trunk/media/css/style.css (original) +++ trunk/media/css/style.css Fri Aug 3 17:10:47 2007 @@ -638,8 +638,7 @@ } /* sidebar */ -#sidebar, .sidebar { - padding-left: 648px; +#sidebar { margin-bottom: 10px; margin-right: 20px; } From oi-commits at pardus.org.tr Fri Aug 3 17:15:35 2007 From: oi-commits at pardus.org.tr (oi-commits at pardus.org.tr) Date: Fri, 3 Aug 2007 17:15:35 +0300 (EEST) Subject: [Oi-commits] r493 - trunk/media/css Message-ID: <20070803141535.7727B7C0028@liste.uludag.org.tr> Author: ahmet Date: Fri Aug 3 17:15:34 2007 New Revision: 493 Modified: trunk/media/css/style.css Log: try. Modified: trunk/media/css/style.css ================================================================= --- trunk/media/css/style.css (original) +++ trunk/media/css/style.css Fri Aug 3 17:15:34 2007 @@ -639,8 +639,10 @@ /* sidebar */ #sidebar { + float:left; + width:268px; margin-bottom: 10px; - margin-right: 20px; + margin-right: 10px; } .sidebar_purple_title { From oi-commits at pardus.org.tr Fri Aug 3 17:29:19 2007 From: oi-commits at pardus.org.tr (oi-commits at pardus.org.tr) Date: Fri, 3 Aug 2007 17:29:19 +0300 (EEST) Subject: [Oi-commits] r494 - trunk/media/css Message-ID: <20070803142919.E34077C0028@liste.uludag.org.tr> Author: ahmet Date: Fri Aug 3 17:29:19 2007 New Revision: 494 Modified: trunk/media/css/style.css Log: bibik Modified: trunk/media/css/style.css ================================================================= --- trunk/media/css/style.css (original) +++ trunk/media/css/style.css Fri Aug 3 17:29:19 2007 @@ -639,7 +639,7 @@ /* sidebar */ #sidebar { - float:left; + float:right; width:268px; margin-bottom: 10px; margin-right: 10px; @@ -648,7 +648,6 @@ .sidebar_purple_title { margin-top: 10px; padding-top: 4px; - padding-left: 646px; height: 25px; font-size: 14px; font-weight: bold; @@ -677,7 +676,6 @@ .sidebar_blue_title { margin-top: 10px; padding-top: 4px; - padding-left: 646px; height: 25px; font-size: 14px; font-weight: bold; @@ -706,7 +704,6 @@ .sidebar_darkblue_title { margin-top: 10px; padding-top: 4px; - padding-left: 646px; height: 25px; font-size: 14px; font-weight: bold; @@ -735,7 +732,6 @@ .sidebar_green_title { margin-top: 10px; padding-top: 4px; - padding-left: 646px; height: 25px; font-size: 14px; font-weight: bold; From oi-commits at pardus.org.tr Sat Aug 4 12:12:22 2007 From: oi-commits at pardus.org.tr (oi-commits at pardus.org.tr) Date: Sat, 4 Aug 2007 12:12:22 +0300 (EEST) Subject: [Oi-commits] r495 - trunk/media/css Message-ID: <20070804091222.349977C005E@liste.uludag.org.tr> Author: ahmet Date: Sat Aug 4 12:12:21 2007 New Revision: 495 Modified: trunk/media/css/style.css Log: revert Modified: trunk/media/css/style.css ================================================================= --- trunk/media/css/style.css (original) +++ trunk/media/css/style.css Sat Aug 4 12:12:21 2007 @@ -638,11 +638,10 @@ } /* sidebar */ -#sidebar { - float:right; - width:268px; +.sidebar { + padding-left: 648px; margin-bottom: 10px; - margin-right: 10px; + margin-right: 20px; } .sidebar_purple_title { @@ -744,7 +743,6 @@ .sidebar_orange_title { margin-top: 10px; padding-top: 4px; - padding-left: 646px; height: 25px; font-size: 14px; font-weight: bold; @@ -773,7 +771,6 @@ .sidebar_yellow_title { margin-top: 10px; padding-top: 4px; - padding-left: 646px; height: 25px; font-size: 14px; font-weight: bold; From oi-commits at pardus.org.tr Sat Aug 4 14:58:58 2007 From: oi-commits at pardus.org.tr (oi-commits at pardus.org.tr) Date: Sat, 4 Aug 2007 14:58:58 +0300 (EEST) Subject: [Oi-commits] r496 - in trunk: media/css media/img templates templates/download templates/feedjack/oi templates/flatpages templates/fs templates/game templates/news templates/package templates/tag Message-ID: <20070804115858.4883D7C005F@liste.uludag.org.tr> Author: ahmet Date: Sat Aug 4 14:58:57 2007 New Revision: 496 Modified: trunk/media/css/style.css trunk/media/img/planet_title.png trunk/templates/base.html trunk/templates/download/download.html trunk/templates/download/download_relnotes.html trunk/templates/feedjack/oi/post_list.html trunk/templates/flatpages/about.html trunk/templates/flatpages/default.html trunk/templates/fs/fs_detail.html trunk/templates/fs/fs_main.html trunk/templates/game/game_detail.html trunk/templates/game/game_main.html trunk/templates/home.html trunk/templates/news/news_detail.html trunk/templates/news/news_main.html trunk/templates/package/package_detail.html trunk/templates/package/package_main.html trunk/templates/tag/tag_detail.html Log: Joga Bonito Modified: trunk/media/css/style.css ================================================================= --- trunk/media/css/style.css (original) +++ trunk/media/css/style.css Sat Aug 4 14:58:57 2007 @@ -56,7 +56,7 @@ } .orange h1, .orange h2, .orange h3, .orange h4, .orange h5, .orange h6 { - color: #BC5100; + color: #CE5900; } .yellow { @@ -71,6 +71,18 @@ color: #339966; } +.grey { + color: #585D60; +} + +.grey a { + background-color: #323436; +} + +.yellow h1, .yellow h2, .yellow h3, .yellow h4, .yellow h5, .yellow h6 { + color: #323436; +} + /* header */ #header { height: 140px; @@ -142,8 +154,7 @@ #content { padding: 10px 0px 20px 10px; float: left; - width: 617px; -/* overflow: hidden; */ + width: 70%; } .page_title { @@ -638,10 +649,16 @@ } /* sidebar */ +#sidebar { + float: left; + position: absolute; +} + .sidebar { - padding-left: 648px; - margin-bottom: 10px; - margin-right: 20px; + position: relative; + left: 635px; + width: 250px; + padding-left: 6px; } .sidebar_purple_title { @@ -651,27 +668,10 @@ font-size: 14px; font-weight: bold; color: #ffffff; - background-position: 638px 0px; background-repeat: no-repeat; background-image: url('/media/img/sidebar_purple.png'); } -.sidebar_purple { - color: #9218A4; - font-size: 12px; -} - -.sidebar_purple a { - color: #fff; - background-color: #9218A4; - font-size: 12px; -} - -.sidebar_purple a:hover { - text-decoration: none; - background-color: #000; -} - .sidebar_blue_title { margin-top: 10px; padding-top: 4px; @@ -679,27 +679,10 @@ font-size: 14px; font-weight: bold; color: #ffffff; - background-position: 638px 0px; background-repeat: no-repeat; background-image: url('/media/img/sidebar_blue.png'); } -.sidebar_blue { - color: #10A8C1; - font-size: 12px; -} - -.sidebar_blue a { - color: #fff; - background-color: #10A8C1; - font-size: 12px; -} - -.sidebar_blue a:hover { - text-decoration: none; - background-color: #000; -} - .sidebar_darkblue_title { margin-top: 10px; padding-top: 4px; @@ -707,35 +690,18 @@ font-size: 14px; font-weight: bold; color: #ffffff; - background-position: 638px 0px; background-repeat: no-repeat; background-image: url('/media/img/sidebar_darkblue.png'); } -.sidebar_darkblue { - color: #33718B; - font-size: 12px; -} - -.sidebar_darkblue a { - color: #fff; - background-color: #33718B; - font-size: 12px; -} - -.sidebar_darkblue a:hover { - text-decoration: none; - background-color: #000; -} - .sidebar_green_title { + padding-left: 8px; margin-top: 10px; padding-top: 4px; height: 25px; font-size: 14px; font-weight: bold; color: #ffffff; - background-position: 638px 0px; background-repeat: no-repeat; background-image: url('/media/img/sidebar_green.png'); } @@ -747,27 +713,10 @@ font-size: 14px; font-weight: bold; color: #ffffff; - background-position: 638px 0px; background-repeat: no-repeat; background-image: url('/media/img/sidebar_orange.png'); } -.sidebar_orange { - color: #DB5F00; - font-size: 12px; -} - -.sidebar_orange a { - color: #fff; - background-color: #DB5F00; - font-size: 12px; -} - -.sidebar_orange a:hover { - text-decoration: none; - background-color: #000; -} - .sidebar_yellow_title { margin-top: 10px; padding-top: 4px; @@ -775,27 +724,10 @@ font-size: 14px; font-weight: bold; color: #827300; - background-position: 638px 0px; background-repeat: no-repeat; background-image: url('/media/img/sidebar_yellow.png'); } -.sidebar_yellow { - color: #827300; - font-size: 12px; -} - -.sidebar_yellow a { - color: #fff; - background-color: #827300; - font-size: 12px; -} - -.sidebar_yellow a:hover { - text-decoration: none; - background-color: #000; -} - /* base */ body { font: 75%/150% "Trebuchet MS", Tahoma, Arial; Modified: trunk/media/img/planet_title.png ================================================================= Binary files. No diff available. Modified: trunk/templates/base.html ================================================================= --- trunk/templates/base.html (original) +++ trunk/templates/base.html Sat Aug 4 14:58:57 2007 @@ -35,12 +35,12 @@
md5: {{ version.install_md5sum }}
sha1sum: {{ version.install_sha1sum }}
{% for tag in fs.tags.all %}{{ tag.name }} {% endfor %}
{% for tag in game.tags.all %}{{ tag.name }} {% endfor %}
{% for tag in news.tags.all %}{{ tag.name }} {% endfor %}
{% for tag in game.tags.all %}{{ tag.name }} {% endfor %}


{% for tag in package.tags.all %}{{ tag.name }} {% endfor %}

