Re: [fw-general] ZF 0.2.0 code freeze 10/28

2006-10-28 Thread Kevin McArthur

I'll send you a patch off-list.

K
- Original Message - 
From: Willie Alberty [EMAIL PROTECTED]

To: Zend Framework General fw-general@lists.zend.com
Sent: Friday, October 27, 2006 10:36 PM
Subject: Re: [fw-general] ZF 0.2.0 code freeze 10/28



On Oct 27, 2006, at 5:41 PM, Kevin McArthur wrote:

If you want a copy of where it's at (to finnish it faster than I  
can) just let me know.


This will be a fairly substantial api change for Zend_Pdf image  
handling.


I've been absent from coding for the last couple of months while I  
was regrouping after the loss of a major client. I'm back with a new  
large-scale project for which I'll need Zend_Pdf again. If you're  
stalled, I'm at a point now where I can help out...


--

Willie Alberty, Owner
Spenlen Media
[EMAIL PROTECTED]

http://www.spenlen.com/



[fw-general] Re: Zend_Cache_FileBackendTest failing

2006-10-28 Thread Sebastian Nohn
Fabien MARTY wrote:

 Zend_Cache tests are ok for me with latest SVN.
 
 May you open a bug report with your exact configuration (OS, versions...) ?

ZF-463

Sebastian



[fw-general] Problem with themes in ZF

2006-10-28 Thread Darek
Hi, i'm writing CMS system in ZF and I've got problem with my themes.The structure of my sysem is:./application./liblary./site ./themes ./default  ./gfx  ./js
  ./languages  ./style (styles)  ./view  (files with view scripts called from Zend_View, index.php, page_content.php etc.).htaccessAnd i've got problem when I want load css styles and graphics putted in themes directory from my scripts (in ./view direcory)
For exaple in my main view script (./site/themes/default/view/index.php) I'vo got anchor to my css file in style (link href="" rel=stylesheet type=text/css /)
but my site doesn't see it, that same is for image files.My .htaccess files are in main directory and in site directory .htaccess in main directory:  RewriteEngine On  RewriteBase /site/
  RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.phpand in site directory:  RewriteEngine On  RewriteBase /  RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
Thank's for help and sorry for my language ;)