Re: Using JQuery and Prototype in same application

2008-11-04 Thread Giaco

Since both frameworks use the $()-function, you either
 - have to jump through loops to make it working for both of them
 - use the jQuery alias function jQuery()
 - or, my favorite:

if you use the short form to wait till page load of DOM of jQuery:
jQuery(function(){/* yourcodehere */})
you can just input the $ as a function parameter: jQuery(function($){/
* yourcodehere */})

With that you can safely use the $-sign within the curled brackets.

On Nov 4, 5:10 am, si-mon [EMAIL PROTECTED] wrote:
 Actually, we are a group working on a single project, and each one
 having expertise in different libraries. So this question...
 Anyhow, thanks for the very useful information. This will help us a
 lot...
 -- si-mon

 On Nov 3, 5:11 pm, monmonja [EMAIL PROTECTED] wrote:



  If your using plugins, check if the plugin has the compatibility to
  work with other library, if not remember to not use $ for  jquery
  stuff, most of the time you would be mixing them up. I would also
  suggest to just drop one of them. :)

  On Nov 4, 3:13 am, Samuel DeVore [EMAIL PROTECTED] wrote:

   On Mon, Nov 3, 2008 at 11:48 AM, mark_story [EMAIL PROTECTED] wrote:

A better question is why?

   Maybe if you have an app that uses prototype but one wants to play
   with your amazing debug kit ;)

-Mark

On Nov 2, 11:55 pm, si-mon [EMAIL PROTECTED] wrote:
Hi all,
Is there any problem in using both JQuery and Prototype in the same
application?

  --
  Monmonjahttp://monmonja.com/blog/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Broken image if shown with file_get_contents()

2008-11-02 Thread Giaco

I now found out then when viewed binarily the only difference between
the real picture and the scrambled one of cake is:
  * one empty line at the top
  * line delimiter is CRLF not CR

If I change those two, the image works as expected. How can I tell
cake to show the image properly?


On Nov 2, 11:10 am, Anupom [EMAIL PROTECTED] wrote:
 Can you please try with the following code?

     function view() {
         Configure::write('debug', 0);
         header('Content-type: image/jpeg;');
         echo file_get_contents(WWW_ROOT . 'img' . DS . 'folder' . DS .
 'test.jpg');
         exit;
     }





 On Sun, Nov 2, 2008 at 4:36 AM, Giaco [EMAIL PROTECTED] wrote:

  Hello,

  for security reasons and on the fly resizing I route all picture
  requests to /images/view (images being the controller).

  But this function outputs only a broken image:

  /* images controller (for testing purposes no use of view and layout)
  */
  function view() {
     Configure::write('debug', 0);
     header('Content-type: image/jpeg;');
     echo file_get_contents(img/folder/test.jpg);
  }

  When I don't send the header, I see the binary version of the image.
  What could this possibly be?

 --
 Anupom Syamhttp://syamantics.com/

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Broken image if shown with file_get_contents()

2008-11-02 Thread Giaco

That doesn’t work either. The path is correct, put the output gets
scrambled. I think this is an encoding issue but I can’t work around
it and don’t find anything on the web about it.

Does this function work as expected with your cake installation? (I’m
using UTF8)

On Nov 2, 11:10 am, Anupom [EMAIL PROTECTED] wrote:
 Can you please try with the following code?

     function view() {
         Configure::write('debug', 0);
         header('Content-type: image/jpeg;');
         echo file_get_contents(WWW_ROOT . 'img' . DS . 'folder' . DS .
 'test.jpg');
         exit;
     }





 On Sun, Nov 2, 2008 at 4:36 AM, Giaco [EMAIL PROTECTED] wrote:

  Hello,

  for security reasons and on the fly resizing I route all picture
  requests to /images/view (images being the controller).

  But this function outputs only a broken image:

  /* images controller (for testing purposes no use of view and layout)
  */
  function view() {
     Configure::write('debug', 0);
     header('Content-type: image/jpeg;');
     echo file_get_contents(img/folder/test.jpg);
  }

  When I don't send the header, I see the binary version of the image.
  What could this possibly be?

 --
 Anupom Syamhttp://syamantics.com/

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Broken image if shown with file_get_contents()

2008-11-01 Thread Giaco

Hello,

for security reasons and on the fly resizing I route all picture
requests to /images/view (images being the controller).

But this function outputs only a broken image:

/* images controller (for testing purposes no use of view and layout)
*/
function view() {
Configure::write('debug', 0);
header('Content-type: image/jpeg;');
echo file_get_contents(img/folder/test.jpg);
}

When I don’t send the header, I see the binary version of the image.
What could this possibly be?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---