Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Update readme #8

Open
wants to merge 283 commits into
base: master
Choose a base branch
from
Open
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Mar 20, 2009

  1. [FIX] SvnChainAdapter: It is possible for a single Subversion commit

          to include multiple copies/renames of a directory.
    
          When selected path for the parent_svn, choose the best (longest)
          path among all possible candidates.
    Robin Luckey committed Mar 20, 2009
    Configuration menu
    Copy the full SHA
    6b56848 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2009

  1. [FIX] BzrAdapter: cat_file(): Fix case where filename includes a sing…

    …le quote
    Robin Luckey committed Apr 2, 2009
    Configuration menu
    Copy the full SHA
    eca9bfc View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2009

  1. Configuration menu
    Copy the full SHA
    6b8c058 View commit details
    Browse the repository at this point in the history
  2. [NEW] Hg: Implement export

    Robin Luckey committed Apr 23, 2009
    Configuration menu
    Copy the full SHA
    6e419a1 View commit details
    Browse the repository at this point in the history
  3. [NEW] Bzr: Implement export

    Robin Luckey committed Apr 23, 2009
    Configuration menu
    Copy the full SHA
    0f25bca View commit details
    Browse the repository at this point in the history

Commits on May 13, 2009

  1. [NEW] GitParser can parse a generic git log (that is, doesn't require

          our custom formatter).
    
          Note that this parser cannot be used with Ohloh because it does
          not emit the SHA1 hash of modified blobs.
    Robin Luckey committed May 13, 2009
    Configuration menu
    Copy the full SHA
    c4f026e View commit details
    Browse the repository at this point in the history
  2. [FIX] Git: Prevent merge commits from being duplicated.

          This is sort of a hack, caused by using git-whatchanged to
          generate our git logs.
    
          Long-term, we should try to get away from git-whatchanged, but I
          couldn't find a combination of options to git-log that would
          provide the needed blob SHA1s for all of the changed files.
    Robin Luckey committed May 13, 2009
    Configuration menu
    Copy the full SHA
    00854a9 View commit details
    Browse the repository at this point in the history
  3. [CHANGE] Svn: Relax validation rules for usernames to allow email add…

    …resses.
    Robin Luckey committed May 13, 2009
    Configuration menu
    Copy the full SHA
    e00bde3 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2009

  1. Configuration menu
    Copy the full SHA
    06b336d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59bafda View commit details
    Browse the repository at this point in the history

Commits on May 21, 2009

  1. [FIX] Svn: Fix a complicated directory renaming case:

          If a directory is renamed, and then the branch we are tracking
          is created within that directory *during the same commit*, then
          the parser would mistakenly think that the branch had been moved.
    Robin Luckey committed May 21, 2009
    Configuration menu
    Copy the full SHA
    d40ab0b View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2009

  1. [CHANGE] Svn: Increase the maximum length of a branch_name to 80 char…

    …acters
    Robin Luckey committed Jun 12, 2009
    Configuration menu
    Copy the full SHA
    148f742 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2009

  1. [FIX] HgAdapter: Speed improvement for cat_file_parent().

          New implementation requires only 2 shell commands (rather than 3).
    Robin Luckey committed Jul 7, 2009
    Configuration menu
    Copy the full SHA
    d600daa View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2009

  1. [FIX] BzrAdapter: Support bzr 1.17

    Add the --include-merges flag to the `bzr log` command.
    Old bzr 1.12 included merges by default; the upgrade requires the flag.
    Robin Luckey committed Aug 7, 2009
    Configuration menu
    Copy the full SHA
    f42e73c View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2009

  1. [FIX] BzrAdapter: rename + modify in single commit

    It is possible for Bzr to report that a file has been renamed
    and then modified in a single commit.
    
    This breaks Ohloh, because a 'modify' action triggers a
    comparison between the old and new files -- but since this file
    has also been renamed, the old file does not exist (at least not
    where Ohloh expects it).
    
    We adapt the Bazaar system to what Ohloh expects: A rename
    becomes a simple delete and add, and any subsequent modification
    is ignored.
    Robin Luckey committed Aug 11, 2009
    Configuration menu
    Copy the full SHA
    44f5785 View commit details
    Browse the repository at this point in the history
  2. [FIX] HgAdapter: Compatibility with hg 1.2.1

    Hg now sometimes returns a trailing "+" character after a revid.
    We need to strip this away.
    Robin Luckey committed Aug 11, 2009
    Configuration menu
    Copy the full SHA
    18b8f0d View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2009

  1. [FIX] as of SVN 1.6.5 or earlier, svn info returns an error code when

    doing svn info on missing files. Existing code, e.g. deepen_diff(),
    relies on this returning an empty result with a success code.
    Andy Verprauskus committed Oct 19, 2009
    Configuration menu
    Copy the full SHA
    c139ca7 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2009

  1. [FIX] Use Bzr Author name when available

    Resolves http://thechaw.com/ohloh_scm/tickets/view/19
    
    Parse the author name as well as the committer name
    from the Bzr log.
    Robin Luckey committed Oct 27, 2009
    Configuration menu
    Copy the full SHA
    43c1612 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2009

  1. OH-104 Dont auto-descend beyond /trunk directories

    Andy Verprauskus committed Nov 2, 2009
    Configuration menu
    Copy the full SHA
    95331b7 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' of [email protected]:ohloh_scm

    Andy Verprauskus committed Nov 2, 2009
    Configuration menu
    Copy the full SHA
    876b2b5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e5a10dd View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2009

  1. [FIX] restict_url_to_trunk fails if already trunk

    Add a guard to restrict_url_to_trunk() so that it will
    not do any work if the URL already ends with /trunk
    Robin Luckey committed Nov 5, 2009
    Configuration menu
    Copy the full SHA
    a6e3b65 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2010

  1. [FIX] Escape ">" character in Hg filenames

    Robin Luckey committed Jan 14, 2010
    Configuration menu
    Copy the full SHA
    f5d6ed8 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2010

  1. [FIX] Escape "|" character in Hg filenames

    Robin Luckey committed May 20, 2010
    Configuration menu
    Copy the full SHA
    5d5d1f3 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2010

  1. Fixed a string escape bug for hg

    Robert Schultz committed Nov 5, 2010
    Configuration menu
    Copy the full SHA
    6851c5c View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2010

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

Commits on Dec 21, 2010

  1. Specify module name when using CVS test repository

    During production operation, we always force users to specify
    a module name. During test our tests, we are using an empty string
    as the module name.
    
    CVSNT has varying behavior when the module name is left empty.
    In some builds (Mac development machines), leaving out the module
    name causes rlog to include the CVSROOT directory, while in other
    builds (production machines) the CVSROOT directory is excluded.
    
    The presence or absence of the CVSROOT directory causes a unit test
    to pass or fail with different cvsnt builds.
    
    The flaw here is in the test harness: it should not leave the module
    name empty, and thus the CVSROOT directory should never be logged.
    
    I have modified the test harness to specify the CVS module name
    everywhere. I have modified the expected responses from CVS to
    exclude the CVSROOT directory.
    robinluckey committed Dec 21, 2010
    Configuration menu
    Copy the full SHA
    47135ef View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2011

  1. Perform Bzr revert before push, pull

    This is a backport of Ohloh commit a2d86034. It has been live in
    production since Nov 2009, but was never applied to the lib/scm
    repository.
    robinluckey committed Jan 11, 2011
    Configuration menu
    Copy the full SHA
    c3de1b0 View commit details
    Browse the repository at this point in the history
  2. support lp: syntax in Bzr

    This is a backport of Ohloh commit f9b0c4be, ticket OTWO-16.
    robinluckey committed Jan 11, 2011
    Configuration menu
    Copy the full SHA
    b662a68 View commit details
    Browse the repository at this point in the history
  3. Enables :ext protocol for CVS

    This is a backport of Ohloh commit fa1c6f7d, OTWO-55
    robinluckey committed Jan 11, 2011
    Configuration menu
    Copy the full SHA
    e371602 View commit details
    Browse the repository at this point in the history
  4. Fixes incorrect time format in Git parser test

    Backport of Ohloh commit 4341cd0c.
    robinluckey committed Jan 11, 2011
    Configuration menu
    Copy the full SHA
    b3b3c57 View commit details
    Browse the repository at this point in the history
  5. OTWO-171 Fixes hg filenames that include '#' char

    Rolls back 6851c5c and applies alternate fix. Unit tests now pass.
    robinluckey committed Jan 11, 2011
    Configuration menu
    Copy the full SHA
    e5a6ea9 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2011

  1. Adds compatibility with hg 1.7.2

    The error text returned by `hg cat` changed in recent hg builds.
    
    This patch allows ohloh_scm to accept either old or new error text.
    robinluckey committed Jan 12, 2011
    Configuration menu
    Copy the full SHA
    98dcc5d View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2011

  1. OTWO-277 Enables GitAdapter to walk trunk only

    Rather than always return all commits on all branches, the GitAdapter
    can now restrict its result to show only 'trunk' (--first-parent)
    commits.
    
    NOTE 1. This version of ohloh_scm will not work with Ohloh.
    
    This patch introduces a change to the public interface, which has only
    been implemented on the GitAdapter. All other adapters (and Ohloh
    itself) must now be updated to match the new interface.
    
    NOTE 2. This patch introduces the --always flag to git-whatchanged.
    
    To correct the negative line count issue, Ohloh must now account merges,
    and include the line count delta from a merge commit's first parent. So
    as part of the work to fix OTWO-31, Ohloh will begin reporting merge
    commits for the first time.
    
    Previously, if a merge commit caused no changes at all to the code tree,
    it would be excluded from the list of commits seen by ohloh_scm. Since
    Ohloh ignored all merge commits anyway, this was OK. That will change.
    
    It is confusing to return some merges (those that have code changes) and
    not others (those that do not have code changes). Therefore, we will now
    return *all* merge commits to Ohloh, and thus we use the --always flag.
    robinluckey committed Jan 13, 2011
    Configuration menu
    Copy the full SHA
    b7f6ea7 View commit details
    Browse the repository at this point in the history
  2. OTWO-277 Update all adapters to use new interface

    All adapters now accept a hash of options as the sole parameter
    to the commits() methods.
    robinluckey committed Jan 13, 2011
    Configuration menu
    Copy the full SHA
    b5515ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6f1e16c View commit details
    Browse the repository at this point in the history
  4. OTWO-277 Fix bug revealed by Ohloh integration test

    Ohloh testing revealed a bug in HgAdapter.each_commit().
    
    I've added a unit test to cover the problem.
    robinluckey committed Jan 13, 2011
    Configuration menu
    Copy the full SHA
    053d35d View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2011

  1. OTWO-278 Updates HgAdapter to support :trunk_only

    Robin Luckey committed Jan 25, 2011
    Configuration menu
    Copy the full SHA
    f834f8e View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2011

  1. OTWO-344 Allows Bzr revision-ids to include ':' character

    It is possible for a bzr revision-id to include a ':' character.
    We've been using ':' as a parsing delimiter, so such revision-ids
    caused problems. Fixed.
    Robin Luckey committed Jan 27, 2011
    Configuration menu
    Copy the full SHA
    81950c1 View commit details
    Browse the repository at this point in the history
  2. OTWO-285 Updates BzrAdapter to support :trunk_only

    Robin Luckey committed Jan 27, 2011
    Configuration menu
    Copy the full SHA
    86d106d View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2011

  1. Merge branch 'master' of github.com:blackducksw/ohloh_scm

    Robin Luckey committed Jan 28, 2011
    Configuration menu
    Copy the full SHA
    e6fc68d View commit details
    Browse the repository at this point in the history
  2. OTWO-351 Escape backtick char in Hg filenames

    Robin Luckey committed Jan 28, 2011
    Configuration menu
    Copy the full SHA
    4daf07f View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2011

  1. OTWO-443: Fixes GitStyledParser to support empty commits

    If a commit did not contain any changes at all, then the GitStyledParser
    would fail to parse the commit.
    
    When changes are present, `git whatchanged` inserts an extra newline.
    When changes are not present, we don't get the changes listed, and we
    also don't get the extra newline.
    
    That newline was required to trigger the parser to advance states.
    
    I've added an explicit newline in our log format string to guarantee
    that we'll always get at least one newline. If we get two, that's OK.
    
    At some point we should probably get rid of GitStyledParser completely,
    and use something more reliable like `git cat-file` or `git
    fast-export`.
    Robin Luckey committed Feb 18, 2011
    Configuration menu
    Copy the full SHA
    df5a52c View commit details
    Browse the repository at this point in the history
  2. RAGE! Do not commit your punk logging code...

    Robin Luckey committed Feb 18, 2011
    Configuration menu
    Copy the full SHA
    d8070b0 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2011

  1. Removed a catch for an exception that shouldn't be caught and eaten. …

    …Fail fast.
    Robert Schultz committed Mar 14, 2011
    Configuration menu
    Copy the full SHA
    fd5a2f9 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2011

  1. Fixed an SVN bug introduced in the last commit by exposing an excepti…

    …on that was caught and eaten before
    
    Basically in a previous changed I removed an exception catch for 'Not a valid URL'. Turns out that the misc.rb is_directory() method relied on the exception being eaten.
    This commit adds proper exception catching for this now exposed error message and handles it correctly.
    Robert Schultz committed Mar 25, 2011
    Configuration menu
    Copy the full SHA
    3131c05 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2011

  1. OTWO-579 Use read-only URLs when possible

    If the user supplies a read-write Github URL, transparently substitute a
    read-only URL. This avoids an unwanted (and unhandled) password prompt.
    Robin Luckey committed Apr 12, 2011
    Configuration menu
    Copy the full SHA
    117b36c View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2011

  1. OTWO-623 Fixes incorrect list of diffs for null git merges

    Whenever a git merge commit has a resulting tree identical to its
    first parent's tree, the list of diffs should be empty.
    
    However, a bug in our commit parser caused us to return the set of
    diffs relative to the second parent, instead of the correct empty list.
    
    I could not invent a method to force `git whatchanged` to do what we
    want, so I surrendered, and instead I manually patch the result after
    the fact.
    Robin Luckey committed Apr 25, 2011
    Configuration menu
    Copy the full SHA
    ffef61d View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2011

  1. OTWO-208 Ignore 'fatal signal 11' from all CVS servers

    We have always ignored 'fatal signal 11' when it is returned from
    eclipse.org in response to a `cvs ls` command. We do this because
    eclipse.org *always* returns this error, even when everything is OK.
    
    As it turns out, more CVS servers than just eclipse.org do this. There
    is probably a particular version or configuration of CVS that causes
    this.
    
    The result is that many CVS repositories cannot be processed by Ohloh
    because we treat these errors as fatal.
    
    Let's simply accept 'fatal signal 11' as standard operating procedure,
    and always ignore it when it is returned by `cvs ls`.
    Robin Luckey committed Jun 17, 2011
    Configuration menu
    Copy the full SHA
    6a010e3 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2011

  1. OTWO-627 Escape '$' characters in hg filenames

    Robin Luckey committed Jun 20, 2011
    Configuration menu
    Copy the full SHA
    ccbcc2d View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2011

  1. OTWO-840 Removes redundant log query from BzrAdapter.cat_file_parent

    This patch allows BzrAdapter to process repositories that include ghost
    commits, and should also improve line count performance considerably.
    
    BzrAdapter's cat_file_parent() was needlessly complicated. To determine
    the revision ID of a parent commit, we would request the log for that
    commit -- using the revision ID! -- and then parse the revision ID from
    the resulting log fragment. This work was completely pointless.
    
    Worse, in the case of a ghost commit, the parent commit is not actually
    present in the repository. This would cause the log request to fail, and
    thus cat_file_parent() would fail.
    
    Ohloh doesn't actually care what the ghost commit contains; we were
    trying to read it simply to find its ID (which we already know, and
    worse, won't use). By removing the redundant ID lookup, Ohloh can
    successfully process repositories that contain ghost commits.
    
    I spent some time trying to create a test repostiory that includes a
    ghost commit, but this is rather involved. You can't do it using the bzr
    CLI alone. The most common source of ghost commits seems to be some
    complex interaction with bzr svn-import.
    
    I manually verified that this fix works with repository `lp:bzr` itself,
    which has a ghost commit as a parent of revo 897.
    Robin Luckey committed Jun 29, 2011
    Configuration menu
    Copy the full SHA
    455a302 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2011

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

Commits on Aug 3, 2011

  1. Fixed processing multiple file elements under one Op element.

    Eg
      <modified>
        <file..
        <file..
      <modified>
      should create two diff records.
    amujumdar committed Aug 3, 2011
    Configuration menu
    Copy the full SHA
    be60224 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c892897 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    940da31 View commit details
    Browse the repository at this point in the history
  4. Fixes duplicate merge commits.

    Yields merge commit on </log> tag and not </merge> tag.
    amujumdar committed Aug 3, 2011
    Configuration menu
    Copy the full SHA
    486a700 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    85ddb3b View commit details
    Browse the repository at this point in the history
  6. Fixes tests, to accomodate correct branch/merge commit ordering.

    Funny business with commit ordering has been fixed by BzrXmlParser.
    Now, when we request that Bzr iterate commits in the '--forward' direction,
    we correctly get the branch commits *before* the merge that brought them in.
    amujumdar committed Aug 3, 2011
    Configuration menu
    Copy the full SHA
    bbe92a1 View commit details
    Browse the repository at this point in the history
  7. Fixes tests to match xmllog output.

    After log parsing, commit messages don't have trailing newline anymore.
    amujumdar committed Aug 3, 2011
    Configuration menu
    Copy the full SHA
    f367d38 View commit details
    Browse the repository at this point in the history
  8. Fixes parsing of multi-level nested branch/merge.

    Adds bzr_with_nested_branches repository for tests that has two
    level nested branching and merging.
    amujumdar committed Aug 3, 2011
    Configuration menu
    Copy the full SHA
    dbb5c09 View commit details
    Browse the repository at this point in the history
  9. Removes debugging code.

    amujumdar committed Aug 3, 2011
    Configuration menu
    Copy the full SHA
    0efa486 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    79dc903 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2011

  1. Replaces systemu with a newer version of open4; uses threads to start…

    … reading stdout/err immediately.
    amujumdar committed Sep 1, 2011
    Configuration menu
    Copy the full SHA
    d92cf65 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    afe9140 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a082363 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2011

  1. Configuration menu
    Copy the full SHA
    5169380 View commit details
    Browse the repository at this point in the history
  2. Removes systemu library.

    amujumdar committed Sep 5, 2011
    Configuration menu
    Copy the full SHA
    b56f213 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2011

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

Commits on Sep 8, 2011

  1. OTWO-969 - Implements bzrlib based bzr adapter.

    This adapter uses bzrlib via rubypython gem. Shelling out bzr commands
    has a lot of overhead including Python interpreter startup for each
    command. Getting data via bzrlib APIs is much faster.
    amujumdar committed Sep 8, 2011
    Configuration menu
    Copy the full SHA
    378e4ad View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2011

  1. Fixes OTWO-988, completely ignores kind_changed entries in the log.

    bzr generates kind_changed entries when file-kind changes, e.g
    symlink changed to a file. These entries are now completely
    ignored. Tests are added for ignoring directory entries and
    kind_changed entries.
    amujumdar committed Sep 14, 2011
    Configuration menu
    Copy the full SHA
    8b804af View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2011

  1. Updates bzrlib based adapter to use APIs only (instead of cmd_* class…

    …es).
    
    cmd_* based adapter was leaking memory. Details are here -
    https://answers.launchpad.net/bzr/+question/173096
    amujumdar committed Oct 6, 2011
    Configuration menu
    Copy the full SHA
    efae60b View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2011

  1. Configuration menu
    Copy the full SHA
    655f1ef View commit details
    Browse the repository at this point in the history
  2. Implements IPC/pipe based bzr adapter.

    This commit changes the BzrlibAdapter to use an out-of-process
    Python process serving bzr commands. bzrlib_pipe_server implements
    a command loop, where it expects commands on stdin, sends status/
    control-info on stderr and actual data on stdout. BzrlibAdapter
    acts as a client.
    amujumdar committed Oct 7, 2011
    Configuration menu
    Copy the full SHA
    286cc46 View commit details
    Browse the repository at this point in the history
  3. Implements IPC/pipe based bzr adapter.

    This commit changes the BzrlibAdapter to use an out-of-process
    Python process serving bzr commands. bzrlib_pipe_server implements
    a command loop, where it expects commands on stdin, sends status/
    control-info on stderr and actual data on stdout. BzrlibAdapter
    acts as a client.
    amujumdar committed Oct 7, 2011
    Configuration menu
    Copy the full SHA
    ee0d7aa View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c790bb0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9041bcf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e07c512 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0b55554 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4250995 View commit details
    Browse the repository at this point in the history
  9. Removes unused code.

    amujumdar committed Oct 7, 2011
    Configuration menu
    Copy the full SHA
    045a80c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    13cd276 View commit details
    Browse the repository at this point in the history
  11. Fixes slice parameter.

    amujumdar committed Oct 7, 2011
    Configuration menu
    Copy the full SHA
    fa63b76 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    cc0ba85 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2011

  1. OTWO-1023 - Fixes BzrXmlParser to capture first author when present.

    BzrXmlParser depends on bzr's xmloutput plugin. This plugin does not
    emit authors. See the bug report for info -
    https://bugs.launchpad.net/bzr-xmloutput/+bug/618307
    We have patched the xmloutput plugin and have submitted a patch to
    xmloutput plugin. Meanwhile, we'll deploy patched version on slaves.
    amujumdar committed Oct 11, 2011
    Configuration menu
    Copy the full SHA
    f5351ac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    19761da View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2 from blackducksw/bzr_author_fix

    OTWO-1023 - Bzr xml parser is omitting author attribute.
    amujumdar committed Oct 11, 2011
    Configuration menu
    Copy the full SHA
    0ea04e2 View commit details
    Browse the repository at this point in the history
  4. OTWO-1043 Fixes :after functionality in BzrAdapter

    If the commit specified by the :after option was a merge commit, then
    the BzrAdapter would incorrectly return some commits that precede the
    :after commit.
    
    Bzr does not natively support a "show me all commits after X" option.
    Thus, we request all commits *beginning* with X, then attempt to remove
    X itself from the result set.
    
    The problem here is that if X is a merge commit, then the Bzr log will
    include not just X but also all of the branch commits brought in by X.
    These branch commits will be emitted by the BzrXmlParser before X.
    
    So rather than simply delete X from the result set, we now delete X *and
    all prior commits* from the result set.
    Robin Luckey committed Oct 11, 2011
    Configuration menu
    Copy the full SHA
    5a9e88f View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1 from blackducksw/bzr_ipc_adapter

    Bzr ipc adapter
    amujumdar committed Oct 11, 2011
    Configuration menu
    Copy the full SHA
    c025d42 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    aa67178 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4593645 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d387752 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1ee83f3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8383f6d View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2011

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

Commits on Oct 13, 2011

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

Commits on Nov 21, 2011

  1. updated readme with markdown syntax and instructions for installing t…

    …he patched xmloutput plugin for bazaar
    jared committed Nov 21, 2011
    Configuration menu
    Copy the full SHA
    4cef282 View commit details
    Browse the repository at this point in the history
  2. Renamed the readme file

    I renamed the readme file so that GitHub will display it nicely.
    jared committed Nov 21, 2011
    Configuration menu
    Copy the full SHA
    f0e7ea6 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2011

  1. OTWO-415 First pass at using python library for hg cat

    Robin Luckey committed Nov 30, 2011
    Configuration menu
    Copy the full SHA
    29c311d View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2011

  1. OTWO-415 Rake passes using HglibAdapter

    Robin Luckey committed Dec 1, 2011
    Configuration menu
    Copy the full SHA
    20d25e2 View commit details
    Browse the repository at this point in the history
  2. Fixes "\n" vs "\t" error in server output

    Robin Luckey committed Dec 1, 2011
    Configuration menu
    Copy the full SHA
    50572a9 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2011

  1. OTWO-204 Allow spaces in Subversion file paths

    Robin Luckey committed Dec 5, 2011
    Configuration menu
    Copy the full SHA
    7528067 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2011

  1. Merge branch 'OTWO-415'

    Robin Luckey committed Dec 15, 2011
    Configuration menu
    Copy the full SHA
    98133f1 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2011

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

Commits on Dec 22, 2011

  1. OTWO-1177 Fixes non-ascii filename handling in BzrlibAdapter."

    Also adds an example file to test/repositories/bzr repository
    and a test.
    amujumdar committed Dec 22, 2011
    Configuration menu
    Copy the full SHA
    6269305 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2012

  1. OTWO-1206 Ruby 1.9.2 compatibility

    No longer compatible with Ruby 1.8.7
    Robin Luckey committed Jan 6, 2012
    Configuration menu
    Copy the full SHA
    92e6ec4 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2012

  1. Merge branch 'OTWO-1177'

    amujumdar committed Jan 18, 2012
    Configuration menu
    Copy the full SHA
    9180c58 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2012

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

Commits on Jan 27, 2012

  1. OTWO-1277 Replaces erronenous bzr 'pull' with 'revert'

    Robin Luckey committed Jan 27, 2012
    Configuration menu
    Copy the full SHA
    4991eb4 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2012

  1. OTWO-1412 Upgrades Bzr repositories after every pull

    We can't know when it's required, but it's fatal to miss it,
    So we force a `bzr upgrade` after every pull.
    Robin Luckey committed Mar 9, 2012
    Configuration menu
    Copy the full SHA
    68b9ecc View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from blackducksw/OTWO-1412

    OTWO-1412
    amujumdar committed Mar 9, 2012
    Configuration menu
    Copy the full SHA
    3b24ee8 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2012

  1. OTWO-1412 Initializes bzr properly and sets up logger.

    If bzr logger is not set, warning messages generated by bzr get
    suppressed and an error is logged to stderr instead, telling us
    that logger is not initialized.
    
    This was causing bzr Sloc jobs to die or hang in some cases.
    amujumdar committed Apr 4, 2012
    Configuration menu
    Copy the full SHA
    fa9af52 View commit details
    Browse the repository at this point in the history
  2. OTWO-1412 Redirects logger to os.devnull

    Also removes previous fix for this ticket that force upgraded
    repos.
    amujumdar committed Apr 4, 2012
    Configuration menu
    Copy the full SHA
    8be6be3 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2012

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

Commits on Jun 1, 2012

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

Commits on Jun 3, 2012

  1. Merge pull request #4 from rapbhan/master

    OTWO-1489 Added a validation for SVN Repo URL if empty
    amujumdar committed Jun 3, 2012
    Configuration menu
    Copy the full SHA
    b0aff9f View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2012

  1. Stream git commit log to a file before parsing

    Commit log for large git repositories doesn't fit in memory. We
    started seeing failing import jobs for large git repositories.
    This patch writes the log to a file before parsing it so that we
    don't hold the entire log in memory.
    amujumdar committed Jul 12, 2012
    Configuration menu
    Copy the full SHA
    8dde2ec View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2013

  1. OTWO-2738 Bump up git version to 1.8.2 and fix nothing_to_commit check

    With the updated Git client the status message pattern has changed
    from 'nothing to commit *' to 'nothing to commit, *'.
    So this fix will make our library to work across the older and newer versions.
    Sathishkumar Natesan committed Aug 21, 2013
    Configuration menu
    Copy the full SHA
    7d1159b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #6 from nnsathish/master

    OTWO-2738 Bump up git version to 1.8.2 and fix nothing_to_commit check
    amujumdar committed Aug 21, 2013
    Configuration menu
    Copy the full SHA
    b814c99 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2013

  1. Adds Ohloh partner badge

    amujumdar committed Oct 4, 2013
    Configuration menu
    Copy the full SHA
    eb55711 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #8 from amujumdar/master

    Adds Ohloh partner badge
    amujumdar committed Oct 4, 2013
    Configuration menu
    Copy the full SHA
    6490fb7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    95bba0a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    17e2556 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2014

  1. OTWO-2996 Default to EPOCH time when the git parser don't find a date

    Currently, it defaults to Time.now.utc which is not reasonably fair.
    Also git commands like git log/show defaults to epoch time.
    Sathishkumar Natesan committed Jan 23, 2014
    Configuration menu
    Copy the full SHA
    a8782a6 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2014

  1. OTWO-2996 Use strict time format check using Time.rfc2822 to handle b…

    …ogus dates
    Sathishkumar Natesan committed Jan 27, 2014
    Configuration menu
    Copy the full SHA
    26becf9 View commit details
    Browse the repository at this point in the history
  2. OTWO-2996 Rename parse_commit_date to parse_date as it can be used to…

    … parse author/committer date
    Sathishkumar Natesan committed Jan 27, 2014
    Configuration menu
    Copy the full SHA
    becdca2 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2014

  1. Merge pull request #11 from nnsathish/master

    OTWO-2996 Default to EPOCH time when the git parser don't find a date
    amujumdar committed Jan 28, 2014
    Configuration menu
    Copy the full SHA
    5f5ef92 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2014

  1. Change Git Validation to convert https and http protocols for git and…

    … web urls to git protocol
    Peter Degen-Portnoy committed Feb 21, 2014
    Configuration menu
    Copy the full SHA
    f32ef97 View commit details
    Browse the repository at this point in the history
  2. Update comment to reflect behavior of normalize_url method

    Peter Degen-Portnoy committed Feb 21, 2014
    Configuration menu
    Copy the full SHA
    09d419f View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2014

  1. Merge pull request #12 from blackducksw/OTWO-3048

    Change Git Validation to convert https and http protocols for git and web urls to git protocol
    Peter Degen-Portnoy committed Feb 24, 2014
    Configuration menu
    Copy the full SHA
    d20a8de View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2014

  1. Normalize_Branch_Name: set the branch name when normalizing an SvnAda…

    …pter
    
    recalc_branch_name has to handle exceptions thrown when the URL is really a file system
    Peter Degen-Portnoy committed Mar 6, 2014
    Configuration menu
    Copy the full SHA
    f310453 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2014

  1. Merge pull request #13 from blackducksw/Normalize_Branch_Name

    Normalize_Branch_Name: set the branch name when normalizing an SvnAdapter
    Peter Degen-Portnoy committed Mar 10, 2014
    Configuration menu
    Copy the full SHA
    ec277f1 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2014

  1. Normalize_Branch_Name Correct condition in recalc_branch_name

    Remove unneeded check for @branch_name in svn/misc.rb
    
    Handle file system based SVN URLs better
    Peter Degen-Portnoy committed Mar 11, 2014
    Configuration menu
    Copy the full SHA
    2e5d88f View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2014

  1. Merge pull request #14 from blackducksw/Normalize_Branch_Name

    Normalize_Branch_Name: Correct condition in recalc_branch_name
    Peter Degen-Portnoy committed Mar 13, 2014
    Configuration menu
    Copy the full SHA
    2fb51f1 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2014

  1. OTWO-2996 Default to EPOCH time when the git parser don't find a date

    Currently, it defaults to Time.now.utc which is not reasonably fair.
    Also git commands like git log/show defaults to epoch time.
    Sathishkumar Natesan authored and Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    b1b0e1e View commit details
    Browse the repository at this point in the history
  2. OTWO-2996 Use strict time format check using Time.rfc2822 to handle b…

    …ogus dates
    Sathishkumar Natesan authored and Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    36381a6 View commit details
    Browse the repository at this point in the history
  3. OTWO-2996 Rename parse_commit_date to parse_date as it can be used to…

    … parse author/committer date
    Sathishkumar Natesan authored and Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    1601672 View commit details
    Browse the repository at this point in the history
  4. Change Git Validation to convert https and http protocols for git and…

    … web urls to git protocol
    Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    969091f View commit details
    Browse the repository at this point in the history
  5. Update comment to reflect behavior of normalize_url method

    Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    00a65c2 View commit details
    Browse the repository at this point in the history
  6. Normalize_Branch_Name: set the branch name when normalizing an SvnAda…

    …pter
    
    recalc_branch_name has to handle exceptions thrown when the URL is really a file system
    Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    1c371ca View commit details
    Browse the repository at this point in the history
  7. Normalize_Branch_Name Correct condition in recalc_branch_name

    Remove unneeded check for @branch_name in svn/misc.rb
    
    Handle file system based SVN URLs better
    Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    4d46a00 View commit details
    Browse the repository at this point in the history
  8. Update library to run on Ruby 1.9

    Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    6c53eec View commit details
    Browse the repository at this point in the history
  9. Add encoding specifier the BZR test files

    Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    85e71bf View commit details
    Browse the repository at this point in the history
  10. Fix merge conflict

    Peter Degen-Portnoy committed Jul 17, 2014
    Configuration menu
    Copy the full SHA
    46c909d View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2014

  1. Fix test errors by updating SVN regex

    These changes update the Ohloh SCM so that it
    works with Ubuntu 14 and the current versions
    of the SCM libraries.
    Peter Degen-Portnoy committed Aug 14, 2014
    Configuration menu
    Copy the full SHA
    2c2ac14 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2014

  1. OTWO-3206: Use cvs test repositories as a tarball

    This is to support filenames with invalid utf8 encoding in test
    repositories. If the repository is not tarballed, the filenames would be
    read by the rake task and throw an exception.
    notalex committed Aug 31, 2014
    Configuration menu
    Copy the full SHA
    cad58ef View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2014

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

Commits on Sep 11, 2014

  1. Configuration menu
    Copy the full SHA
    6147fb8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #16 from notalex/OTWO-3218

    OTWO-3218: Fix hung processes due to full io buffers
    Peter Degen-Portnoy committed Sep 11, 2014
    Configuration menu
    Copy the full SHA
    17bb968 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2014

  1. Merge pull request #15 from notalex/OTWO-3206

    Otwo 3206
    Peter Degen-Portnoy committed Sep 12, 2014
    Configuration menu
    Copy the full SHA
    097c7fa View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2014

  1. Configuration menu
    Copy the full SHA
    3a15341 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #18 from notalex/OTWO-3222

    OTWO-3222: Fix svn checkout failures during svn-git conversion
    Peter Degen-Portnoy committed Oct 2, 2014
    Configuration menu
    Copy the full SHA
    a2e4675 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2014

  1. Configuration menu
    Copy the full SHA
    8dd490b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #19 from notalex/OTWO-3206

    OTWO-3206: Fix utf-8 encoding issues for svn and git
    Peter Degen-Portnoy committed Oct 8, 2014
    Configuration menu
    Copy the full SHA
    3d8046d View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2014

  1. OTWO-3236 Fix SVN Failing Jobs (SlocJob)

    * Recently when using svn 1.8.8 and encountering a new directory change
    the expection wasn't handled and it was returning a non-zero exit code
    * Earlier in 1.6.6, it was returning 0 as exit code and hence it wasn't occuring
    * Now, the exception message has been updated matching the regex
    padmanabhanr committed Oct 9, 2014
    Configuration menu
    Copy the full SHA
    9da9218 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #20 from padmanabhanr/OTWO-3236

    OTWO-3236 Fix SVN Failing Jobs (SlocJob)
    Peter Degen-Portnoy committed Oct 9, 2014
    Configuration menu
    Copy the full SHA
    12027c0 View commit details
    Browse the repository at this point in the history
  3. OTWO-3248: Convert Ohloh SCM into a gem

    The function url_regex needs to match "@" in urls to support Ohloh's
    tests. Since rvm gem paths will have gemset@ruby pattern, @ can be a
    part of url for repositories inside this library's test folder.
    notalex committed Oct 9, 2014
    Configuration menu
    Copy the full SHA
    8154441 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2014

  1. Merge pull request #21 from notalex/OTWO-3248

    OTWO-3248: Convert Ohloh SCM into a gem
    Peter Degen-Portnoy committed Oct 14, 2014
    Configuration menu
    Copy the full SHA
    45a4225 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2014

  1. Update version.rb

    Version 1.0 was the long-working version of this library running on Ruby 1.8.7 on CentOS 5.x.  Version 2 is the new release running on Ruby 1.9.3 with updated versions of the SCM CLI's.
    Peter Degen-Portnoy committed Oct 15, 2014
    Configuration menu
    Copy the full SHA
    76cb530 View commit details
    Browse the repository at this point in the history
  2. Update ohloh_scm.gemspec

    Change email to Open Hub contact email
    Peter Degen-Portnoy committed Oct 15, 2014
    Configuration menu
    Copy the full SHA
    ee93e37 View commit details
    Browse the repository at this point in the history
  3. Rename library to ohloh_scm

    Peter Degen-Portnoy committed Oct 15, 2014
    Configuration menu
    Copy the full SHA
    9da1b85 View commit details
    Browse the repository at this point in the history
  4. Update gemspec to build gem correctly

    Peter Degen-Portnoy committed Oct 15, 2014
    Configuration menu
    Copy the full SHA
    528b35b View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2014

  1. Configuration menu
    Copy the full SHA
    b4043f8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #22 from notalex/OTWO-3248

    Rename Scm modules to OhlohScm
    Peter Degen-Portnoy committed Oct 16, 2014
    Configuration menu
    Copy the full SHA
    05e3e17 View commit details
    Browse the repository at this point in the history
  3. Update to version 2.0.1

    Peter Degen-Portnoy committed Oct 16, 2014
    Configuration menu
    Copy the full SHA
    7da779e View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2016

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

Commits on Apr 12, 2016

  1. Configuration menu
    Copy the full SHA
    86eb16d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bfda2ba View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8732a56 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2016

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

Commits on Apr 15, 2016

  1. Merge pull request #24 from santhanakarthikeyan/replace_open3_with_po…

    …six_spawn
    
    Replaced Open3 with Posix-spawn to reduce process memory leak
    santhanakarthikeyan committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    2cd5061 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2016

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

Commits on Jun 3, 2016

  1. Merge pull request #25 from blackducksoftware/fix_file_descriptor_leak

    Fix for file descriptor leaks
    aruncsengr committed Jun 3, 2016
    Configuration menu
    Copy the full SHA
    d3fbd81 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2016

  1. Version bump

    notalex committed Jun 7, 2016
    Configuration menu
    Copy the full SHA
    1af22dc View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2016

  1. Configuration menu
    Copy the full SHA
    6699a6d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2ea0d4f View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2016

  1. Add Travis CI badge

    Peter Degen-Portnoy committed Jun 16, 2016
    Configuration menu
    Copy the full SHA
    83fe15a View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2016

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

Commits on Jun 21, 2016

  1. OTWO-4267 Avoid changing encoding for processed data

    If ohloh_scm changes the encoding, original characters might be lost.
    Users might be aware of the correct encoding and may wish to handle it
    accordingly.
    notalex committed Jun 21, 2016
    Configuration menu
    Copy the full SHA
    535d2d5 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2016

  1. OTWO-4267 Use a bare git repo for git push test

    Undid previous lib changes made just to make test pass on travis.
    notalex committed Jun 22, 2016
    Configuration menu
    Copy the full SHA
    91181b6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #26 from blackducksoftware/OTWO-4267

    OTWO-4267 Configured installation of multiple SCMs in travis builds
    aruncsengr authored Jun 22, 2016
    Configuration menu
    Copy the full SHA
    f70ddd0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8346b29 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #27 from blackducksoftware/OTWO-4281

    OTWO-4281 Configured travis ssh setup and its dependencies
    aruncsengr authored Jun 22, 2016
    Configuration menu
    Copy the full SHA
    38c984f View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2016

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

Commits on Jul 24, 2016

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

Commits on Aug 8, 2016

  1. Merge pull request #28 from blackducksoftware/OTWO-4327

    OTWO 4327 Git and Hg must be branch aware
    notalex authored Aug 8, 2016
    Configuration menu
    Copy the full SHA
    eada9b7 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2016

  1. Configuration menu
    Copy the full SHA
    20b3cce View commit details
    Browse the repository at this point in the history
  2. Merge pull request #33 from blackducksoftware/OTWO-4332

    OTWO-4332 Detect tags for all SCMs
    notalex authored Aug 10, 2016
    Configuration menu
    Copy the full SHA
    e7ab8a7 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2016

  1. Configuration menu
    Copy the full SHA
    7d4747a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #34 from blackducksoftware/OTWO-4365

    OTWO-4365: Add export tags feature for SVN and CVS repository
    santhanakarthikeyan authored Aug 11, 2016
    Configuration menu
    Copy the full SHA
    6c99b12 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c6d4461 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #35 from blackducksoftware/OTWO-4365

    OTWO-4365 Add tests for export_tag
    santhanakarthikeyan authored Aug 11, 2016
    Configuration menu
    Copy the full SHA
    819d22d View commit details
    Browse the repository at this point in the history
  5. Version bump

    notalex committed Aug 11, 2016
    Configuration menu
    Copy the full SHA
    2b44fbb View commit details
    Browse the repository at this point in the history
  6. Merge pull request #36 from blackducksoftware/version_bump

    Version bump
    notalex authored Aug 11, 2016
    Configuration menu
    Copy the full SHA
    3e2dc8c View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2016

  1. Configuration menu
    Copy the full SHA
    0c8fce9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #37 from blackducksoftware/fix_svn_tags

    Get SVN tags list using ls instead of log
    santhanakarthikeyan authored Aug 17, 2016
    Configuration menu
    Copy the full SHA
    6cda02e View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2016

  1. Version bump

    notalex committed Aug 23, 2016
    Configuration menu
    Copy the full SHA
    08337cb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #39 from blackducksoftware/bump

    Version bump
    notalex authored Aug 23, 2016
    Configuration menu
    Copy the full SHA
    4163ec7 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2016

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

Commits on Sep 13, 2016

  1. Version bump

    notalex committed Sep 13, 2016
    Configuration menu
    Copy the full SHA
    51fda59 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #40 from blackducksoftware/OTWO-4394

    OTWO-4394 Fix git tags for repository without tags
    notalex authored Sep 13, 2016
    Configuration menu
    Copy the full SHA
    1b8641d View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2016

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

Commits on Oct 26, 2016

  1. Merge pull request #42 from blackducksoftware/OTWO-4382

    OTWO-4382: Accept configurable directory for temporary file creation
    PDegenPortnoy authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    b98a420 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0877a79 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #43 from blackducksoftware/version_2.2.3

    Update version to 2.2.3
    PDegenPortnoy authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    85261b4 View commit details
    Browse the repository at this point in the history
  4. Update ruby version to specific patch

    Peter Degen-Portnoy committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    00d37f4 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #44 from blackducksoftware/version_2.2.3

    Update ruby version to specific patch
    PDegenPortnoy authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    cb98372 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2016

  1. Configuration menu
    Copy the full SHA
    e1ef92e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #46 from blackducksoftware/OTWO-4470

    OTWO-4470 Return timestamp for tags
    PDegenPortnoy authored Dec 22, 2016
    Configuration menu
    Copy the full SHA
    ec65be8 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2016

  1. OTWO-4466 Set the branch_name as nil if empty string

    Priya Rani committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    4474205 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2016

  1. Merge pull request #47 from blackducksoftware/OTWO-4466

    OTWO-4466 Set the branch_name as nil if empty string
    santhanakarthikeyan authored Dec 28, 2016
    Configuration menu
    Copy the full SHA
    b7a1e3a View commit details
    Browse the repository at this point in the history
  2. OTWO-4466 Update version to 2.2.5

    Priya Rani committed Dec 28, 2016
    Configuration menu
    Copy the full SHA
    fef9085 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #49 from blackducksoftware/OTWO-4466

    OTWO-4466 Update version to 2.2.5
    rapbhan authored Dec 28, 2016
    Configuration menu
    Copy the full SHA
    ebdccda View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2017

  1. Add tags method to AbstractAdapter for api consistency

    Peter Degen-Portnoy committed Jan 11, 2017
    Configuration menu
    Copy the full SHA
    60f796e View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2017

  1. Merge pull request #50 from blackducksoftware/OTWO-4566

    OTWO-4566: Add tags method to AbstractAdapter for api consistency
    PDegenPortnoy authored Jan 12, 2017
    Configuration menu
    Copy the full SHA
    337537b View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2017

  1. Configuration menu
    Copy the full SHA
    9acff30 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #51 from blackducksoftware/OTWO-4588

    OTWO-4588 Return empty svn tags if it is non-tagged repository
    rapbhan authored Jan 16, 2017
    Configuration menu
    Copy the full SHA
    481d96d View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2017

  1. Configuration menu
    Copy the full SHA
    d26cc66 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #53 from blackducksoftware/OTWO-4581

    Set the default EPOCH timestamp when tag timestamp is empty
    rapbhan authored Jan 17, 2017
    Configuration menu
    Copy the full SHA
    781954e View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2017

  1. Add UTF-8 enforcing for recurse_files

    Daniel Rubio committed Feb 2, 2017
    Configuration menu
    Copy the full SHA
    3a012f0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #55 from blackducksoftware/OTWO-4585.a

    OTWO-4585 Add UTF-8 enforcing to correct ascii duplicate files
    Daniel Rubio authored Feb 2, 2017
    Configuration menu
    Copy the full SHA
    079fc30 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2017

  1. Increment ohloh_scm version to 2.2.9

    Daniel Rubio committed Feb 6, 2017
    Configuration menu
    Copy the full SHA
    78d442e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #56 from blackducksoftware/increment_version

    Increment ohloh_scm version to 2.2.9
    Daniel Rubio authored Feb 6, 2017
    Configuration menu
    Copy the full SHA
    350058c View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2017

  1. OTWO-4616 Fetch SVN tags in xml format

    Priya Rani committed Feb 13, 2017
    Configuration menu
    Copy the full SHA
    b95b166 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #57 from blackducksoftware/OTWO-4616

    OTWO-4616 Fetch SVN tags in xml format
    Priya Rani authored Feb 13, 2017
    Configuration menu
    Copy the full SHA
    6038dde View commit details
    Browse the repository at this point in the history
  3. OTWO-4616 Update version to 2.2.10

    Priya Rani committed Feb 13, 2017
    Configuration menu
    Copy the full SHA
    619e93f View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2017

  1. Merge pull request #58 from blackducksoftware/OTWO-4616

    OTWO-4616 Update version to 2.2.10
    rapbhan authored Feb 14, 2017
    Configuration menu
    Copy the full SHA
    6e96502 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8007795 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #59 from blackducksoftware/OTWO-4616

    OTWO-4616 Make dependency on nokogiri to not be overly strict
    santhanakarthikeyan authored Feb 14, 2017
    Configuration menu
    Copy the full SHA
    81f6be7 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2017

  1. Configuration menu
    Copy the full SHA
    0e56c7b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #60 from blackducksoftware/OTWO-4616

    OTWO-4616 Add test case for fetching svn tags with whitespaces
    Priya Rani authored Feb 15, 2017
    Configuration menu
    Copy the full SHA
    0a07c8f View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2017

  1. Configuration menu
    Copy the full SHA
    4314ebe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    069732f View commit details
    Browse the repository at this point in the history
  3. Updated the version to 2.2.11

    rapbhan committed Apr 11, 2017
    Configuration menu
    Copy the full SHA
    f8e7412 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #61 from blackducksoftware/OTWO-4722

    OTWO-4722 Implement Export Tag Method for Bzr Repo
    rapbhan authored Apr 11, 2017
    Configuration menu
    Copy the full SHA
    9467650 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2017

  1. Configuration menu
    Copy the full SHA
    33b8077 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9a9a7b1 View commit details
    Browse the repository at this point in the history
  3. OTWO-4428 Version Bump

    notalex committed Apr 19, 2017
    Configuration menu
    Copy the full SHA
    de39289 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2017

  1. Merge pull request #45 from blackducksoftware/OTWO-4428

    [OTWO-4428] SVN fix: Import commits earlier than replace commit
    PDegenPortnoy authored May 2, 2017
    Configuration menu
    Copy the full SHA
    ac171bb View commit details
    Browse the repository at this point in the history

Commits on May 25, 2017

  1. Configuration menu
    Copy the full SHA
    6391658 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #62 from blackducksoftware/OTWO-4721

    OTWO: 4721 Raise an exception if repository is empty
    jebingeosil authored May 25, 2017
    Configuration menu
    Copy the full SHA
    992274a View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2017

  1. Configuration menu
    Copy the full SHA
    db7b50f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52c6fdc View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2017

  1. Merge pull request #64 from blackducksoftware/OTWO-4738

    OTWO-4738 Upgrade Ruby in Ohloh SCM to 2.2
    jebingeosil authored Jun 7, 2017
    Configuration menu
    Copy the full SHA
    2b4b422 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2017

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

Commits on Aug 23, 2017

  1. Configuration menu
    Copy the full SHA
    9937a8d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #66 from blackducksoftware/OTWO-4902

    OTWO=4901: Changed Hg adapter commit head_token to return long sha in…
    santhanakarthikeyan authored Aug 23, 2017
    Configuration menu
    Copy the full SHA
    47fba64 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1ce4817 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #65 from blackducksoftware/OTWO-4904

    OTWO-4904: Fix error caused due branch_name set to nil
    jebingeosil authored Aug 23, 2017
    Configuration menu
    Copy the full SHA
    a445e35 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2017

  1. Update Readme.md

    drubio1989 committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    09cedfc View commit details
    Browse the repository at this point in the history