Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 11
  1. #1

    Jquery versione Gzipped

    Ciao.
    Domanda
    Vorrei utilizzare la versione Gzipped di jquery
    ma quando la vado a scaricare è + pesante della
    packed quindi presumo che mi perdo qualcosa.

    La domanda devo utilizzare un file .htaccess
    per la compressione o cosa ?


    Without faith, nothing is possible. With it, nothing is impossible
    http://ilwebdifabio.it

  2. #2
    Ciao Wisher,

    io la utilizzo con questo file:

    Codice PHP:

    <?php

        
    /************************************************************************
         * CSS and Javascript Combinator 0.5
         * Copyright 2006 by Niels Leenheer
         *
         * Permission is hereby granted, free of charge, to any person obtaining
         * a copy of this software and associated documentation files (the
         * "Software"), to deal in the Software without restriction, including
         * without limitation the rights to use, copy, modify, merge, publish,
         * distribute, sublicense, and/or sell copies of the Software, and to
         * permit persons to whom the Software is furnished to do so, subject to
         * the following conditions:
         * 
         * The above copyright notice and this permission notice shall be
         * included in all copies or substantial portions of the Software.
         *
         * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
         * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
         * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
         * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
         * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
         * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
         */


        
    $cache       true;
        
    $cachedir dirname(__FILE__) . '/system/cache';
        
    $cssdir   dirname(__FILE__) . '/assets/css';
        
    $jsdir    dirname(__FILE__) . '/assets/scripts';

        
    // Determine the directory and type we should use
        
    switch ($_GET['type']) {
            case 
    'css':
                
    $base realpath($cssdir);
                break;
            case 
    'javascript':
                
    $base realpath($jsdir);
                break;
            default:
                
    header ("HTTP/1.0 503 Not Implemented");
                exit;
        };

        
    $type $_GET['type'];
        
    $elements explode(','$_GET['files']);
        
        
    // Determine last modification date of the files
        
    $lastmodified 0;
        while (list(,
    $element) = each($elements)) {
            
    $path realpath($base '/' $element);
        
            if ((
    $type == 'javascript' && substr($path, -3) != '.js') || 
                (
    $type == 'css' && substr($path, -4) != '.css')) {
                
    header ("HTTP/1.0 403 Forbidden");
                exit;    
            }
        
            if (
    substr($path0strlen($base)) != $base || !file_exists($path)) {
                
    header ("HTTP/1.0 404 Not Found");
                exit;
            }
            
            
    $lastmodified max($lastmodifiedfilemtime($path));
        }
        
        
    // Send Etag hash
        
    $hash $lastmodified '-' md5($_GET['files']);
        
    header ("Etag: \"" $hash "\"");
        
        if (isset(
    $_SERVER['HTTP_IF_NONE_MATCH']) && 
            
    stripslashes($_SERVER['HTTP_IF_NONE_MATCH']) == '"' $hash '"'
        {
            
    // Return visit and no modifications, so do not send anything
            
    header ("HTTP/1.0 304 Not Modified");
            
    header ('Content-Length: 0');
        } 
        else 
        {
            
    // First time visit or files were modified
            
    if ($cache
            {
                
    // Determine supported compression method
                
    $gzip strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
                
    $deflate strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate');
        
                
    // Determine used compression method
                
    $encoding $gzip 'gzip' : ($deflate 'deflate' 'none');
        
                
    // Check for buggy versions of Internet Explorer
                
    if (!strstr($_SERVER['HTTP_USER_AGENT'], 'Opera') && 
                    
    preg_match('/^Mozilla\/4\.0 \(compatible; MSIE ([0-9]\.[0-9])/i'$_SERVER['HTTP_USER_AGENT'], $matches)) {
                    
    $version floatval($matches[1]);
                    
                    if (
    $version 6)
                        
    $encoding 'none';
                        
                    if (
    $version == && !strstr($_SERVER['HTTP_USER_AGENT'], 'EV1')) 
                        
    $encoding 'none';
                }
                
                
    // Try the cache first to see if the combined files were already generated
                
    $cachefile 'cache-' $hash '.' $type . ($encoding != 'none' '.' $encoding '');
                
                if (
    file_exists($cachedir '/' $cachefile)) {
                    if (
    $fp fopen($cachedir '/' $cachefile'rb')) {

                        if (
    $encoding != 'none') {
                            
    header ("Content-Encoding: " $encoding);
                        }
                    
                        
    header ("Content-Type: text/" $type);
                        
    header ("Content-Length: " filesize($cachedir '/' $cachefile));
            
                        
    fpassthru($fp);
                        
    fclose($fp);
                        exit;
                    }
                }
            }
        
            
    // Get contents of the files
            
    $contents '';
            
    reset($elements);
            while (list(,
    $element) = each($elements)) {
                
    $path realpath($base '/' $element);
                
    $contents .= "\n\n" file_get_contents($path);
            }
        
            
    // Send Content-Type
            
    header ("Content-Type: text/" $type);
            
            if (isset(
    $encoding) && $encoding != 'none'
            {
                
    // Send compressed contents
                
    $contents gzencode($contents9$gzip FORCE_GZIP FORCE_DEFLATE);
                
    header ("Content-Encoding: " $encoding);
                
    header ('Content-Length: ' strlen($contents));
                echo 
    $contents;
            } 
            else 
            {
                
    // Send regular contents
                
    header ('Content-Length: ' strlen($contents));
                echo 
    $contents;
            }

            
    // Store cache
            
    if ($cache) {
                if (
    $fp fopen($cachedir '/' $cachefile'wb')) {
                    
    fwrite($fp$contents);
                    
    fclose($fp);
                }
            }
        }    
    ?>
    e nel mio .htaccess

    Codice PHP:
    RewriteRule ^assets/css/(.*\.csscombine.php?type=css&files=$[QSA,L]
    RewriteRule ^assets/scripts/(.*\.jscombine.php?type=javascript&files=$[QSA,L
    Olio Extravergine d'Oliva Magino
    Prodotti tipici: in vendita olio, pesto ligure e altri prodotti alimentari tradizionali.

  3. #3
    Ti ringrazio dello snippet ma
    dovrei cambiare la logica dello script
    su cui sto lavorando approfondirò il
    metodo la prossima volta

    Per adesso mi accontento del file .htaccess
    con queste regole:

    Codice PHP:
    SetOutputFilter DEFLATE
    SetInputFilter DEFLATE
    #the two above compress everything unless excluded below
    SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
    SetEnvIfNoCase Request_URI 
    \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
    SetEnvIfNoCase Request_URI 
    \.pdfno-gzip dont-vary              
    SetEnvIfNoCase Request_URI 
    \.avino-gzip dont-vary             
    SetEnvIfNoCase Request_URI 
    \.movno-gzip dont-vary
    SetEnvIfNoCase Request_URI 
    \.mp3no-gzip dont-vary
    SetEnvIfNoCase Request_URI 
    \.mp4no-gzip dont-vary     
    SetEnvIfNoCase Request_URI 
    \.rmno-gzip dont-vary      
    SetEnvIfNoCase Request_URI 
    \.plistno-gzip dont-vary 
    Segnalo anche questo che +/- ha la stessa logica del tuo snippet.

    Without faith, nothing is possible. With it, nothing is impossible
    http://ilwebdifabio.it

  4. #4
    Praticamente fai tutto tramite .htaccess...

    Non male, gli darò uno sguardo per i prossimi progettini.

    Grazie a te.
    Olio Extravergine d'Oliva Magino
    Prodotti tipici: in vendita olio, pesto ligure e altri prodotti alimentari tradizionali.

  5. #5

  6. #6
    Ah, vero.

    Mi ero ripromesso di utilizzarlo, lo farò.

    Olio Extravergine d'Oliva Magino
    Prodotti tipici: in vendita olio, pesto ligure e altri prodotti alimentari tradizionali.

  7. #7
    Originariamente inviato da Mega69
    Se ti vuoi semplificare la vita usa http://www.packed.it/
    la butto li ... sta per uscire la versione server ... a dirla tutta, è già uscita per PHP ma devo fare gli ultimi tests, poi anche se quella Python WSGI / psp, C#, e Jaxter non saranno pronte, prometto di postarvi la versione PHP (dato che 3 su 3 qui lo utilizzano regolarmente)

    Unico "neo" della versione server di PHP è che ovviamente usa PHP 5, spero siato aggiornati
    Formaldehyde a new Ajax PHP Zero Config Error Debugger

    WebReflection @WebReflection

  8. #8
    Aggiornatissimi, facci sapere quando e dove
    Olio Extravergine d'Oliva Magino
    Prodotti tipici: in vendita olio, pesto ligure e altri prodotti alimentari tradizionali.

  9. #9
    quando: ora
    dove: packed.it



    [edit]
    blog news
    Formaldehyde a new Ajax PHP Zero Config Error Debugger

    WebReflection @WebReflection

  10. #10
    Originariamente inviato da andr3a
    la butto li ... sta per uscire la versione server ... a dirla tutta, è già uscita per PHP ma devo fare gli ultimi tests, poi anche se quella Python WSGI / psp, C#, e Jaxter non saranno pronte, prometto di postarvi la versione PHP (dato che 3 su 3 qui lo utilizzano regolarmente)

    Unico "neo" della versione server di PHP è che ovviamente usa PHP 5, spero siato aggiornati
    Per ASP non c'è nulla ?

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.