ohloh_scm 2.5.1 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/{bin → .bin}/accept_svn_ssl_certificate +0 -0
- data/.bin/check_scm_version +28 -0
- data/.bin/run-test +3 -0
- data/.bin/run-tests +3 -0
- data/{bin → .bin}/string_encoder +0 -0
- data/.git_hooks/pre-commit +20 -0
- data/.gitignore +1 -4
- data/.rubocop.yml +13 -0
- data/.ruby-version +1 -2
- data/.travis.yml +3 -2
- data/Dockerfile +8 -4
- data/Gemfile +14 -0
- data/Gemfile.lock +54 -0
- data/{COPYING → LICENSE.txt} +0 -0
- data/README.md +52 -116
- data/Rakefile +7 -29
- data/lib/ohloh_scm.rb +26 -32
- data/lib/ohloh_scm/activity.rb +38 -0
- data/lib/ohloh_scm/bzr.rb +12 -0
- data/lib/ohloh_scm/bzr/activity.rb +191 -0
- data/lib/ohloh_scm/bzr/scm.rb +24 -0
- data/lib/ohloh_scm/bzr/status.rb +8 -0
- data/lib/ohloh_scm/bzr/validation.rb +18 -0
- data/lib/ohloh_scm/commit.rb +44 -41
- data/lib/ohloh_scm/core.rb +22 -0
- data/lib/ohloh_scm/cvs.rb +11 -0
- data/lib/ohloh_scm/cvs/activity.rb +149 -0
- data/lib/ohloh_scm/cvs/scm.rb +149 -0
- data/lib/ohloh_scm/cvs/status.rb +14 -0
- data/lib/ohloh_scm/cvs/validation.rb +106 -0
- data/lib/ohloh_scm/data/git_ignore_list.rb +29 -0
- data/lib/ohloh_scm/diff.rb +42 -39
- data/lib/ohloh_scm/factory.rb +11 -0
- data/lib/ohloh_scm/git.rb +11 -0
- data/lib/ohloh_scm/git/activity.rb +317 -0
- data/lib/ohloh_scm/git/scm.rb +137 -0
- data/lib/ohloh_scm/git/status.rb +13 -0
- data/lib/ohloh_scm/git/validation.rb +18 -0
- data/lib/ohloh_scm/git_svn.rb +11 -0
- data/lib/ohloh_scm/git_svn/activity.rb +84 -0
- data/lib/ohloh_scm/git_svn/scm.rb +91 -0
- data/lib/ohloh_scm/git_svn/status.rb +8 -0
- data/lib/ohloh_scm/git_svn/validation.rb +8 -0
- data/lib/ohloh_scm/hg.rb +12 -0
- data/lib/ohloh_scm/hg/activity.rb +188 -0
- data/lib/ohloh_scm/hg/scm.rb +51 -0
- data/lib/ohloh_scm/hg/status.rb +8 -0
- data/lib/ohloh_scm/hg/validation.rb +18 -0
- data/lib/ohloh_scm/parser.rb +30 -0
- data/lib/ohloh_scm/parser/array_writer.rb +15 -0
- data/lib/ohloh_scm/parser/branch_number.rb +63 -0
- data/lib/ohloh_scm/{parsers → parser}/bzr_xml_parser.rb +65 -55
- data/lib/ohloh_scm/parser/cvs_parser.rb +161 -0
- data/lib/ohloh_scm/parser/git_parser.rb +128 -0
- data/lib/ohloh_scm/parser/hg_parser.rb +78 -0
- data/lib/ohloh_scm/{parsers → parser}/hg_style +0 -0
- data/lib/ohloh_scm/{parsers → parser}/hg_verbose_style +0 -0
- data/lib/ohloh_scm/parser/svn_parser.rb +83 -0
- data/lib/ohloh_scm/py_bridge.rb +9 -0
- data/lib/ohloh_scm/py_bridge/bzr_client.rb +28 -0
- data/lib/ohloh_scm/{adapters/bzrlib/bzrlib_pipe_server.py → py_bridge/bzr_server.py} +1 -1
- data/lib/ohloh_scm/py_bridge/hg_client.rb +30 -0
- data/lib/ohloh_scm/{adapters/hglib/server.py → py_bridge/hg_server.py} +0 -0
- data/lib/ohloh_scm/py_bridge/py_client.rb +45 -0
- data/lib/ohloh_scm/scm.rb +26 -0
- data/lib/ohloh_scm/status.rb +24 -0
- data/lib/ohloh_scm/string_extensions.rb +11 -0
- data/lib/ohloh_scm/svn.rb +11 -0
- data/lib/ohloh_scm/svn/activity.rb +95 -0
- data/lib/ohloh_scm/svn/scm.rb +95 -0
- data/lib/ohloh_scm/svn/status.rb +8 -0
- data/lib/ohloh_scm/svn/validation.rb +56 -0
- data/lib/ohloh_scm/system.rb +44 -0
- data/lib/ohloh_scm/validation.rb +83 -0
- data/lib/ohloh_scm/version.rb +8 -1
- data/ohloh_scm.gemspec +18 -15
- data/spec/.rubocop.yml +22 -0
- data/spec/benchmarks/hg_bzr_bash_vs_py_api.rb +39 -0
- data/spec/benchmarks/process_spawn_benchmark.rb +133 -0
- data/spec/helpers/assert_scm_attr_helper.rb +31 -0
- data/spec/helpers/commit_tokens_helper.rb +26 -0
- data/spec/helpers/generic_helper.rb +5 -0
- data/spec/helpers/repository_helper.rb +36 -0
- data/spec/helpers/system_helper.rb +25 -0
- data/spec/ohloh_scm/bzr/activity_spec.rb +460 -0
- data/spec/ohloh_scm/bzr/scm_spec.rb +17 -0
- data/spec/ohloh_scm/bzr/validation_spec.rb +37 -0
- data/spec/ohloh_scm/cvs/activity_spec.rb +93 -0
- data/spec/ohloh_scm/cvs/scm_spec.rb +112 -0
- data/spec/ohloh_scm/cvs/validation_spec.rb +78 -0
- data/spec/ohloh_scm/factory_spec.rb +16 -0
- data/spec/ohloh_scm/git/activity_spec.rb +402 -0
- data/spec/ohloh_scm/git/scm_spec.rb +57 -0
- data/spec/ohloh_scm/git/status_spec.rb +11 -0
- data/spec/ohloh_scm/git/validation_spec.rb +57 -0
- data/spec/ohloh_scm/git_svn/activity_spec.rb +89 -0
- data/spec/ohloh_scm/git_svn/scm_spec.rb +22 -0
- data/spec/ohloh_scm/hg/activity_spec.rb +323 -0
- data/spec/ohloh_scm/hg/scm_spec.rb +23 -0
- data/spec/ohloh_scm/hg/status_spec.rb +12 -0
- data/spec/ohloh_scm/hg/validation_spec.rb +32 -0
- data/spec/ohloh_scm/parser/array_writer_spec.rb +29 -0
- data/spec/ohloh_scm/parser/branch_number_spec.rb +126 -0
- data/spec/ohloh_scm/parser/cvs_parser_spec.rb +77 -0
- data/spec/ohloh_scm/parser/git_parser_spec.rb +102 -0
- data/spec/ohloh_scm/parser/hg_parser_spec.rb +194 -0
- data/spec/ohloh_scm/svn/activity_spec.rb +55 -0
- data/spec/ohloh_scm/svn/scm_spec.rb +75 -0
- data/spec/ohloh_scm/svn/validation_spec.rb +89 -0
- data/spec/ohloh_scm/svn_parser_spec.rb +146 -0
- data/spec/ohloh_scm/system_spec.rb +32 -0
- data/spec/ohloh_scm/version_spec.rb +9 -0
- data/{test/data → spec/raw_fixtures}/basic.rlog +0 -0
- data/{test/data → spec/raw_fixtures}/file_created_on_branch.rlog +0 -0
- data/{test/data → spec/raw_fixtures}/invalid-utf-word +0 -0
- data/{test/data → spec/raw_fixtures}/multiple_revisions.rlog +0 -0
- data/{test/data → spec/raw_fixtures}/sample-content +0 -0
- data/{test/data → spec/raw_fixtures}/simple.ohlog +1 -1
- data/{test/data → spec/raw_fixtures}/simple.svn_log +0 -0
- data/{test/data → spec/raw_fixtures}/simultaneous_checkins.rlog +0 -0
- data/{test/data → spec/raw_fixtures}/simultaneous_checkins_2.rlog +0 -0
- data/spec/scm_fixtures/bzr.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/bzr_colon.tgz +0 -0
- data/spec/scm_fixtures/bzr_large.tgz +0 -0
- data/spec/scm_fixtures/bzr_with_authors.tgz +0 -0
- data/spec/scm_fixtures/bzr_with_branch.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/bzr_with_invalid_encoding.tgz +0 -0
- data/spec/scm_fixtures/bzr_with_nested_branches.tgz +0 -0
- data/spec/scm_fixtures/bzr_with_subdirectories.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/cvs.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_dupe_delete.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_svn.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_walk.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_with_invalid_encoding.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_with_master_tag.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_with_multiple_branch.tgz +0 -0
- data/spec/scm_fixtures/git_with_mv.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_with_null_merge.tgz +0 -0
- data/spec/scm_fixtures/git_with_submodules.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/hg.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/hg_dupe_delete.tgz +0 -0
- data/spec/scm_fixtures/hg_large.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/hg_walk.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/hg_with_invalid_encoding.tgz +0 -0
- data/spec/scm_fixtures/svn.tgz +0 -0
- data/spec/scm_fixtures/svn_subdir.tgz +0 -0
- data/spec/spec_helper.rb +32 -0
- data/spec/string_encoder_spec.rb +32 -0
- metadata +224 -1052
- data/bin/ohlog +0 -152
- data/lib/ohloh_scm/adapters/abstract/misc.rb +0 -12
- data/lib/ohloh_scm/adapters/abstract/sha1.rb +0 -48
- data/lib/ohloh_scm/adapters/abstract/system.rb +0 -60
- data/lib/ohloh_scm/adapters/abstract/validation.rb +0 -77
- data/lib/ohloh_scm/adapters/abstract_adapter.rb +0 -32
- data/lib/ohloh_scm/adapters/bzr/cat_file.rb +0 -25
- data/lib/ohloh_scm/adapters/bzr/commits.rb +0 -100
- data/lib/ohloh_scm/adapters/bzr/head.rb +0 -19
- data/lib/ohloh_scm/adapters/bzr/misc.rb +0 -61
- data/lib/ohloh_scm/adapters/bzr/pull.rb +0 -22
- data/lib/ohloh_scm/adapters/bzr/push.rb +0 -51
- data/lib/ohloh_scm/adapters/bzr/validation.rb +0 -16
- data/lib/ohloh_scm/adapters/bzr_adapter.rb +0 -15
- data/lib/ohloh_scm/adapters/bzrlib/bzrlib_pipe_client.rb +0 -71
- data/lib/ohloh_scm/adapters/bzrlib/cat_file.rb +0 -9
- data/lib/ohloh_scm/adapters/bzrlib/head.rb +0 -9
- data/lib/ohloh_scm/adapters/bzrlib_adapter.rb +0 -25
- data/lib/ohloh_scm/adapters/cvs/commits.rb +0 -97
- data/lib/ohloh_scm/adapters/cvs/misc.rb +0 -212
- data/lib/ohloh_scm/adapters/cvs/validation.rb +0 -77
- data/lib/ohloh_scm/adapters/cvs_adapter.rb +0 -18
- data/lib/ohloh_scm/adapters/factory.rb +0 -38
- data/lib/ohloh_scm/adapters/git/cat_file.rb +0 -16
- data/lib/ohloh_scm/adapters/git/commit_all.rb +0 -141
- data/lib/ohloh_scm/adapters/git/commits.rb +0 -122
- data/lib/ohloh_scm/adapters/git/head.rb +0 -21
- data/lib/ohloh_scm/adapters/git/misc.rb +0 -107
- data/lib/ohloh_scm/adapters/git/patch.rb +0 -9
- data/lib/ohloh_scm/adapters/git/pull.rb +0 -124
- data/lib/ohloh_scm/adapters/git/push.rb +0 -39
- data/lib/ohloh_scm/adapters/git/token.rb +0 -53
- data/lib/ohloh_scm/adapters/git/validation.rb +0 -50
- data/lib/ohloh_scm/adapters/git_adapter.rb +0 -18
- data/lib/ohloh_scm/adapters/git_svn/cat_file.rb +0 -22
- data/lib/ohloh_scm/adapters/git_svn/commits.rb +0 -57
- data/lib/ohloh_scm/adapters/git_svn/head.rb +0 -9
- data/lib/ohloh_scm/adapters/git_svn/misc.rb +0 -24
- data/lib/ohloh_scm/adapters/git_svn/pull.rb +0 -80
- data/lib/ohloh_scm/adapters/git_svn_adapter.rb +0 -13
- data/lib/ohloh_scm/adapters/hg/cat_file.rb +0 -28
- data/lib/ohloh_scm/adapters/hg/commits.rb +0 -112
- data/lib/ohloh_scm/adapters/hg/head.rb +0 -29
- data/lib/ohloh_scm/adapters/hg/misc.rb +0 -40
- data/lib/ohloh_scm/adapters/hg/patch.rb +0 -9
- data/lib/ohloh_scm/adapters/hg/pull.rb +0 -23
- data/lib/ohloh_scm/adapters/hg/push.rb +0 -51
- data/lib/ohloh_scm/adapters/hg/validation.rb +0 -26
- data/lib/ohloh_scm/adapters/hg_adapter.rb +0 -21
- data/lib/ohloh_scm/adapters/hglib/cat_file.rb +0 -14
- data/lib/ohloh_scm/adapters/hglib/client.rb +0 -62
- data/lib/ohloh_scm/adapters/hglib/head.rb +0 -9
- data/lib/ohloh_scm/adapters/hglib_adapter.rb +0 -25
- data/lib/ohloh_scm/adapters/svn/cat_file.rb +0 -19
- data/lib/ohloh_scm/adapters/svn/commits.rb +0 -195
- data/lib/ohloh_scm/adapters/svn/head.rb +0 -19
- data/lib/ohloh_scm/adapters/svn/misc.rb +0 -171
- data/lib/ohloh_scm/adapters/svn/patch.rb +0 -8
- data/lib/ohloh_scm/adapters/svn/pre-revprop-change +0 -2
- data/lib/ohloh_scm/adapters/svn/pull.rb +0 -77
- data/lib/ohloh_scm/adapters/svn/push.rb +0 -15
- data/lib/ohloh_scm/adapters/svn/validation.rb +0 -87
- data/lib/ohloh_scm/adapters/svn_adapter.rb +0 -17
- data/lib/ohloh_scm/adapters/svn_chain/cat_file.rb +0 -8
- data/lib/ohloh_scm/adapters/svn_chain/chain.rb +0 -100
- data/lib/ohloh_scm/adapters/svn_chain/commits.rb +0 -37
- data/lib/ohloh_scm/adapters/svn_chain_adapter.rb +0 -44
- data/lib/ohloh_scm/parsers/array_writer.rb +0 -19
- data/lib/ohloh_scm/parsers/branch_number.rb +0 -60
- data/lib/ohloh_scm/parsers/bzr_parser.rb +0 -128
- data/lib/ohloh_scm/parsers/cvs_parser.rb +0 -182
- data/lib/ohloh_scm/parsers/git_parser.rb +0 -67
- data/lib/ohloh_scm/parsers/git_styled_parser.rb +0 -95
- data/lib/ohloh_scm/parsers/hg_parser.rb +0 -63
- data/lib/ohloh_scm/parsers/hg_styled_parser.rb +0 -65
- data/lib/ohloh_scm/parsers/human_writer.rb +0 -49
- data/lib/ohloh_scm/parsers/parser.rb +0 -34
- data/lib/ohloh_scm/parsers/svn_parser.rb +0 -77
- data/lib/ohloh_scm/parsers/svn_xml_parser.rb +0 -62
- data/lib/ohloh_scm/parsers/xml_writer.rb +0 -62
- data/lib/ohloh_scm/scratch_dir.rb +0 -59
- data/lib/ohloh_scm/shellout.rb +0 -40
- data/log/.gitignore +0 -1
- data/test/bin/svn +0 -7
- data/test/data/basic.ohlog +0 -11
- data/test/data/branch_merge.bzr_xml_log +0 -87
- data/test/data/git_patch.diff +0 -19
- data/test/data/helloworld.log +0 -41
- data/test/data/hg_patch.diff +0 -9
- data/test/data/intelliglue.rlog +0 -1216
- data/test/data/multiple_commits.rlog +0 -64
- data/test/data/simple.bzr_xml_log +0 -41
- data/test/data/simple.svn_xml_log +0 -66
- data/test/data/svn_patch.diff +0 -9
- data/test/data/svn_with_invalid_encoding.log +0 -33
- data/test/repositories/bzr/.bzr/README +0 -3
- data/test/repositories/bzr/.bzr/branch-format +0 -1
- data/test/repositories/bzr/.bzr/branch/branch.conf +0 -0
- data/test/repositories/bzr/.bzr/branch/format +0 -1
- data/test/repositories/bzr/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr/.bzr/branch/tags +0 -1
- data/test/repositories/bzr/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr/.bzr/checkout/format +0 -1
- data/test/repositories/bzr/.bzr/repository/format +0 -1
- data/test/repositories/bzr/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/62f9cada7c58bce361b9b852d180ff56.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/62f9cada7c58bce361b9b852d180ff56.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/62f9cada7c58bce361b9b852d180ff56.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/62f9cada7c58bce361b9b852d180ff56.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.tix +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/0428489d1a03d05c496c2c429fe96e90.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/62f9cada7c58bce361b9b852d180ff56.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/71af8bae249bcb824a4ff17c62029142.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/7202eb77b81a80eca5296f317ed42149.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/8a571ba35ee54cd133b71e967442fe17.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/a06b9c10004fc3e05affee8cf0a9febd.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/f35e1020b6a55c81b6d2fe4c7bcd4645.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/upload/.gitignore +0 -1
- data/test/repositories/bzr/C/303/251dric.txt +0 -2
- data/test/repositories/bzr/file1.txt +0 -2
- data/test/repositories/bzr/file3.txt +0 -1
- data/test/repositories/bzr/file4.txt +0 -1
- data/test/repositories/bzr/file5.txt +0 -4
- data/test/repositories/bzr_hello_world/.bzr/README +0 -3
- data/test/repositories/bzr_hello_world/.bzr/branch-format +0 -1
- data/test/repositories/bzr_hello_world/.bzr/branch/branch.conf +0 -0
- data/test/repositories/bzr_hello_world/.bzr/branch/format +0 -1
- data/test/repositories/bzr_hello_world/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_hello_world/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_hello_world/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_hello_world/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_hello_world/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_hello_world/.bzr/repository/format +0 -1
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/a7cd0d6de5d8b3efdd5f61a4caeda296.iix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/a7cd0d6de5d8b3efdd5f61a4caeda296.rix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/a7cd0d6de5d8b3efdd5f61a4caeda296.six +0 -5
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/a7cd0d6de5d8b3efdd5f61a4caeda296.tix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/ed1e97c1213220a92ff857169867a7b3.iix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/ed1e97c1213220a92ff857169867a7b3.rix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/ed1e97c1213220a92ff857169867a7b3.six +0 -5
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/ed1e97c1213220a92ff857169867a7b3.tix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/packs/a7cd0d6de5d8b3efdd5f61a4caeda296.pack +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/packs/ed1e97c1213220a92ff857169867a7b3.pack +0 -0
- data/test/repositories/bzr_hello_world/helloworld.c +0 -6
- data/test/repositories/bzr_with_authors/.bzr/README +0 -3
- data/test/repositories/bzr_with_authors/.bzr/branch-format +0 -1
- data/test/repositories/bzr_with_authors/.bzr/branch/branch.conf +0 -0
- data/test/repositories/bzr_with_authors/.bzr/branch/format +0 -1
- data/test/repositories/bzr_with_authors/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_with_authors/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_with_authors/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_with_authors/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_with_authors/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_with_authors/.bzr/checkout/views +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/format +0 -1
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.cix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.iix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.rix +0 -6
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.six +0 -5
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.tix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.cix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.iix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.rix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.six +0 -5
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.tix +0 -6
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.cix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.iix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.rix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.six +0 -5
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.tix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/packs/1326ecee2f4f69991771137c5307689a.pack +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/packs/adf730b6cf7c7959afcedb87e155654d.pack +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/packs/d2613fcfb5e48e79073b96270782f95c.pack +0 -0
- data/test/repositories/bzr_with_authors/test.txt +0 -1
- data/test/repositories/bzr_with_branch/.bzr/README +0 -3
- data/test/repositories/bzr_with_branch/.bzr/branch-format +0 -1
- data/test/repositories/bzr_with_branch/.bzr/branch/branch.conf +0 -1
- data/test/repositories/bzr_with_branch/.bzr/branch/format +0 -1
- data/test/repositories/bzr_with_branch/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_with_branch/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_with_branch/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_with_branch/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_with_branch/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_with_branch/.bzr/checkout/merge-hashes +0 -3
- data/test/repositories/bzr_with_branch/.bzr/repository/format +0 -1
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/3336f250dbe86a7eec2de4c1b1f97db7.iix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/3336f250dbe86a7eec2de4c1b1f97db7.rix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/3336f250dbe86a7eec2de4c1b1f97db7.six +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/3336f250dbe86a7eec2de4c1b1f97db7.tix +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/47cfe65310e6d462bb87a68fff0bc162.iix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/47cfe65310e6d462bb87a68fff0bc162.rix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/47cfe65310e6d462bb87a68fff0bc162.six +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/47cfe65310e6d462bb87a68fff0bc162.tix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/64e98edbf1aebe6f532f2f93b24eead8.iix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/64e98edbf1aebe6f532f2f93b24eead8.rix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/64e98edbf1aebe6f532f2f93b24eead8.six +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/64e98edbf1aebe6f532f2f93b24eead8.tix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/8008794e258fc3fa4be68d538312a91c.iix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/8008794e258fc3fa4be68d538312a91c.rix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/8008794e258fc3fa4be68d538312a91c.six +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/8008794e258fc3fa4be68d538312a91c.tix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/packs/3336f250dbe86a7eec2de4c1b1f97db7.pack +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/packs/47cfe65310e6d462bb87a68fff0bc162.pack +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/packs/64e98edbf1aebe6f532f2f93b24eead8.pack +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/packs/8008794e258fc3fa4be68d538312a91c.pack +0 -0
- data/test/repositories/bzr_with_branch/goodbyeworld.c +0 -5
- data/test/repositories/bzr_with_branch/helloworld.c +0 -6
- data/test/repositories/bzr_with_nested_branches/.bzr/README +0 -3
- data/test/repositories/bzr_with_nested_branches/.bzr/branch-format +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/branch/branch.conf +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/branch/format +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/checkout/merge-hashes +0 -6
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/format +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/30fcaac048e328a7727156986055f6e8.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/30fcaac048e328a7727156986055f6e8.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/30fcaac048e328a7727156986055f6e8.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/30fcaac048e328a7727156986055f6e8.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/673cc297ed321f667e1d8d4fff600829.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/673cc297ed321f667e1d8d4fff600829.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/673cc297ed321f667e1d8d4fff600829.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/673cc297ed321f667e1d8d4fff600829.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.tix +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/da6c79a024c70fd6831e323430a96cc8.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/da6c79a024c70fd6831e323430a96cc8.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/da6c79a024c70fd6831e323430a96cc8.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/da6c79a024c70fd6831e323430a96cc8.tix +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/0428489d1a03d05c496c2c429fe96e90.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/30fcaac048e328a7727156986055f6e8.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/673cc297ed321f667e1d8d4fff600829.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/71af8bae249bcb824a4ff17c62029142.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/7202eb77b81a80eca5296f317ed42149.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/8a571ba35ee54cd133b71e967442fe17.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/a06b9c10004fc3e05affee8cf0a9febd.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/da6c79a024c70fd6831e323430a96cc8.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/f35e1020b6a55c81b6d2fe4c7bcd4645.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/upload/.gitignore +0 -1
- data/test/repositories/bzr_with_nested_branches/file1.txt +0 -2
- data/test/repositories/bzr_with_nested_branches/file3.txt +0 -1
- data/test/repositories/bzr_with_nested_branches/file4.txt +0 -1
- data/test/repositories/bzr_with_nested_branches/file5.txt +0 -4
- data/test/repositories/bzr_with_nested_branches/file6.txt +0 -2
- data/test/repositories/bzr_with_nested_branches/file7.txt +0 -2
- data/test/repositories/bzr_with_subdirectories/.bzr/README +0 -3
- data/test/repositories/bzr_with_subdirectories/.bzr/branch-format +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/branch/branch.conf +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/branch/format +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/format +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/indices/6eb92b11d9f811881dd08e0ca71e136d.iix +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/indices/6eb92b11d9f811881dd08e0ca71e136d.rix +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/indices/6eb92b11d9f811881dd08e0ca71e136d.six +0 -5
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/indices/6eb92b11d9f811881dd08e0ca71e136d.tix +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/packs/6eb92b11d9f811881dd08e0ca71e136d.pack +0 -0
- data/test/repositories/bzr_with_subdirectories/foo/helloworld.c +0 -0
- data/test/repositories/deep_svn/README.txt +0 -5
- data/test/repositories/deep_svn/conf/authz +0 -21
- data/test/repositories/deep_svn/conf/passwd +0 -8
- data/test/repositories/deep_svn/conf/svnserve.conf +0 -30
- data/test/repositories/deep_svn/db/current +0 -1
- data/test/repositories/deep_svn/db/format +0 -1
- data/test/repositories/deep_svn/db/fs-type +0 -1
- data/test/repositories/deep_svn/db/revprops/0 +0 -5
- data/test/repositories/deep_svn/db/revprops/1 +0 -14
- data/test/repositories/deep_svn/db/revprops/2 +0 -14
- data/test/repositories/deep_svn/db/revprops/3 +0 -14
- data/test/repositories/deep_svn/db/revprops/4 +0 -14
- data/test/repositories/deep_svn/db/revs/0 +0 -11
- data/test/repositories/deep_svn/db/revs/1 +0 -122
- data/test/repositories/deep_svn/db/revs/2 +0 -19
- data/test/repositories/deep_svn/db/revs/3 +0 -44
- data/test/repositories/deep_svn/db/revs/4 +0 -48
- data/test/repositories/deep_svn/db/uuid +0 -1
- data/test/repositories/deep_svn/db/write-lock +0 -0
- data/test/repositories/deep_svn/format +0 -1
- data/test/repositories/deep_svn/hooks/post-commit.tmpl +0 -51
- data/test/repositories/deep_svn/hooks/post-lock.tmpl +0 -44
- data/test/repositories/deep_svn/hooks/post-revprop-change.tmpl +0 -56
- data/test/repositories/deep_svn/hooks/post-unlock.tmpl +0 -42
- data/test/repositories/deep_svn/hooks/pre-commit.tmpl +0 -70
- data/test/repositories/deep_svn/hooks/pre-lock.tmpl +0 -64
- data/test/repositories/deep_svn/hooks/pre-revprop-change.tmpl +0 -66
- data/test/repositories/deep_svn/hooks/pre-unlock.tmpl +0 -60
- data/test/repositories/deep_svn/hooks/start-commit.tmpl +0 -54
- data/test/repositories/deep_svn/locks/db-logs.lock +0 -3
- data/test/repositories/deep_svn/locks/db.lock +0 -3
- data/test/repositories/git_with_empty_merge.tgz +0 -0
- data/test/repositories/svn/README.txt +0 -5
- data/test/repositories/svn/conf/authz +0 -21
- data/test/repositories/svn/conf/passwd +0 -8
- data/test/repositories/svn/conf/svnserve.conf +0 -30
- data/test/repositories/svn/db/current +0 -1
- data/test/repositories/svn/db/format +0 -1
- data/test/repositories/svn/db/fs-type +0 -1
- data/test/repositories/svn/db/revprops/0 +0 -5
- data/test/repositories/svn/db/revprops/1 +0 -14
- data/test/repositories/svn/db/revprops/2 +0 -13
- data/test/repositories/svn/db/revprops/3 +0 -13
- data/test/repositories/svn/db/revprops/4 +0 -13
- data/test/repositories/svn/db/revprops/5 +0 -13
- data/test/repositories/svn/db/revprops/6 +0 -12
- data/test/repositories/svn/db/revs/0 +0 -11
- data/test/repositories/svn/db/revs/1 +0 -0
- data/test/repositories/svn/db/revs/2 +0 -0
- data/test/repositories/svn/db/revs/3 +0 -0
- data/test/repositories/svn/db/revs/4 +0 -0
- data/test/repositories/svn/db/revs/5 +0 -64
- data/test/repositories/svn/db/revs/6 +0 -50
- data/test/repositories/svn/db/uuid +0 -1
- data/test/repositories/svn/db/write-lock +0 -0
- data/test/repositories/svn/format +0 -1
- data/test/repositories/svn/hooks/post-commit.tmpl +0 -51
- data/test/repositories/svn/hooks/post-lock.tmpl +0 -44
- data/test/repositories/svn/hooks/post-revprop-change.tmpl +0 -56
- data/test/repositories/svn/hooks/post-unlock.tmpl +0 -42
- data/test/repositories/svn/hooks/pre-commit.tmpl +0 -70
- data/test/repositories/svn/hooks/pre-lock.tmpl +0 -64
- data/test/repositories/svn/hooks/pre-revprop-change +0 -67
- data/test/repositories/svn/hooks/pre-unlock.tmpl +0 -60
- data/test/repositories/svn/hooks/start-commit.tmpl +0 -54
- data/test/repositories/svn/locks/db-logs.lock +0 -3
- data/test/repositories/svn/locks/db.lock +0 -3
- data/test/repositories/svn_empty/README.txt +0 -5
- data/test/repositories/svn_empty/conf/authz +0 -32
- data/test/repositories/svn_empty/conf/hooks-env.tmpl +0 -19
- data/test/repositories/svn_empty/conf/passwd +0 -8
- data/test/repositories/svn_empty/conf/svnserve.conf +0 -76
- data/test/repositories/svn_empty/db/current +0 -1
- data/test/repositories/svn_empty/db/format +0 -2
- data/test/repositories/svn_empty/db/fs-type +0 -1
- data/test/repositories/svn_empty/db/fsfs.conf +0 -125
- data/test/repositories/svn_empty/db/min-unpacked-rev +0 -1
- data/test/repositories/svn_empty/db/revprops/0/0 +0 -5
- data/test/repositories/svn_empty/db/revs/0/0 +0 -11
- data/test/repositories/svn_empty/db/txn-current +0 -1
- data/test/repositories/svn_empty/db/txn-current-lock +0 -0
- data/test/repositories/svn_empty/db/uuid +0 -1
- data/test/repositories/svn_empty/db/write-lock +0 -0
- data/test/repositories/svn_empty/format +0 -1
- data/test/repositories/svn_empty/hooks/post-commit.tmpl +0 -52
- data/test/repositories/svn_empty/hooks/post-lock.tmpl +0 -45
- data/test/repositories/svn_empty/hooks/post-revprop-change.tmpl +0 -57
- data/test/repositories/svn_empty/hooks/post-unlock.tmpl +0 -43
- data/test/repositories/svn_empty/hooks/pre-commit.tmpl +0 -85
- data/test/repositories/svn_empty/hooks/pre-lock.tmpl +0 -73
- data/test/repositories/svn_empty/hooks/pre-revprop-change.tmpl +0 -66
- data/test/repositories/svn_empty/hooks/pre-unlock.tmpl +0 -65
- data/test/repositories/svn_empty/hooks/start-commit.tmpl +0 -74
- data/test/repositories/svn_empty/locks/db-logs.lock +0 -3
- data/test/repositories/svn_empty/locks/db.lock +0 -3
- data/test/repositories/svn_with_branching.tgz +0 -0
- data/test/repositories/svn_with_invalid_encoding.tgz +0 -0
- data/test/repositories/svn_with_tree_move/README.txt +0 -5
- data/test/repositories/svn_with_tree_move/conf/authz +0 -21
- data/test/repositories/svn_with_tree_move/conf/passwd +0 -8
- data/test/repositories/svn_with_tree_move/conf/svnserve.conf +0 -30
- data/test/repositories/svn_with_tree_move/db/current +0 -1
- data/test/repositories/svn_with_tree_move/db/format +0 -1
- data/test/repositories/svn_with_tree_move/db/fs-type +0 -1
- data/test/repositories/svn_with_tree_move/db/revprops/0 +0 -5
- data/test/repositories/svn_with_tree_move/db/revprops/1 +0 -13
- data/test/repositories/svn_with_tree_move/db/revprops/2 +0 -13
- data/test/repositories/svn_with_tree_move/db/revs/0 +0 -11
- data/test/repositories/svn_with_tree_move/db/revs/1 +0 -0
- data/test/repositories/svn_with_tree_move/db/revs/2 +0 -44
- data/test/repositories/svn_with_tree_move/db/uuid +0 -1
- data/test/repositories/svn_with_tree_move/db/write-lock +0 -0
- data/test/repositories/svn_with_tree_move/format +0 -1
- data/test/repositories/svn_with_tree_move/hooks/post-commit.tmpl +0 -51
- data/test/repositories/svn_with_tree_move/hooks/post-lock.tmpl +0 -44
- data/test/repositories/svn_with_tree_move/hooks/post-revprop-change.tmpl +0 -56
- data/test/repositories/svn_with_tree_move/hooks/post-unlock.tmpl +0 -42
- data/test/repositories/svn_with_tree_move/hooks/pre-commit.tmpl +0 -70
- data/test/repositories/svn_with_tree_move/hooks/pre-lock.tmpl +0 -64
- data/test/repositories/svn_with_tree_move/hooks/pre-revprop-change.tmpl +0 -66
- data/test/repositories/svn_with_tree_move/hooks/pre-unlock.tmpl +0 -60
- data/test/repositories/svn_with_tree_move/hooks/start-commit.tmpl +0 -54
- data/test/repositories/svn_with_tree_move/locks/db-logs.lock +0 -3
- data/test/repositories/svn_with_tree_move/locks/db.lock +0 -3
- data/test/test_helper.rb +0 -127
- data/test/unit/abstract_adapter_test.rb +0 -106
- data/test/unit/adapter_factory_test.rb +0 -67
- data/test/unit/array_writer_test.rb +0 -33
- data/test/unit/bzr_cat_file_test.rb +0 -56
- data/test/unit/bzr_commits_test.rb +0 -388
- data/test/unit/bzr_head_test.rb +0 -18
- data/test/unit/bzr_misc_test.rb +0 -62
- data/test/unit/bzr_parser_test.rb +0 -483
- data/test/unit/bzr_pull_test.rb +0 -31
- data/test/unit/bzr_push_test.rb +0 -61
- data/test/unit/bzr_validation_test.rb +0 -61
- data/test/unit/bzr_xml_parser_test.rb +0 -409
- data/test/unit/bzrlib_cat_file_test.rb +0 -56
- data/test/unit/bzrlib_head_test.rb +0 -18
- data/test/unit/cvs_branch_number_test.rb +0 -130
- data/test/unit/cvs_commits_test.rb +0 -52
- data/test/unit/cvs_convert_test.rb +0 -30
- data/test/unit/cvs_misc_test.rb +0 -82
- data/test/unit/cvs_parser_test.rb +0 -94
- data/test/unit/cvs_validation_test.rb +0 -148
- data/test/unit/git_cat_file_test.rb +0 -21
- data/test/unit/git_commit_all_test.rb +0 -34
- data/test/unit/git_commits_test.rb +0 -179
- data/test/unit/git_head_test.rb +0 -26
- data/test/unit/git_log_parser_test.rb +0 -221
- data/test/unit/git_misc_test.rb +0 -100
- data/test/unit/git_parser_test.rb +0 -59
- data/test/unit/git_patch_test.rb +0 -14
- data/test/unit/git_pull_test.rb +0 -50
- data/test/unit/git_push_test.rb +0 -46
- data/test/unit/git_rev_list_test.rb +0 -89
- data/test/unit/git_styled_parser_test.rb +0 -103
- data/test/unit/git_svn_cat_file_test.rb +0 -57
- data/test/unit/git_svn_commits_test.rb +0 -37
- data/test/unit/git_svn_pull_test.rb +0 -51
- data/test/unit/git_token_test.rb +0 -45
- data/test/unit/git_validation_test.rb +0 -93
- data/test/unit/hg_cat_file_test.rb +0 -47
- data/test/unit/hg_commits_test.rb +0 -220
- data/test/unit/hg_head_test.rb +0 -24
- data/test/unit/hg_misc_test.rb +0 -48
- data/test/unit/hg_parser_test.rb +0 -184
- data/test/unit/hg_patch_test.rb +0 -14
- data/test/unit/hg_pull_test.rb +0 -29
- data/test/unit/hg_push_test.rb +0 -59
- data/test/unit/hg_rev_list_test.rb +0 -63
- data/test/unit/hg_validation_test.rb +0 -60
- data/test/unit/hglib_cat_file_test.rb +0 -47
- data/test/unit/hglib_head_test.rb +0 -18
- data/test/unit/ohlog_command_line_test.rb +0 -36
- data/test/unit/shellout_test.rb +0 -26
- data/test/unit/string_encoder_command_line_test.rb +0 -27
- data/test/unit/svn_cat_file_test.rb +0 -22
- data/test/unit/svn_chain_cat_file_test.rb +0 -24
- data/test/unit/svn_chain_commits_test.rb +0 -176
- data/test/unit/svn_chain_test.rb +0 -77
- data/test/unit/svn_commits_test.rb +0 -275
- data/test/unit/svn_convert_test.rb +0 -28
- data/test/unit/svn_head_test.rb +0 -27
- data/test/unit/svn_misc_test.rb +0 -142
- data/test/unit/svn_parser_test.rb +0 -155
- data/test/unit/svn_patch_test.rb +0 -14
- data/test/unit/svn_pull_test.rb +0 -60
- data/test/unit/svn_push_test.rb +0 -40
- data/test/unit/svn_validation_test.rb +0 -176
- data/test/unit/svn_xml_parser_test.rb +0 -45
data/lib/ohloh_scm/shellout.rb
DELETED
@@ -1,40 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'stringio'
|
3
|
-
require 'posix/spawn'
|
4
|
-
|
5
|
-
class Shellout
|
6
|
-
def self.relay src, dst
|
7
|
-
while((buf = src.read(8192))); dst << buf; end
|
8
|
-
end
|
9
|
-
|
10
|
-
def self.execute(cmd)
|
11
|
-
posix_spawn = POSIX::Spawn::Child.new(cmd)
|
12
|
-
|
13
|
-
return posix_spawn.status, posix_spawn.out, posix_spawn.err
|
14
|
-
end
|
15
|
-
|
16
|
-
def run(cmd)
|
17
|
-
Shellout::execute(cmd)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
if $0 == __FILE__
|
22
|
-
shell = Shellout.new
|
23
|
-
date = %q( ruby -e" t = Time.now; STDOUT.puts t; STDERR.puts t " )
|
24
|
-
status, stdout, stderr = shell.run(date)
|
25
|
-
p [status.exitstatus, stdout, stderr]
|
26
|
-
|
27
|
-
sleep = %q( ruby -e" p(sleep(1)) " )
|
28
|
-
status, stdout, stderr = shell.run(sleep)
|
29
|
-
p [status.exitstatus, stdout, stderr]
|
30
|
-
|
31
|
-
cat = 'ruby -e" puts Array.new(65536){ 42 } "'
|
32
|
-
status, stdout, stderr = shell.run(cat)
|
33
|
-
p [status.exitstatus, stdout, stderr]
|
34
|
-
|
35
|
-
status, stdout, stderr = shell.run('osiudfoisynajtet32')
|
36
|
-
p [status.exitstatus, stdout, stderr]
|
37
|
-
|
38
|
-
end
|
39
|
-
|
40
|
-
|
data/log/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
*.log
|
data/test/bin/svn
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
#! /usr/bin/env bash
|
2
|
-
# This is for use with tests dealing with invalid encodings in svn log.
|
3
|
-
# This script returns a sample svn xml log with some non utf-8 characters.
|
4
|
-
|
5
|
-
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
6
|
-
|
7
|
-
cat $DIR/../data/svn_with_invalid_encoding.log
|
data/test/data/basic.ohlog
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0"?>
|
2
|
-
<ohloh_log scm="cvs">
|
3
|
-
<commit token="2005/07/25 17:09:59">
|
4
|
-
<committer name="pizzandre" date="2005-07-25T17:09:59Z" />
|
5
|
-
<message>*** empty log message ***</message>
|
6
|
-
</commit>
|
7
|
-
<commit token="2005/07/25 17:11:06">
|
8
|
-
<committer name="pizzandre" date="2005-07-25T17:11:06Z" />
|
9
|
-
<message>Addin UNL file with using example-</message>
|
10
|
-
</commit>
|
11
|
-
</ohloh_log>
|
@@ -1,87 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<logs>
|
3
|
-
<log>
|
4
|
-
<revno>7</revno>
|
5
|
-
<revisionid>amujumdar@blackducksoftware.com-20110722184732-seu94oakpvy66nuu</revisionid>
|
6
|
-
<parents>
|
7
|
-
<parent>amujumdar@blackducksoftware.com-20110722184717-u0ykbdm4pquaj0ai</parent>
|
8
|
-
</parents>
|
9
|
-
<committer>Abhay <amujumdar@blackducksoftware.com></committer>
|
10
|
-
<branch-nick>myproject</branch-nick>
|
11
|
-
<timestamp>Fri 2011-07-22 14:47:32 -0400</timestamp>
|
12
|
-
<message><![CDATA[trunk changed subdir/test4]]></message>
|
13
|
-
<affected-files>
|
14
|
-
<modified>
|
15
|
-
<file fid="test4.txt-20110722163813-257mjqqrvw3mav0f-5">subdir/test4.txt</file>
|
16
|
-
</modified>
|
17
|
-
</affected-files>
|
18
|
-
</log>
|
19
|
-
<log>
|
20
|
-
<revno>8</revno>
|
21
|
-
<revisionid>amujumdar@blackducksoftware.com-20110722184839-og2qcc9g9re09iuu</revisionid>
|
22
|
-
<parents>
|
23
|
-
<parent>amujumdar@blackducksoftware.com-20110722184732-seu94oakpvy66nuu</parent>
|
24
|
-
<parent>amujumdar@blackducksoftware.com-20110722184630-kn5n3oo0c9hns3i8</parent>
|
25
|
-
</parents>
|
26
|
-
<committer>Abhay <amujumdar@blackducksoftware.com></committer>
|
27
|
-
<branch-nick>myproject</branch-nick>
|
28
|
-
<timestamp>Fri 2011-07-22 14:48:39 -0400</timestamp>
|
29
|
-
<message><![CDATA[Merged feature a]]></message>
|
30
|
-
<affected-files>
|
31
|
-
<modified>
|
32
|
-
<file fid="test1.txt-20110722163813-257mjqqrvw3mav0f-2">test1.txt</file>
|
33
|
-
<file fid="test2.txt-20110722163813-257mjqqrvw3mav0f-3">test2.txt</file>
|
34
|
-
</modified>
|
35
|
-
</affected-files>
|
36
|
-
<merge>
|
37
|
-
<log>
|
38
|
-
<revno>5.1.1</revno>
|
39
|
-
<revisionid>amujumdar@blackducksoftware.com-20110722184557-splhn3urfvq9mqfl</revisionid>
|
40
|
-
<parents>
|
41
|
-
<parent>amujumdar@blackducksoftware.com-20110722180659-be4tmnzss40h05o6</parent>
|
42
|
-
</parents>
|
43
|
-
<committer>Abhay <amujumdar@blackducksoftware.com></committer>
|
44
|
-
<branch-nick>feature_a</branch-nick>
|
45
|
-
<timestamp>Fri 2011-07-22 14:45:57 -0400</timestamp>
|
46
|
-
<message><![CDATA[feature a changed test1]]></message>
|
47
|
-
<affected-files>
|
48
|
-
<modified>
|
49
|
-
<file fid="test1.txt-20110722163813-257mjqqrvw3mav0f-2">test1.txt</file>
|
50
|
-
</modified>
|
51
|
-
</affected-files>
|
52
|
-
</log>
|
53
|
-
<log>
|
54
|
-
<revno>5.1.2</revno>
|
55
|
-
<revisionid>amujumdar@blackducksoftware.com-20110722184630-kn5n3oo0c9hns3i8</revisionid>
|
56
|
-
<parents>
|
57
|
-
<parent>amujumdar@blackducksoftware.com-20110722184557-splhn3urfvq9mqfl</parent>
|
58
|
-
</parents>
|
59
|
-
<committer>Abhay <amujumdar@blackducksoftware.com></committer>
|
60
|
-
<branch-nick>feature_a</branch-nick>
|
61
|
-
<timestamp>Fri 2011-07-22 14:46:30 -0400</timestamp>
|
62
|
-
<message><![CDATA[feature a changed test2]]></message>
|
63
|
-
<affected-files>
|
64
|
-
<modified>
|
65
|
-
<file fid="test2.txt-20110722163813-257mjqqrvw3mav0f-3">test2.txt</file>
|
66
|
-
</modified>
|
67
|
-
</affected-files>
|
68
|
-
</log>
|
69
|
-
</merge>
|
70
|
-
</log>
|
71
|
-
<log>
|
72
|
-
<revno>9</revno>
|
73
|
-
<revisionid>amujumdar@blackducksoftware.com-20110722185038-e0i4d1mdxwpipxc4</revisionid>
|
74
|
-
<parents>
|
75
|
-
<parent>amujumdar@blackducksoftware.com-20110722184839-og2qcc9g9re09iuu</parent>
|
76
|
-
</parents>
|
77
|
-
<committer>Abhay <amujumdar@blackducksoftware.com></committer>
|
78
|
-
<branch-nick>myproject</branch-nick>
|
79
|
-
<timestamp>Fri 2011-07-22 14:50:38 -0400</timestamp>
|
80
|
-
<message><![CDATA[trunk changed test1.]]></message>
|
81
|
-
<affected-files>
|
82
|
-
<modified>
|
83
|
-
<file fid="test1.txt-20110722163813-257mjqqrvw3mav0f-2">test1.txt</file>
|
84
|
-
</modified>
|
85
|
-
</affected-files>
|
86
|
-
</log>
|
87
|
-
</logs>
|
data/test/data/git_patch.diff
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
diff --git a/makefile b/makefile
|
2
|
-
new file mode 100644
|
3
|
-
index 0000000..af2dfd5
|
4
|
-
--- /dev/null
|
5
|
-
+++ b/makefile
|
6
|
-
@@ -0,0 +1,4 @@
|
7
|
-
+all: helloworld
|
8
|
-
+
|
9
|
-
+helloworld: helloworld.c
|
10
|
-
+ gcc -o helloworld helloworld.c
|
11
|
-
diff --git a/ohloh_token b/ohloh_token
|
12
|
-
index 56a6051..d8263ee 100644
|
13
|
-
--- a/ohloh_token
|
14
|
-
+++ b/ohloh_token
|
15
|
-
@@ -1 +1 @@
|
16
|
-
-1
|
17
|
-
|
18
|
-
+2
|
19
|
-
|
data/test/data/helloworld.log
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
__BEGIN_COMMIT__
|
2
|
-
Commit: 089c527c61235bd0793c49109b5bd34d439848c6
|
3
|
-
Author: robin
|
4
|
-
Date: Sun, 11 Jun 2006 11:28:00 +0000
|
5
|
-
__BEGIN_COMMENT__
|
6
|
-
Initial Checkin
|
7
|
-
<unknown>
|
8
|
-
__END_COMMENT__
|
9
|
-
:000000 100644 0000000000000000000000000000000000000000 482d295e4e4f85cdde2e7d8ae7d8ce257192b9e8 A .gitignore
|
10
|
-
:000000 100644 0000000000000000000000000000000000000000 4c734ad53b272c9b3d719f214372ac497ff6c068 A helloworld.c
|
11
|
-
:000000 100644 0000000000000000000000000000000000000000 56a6051ca2b02b04ef92d5150c9ef600403cb1de A ohloh_token
|
12
|
-
__BEGIN_COMMIT__
|
13
|
-
Commit: b6e9220c3cabe53a4ed7f32952aeaeb8a822603d
|
14
|
-
Author: robin
|
15
|
-
Date: Sun, 11 Jun 2006 11:32:13 -0700
|
16
|
-
__BEGIN_COMMENT__
|
17
|
-
added makefile
|
18
|
-
<unknown>
|
19
|
-
__END_COMMENT__
|
20
|
-
:000000 100644 0000000000000000000000000000000000000000 af2dfd5070b01a19b672861e595de98c101c49cc A makefile
|
21
|
-
:100644 100644 56a6051ca2b02b04ef92d5150c9ef600403cb1de d8263ee9860594d2806b0dfd1bfd17528b0ba2a4 M ohloh_token
|
22
|
-
__BEGIN_COMMIT__
|
23
|
-
Commit: 2e9366dd7a786fdb35f211fff1c8ea05c51968b1
|
24
|
-
Author: robin
|
25
|
-
Date: Sun, 11 Jun 2006 11:34:17 +0200
|
26
|
-
__BEGIN_COMMENT__
|
27
|
-
added some documentation and licensing info
|
28
|
-
<unknown>
|
29
|
-
__END_COMMENT__
|
30
|
-
:000000 100644 0000000000000000000000000000000000000000 f0547ce063095e66be74618bc410989df226d2d2 A README
|
31
|
-
:100644 100644 4c734ad53b272c9b3d719f214372ac497ff6c068 f6adcae4447809b651c787c078d255b2b4e963c5 M helloworld.c
|
32
|
-
:100644 100644 d8263ee9860594d2806b0dfd1bfd17528b0ba2a4 e440e5c842586965a7fb77deda2eca68612b1f53 M ohloh_token
|
33
|
-
__BEGIN_COMMIT__
|
34
|
-
Commit: a66c35d4224a9f425d1163651b9e0fb1b4b64b9f
|
35
|
-
Author: robin
|
36
|
-
Date: Sun, 11 Jun 2006 11:50:17 +0200
|
37
|
-
__BEGIN_COMMENT__
|
38
|
-
rename ohloh_token to ohloh_tokens
|
39
|
-
<unknown>
|
40
|
-
__END_COMMENT__
|
41
|
-
:100644 100644 82dde552eb88ca764d728319284b92b7639e8057 82dde552eb88ca764d728319284b92b7639e8057 R100 ohloh_token ohloh_tokens
|
data/test/data/hg_patch.diff
DELETED
data/test/data/intelliglue.rlog
DELETED
@@ -1,1216 +0,0 @@
|
|
1
|
-
|
2
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/UML/intelliglue.zuml,v
|
3
|
-
head: 1.1
|
4
|
-
branch:
|
5
|
-
locks: strict
|
6
|
-
access list:
|
7
|
-
symbolic names:
|
8
|
-
keyword substitution: kv
|
9
|
-
total revisions: 1; selected revisions: 1
|
10
|
-
description:
|
11
|
-
----------------------------
|
12
|
-
revision 1.1
|
13
|
-
date: 2005/07/25 17:11:06; author: pizzandre; state: Exp;
|
14
|
-
Addin UNL file with using example-
|
15
|
-
=============================================================================
|
16
|
-
|
17
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/articles/IoC_Regras.pdf,v
|
18
|
-
head: 1.1
|
19
|
-
branch:
|
20
|
-
locks: strict
|
21
|
-
access list:
|
22
|
-
symbolic names:
|
23
|
-
keyword substitution: b
|
24
|
-
total revisions: 1; selected revisions: 1
|
25
|
-
description:
|
26
|
-
----------------------------
|
27
|
-
revision 1.1
|
28
|
-
date: 2005/07/25 17:09:59; author: pizzandre; state: Exp;
|
29
|
-
*** empty log message ***
|
30
|
-
=============================================================================
|
31
|
-
|
32
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/etc/Configuration.txt,v
|
33
|
-
head: 1.1
|
34
|
-
branch:
|
35
|
-
locks: strict
|
36
|
-
access list:
|
37
|
-
symbolic names:
|
38
|
-
keyword substitution: kv
|
39
|
-
total revisions: 1; selected revisions: 1
|
40
|
-
description:
|
41
|
-
----------------------------
|
42
|
-
revision 1.1
|
43
|
-
date: 2005/07/25 20:29:27; author: pizzandre; state: Exp;
|
44
|
-
Adding Configuration.txt-
|
45
|
-
=============================================================================
|
46
|
-
|
47
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/antlr-2.7.2.jar,v
|
48
|
-
head: 1.1
|
49
|
-
branch:
|
50
|
-
locks: strict
|
51
|
-
access list:
|
52
|
-
symbolic names:
|
53
|
-
keyword substitution: b
|
54
|
-
total revisions: 1; selected revisions: 1
|
55
|
-
description:
|
56
|
-
----------------------------
|
57
|
-
revision 1.1
|
58
|
-
date: 2005/07/26 20:14:21; author: pizzandre; state: Exp;
|
59
|
-
Adding drools dependencies to rule engine
|
60
|
-
=============================================================================
|
61
|
-
|
62
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-base-2.0-beta-17.jar,v
|
63
|
-
head: 1.1
|
64
|
-
branch:
|
65
|
-
locks: strict
|
66
|
-
access list:
|
67
|
-
symbolic names:
|
68
|
-
keyword substitution: b
|
69
|
-
total revisions: 1; selected revisions: 1
|
70
|
-
description:
|
71
|
-
----------------------------
|
72
|
-
revision 1.1
|
73
|
-
date: 2005/07/26 20:14:21; author: pizzandre; state: Exp;
|
74
|
-
Adding drools dependencies to rule engine
|
75
|
-
=============================================================================
|
76
|
-
|
77
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-core-2.0-beta-17.jar,v
|
78
|
-
head: 1.1
|
79
|
-
branch:
|
80
|
-
locks: strict
|
81
|
-
access list:
|
82
|
-
symbolic names:
|
83
|
-
keyword substitution: b
|
84
|
-
total revisions: 1; selected revisions: 1
|
85
|
-
description:
|
86
|
-
----------------------------
|
87
|
-
revision 1.1
|
88
|
-
date: 2005/07/26 20:14:22; author: pizzandre; state: Exp;
|
89
|
-
Adding drools dependencies to rule engine
|
90
|
-
=============================================================================
|
91
|
-
|
92
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-examples-2.0-beta-17.jar,v
|
93
|
-
head: 1.1
|
94
|
-
branch:
|
95
|
-
locks: strict
|
96
|
-
access list:
|
97
|
-
symbolic names:
|
98
|
-
keyword substitution: b
|
99
|
-
total revisions: 1; selected revisions: 1
|
100
|
-
description:
|
101
|
-
----------------------------
|
102
|
-
revision 1.1
|
103
|
-
date: 2005/07/26 20:14:22; author: pizzandre; state: Exp;
|
104
|
-
Adding drools dependencies to rule engine
|
105
|
-
=============================================================================
|
106
|
-
|
107
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-groovy-2.0-beta-17.jar,v
|
108
|
-
head: 1.1
|
109
|
-
branch:
|
110
|
-
locks: strict
|
111
|
-
access list:
|
112
|
-
symbolic names:
|
113
|
-
keyword substitution: b
|
114
|
-
total revisions: 1; selected revisions: 1
|
115
|
-
description:
|
116
|
-
----------------------------
|
117
|
-
revision 1.1
|
118
|
-
date: 2005/07/26 20:14:22; author: pizzandre; state: Exp;
|
119
|
-
Adding drools dependencies to rule engine
|
120
|
-
=============================================================================
|
121
|
-
|
122
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-io-2.0-beta-17.jar,v
|
123
|
-
head: 1.1
|
124
|
-
branch:
|
125
|
-
locks: strict
|
126
|
-
access list:
|
127
|
-
symbolic names:
|
128
|
-
keyword substitution: b
|
129
|
-
total revisions: 1; selected revisions: 1
|
130
|
-
description:
|
131
|
-
----------------------------
|
132
|
-
revision 1.1
|
133
|
-
date: 2005/07/26 20:14:22; author: pizzandre; state: Exp;
|
134
|
-
Adding drools dependencies to rule engine
|
135
|
-
=============================================================================
|
136
|
-
|
137
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-java-2.0-beta-17.jar,v
|
138
|
-
head: 1.1
|
139
|
-
branch:
|
140
|
-
locks: strict
|
141
|
-
access list:
|
142
|
-
symbolic names:
|
143
|
-
keyword substitution: b
|
144
|
-
total revisions: 1; selected revisions: 1
|
145
|
-
description:
|
146
|
-
----------------------------
|
147
|
-
revision 1.1
|
148
|
-
date: 2005/07/26 20:14:22; author: pizzandre; state: Exp;
|
149
|
-
Adding drools dependencies to rule engine
|
150
|
-
=============================================================================
|
151
|
-
|
152
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-jsr94-2.0-beta-17.jar,v
|
153
|
-
head: 1.1
|
154
|
-
branch:
|
155
|
-
locks: strict
|
156
|
-
access list:
|
157
|
-
symbolic names:
|
158
|
-
keyword substitution: b
|
159
|
-
total revisions: 1; selected revisions: 1
|
160
|
-
description:
|
161
|
-
----------------------------
|
162
|
-
revision 1.1
|
163
|
-
date: 2005/07/26 20:14:22; author: pizzandre; state: Exp;
|
164
|
-
Adding drools dependencies to rule engine
|
165
|
-
=============================================================================
|
166
|
-
|
167
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-python-2.0-beta-17.jar,v
|
168
|
-
head: 1.1
|
169
|
-
branch:
|
170
|
-
locks: strict
|
171
|
-
access list:
|
172
|
-
symbolic names:
|
173
|
-
keyword substitution: b
|
174
|
-
total revisions: 1; selected revisions: 1
|
175
|
-
description:
|
176
|
-
----------------------------
|
177
|
-
revision 1.1
|
178
|
-
date: 2005/07/26 20:14:23; author: pizzandre; state: Exp;
|
179
|
-
Adding drools dependencies to rule engine
|
180
|
-
=============================================================================
|
181
|
-
|
182
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-smf-2.0-beta-17.jar,v
|
183
|
-
head: 1.1
|
184
|
-
branch:
|
185
|
-
locks: strict
|
186
|
-
access list:
|
187
|
-
symbolic names:
|
188
|
-
keyword substitution: b
|
189
|
-
total revisions: 1; selected revisions: 1
|
190
|
-
description:
|
191
|
-
----------------------------
|
192
|
-
revision 1.1
|
193
|
-
date: 2005/07/26 20:14:23; author: pizzandre; state: Exp;
|
194
|
-
Adding drools dependencies to rule engine
|
195
|
-
=============================================================================
|
196
|
-
|
197
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/drools-smftest-2.0-beta-17.jar,v
|
198
|
-
head: 1.1
|
199
|
-
branch:
|
200
|
-
locks: strict
|
201
|
-
access list:
|
202
|
-
symbolic names:
|
203
|
-
keyword substitution: b
|
204
|
-
total revisions: 1; selected revisions: 1
|
205
|
-
description:
|
206
|
-
----------------------------
|
207
|
-
revision 1.1
|
208
|
-
date: 2005/07/26 20:14:23; author: pizzandre; state: Exp;
|
209
|
-
Adding drools dependencies to rule engine
|
210
|
-
=============================================================================
|
211
|
-
|
212
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/lib/drools/janino-2.0.5.jar,v
|
213
|
-
head: 1.1
|
214
|
-
branch:
|
215
|
-
locks: strict
|
216
|
-
access list:
|
217
|
-
symbolic names:
|
218
|
-
keyword substitution: b
|
219
|
-
total revisions: 1; selected revisions: 1
|
220
|
-
description:
|
221
|
-
----------------------------
|
222
|
-
revision 1.1
|
223
|
-
date: 2005/07/26 20:14:23; author: pizzandre; state: Exp;
|
224
|
-
Adding drools dependencies to rule engine
|
225
|
-
=============================================================================
|
226
|
-
|
227
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/src/components/sequence/common/Sequence.java,v
|
228
|
-
head: 1.1
|
229
|
-
branch:
|
230
|
-
locks: strict
|
231
|
-
access list:
|
232
|
-
symbolic names:
|
233
|
-
keyword substitution: kv
|
234
|
-
total revisions: 1; selected revisions: 1
|
235
|
-
description:
|
236
|
-
----------------------------
|
237
|
-
revision 1.1
|
238
|
-
date: 2005/07/25 20:36:09; author: pizzandre; state: Exp;
|
239
|
-
Issue number: 1
|
240
|
-
Obtained from: intelligent plugin
|
241
|
-
Submitted by: andre piza
|
242
|
-
Reviewed by: andre piza
|
243
|
-
=============================================================================
|
244
|
-
|
245
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/src/exceptions/PluginInstanciationException.java,v
|
246
|
-
head: 1.1
|
247
|
-
branch:
|
248
|
-
locks: strict
|
249
|
-
access list:
|
250
|
-
symbolic names:
|
251
|
-
keyword substitution: kv
|
252
|
-
total revisions: 1; selected revisions: 1
|
253
|
-
description:
|
254
|
-
----------------------------
|
255
|
-
revision 1.1
|
256
|
-
date: 2005/07/25 20:36:11; author: pizzandre; state: Exp;
|
257
|
-
Issue number: 1
|
258
|
-
Obtained from: intelligent plugin
|
259
|
-
Submitted by: andre piza
|
260
|
-
Reviewed by: andre piza
|
261
|
-
=============================================================================
|
262
|
-
|
263
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/src/execution/Principal.java,v
|
264
|
-
head: 1.1
|
265
|
-
branch:
|
266
|
-
locks: strict
|
267
|
-
access list:
|
268
|
-
symbolic names:
|
269
|
-
keyword substitution: kv
|
270
|
-
total revisions: 1; selected revisions: 1
|
271
|
-
description:
|
272
|
-
----------------------------
|
273
|
-
revision 1.1
|
274
|
-
date: 2005/07/25 20:36:13; author: pizzandre; state: Exp;
|
275
|
-
Issue number: 1
|
276
|
-
Obtained from: intelligent plugin
|
277
|
-
Submitted by: andre piza
|
278
|
-
Reviewed by: andre piza
|
279
|
-
=============================================================================
|
280
|
-
|
281
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/src/plugin/factory/PluginFactory.java,v
|
282
|
-
head: 1.1
|
283
|
-
branch:
|
284
|
-
locks: strict
|
285
|
-
access list:
|
286
|
-
symbolic names:
|
287
|
-
keyword substitution: kv
|
288
|
-
total revisions: 1; selected revisions: 1
|
289
|
-
description:
|
290
|
-
----------------------------
|
291
|
-
revision 1.1
|
292
|
-
date: 2005/07/25 20:36:14; author: pizzandre; state: Exp;
|
293
|
-
Issue number: 1
|
294
|
-
Obtained from: intelligent plugin
|
295
|
-
Submitted by: andre piza
|
296
|
-
Reviewed by: andre piza
|
297
|
-
=============================================================================
|
298
|
-
|
299
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/src/plugin/factory/PluginFactorySetup.java,v
|
300
|
-
head: 1.1
|
301
|
-
branch:
|
302
|
-
locks: strict
|
303
|
-
access list:
|
304
|
-
symbolic names:
|
305
|
-
keyword substitution: kv
|
306
|
-
total revisions: 1; selected revisions: 1
|
307
|
-
description:
|
308
|
-
----------------------------
|
309
|
-
revision 1.1
|
310
|
-
date: 2005/07/25 20:36:14; author: pizzandre; state: Exp;
|
311
|
-
Issue number: 1
|
312
|
-
Obtained from: intelligent plugin
|
313
|
-
Submitted by: andre piza
|
314
|
-
Reviewed by: andre piza
|
315
|
-
=============================================================================
|
316
|
-
|
317
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/src/plugin/factory/rules/integration/IntegrationRules.java.drl,v
|
318
|
-
head: 1.1
|
319
|
-
branch:
|
320
|
-
locks: strict
|
321
|
-
access list:
|
322
|
-
symbolic names:
|
323
|
-
keyword substitution: kv
|
324
|
-
total revisions: 1; selected revisions: 1
|
325
|
-
description:
|
326
|
-
----------------------------
|
327
|
-
revision 1.1
|
328
|
-
date: 2005/07/25 20:36:16; author: pizzandre; state: Exp;
|
329
|
-
Issue number: 1
|
330
|
-
Obtained from: intelligent plugin
|
331
|
-
Submitted by: andre piza
|
332
|
-
Reviewed by: andre piza
|
333
|
-
=============================================================================
|
334
|
-
|
335
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/src/plugin/factory/rules/integration/ruleset/sequence.java.drl,v
|
336
|
-
head: 1.1
|
337
|
-
branch:
|
338
|
-
locks: strict
|
339
|
-
access list:
|
340
|
-
symbolic names:
|
341
|
-
keyword substitution: kv
|
342
|
-
total revisions: 1; selected revisions: 1
|
343
|
-
description:
|
344
|
-
----------------------------
|
345
|
-
revision 1.1
|
346
|
-
date: 2005/07/25 20:36:17; author: pizzandre; state: Exp;
|
347
|
-
Issue number: 1
|
348
|
-
Obtained from: intelligent plugin
|
349
|
-
Submitted by: andre piza
|
350
|
-
Reviewed by: andre piza
|
351
|
-
=============================================================================
|
352
|
-
|
353
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/intelliglue_eclipse/src/plugin/handler/ComponentHandler.java,v
|
354
|
-
head: 1.1
|
355
|
-
branch:
|
356
|
-
locks: strict
|
357
|
-
access list:
|
358
|
-
symbolic names:
|
359
|
-
keyword substitution: kv
|
360
|
-
total revisions: 1; selected revisions: 1
|
361
|
-
description:
|
362
|
-
----------------------------
|
363
|
-
revision 1.1
|
364
|
-
date: 2005/07/25 20:36:18; author: pizzandre; state: Exp;
|
365
|
-
Issue number: 1
|
366
|
-
Obtained from: intelligent plugin
|
367
|
-
Submitted by: andre piza
|
368
|
-
Reviewed by: andre piza
|
369
|
-
=============================================================================
|
370
|
-
|
371
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/index.html,v
|
372
|
-
head: 1.9
|
373
|
-
branch:
|
374
|
-
locks: strict
|
375
|
-
access list:
|
376
|
-
symbolic names:
|
377
|
-
keyword substitution: kv
|
378
|
-
total revisions: 9; selected revisions: 9
|
379
|
-
description:
|
380
|
-
----------------------------
|
381
|
-
revision 1.9
|
382
|
-
date: 2005/07/26 20:39:16; author: pizzandre; state: Exp; lines: +2 -2
|
383
|
-
Issue number:
|
384
|
-
Obtained from:
|
385
|
-
Submitted by:
|
386
|
-
Reviewed by:
|
387
|
-
Completing and fixing milestones texts
|
388
|
-
----------------------------
|
389
|
-
revision 1.8
|
390
|
-
date: 2005/07/26 20:35:13; author: pizzandre; state: Exp; lines: +2 -2
|
391
|
-
Issue number:
|
392
|
-
Obtained from:
|
393
|
-
Submitted by:
|
394
|
-
Reviewed by:
|
395
|
-
Adding current milestones-
|
396
|
-
----------------------------
|
397
|
-
revision 1.7
|
398
|
-
date: 2005/07/26 20:30:41; author: pizzandre; state: Exp; lines: +1 -1
|
399
|
-
Issue number:pizzandre
|
400
|
-
Obtained from:pizzandre
|
401
|
-
Submitted by:pizzandre
|
402
|
-
Reviewed by:pizzandre
|
403
|
-
Adding link to release 1.0
|
404
|
-
----------------------------
|
405
|
-
revision 1.6
|
406
|
-
date: 2005/07/26 20:16:13; author: pizzandre; state: Exp; lines: +1 -1
|
407
|
-
Issue number: 1
|
408
|
-
Obtained from: pizzandre
|
409
|
-
Submitted by: pizzandre
|
410
|
-
Reviewed by: pizzandre
|
411
|
-
|
412
|
-
Adding milestone 1 info
|
413
|
-
----------------------------
|
414
|
-
revision 1.5
|
415
|
-
date: 2005/07/15 17:16:15; author: pizzandre; state: Exp; lines: +7 -26
|
416
|
-
*** empty log message ***
|
417
|
-
----------------------------
|
418
|
-
revision 1.4
|
419
|
-
date: 2005/07/15 16:46:35; author: pizzandre; state: Exp; lines: +4 -4
|
420
|
-
*** empty log message ***
|
421
|
-
----------------------------
|
422
|
-
revision 1.3
|
423
|
-
date: 2005/07/15 16:40:17; author: pizzandre; state: Exp; lines: +1 -282
|
424
|
-
*** empty log message ***
|
425
|
-
----------------------------
|
426
|
-
revision 1.2
|
427
|
-
date: 2005/07/15 16:33:54; author: pizzandre; state: Exp; lines: +349 -41
|
428
|
-
*** empty log message ***
|
429
|
-
----------------------------
|
430
|
-
revision 1.1
|
431
|
-
date: 2005/07/15 11:53:30; author: httpd; state: Exp;
|
432
|
-
Initial data for the intelliglue project
|
433
|
-
=============================================================================
|
434
|
-
|
435
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/Attic/sequence.zip,v
|
436
|
-
head: 1.2
|
437
|
-
branch:
|
438
|
-
locks: strict
|
439
|
-
access list:
|
440
|
-
symbolic names:
|
441
|
-
keyword substitution: b
|
442
|
-
total revisions: 2; selected revisions: 2
|
443
|
-
description:
|
444
|
-
----------------------------
|
445
|
-
revision 1.2
|
446
|
-
date: 2006/02/05 23:10:33; author: pizzandre; state: dead; lines: +0 -0
|
447
|
-
Issue number:
|
448
|
-
Obtained from:
|
449
|
-
Submitted by:
|
450
|
-
Reviewed by:
|
451
|
-
CVS: ----------------------------------------------------------------------
|
452
|
-
CVS: Issue number:
|
453
|
-
CVS: If this change addresses one or more issues,
|
454
|
-
CVS: then enter the issue number(s) here.
|
455
|
-
CVS: Obtained from:
|
456
|
-
CVS: If this change has been taken from another system,
|
457
|
-
CVS: then name the system in this line, otherwise delete it.
|
458
|
-
CVS: Submitted by:
|
459
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
460
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
461
|
-
CVS: address here. If this is your work then delete this line.
|
462
|
-
CVS: Reviewed by:
|
463
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
464
|
-
CVS: reviewed your changes, include their name(s) here.
|
465
|
-
CVS: If you have not had it reviewed then delete this line.
|
466
|
-
----------------------------
|
467
|
-
revision 1.1
|
468
|
-
date: 2006/01/30 15:53:05; author: pizzandre; state: Exp;
|
469
|
-
|
470
|
-
Primeira versao do plugin sequence do netbeans
|
471
|
-
=============================================================================
|
472
|
-
|
473
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/build.xml,v
|
474
|
-
head: 1.1
|
475
|
-
branch:
|
476
|
-
locks: strict
|
477
|
-
access list:
|
478
|
-
symbolic names:
|
479
|
-
keyword substitution: kv
|
480
|
-
total revisions: 1; selected revisions: 1
|
481
|
-
description:
|
482
|
-
----------------------------
|
483
|
-
revision 1.1
|
484
|
-
date: 2006/02/05 23:10:18; author: pizzandre; state: Exp;
|
485
|
-
Issue number:
|
486
|
-
Obtained from:
|
487
|
-
Submitted by:
|
488
|
-
Reviewed by:
|
489
|
-
CVS: ----------------------------------------------------------------------
|
490
|
-
CVS: Issue number:
|
491
|
-
CVS: If this change addresses one or more issues,
|
492
|
-
CVS: then enter the issue number(s) here.
|
493
|
-
CVS: Obtained from:
|
494
|
-
CVS: If this change has been taken from another system,
|
495
|
-
CVS: then name the system in this line, otherwise delete it.
|
496
|
-
CVS: Submitted by:
|
497
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
498
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
499
|
-
CVS: address here. If this is your work then delete this line.
|
500
|
-
CVS: Reviewed by:
|
501
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
502
|
-
CVS: reviewed your changes, include their name(s) here.
|
503
|
-
CVS: If you have not had it reviewed then delete this line.
|
504
|
-
=============================================================================
|
505
|
-
|
506
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/manifest.mf,v
|
507
|
-
head: 1.1
|
508
|
-
branch:
|
509
|
-
locks: strict
|
510
|
-
access list:
|
511
|
-
symbolic names:
|
512
|
-
keyword substitution: kv
|
513
|
-
total revisions: 1; selected revisions: 1
|
514
|
-
description:
|
515
|
-
----------------------------
|
516
|
-
revision 1.1
|
517
|
-
date: 2006/02/05 23:10:19; author: pizzandre; state: Exp;
|
518
|
-
Issue number:
|
519
|
-
Obtained from:
|
520
|
-
Submitted by:
|
521
|
-
Reviewed by:
|
522
|
-
CVS: ----------------------------------------------------------------------
|
523
|
-
CVS: Issue number:
|
524
|
-
CVS: If this change addresses one or more issues,
|
525
|
-
CVS: then enter the issue number(s) here.
|
526
|
-
CVS: Obtained from:
|
527
|
-
CVS: If this change has been taken from another system,
|
528
|
-
CVS: then name the system in this line, otherwise delete it.
|
529
|
-
CVS: Submitted by:
|
530
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
531
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
532
|
-
CVS: address here. If this is your work then delete this line.
|
533
|
-
CVS: Reviewed by:
|
534
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
535
|
-
CVS: reviewed your changes, include their name(s) here.
|
536
|
-
CVS: If you have not had it reviewed then delete this line.
|
537
|
-
=============================================================================
|
538
|
-
|
539
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/nbproject/build-impl.xml,v
|
540
|
-
head: 1.1
|
541
|
-
branch:
|
542
|
-
locks: strict
|
543
|
-
access list:
|
544
|
-
symbolic names:
|
545
|
-
keyword substitution: kv
|
546
|
-
total revisions: 1; selected revisions: 1
|
547
|
-
description:
|
548
|
-
----------------------------
|
549
|
-
revision 1.1
|
550
|
-
date: 2006/02/05 23:10:19; author: pizzandre; state: Exp;
|
551
|
-
Issue number:
|
552
|
-
Obtained from:
|
553
|
-
Submitted by:
|
554
|
-
Reviewed by:
|
555
|
-
CVS: ----------------------------------------------------------------------
|
556
|
-
CVS: Issue number:
|
557
|
-
CVS: If this change addresses one or more issues,
|
558
|
-
CVS: then enter the issue number(s) here.
|
559
|
-
CVS: Obtained from:
|
560
|
-
CVS: If this change has been taken from another system,
|
561
|
-
CVS: then name the system in this line, otherwise delete it.
|
562
|
-
CVS: Submitted by:
|
563
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
564
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
565
|
-
CVS: address here. If this is your work then delete this line.
|
566
|
-
CVS: Reviewed by:
|
567
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
568
|
-
CVS: reviewed your changes, include their name(s) here.
|
569
|
-
CVS: If you have not had it reviewed then delete this line.
|
570
|
-
=============================================================================
|
571
|
-
|
572
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/nbproject/genfiles.properties,v
|
573
|
-
head: 1.1
|
574
|
-
branch:
|
575
|
-
locks: strict
|
576
|
-
access list:
|
577
|
-
symbolic names:
|
578
|
-
keyword substitution: kv
|
579
|
-
total revisions: 1; selected revisions: 1
|
580
|
-
description:
|
581
|
-
----------------------------
|
582
|
-
revision 1.1
|
583
|
-
date: 2006/02/05 23:10:20; author: pizzandre; state: Exp;
|
584
|
-
Issue number:
|
585
|
-
Obtained from:
|
586
|
-
Submitted by:
|
587
|
-
Reviewed by:
|
588
|
-
CVS: ----------------------------------------------------------------------
|
589
|
-
CVS: Issue number:
|
590
|
-
CVS: If this change addresses one or more issues,
|
591
|
-
CVS: then enter the issue number(s) here.
|
592
|
-
CVS: Obtained from:
|
593
|
-
CVS: If this change has been taken from another system,
|
594
|
-
CVS: then name the system in this line, otherwise delete it.
|
595
|
-
CVS: Submitted by:
|
596
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
597
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
598
|
-
CVS: address here. If this is your work then delete this line.
|
599
|
-
CVS: Reviewed by:
|
600
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
601
|
-
CVS: reviewed your changes, include their name(s) here.
|
602
|
-
CVS: If you have not had it reviewed then delete this line.
|
603
|
-
=============================================================================
|
604
|
-
|
605
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/nbproject/platform.properties,v
|
606
|
-
head: 1.1
|
607
|
-
branch:
|
608
|
-
locks: strict
|
609
|
-
access list:
|
610
|
-
symbolic names:
|
611
|
-
keyword substitution: kv
|
612
|
-
total revisions: 1; selected revisions: 1
|
613
|
-
description:
|
614
|
-
----------------------------
|
615
|
-
revision 1.1
|
616
|
-
date: 2006/02/05 23:10:21; author: pizzandre; state: Exp;
|
617
|
-
Issue number:
|
618
|
-
Obtained from:
|
619
|
-
Submitted by:
|
620
|
-
Reviewed by:
|
621
|
-
CVS: ----------------------------------------------------------------------
|
622
|
-
CVS: Issue number:
|
623
|
-
CVS: If this change addresses one or more issues,
|
624
|
-
CVS: then enter the issue number(s) here.
|
625
|
-
CVS: Obtained from:
|
626
|
-
CVS: If this change has been taken from another system,
|
627
|
-
CVS: then name the system in this line, otherwise delete it.
|
628
|
-
CVS: Submitted by:
|
629
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
630
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
631
|
-
CVS: address here. If this is your work then delete this line.
|
632
|
-
CVS: Reviewed by:
|
633
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
634
|
-
CVS: reviewed your changes, include their name(s) here.
|
635
|
-
CVS: If you have not had it reviewed then delete this line.
|
636
|
-
=============================================================================
|
637
|
-
|
638
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/nbproject/project.xml,v
|
639
|
-
head: 1.1
|
640
|
-
branch:
|
641
|
-
locks: strict
|
642
|
-
access list:
|
643
|
-
symbolic names:
|
644
|
-
keyword substitution: kv
|
645
|
-
total revisions: 1; selected revisions: 1
|
646
|
-
description:
|
647
|
-
----------------------------
|
648
|
-
revision 1.1
|
649
|
-
date: 2006/02/05 23:10:21; author: pizzandre; state: Exp;
|
650
|
-
Issue number:
|
651
|
-
Obtained from:
|
652
|
-
Submitted by:
|
653
|
-
Reviewed by:
|
654
|
-
CVS: ----------------------------------------------------------------------
|
655
|
-
CVS: Issue number:
|
656
|
-
CVS: If this change addresses one or more issues,
|
657
|
-
CVS: then enter the issue number(s) here.
|
658
|
-
CVS: Obtained from:
|
659
|
-
CVS: If this change has been taken from another system,
|
660
|
-
CVS: then name the system in this line, otherwise delete it.
|
661
|
-
CVS: Submitted by:
|
662
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
663
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
664
|
-
CVS: address here. If this is your work then delete this line.
|
665
|
-
CVS: Reviewed by:
|
666
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
667
|
-
CVS: reviewed your changes, include their name(s) here.
|
668
|
-
CVS: If you have not had it reviewed then delete this line.
|
669
|
-
=============================================================================
|
670
|
-
|
671
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/nbproject/private/platform-private.properties,v
|
672
|
-
head: 1.1
|
673
|
-
branch:
|
674
|
-
locks: strict
|
675
|
-
access list:
|
676
|
-
symbolic names:
|
677
|
-
keyword substitution: kv
|
678
|
-
total revisions: 1; selected revisions: 1
|
679
|
-
description:
|
680
|
-
----------------------------
|
681
|
-
revision 1.1
|
682
|
-
date: 2006/02/05 23:10:22; author: pizzandre; state: Exp;
|
683
|
-
Issue number:
|
684
|
-
Obtained from:
|
685
|
-
Submitted by:
|
686
|
-
Reviewed by:
|
687
|
-
CVS: ----------------------------------------------------------------------
|
688
|
-
CVS: Issue number:
|
689
|
-
CVS: If this change addresses one or more issues,
|
690
|
-
CVS: then enter the issue number(s) here.
|
691
|
-
CVS: Obtained from:
|
692
|
-
CVS: If this change has been taken from another system,
|
693
|
-
CVS: then name the system in this line, otherwise delete it.
|
694
|
-
CVS: Submitted by:
|
695
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
696
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
697
|
-
CVS: address here. If this is your work then delete this line.
|
698
|
-
CVS: Reviewed by:
|
699
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
700
|
-
CVS: reviewed your changes, include their name(s) here.
|
701
|
-
CVS: If you have not had it reviewed then delete this line.
|
702
|
-
=============================================================================
|
703
|
-
|
704
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/nbproject/private/private.xml,v
|
705
|
-
head: 1.1
|
706
|
-
branch:
|
707
|
-
locks: strict
|
708
|
-
access list:
|
709
|
-
symbolic names:
|
710
|
-
keyword substitution: kv
|
711
|
-
total revisions: 1; selected revisions: 1
|
712
|
-
description:
|
713
|
-
----------------------------
|
714
|
-
revision 1.1
|
715
|
-
date: 2006/02/05 23:10:23; author: pizzandre; state: Exp;
|
716
|
-
Issue number:
|
717
|
-
Obtained from:
|
718
|
-
Submitted by:
|
719
|
-
Reviewed by:
|
720
|
-
CVS: ----------------------------------------------------------------------
|
721
|
-
CVS: Issue number:
|
722
|
-
CVS: If this change addresses one or more issues,
|
723
|
-
CVS: then enter the issue number(s) here.
|
724
|
-
CVS: Obtained from:
|
725
|
-
CVS: If this change has been taken from another system,
|
726
|
-
CVS: then name the system in this line, otherwise delete it.
|
727
|
-
CVS: Submitted by:
|
728
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
729
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
730
|
-
CVS: address here. If this is your work then delete this line.
|
731
|
-
CVS: Reviewed by:
|
732
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
733
|
-
CVS: reviewed your changes, include their name(s) here.
|
734
|
-
CVS: If you have not had it reviewed then delete this line.
|
735
|
-
=============================================================================
|
736
|
-
|
737
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/action/Bundle.properties,v
|
738
|
-
head: 1.1
|
739
|
-
branch:
|
740
|
-
locks: strict
|
741
|
-
access list:
|
742
|
-
symbolic names:
|
743
|
-
keyword substitution: kv
|
744
|
-
total revisions: 1; selected revisions: 1
|
745
|
-
description:
|
746
|
-
----------------------------
|
747
|
-
revision 1.1
|
748
|
-
date: 2006/02/05 23:10:23; author: pizzandre; state: Exp;
|
749
|
-
Issue number:
|
750
|
-
Obtained from:
|
751
|
-
Submitted by:
|
752
|
-
Reviewed by:
|
753
|
-
CVS: ----------------------------------------------------------------------
|
754
|
-
CVS: Issue number:
|
755
|
-
CVS: If this change addresses one or more issues,
|
756
|
-
CVS: then enter the issue number(s) here.
|
757
|
-
CVS: Obtained from:
|
758
|
-
CVS: If this change has been taken from another system,
|
759
|
-
CVS: then name the system in this line, otherwise delete it.
|
760
|
-
CVS: Submitted by:
|
761
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
762
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
763
|
-
CVS: address here. If this is your work then delete this line.
|
764
|
-
CVS: Reviewed by:
|
765
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
766
|
-
CVS: reviewed your changes, include their name(s) here.
|
767
|
-
CVS: If you have not had it reviewed then delete this line.
|
768
|
-
=============================================================================
|
769
|
-
|
770
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/action/ModelGeneratorAction.java,v
|
771
|
-
head: 1.1
|
772
|
-
branch:
|
773
|
-
locks: strict
|
774
|
-
access list:
|
775
|
-
symbolic names:
|
776
|
-
keyword substitution: kv
|
777
|
-
total revisions: 1; selected revisions: 1
|
778
|
-
description:
|
779
|
-
----------------------------
|
780
|
-
revision 1.1
|
781
|
-
date: 2006/02/05 23:10:24; author: pizzandre; state: Exp;
|
782
|
-
Issue number:
|
783
|
-
Obtained from:
|
784
|
-
Submitted by:
|
785
|
-
Reviewed by:
|
786
|
-
CVS: ----------------------------------------------------------------------
|
787
|
-
CVS: Issue number:
|
788
|
-
CVS: If this change addresses one or more issues,
|
789
|
-
CVS: then enter the issue number(s) here.
|
790
|
-
CVS: Obtained from:
|
791
|
-
CVS: If this change has been taken from another system,
|
792
|
-
CVS: then name the system in this line, otherwise delete it.
|
793
|
-
CVS: Submitted by:
|
794
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
795
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
796
|
-
CVS: address here. If this is your work then delete this line.
|
797
|
-
CVS: Reviewed by:
|
798
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
799
|
-
CVS: reviewed your changes, include their name(s) here.
|
800
|
-
CVS: If you have not had it reviewed then delete this line.
|
801
|
-
=============================================================================
|
802
|
-
|
803
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/action/Service.gif,v
|
804
|
-
head: 1.1
|
805
|
-
branch:
|
806
|
-
locks: strict
|
807
|
-
access list:
|
808
|
-
symbolic names:
|
809
|
-
keyword substitution: b
|
810
|
-
total revisions: 1; selected revisions: 1
|
811
|
-
description:
|
812
|
-
----------------------------
|
813
|
-
revision 1.1
|
814
|
-
date: 2006/02/05 23:10:25; author: pizzandre; state: Exp;
|
815
|
-
Issue number:
|
816
|
-
Obtained from:
|
817
|
-
Submitted by:
|
818
|
-
Reviewed by:
|
819
|
-
CVS: ----------------------------------------------------------------------
|
820
|
-
CVS: Issue number:
|
821
|
-
CVS: If this change addresses one or more issues,
|
822
|
-
CVS: then enter the issue number(s) here.
|
823
|
-
CVS: Obtained from:
|
824
|
-
CVS: If this change has been taken from another system,
|
825
|
-
CVS: then name the system in this line, otherwise delete it.
|
826
|
-
CVS: Submitted by:
|
827
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
828
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
829
|
-
CVS: address here. If this is your work then delete this line.
|
830
|
-
CVS: Reviewed by:
|
831
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
832
|
-
CVS: reviewed your changes, include their name(s) here.
|
833
|
-
CVS: If you have not had it reviewed then delete this line.
|
834
|
-
=============================================================================
|
835
|
-
|
836
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/resources/Bundle.properties,v
|
837
|
-
head: 1.1
|
838
|
-
branch:
|
839
|
-
locks: strict
|
840
|
-
access list:
|
841
|
-
symbolic names:
|
842
|
-
keyword substitution: kv
|
843
|
-
total revisions: 1; selected revisions: 1
|
844
|
-
description:
|
845
|
-
----------------------------
|
846
|
-
revision 1.1
|
847
|
-
date: 2006/02/05 23:10:25; author: pizzandre; state: Exp;
|
848
|
-
Issue number:
|
849
|
-
Obtained from:
|
850
|
-
Submitted by:
|
851
|
-
Reviewed by:
|
852
|
-
CVS: ----------------------------------------------------------------------
|
853
|
-
CVS: Issue number:
|
854
|
-
CVS: If this change addresses one or more issues,
|
855
|
-
CVS: then enter the issue number(s) here.
|
856
|
-
CVS: Obtained from:
|
857
|
-
CVS: If this change has been taken from another system,
|
858
|
-
CVS: then name the system in this line, otherwise delete it.
|
859
|
-
CVS: Submitted by:
|
860
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
861
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
862
|
-
CVS: address here. If this is your work then delete this line.
|
863
|
-
CVS: Reviewed by:
|
864
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
865
|
-
CVS: reviewed your changes, include their name(s) here.
|
866
|
-
CVS: If you have not had it reviewed then delete this line.
|
867
|
-
=============================================================================
|
868
|
-
|
869
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/resources/layer.xml,v
|
870
|
-
head: 1.1
|
871
|
-
branch:
|
872
|
-
locks: strict
|
873
|
-
access list:
|
874
|
-
symbolic names:
|
875
|
-
keyword substitution: kv
|
876
|
-
total revisions: 1; selected revisions: 1
|
877
|
-
description:
|
878
|
-
----------------------------
|
879
|
-
revision 1.1
|
880
|
-
date: 2006/02/05 23:10:26; author: pizzandre; state: Exp;
|
881
|
-
Issue number:
|
882
|
-
Obtained from:
|
883
|
-
Submitted by:
|
884
|
-
Reviewed by:
|
885
|
-
CVS: ----------------------------------------------------------------------
|
886
|
-
CVS: Issue number:
|
887
|
-
CVS: If this change addresses one or more issues,
|
888
|
-
CVS: then enter the issue number(s) here.
|
889
|
-
CVS: Obtained from:
|
890
|
-
CVS: If this change has been taken from another system,
|
891
|
-
CVS: then name the system in this line, otherwise delete it.
|
892
|
-
CVS: Submitted by:
|
893
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
894
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
895
|
-
CVS: address here. If this is your work then delete this line.
|
896
|
-
CVS: Reviewed by:
|
897
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
898
|
-
CVS: reviewed your changes, include their name(s) here.
|
899
|
-
CVS: If you have not had it reviewed then delete this line.
|
900
|
-
=============================================================================
|
901
|
-
|
902
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/sequence/SequenceModelGenerator.java,v
|
903
|
-
head: 1.1
|
904
|
-
branch:
|
905
|
-
locks: strict
|
906
|
-
access list:
|
907
|
-
symbolic names:
|
908
|
-
keyword substitution: kv
|
909
|
-
total revisions: 1; selected revisions: 1
|
910
|
-
description:
|
911
|
-
----------------------------
|
912
|
-
revision 1.1
|
913
|
-
date: 2006/02/05 23:10:27; author: pizzandre; state: Exp;
|
914
|
-
Issue number:
|
915
|
-
Obtained from:
|
916
|
-
Submitted by:
|
917
|
-
Reviewed by:
|
918
|
-
CVS: ----------------------------------------------------------------------
|
919
|
-
CVS: Issue number:
|
920
|
-
CVS: If this change addresses one or more issues,
|
921
|
-
CVS: then enter the issue number(s) here.
|
922
|
-
CVS: Obtained from:
|
923
|
-
CVS: If this change has been taken from another system,
|
924
|
-
CVS: then name the system in this line, otherwise delete it.
|
925
|
-
CVS: Submitted by:
|
926
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
927
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
928
|
-
CVS: address here. If this is your work then delete this line.
|
929
|
-
CVS: Reviewed by:
|
930
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
931
|
-
CVS: reviewed your changes, include their name(s) here.
|
932
|
-
CVS: If you have not had it reviewed then delete this line.
|
933
|
-
=============================================================================
|
934
|
-
|
935
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/sequence/callgraph/AbstractSequenceModelGraph.java,v
|
936
|
-
head: 1.1
|
937
|
-
branch:
|
938
|
-
locks: strict
|
939
|
-
access list:
|
940
|
-
symbolic names:
|
941
|
-
keyword substitution: kv
|
942
|
-
total revisions: 1; selected revisions: 1
|
943
|
-
description:
|
944
|
-
----------------------------
|
945
|
-
revision 1.1
|
946
|
-
date: 2006/02/05 23:10:27; author: pizzandre; state: Exp;
|
947
|
-
Issue number:
|
948
|
-
Obtained from:
|
949
|
-
Submitted by:
|
950
|
-
Reviewed by:
|
951
|
-
CVS: ----------------------------------------------------------------------
|
952
|
-
CVS: Issue number:
|
953
|
-
CVS: If this change addresses one or more issues,
|
954
|
-
CVS: then enter the issue number(s) here.
|
955
|
-
CVS: Obtained from:
|
956
|
-
CVS: If this change has been taken from another system,
|
957
|
-
CVS: then name the system in this line, otherwise delete it.
|
958
|
-
CVS: Submitted by:
|
959
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
960
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
961
|
-
CVS: address here. If this is your work then delete this line.
|
962
|
-
CVS: Reviewed by:
|
963
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
964
|
-
CVS: reviewed your changes, include their name(s) here.
|
965
|
-
CVS: If you have not had it reviewed then delete this line.
|
966
|
-
=============================================================================
|
967
|
-
|
968
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/sequence/callgraph/SequenceModelCallGraph.java,v
|
969
|
-
head: 1.1
|
970
|
-
branch:
|
971
|
-
locks: strict
|
972
|
-
access list:
|
973
|
-
symbolic names:
|
974
|
-
keyword substitution: kv
|
975
|
-
total revisions: 1; selected revisions: 1
|
976
|
-
description:
|
977
|
-
----------------------------
|
978
|
-
revision 1.1
|
979
|
-
date: 2006/02/05 23:10:28; author: pizzandre; state: Exp;
|
980
|
-
Issue number:
|
981
|
-
Obtained from:
|
982
|
-
Submitted by:
|
983
|
-
Reviewed by:
|
984
|
-
CVS: ----------------------------------------------------------------------
|
985
|
-
CVS: Issue number:
|
986
|
-
CVS: If this change addresses one or more issues,
|
987
|
-
CVS: then enter the issue number(s) here.
|
988
|
-
CVS: Obtained from:
|
989
|
-
CVS: If this change has been taken from another system,
|
990
|
-
CVS: then name the system in this line, otherwise delete it.
|
991
|
-
CVS: Submitted by:
|
992
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
993
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
994
|
-
CVS: address here. If this is your work then delete this line.
|
995
|
-
CVS: Reviewed by:
|
996
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
997
|
-
CVS: reviewed your changes, include their name(s) here.
|
998
|
-
CVS: If you have not had it reviewed then delete this line.
|
999
|
-
=============================================================================
|
1000
|
-
|
1001
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/sequence/callgraph/SequenceModelCallGraphFactory.java,v
|
1002
|
-
head: 1.1
|
1003
|
-
branch:
|
1004
|
-
locks: strict
|
1005
|
-
access list:
|
1006
|
-
symbolic names:
|
1007
|
-
keyword substitution: kv
|
1008
|
-
total revisions: 1; selected revisions: 1
|
1009
|
-
description:
|
1010
|
-
----------------------------
|
1011
|
-
revision 1.1
|
1012
|
-
date: 2006/02/05 23:10:28; author: pizzandre; state: Exp;
|
1013
|
-
Issue number:
|
1014
|
-
Obtained from:
|
1015
|
-
Submitted by:
|
1016
|
-
Reviewed by:
|
1017
|
-
CVS: ----------------------------------------------------------------------
|
1018
|
-
CVS: Issue number:
|
1019
|
-
CVS: If this change addresses one or more issues,
|
1020
|
-
CVS: then enter the issue number(s) here.
|
1021
|
-
CVS: Obtained from:
|
1022
|
-
CVS: If this change has been taken from another system,
|
1023
|
-
CVS: then name the system in this line, otherwise delete it.
|
1024
|
-
CVS: Submitted by:
|
1025
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
1026
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
1027
|
-
CVS: address here. If this is your work then delete this line.
|
1028
|
-
CVS: Reviewed by:
|
1029
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
1030
|
-
CVS: reviewed your changes, include their name(s) here.
|
1031
|
-
CVS: If you have not had it reviewed then delete this line.
|
1032
|
-
=============================================================================
|
1033
|
-
|
1034
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/sequence/callgraph/SequenceModelJTreeCallGraph.java,v
|
1035
|
-
head: 1.1
|
1036
|
-
branch:
|
1037
|
-
locks: strict
|
1038
|
-
access list:
|
1039
|
-
symbolic names:
|
1040
|
-
keyword substitution: kv
|
1041
|
-
total revisions: 1; selected revisions: 1
|
1042
|
-
description:
|
1043
|
-
----------------------------
|
1044
|
-
revision 1.1
|
1045
|
-
date: 2006/02/05 23:10:29; author: pizzandre; state: Exp;
|
1046
|
-
Issue number:
|
1047
|
-
Obtained from:
|
1048
|
-
Submitted by:
|
1049
|
-
Reviewed by:
|
1050
|
-
CVS: ----------------------------------------------------------------------
|
1051
|
-
CVS: Issue number:
|
1052
|
-
CVS: If this change addresses one or more issues,
|
1053
|
-
CVS: then enter the issue number(s) here.
|
1054
|
-
CVS: Obtained from:
|
1055
|
-
CVS: If this change has been taken from another system,
|
1056
|
-
CVS: then name the system in this line, otherwise delete it.
|
1057
|
-
CVS: Submitted by:
|
1058
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
1059
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
1060
|
-
CVS: address here. If this is your work then delete this line.
|
1061
|
-
CVS: Reviewed by:
|
1062
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
1063
|
-
CVS: reviewed your changes, include their name(s) here.
|
1064
|
-
CVS: If you have not had it reviewed then delete this line.
|
1065
|
-
=============================================================================
|
1066
|
-
|
1067
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/sequence/model/SequenceMethod.java,v
|
1068
|
-
head: 1.1
|
1069
|
-
branch:
|
1070
|
-
locks: strict
|
1071
|
-
access list:
|
1072
|
-
symbolic names:
|
1073
|
-
keyword substitution: kv
|
1074
|
-
total revisions: 1; selected revisions: 1
|
1075
|
-
description:
|
1076
|
-
----------------------------
|
1077
|
-
revision 1.1
|
1078
|
-
date: 2006/02/05 23:10:30; author: pizzandre; state: Exp;
|
1079
|
-
Issue number:
|
1080
|
-
Obtained from:
|
1081
|
-
Submitted by:
|
1082
|
-
Reviewed by:
|
1083
|
-
CVS: ----------------------------------------------------------------------
|
1084
|
-
CVS: Issue number:
|
1085
|
-
CVS: If this change addresses one or more issues,
|
1086
|
-
CVS: then enter the issue number(s) here.
|
1087
|
-
CVS: Obtained from:
|
1088
|
-
CVS: If this change has been taken from another system,
|
1089
|
-
CVS: then name the system in this line, otherwise delete it.
|
1090
|
-
CVS: Submitted by:
|
1091
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
1092
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
1093
|
-
CVS: address here. If this is your work then delete this line.
|
1094
|
-
CVS: Reviewed by:
|
1095
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
1096
|
-
CVS: reviewed your changes, include their name(s) here.
|
1097
|
-
CVS: If you have not had it reviewed then delete this line.
|
1098
|
-
=============================================================================
|
1099
|
-
|
1100
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/sequence/model/SequenceModelFilter.java,v
|
1101
|
-
head: 1.1
|
1102
|
-
branch:
|
1103
|
-
locks: strict
|
1104
|
-
access list:
|
1105
|
-
symbolic names:
|
1106
|
-
keyword substitution: kv
|
1107
|
-
total revisions: 1; selected revisions: 1
|
1108
|
-
description:
|
1109
|
-
----------------------------
|
1110
|
-
revision 1.1
|
1111
|
-
date: 2006/02/05 23:10:30; author: pizzandre; state: Exp;
|
1112
|
-
Issue number:
|
1113
|
-
Obtained from:
|
1114
|
-
Submitted by:
|
1115
|
-
Reviewed by:
|
1116
|
-
CVS: ----------------------------------------------------------------------
|
1117
|
-
CVS: Issue number:
|
1118
|
-
CVS: If this change addresses one or more issues,
|
1119
|
-
CVS: then enter the issue number(s) here.
|
1120
|
-
CVS: Obtained from:
|
1121
|
-
CVS: If this change has been taken from another system,
|
1122
|
-
CVS: then name the system in this line, otherwise delete it.
|
1123
|
-
CVS: Submitted by:
|
1124
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
1125
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
1126
|
-
CVS: address here. If this is your work then delete this line.
|
1127
|
-
CVS: Reviewed by:
|
1128
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
1129
|
-
CVS: reviewed your changes, include their name(s) here.
|
1130
|
-
CVS: If you have not had it reviewed then delete this line.
|
1131
|
-
=============================================================================
|
1132
|
-
|
1133
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/sequence/ui/SequenceModelUI.java,v
|
1134
|
-
head: 1.1
|
1135
|
-
branch:
|
1136
|
-
locks: strict
|
1137
|
-
access list:
|
1138
|
-
symbolic names:
|
1139
|
-
keyword substitution: kv
|
1140
|
-
total revisions: 1; selected revisions: 1
|
1141
|
-
description:
|
1142
|
-
----------------------------
|
1143
|
-
revision 1.1
|
1144
|
-
date: 2006/02/05 23:10:31; author: pizzandre; state: Exp;
|
1145
|
-
Issue number:
|
1146
|
-
Obtained from:
|
1147
|
-
Submitted by:
|
1148
|
-
Reviewed by:
|
1149
|
-
CVS: ----------------------------------------------------------------------
|
1150
|
-
CVS: Issue number:
|
1151
|
-
CVS: If this change addresses one or more issues,
|
1152
|
-
CVS: then enter the issue number(s) here.
|
1153
|
-
CVS: Obtained from:
|
1154
|
-
CVS: If this change has been taken from another system,
|
1155
|
-
CVS: then name the system in this line, otherwise delete it.
|
1156
|
-
CVS: Submitted by:
|
1157
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
1158
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
1159
|
-
CVS: address here. If this is your work then delete this line.
|
1160
|
-
CVS: Reviewed by:
|
1161
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
1162
|
-
CVS: reviewed your changes, include their name(s) here.
|
1163
|
-
CVS: If you have not had it reviewed then delete this line.
|
1164
|
-
=============================================================================
|
1165
|
-
|
1166
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/plugin/ModelGenerator/src/org/pizzandre/modelgen/util/MethodUtil.java,v
|
1167
|
-
head: 1.1
|
1168
|
-
branch:
|
1169
|
-
locks: strict
|
1170
|
-
access list:
|
1171
|
-
symbolic names:
|
1172
|
-
keyword substitution: kv
|
1173
|
-
total revisions: 1; selected revisions: 1
|
1174
|
-
description:
|
1175
|
-
----------------------------
|
1176
|
-
revision 1.1
|
1177
|
-
date: 2006/02/05 23:10:32; author: pizzandre; state: Exp;
|
1178
|
-
Issue number:
|
1179
|
-
Obtained from:
|
1180
|
-
Submitted by:
|
1181
|
-
Reviewed by:
|
1182
|
-
CVS: ----------------------------------------------------------------------
|
1183
|
-
CVS: Issue number:
|
1184
|
-
CVS: If this change addresses one or more issues,
|
1185
|
-
CVS: then enter the issue number(s) here.
|
1186
|
-
CVS: Obtained from:
|
1187
|
-
CVS: If this change has been taken from another system,
|
1188
|
-
CVS: then name the system in this line, otherwise delete it.
|
1189
|
-
CVS: Submitted by:
|
1190
|
-
CVS: If this code has been contributed to the project by someone else; i.e.,
|
1191
|
-
CVS: they sent us a patch or a set of diffs, then include their name/email
|
1192
|
-
CVS: address here. If this is your work then delete this line.
|
1193
|
-
CVS: Reviewed by:
|
1194
|
-
CVS: If we are doing pre-commit code reviews and someone else has
|
1195
|
-
CVS: reviewed your changes, include their name(s) here.
|
1196
|
-
CVS: If you have not had it reviewed then delete this line.
|
1197
|
-
=============================================================================
|
1198
|
-
|
1199
|
-
RCS file: /shared/data/ccvs/repository/intelliglue/www/release/1.0/intelliglue-1.0.jar,v
|
1200
|
-
head: 1.1
|
1201
|
-
branch:
|
1202
|
-
locks: strict
|
1203
|
-
access list:
|
1204
|
-
symbolic names:
|
1205
|
-
keyword substitution: b
|
1206
|
-
total revisions: 1; selected revisions: 1
|
1207
|
-
description:
|
1208
|
-
----------------------------
|
1209
|
-
revision 1.1
|
1210
|
-
date: 2005/07/26 20:26:42; author: pizzandre; state: Exp;
|
1211
|
-
Issue number:1
|
1212
|
-
Obtained from:pizzandre
|
1213
|
-
Submitted by:pizzandre
|
1214
|
-
Reviewed by:pizzandre
|
1215
|
-
Adding release 1.0 with example but not dependencies
|
1216
|
-
=============================================================================
|