Changeset 20835 for websites

Show
Ignore:
Timestamp:
10/06/08 13:16:17 (2 months ago)
Author:
wozozo
Message:

test

Location:
websites/zf-users.jp
Files:
1 added
7 modified

Legend:

Unmodified
Added
Removed
  • websites/zf-users.jp

    • Property svn:ignore set to
      .cache
      .project
      .settings
      .buildpath
  • websites/zf-users.jp/public/application/Bootstrap.php

    r13176 r20835  
    4545    { 
    4646        self::$frontController = Zend_Controller_Front::getInstance(); 
    47         self::$frontController->throwExceptions(false); 
     47        self::$frontController->throwExceptions(true); 
    4848        self::$frontController->returnResponse(true); 
    4949        self::$frontController->setControllerDirectory( 
  • websites/zf-users.jp/public/application/default/controllers/CodesController.php

    r14103 r20835  
    1010        $this->view->headScript()->appendFile($this->baseUrl . '/js/syntax/shCore.js'); 
    1111        $this->view->headScript()->appendFile($this->baseUrl . '/js/syntax/shBrushPhp.js'); 
     12        $this->view->headScript()->appendFile($this->baseUrl . '/js/syntax/shBrushCss.js'); 
    1213         
    1314        $this->view->headTitle('ZF-users.jp') 
     
    2021    } 
    2122     
    22     public function indexAction() 
    23     { 
    24          
    25     } 
     23    // index 
     24    public function indexAction() {} 
    2625     
     26    // Zend_Auth 
     27    public function gettingStartedWithZendAuthAction() {} 
     28    // Zend_Controller 
     29    public function createCustomRoutesAction() {} 
     30    // Zend_Db 
    2731    public function zendDbConnectAction() {} 
    2832    public function zendDbCrudAction() {} 
     33    // Zend_Form 
    2934    public function zendFormUploadAction() {} 
     35    public function zendFormDefaultCssAction() {} 
     36    // Zend_View 
    3037    public function zendViewDisableViewRendererAction() {} 
    31     public function createCustomRoutesAction() {} 
     38     
     39    //  
    3240    public function gettingStartedWithZendFrameworkAction() {} 
    33     public function gettingStartedWithZendAuthAction() {} 
    3441     
    3542} 
  • websites/zf-users.jp/public/application/default/views/scripts/codes/index.phtml

    r14103 r20835  
    1919<h2>Zend_Form</h2>  
    2020<ul>  
    21     <li><a href="zend-form-upload">アップロード機能の実装</a></li>  
     21    <li><a href="zend-form-upload">アップロード機能の実装</a></li> 
     22    <li><a href="zend-form-default-css">デコレータの配置を横にする (CSS)</a></li> 
    2223</ul>  
    2324 
  • websites/zf-users.jp/public/application/default/views/scripts/codes/zend-form-upload.phtml

    r13175 r20835  
    11<?php $this->headTitle()->prepend('アップロード機能の実装') ?> 
     2 
     3<p class="notify">以下、ver1.6 で実装されました</p> 
     4 
    25 
    36<h2>アップロード機能の実装</h2>  
  • websites/zf-users.jp/public/application/default/views/scripts/index/index.phtml

    r14103 r20835  
    4242<h2>リンク</h2> 
    4343<ul> 
    44     <li><a href="http://framework.zend.com/">Zend Framework ダウンロード</a></li> 
    45     <li><a href="http://framework.zend.com/manual/ja/">Zend Framework: ドキュメント</a></li> 
     44    <li><a href="http://codezine.jp/article/corner/42">Zend Framework入門:CodeZine(コードジン)</a></li> 
    4645</ul> 
    4746 
  • websites/zf-users.jp/public/html/css/screen.css

    r13152 r20835  
    2121} 
    2222 
     23p.notify { 
     24    border: 3px solid #090; 
     25    padding: 10px; 
     26} 
     27 
    2328 
    2429