Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display image files #126

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from
Open

Commits on Jan 12, 2013

  1. remove unused variable

    KuiKui committed Jan 12, 2013
    Configuration menu
    Copy the full SHA
    9a656fc View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2013

  1. Configuration menu
    Copy the full SHA
    f08ed61 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2013

  1. Merge pull request crew-cr#132 from quochuy/develop

    Email notifications added
    KuiKui committed Mar 27, 2013
    Configuration menu
    Copy the full SHA
    39ca82f View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2013

  1. Configuration menu
    Copy the full SHA
    a6c5bd4 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2013

  1. Fix detection of binary files

    Images (at least PNG) were not detected as binary files.
    
    Removed the sed call from getDiffFilesFromBranch(), and
    replaced it with a PHP explode on '\t' instead of ' '.
    pmartin committed Apr 6, 2013
    Configuration menu
    Copy the full SHA
    6da5ada View commit details
    Browse the repository at this point in the history
  2. getShowFile() now works for binary files.

    Added a execReturnRaw() method, to execute a shell command
    and return its output, without modifying / breaking it.
    
    It uses passthru(), which doesn't modify the output, as opposite
    to exec(), which ignores trailling whitespaces -- which means
    binary files' content gets broken when using 'git show' with
    exec().
    
    Updated getShowFile() to use the new passthru()-base execReturnRaw()
    method, instead of the exec()-based one.
    pmartin committed Apr 6, 2013
    Configuration menu
    Copy the full SHA
    b05a0a1 View commit details
    Browse the repository at this point in the history