Giter Club home page Giter Club logo

kohana-gravatar's People

Contributors

mintbridge avatar samsoir avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

kohana-gravatar's Issues

Bug with email method

With the latest commit, line 88, its calling a method 'email' however its a property. Disaster ensues.

defect: default_image($url) doesnt throw error

Seems to be a typo, this section should be changed as follows:
250: throw new Gravatar(printf('The url %s is improperly formatted', $url));
Should read:
250: throw new Gravatar_Exception(printf('The url %s is improperly formatted', $url));

Default config not applied when string name using

If I use something like Gravatar::instance('[email protected]', 'config'), it doesn't load default config, so I must fill all configuration settings. Also, failed Kohana::config() will return FALSE instead of NULL.

Fix:

    elseif (is_string($config))
    {
        if (FALSE === ($config = Kohana::config('gravatar.'.$config)))
            throw new Gravatar_Exception(printf('Gravatar.__construct() , Invalid configuration group name : %s', $config));

        $this->_config = $config + Kohana::config('gravatar.default');
    }

render(): wrong $data format

(I used old view gravatar/image for it)
Default view uses $src and $attr variables, so here is fix for render():

    $data = array('attr' => array(), 'src' => $this->_generate_url());

    if ($this->_attributes)
        $data['attr'] += $this->_attributes;

    $data['attr']['alt'] = $this->_process_alt();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.