请关注如上赞助信息

Locate: SCM bbs>>cctp Forum>>ClearCase and Subversion
Hello, Guest!  Sign in



ClearCase and Subversion

1 ClearCase and Subversion
转贴: clearcase和svn的比较:

http://bitsko.slc.ut.us/blog/clearcase-svn.html

 
Ken MacLeod
ClearCase and Subversion

6 comments | Mar 13, 2005 | permalink
Introduction

This is an ongoing article, I'll be adding to it as I learn more. [Updated 2Apr2005: added more unique features.] [Updated 2Oct2005: added mis-features; minor updates; Remko Seelig and Dan M. answer some lingering questions.]

This article contrasts ClearCase UCM and Subversion (SVN). It exists primarily as a place for me to clarify my thoughts when discussing ClearCase. Software configuration management is one of my specialties. I've been using ClearCase for about a year now at work and continue to use Subversion and CVS at home and on open source projects. I've also used Perforce , Aegis , PVCS , RCS, and SCCS.
Background

From the ClearCase WikiPedia entry ,

    Rational ClearCase is a software tool for revision control (configuration management, SCM etc) of source code and other software development assets. It originally derived from a product of Apollo Computers: DSEE (Domain Software Engineering Environment), which was ported to Unix and further developed by Atria Software after Hewlett-Packard bought Apollo. Atria later merged with Pure Software to form PureAtria. That firm merged with Rational Software, which was purchased by IBM. IBM continues to develop and market ClearCase. 

In or around ClearCase version 4, ClearCase adopted Rational's Unified Change Management (UCM) process as its recommended "out of the box" experience. "Base ClearCase" is used to refer to the original usage. UCM is a process that can be applied with any tool, but ClearCase adopts the terminology and includes wizards to assist in setting up repositories in the UCM recommended way (ie. joining projects, creating projects).

ClearCase marketing and documentation promote UCM as simpler than Base ClearCase because it encourages a single process. Base ClearCase is often referred to as "very flexible", requiring "lots of scripts and triggers to implement a process", where UCM automates much of this "out of the box". However, I think in this case "very flexible" is a euphemism for "unnecessarily complex". Subversion appears to be every bit as capable in terms of flexibility and its ability to support the UCM model, yet is much simpler out of the box.

In this regard, Perforce and Base ClearCase are similar in that they require a lot of unnecessary user configuration up-front when setting up workspaces and extra work in submitting changes. In other words, UCM is automating work that shouldn't have needed automating in the first place.
The three and a half types of version control tools

1) The first tools, RCS and SCCS, worked on individual files. You checked out and in individual files.

2) Tools like CVS and ClearCase work on directories of files, but still have much of a "per-file" approach to working. In CVS, it's common and recommended to commit related changes in one step. In ClearCase, it's common to commit files independently and then, for example, use UCM's activities or deliveries to commit related changes.

2.5) Perforce and Subversion really do work on directories of files. In these tools, it is not only recommended to commit related changes together, but the tools can track changes to the directory tree as independent, sequential changes.

3) BitKeeper, Arch and Darcs are "changeset oriented" tools. While technically, any sequential change is a changeset, these tools excel at non-sequential changesets, as is very common in decentralized development, such as the Linux kernel, where changesets against independent streams of development are passed among developers.

See On Arch and Subversion for a more detailed description of the snapshot and changeset models of version control tools.
Unique ClearCase features
Multi-Version File System (MVFS)

ClearCase "dynamic views" are made available to the user through a virtual filesystem. MVFS enables multiple developers using the same stream to see each other's changes as soon as they are checked-in (for better or worse, more on that later), it also allows for build avoidance (sharing derived objects among multiple users), and auditing.
Version tree browser

This graphical tool shows the branch and merging history of a file or a component as a whole. However, UCM's emphasis on per-release projects, multiple integration streams, and per-developer streams tends to produce spaghetti graphs instead. The TortoiseSVN client for SVN has this feature, but SVN itself does not yet track inter-branch merges so it limits its usefulness. Merges in ClearCase that aren't performed using deliveries are not tracked.
Multi-site

ClearCase multi-site provides automatic replication of repositories, which can speed access for very large components. When ClearCase is used to distribute build artifacts (tarballs, release images), it makes keeping all sites in sync automatic.
Unique Subversion features
Branches and labels in the filesystem

SVN exposes branches and tags directly in the repository filesystem tree. Thus, there are no branching, baselining, or labeling commands in SVN, nor is it necessary to use options to indicate which branch or label you are referring to when merging, diffing, or browsing. (Note: SVN calls their repository the "filesystem", not to be confused with ClearCase's MVFS, which is literally mounted on your development system.)
ViewSVN and ‘svn diff'

You can browse an entire Subversion repository, backwards and forwards in time. You can diff any two branches or revisions by path or number, respectively.

In ClearCase, you must create a view on a stream before viewing any of that stream's content, you must create two views to be able to diff them. Viewing a prior baseline in ClearCase requires creating a child stream, and its associated view, on the older baseline. It's also possible to create a view and then change the "view configuration" (a very advanced feature for UCM users), but would be faster if you need to step through several baselines.
Web-enabled, remote development

SVN works very well for distributed development. It scales much further with remote access before having to implement replication. SVN uses standard Internet protocols for repository access, simplifying remote development.
Unique ClearCase mis-features
Slows down with too many activities/baselines

ClearCase severly slows down when a project has too many activities/baselines. This precludes the most common and simplest form of codeline development used in other revision control tools: mainline as latest and greatest. In other tools, development is performed against the mainline ('trunk' in SVN) and branches are created off the mainline for release maintenance. Fixes and updates made on maintenance branches do a one-way merge back to the latest and greatest.

ClearCase recommends that latest and greatest development occur on a release project, and then release projects merged to a docking mainline. The docking mainline is intended to prevent regressions, but in practice the two-step merges (to mainline, to current release project) is still prone to regressions.

[See Streamed Lines: Branching Patterns for Parallel Software Development for details on codelines, branching, etc.]
Multi-site delivery requires local development stream and remote login

ClearCase's emphasis on dynamic views requires a local repository mirror to support local development streams at multiple sites. Delivering to sites mastered elsewhere requires a login at the mastering site with appropriate remote-GUI support. Remote delivery is also fragile (mostly due to where and when streams get locked and how those locks are recovered).
Unique Subversion mis-features
Merges are not tracked by the tool

If you have, for example, maintenance release branches it would be nice to be able to see, in the tool, when changes were merged. There are also some cases where a diff tool can make use of knowing when files have been merged before. SVN and CVS users rely on change comments to indicate merges. Note, however, that SVN and CVS projects don't typically use per-developer branches (streams) so their merge histories are correspondingly simpler than ClearCase merge histories.
Labeling, branching, and filenames
Labeling

Labeling in CVS and baselines in ClearCase UCM are straightforward and traditional, after a label or baseline is applied you will know that for any given label you will know each revision of a file that has that label or is in that baseline. The same is true for Perforce, except that creating a label requires filling out a form.

Subversion takes a little different approach. Because branching is cheap (and easy) in Subversion, they use the same mechanism. The only difference between a branch and a label in Subversion is policy: you don't make changes in the label tree. The greatest benefit here is that the entire facet of labeling commands and flags go away. You create a working copy of a labeled snapshot just like creating a working copy of the mainline or any branch.
Branching

Branching in ClearCase UCM is done using "streams" and "projects". UCM recommends, and defaults to when using the "join project" wizard, of creating per-developer streams (branches). In the default model, making changes available to others (integrating) always requires two steps, check-in and delivery. IBM/Rational recommends using "waterfall" branches for releases, that then get "docked" to a mainline to prevent losing changes or permanent diversion, using a "project" as the container for each release and the mainline. The primary reason for a "docking mainline" rather than "latest and greatest mainline" is performance, ClearCase UCM slows down on projects with many baselines.

Branching in Subversion, and also in Perforce, occurs in the repository tree. You "svn copy" a directory to a new location in the repository to make a branch (Perforce uses "p4 integrate"). Branches in Subversion are cheap and easy, allowing a project to use as many or as few as their process would need. Subversion folks recommend the following repository structure for most initial projects, but it's entirely convention:

/myproject/branches/ /myproject/tags/ /myproject/trunk/            foo.c            bar.c            Makefile 

The 'trunk' is for latest and greatest development, 'tags' are for labeled snapshots, and 'branches' for named branches where additional work occurs. If you commonly have per-developer streams or feature branches independent of releases, you could use a structure that includes 'user' or 'releases'.

Although technically possible, it is usually a user error to create a working area from '/myproject' because you will get multiple copies of every file from the trunk, each tag, and each branch. You typically create a working copy from a lower level in the repository structure.

SVN branches are "lightweight" in their usage, requiring very little ceremony to use ('svn copy'). ClearCase has two different, heavier branching techniques: creating projects (very high ceremony) and streams.
File version naming

CVS was originally based on RCS, and both RCS and SCCS use perturbed¹ version numbers for branch file names, like 1.1.2.1.1.1 (based on the branching source and depth). You can request a specific branch and version of a file by specifying its perturbed revision number or a label.

In Subversion and Perforce, the branch name is an arbitrary part of the file name, it's path from the root of the repository to the file. The version number of each file is a global, sequential transaction number. You can request a specific branch and version of a file by specifying it's path at given transaction number (or date, and in Perforce, by label).

In ClearCase, you use "extended naming" to request a specific branch and version, like 'foo.c@@/main/somebranch/1'. However, UCM complicates this almost to the point of unusability, because the extended names concatenate for each stream. If a file, created in the integration stream, was modified in a developer stream (and therefore was branched to that stream) it would be something like:

foo.c@@/main/project_integration_stream/developer_stream/2

Basic work cycles
Subversion

When you first join a project in Subversion, you run 'svn checkout' to create a working copy. Subversion uses the "copy-modify-merge" model of working areas, so every file and directory is writable and the developer is required to merge changes from the repository before committing their own changes. When finished with a project, the developer simply removes the working area.

(See Eric Sink's Source Control HowTo for more detail on the copy-modify-merge and lock-modify-unlock models. Eric calls them edit-merge-commit and checkout-edit-checkin, respectively.)

A typical Subversion session begins with 'svn update' to receive any new changes from the repository. Changes are made by editing files and using the Subversion commands add, delete, copy, and move. Current status is obtained using the commands status, diff, and revert. When the developer is ready to commit, they will again run 'svn update' to merge changes from the repository, resolving any conflicts, and then committing their work.
ClearCase the UCM Recommended Way

When you first join a project in ClearCase, you use the ClearCase Project Explorer to join a project. The "join project" wizard will create a view on the integration stream, create a development stream, and create a view on the development stream. ClearCase dynamic views only support the "lock-modify-unlock" model of working areas, so all files are read-only and directories must be checked-out before adding, moving, or removing files from version control. When finished with a project, the developer uses the ClearCase Explorer or ClearCase Project Explorer to remove their views. The development stream is a permanent part of the project and is never removed.

A ClearCase session begins by rebasing the development stream from the integration stream (in a dynamic view, these updates are visible immediately in the view) and setting an "activity" (naming the changeset) for the session. Even though each developer has their own development stream (branch), they are still required to check-out each file and directory before they make changes. The ClearCase Windows GUI will automatically check-out and in directories in several cases when files are added, moved, or deleted in version control. The developer can check-in files into their development stream at any time to checkpoint their work. Current status can be viewed in the ClearCase Explorer or from the command line. When a developer is ready to deliver their changes, they must check-in any outstanding check-outs and initiate delivery to the integration stream. Any merge conflicts encountered during the delivery are resolved in the integration view.

Remko Seelig expands on merges,

    Merge conflicts are resolved in the stream that is marked as target, e.g. if you deliver TO integration, it will be merged in integration. If you rebase TO your developer's stream, it's merged in the developer's stream.

    In UCM, you can define policies that allow or prohibit deliveries with checkouts. You can also prohibit deliveries of streams that have not been rebased to the recommended baseline yet. The reason for that is that it's recommended to lock a stream before delivery: if a developer's delivery to integration would result in many merge conflicts, it may take some time for him to complete it. This will affect others because they won't be able to deliver their changes and to get other updates. e.g. it will generally slow down development. If you would rebase first, all other changes will be merged into your stream, you can resolve merge conflicts locally (your own stream) and deliver afterwards, minimizing merge conflicts / delivery time. 

ClearCase UCM a little simplified

A project's developers can choose not to use independent development streams and instead all create a working view on the integration stream.

In this model, every session always starts as "updated" because dynamic views always reflect the current version state of the repository. An activity for the session is created. Developers check-out files and directories as needed, reserved or unreserved, and check-in their changes. [Dan M. answers the questions, "how are unreserved check-out conflicts resolved?"] When someone checks in their unreserved checkout before you check yours in, you are required to merge into it. A merge arrow is drawn from your version to theirs.

The biggest drawback to dynamic views on a single stream is that all developer's views are affected immediately whenever a developer checks in their changes.
ClearCase UCM with snapshot views

A project's developers can choose not to use independent development streams and instead create snapshot views on the integration stream. Snapshot views use the host's filesystem (network or local) for the working area.

A session begins with 'cleartool update to receive any changes from the integration stream. An activity for the session is created. Developers check-out files and directories as needed, reserved or unreserved, and check-in their changes. [when are merge conflicts resolved?]

This model is not well supported by ClearCase and is discouraged, sadly.

A monologue about dynamic and snapshot views in ClearCase and their support. - Cecil Morris
References

    * UCM for Zealots: Moving from Base Install to UCM ClearCase
    * The power of Unified Change Management
    * Perforce: Comparison with ClearCase 

 

1. Thanks to Perforce's CVS comparison for that eloquent description of RCS and SCCS branch numbering. 
This article come from: http://www.scmbbs.com, The full content see: http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to xuejiang andthe (SCMbbs.com)together; Origin requested on transmited.

Author:xuejiang   2007-11-07 15:48
2 Reply:ClearCase and Subversion
Jf7ycU  <a href="http://jotlliztzpxn.com/">jotlliztzpxn</a>, [url=http://yteabedvoxex.com/]yteabedvoxex[/url], [link=http://itbkyylljwsh.com/]itbkyylljwsh[/link], http://ubykyapzgjgf.com/
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-05-30 18:00
3 Dusty
26644c11458339fbfcb8f7767bf9a764
<a href="http://njdokj.info/bdbb7fcadc2fe0a8b7c12bf9ec3554bc/26644c11458339fbfcb8f7767bf9a764"> http://njdokj.info/bdbb7fcadc2fe0a8b7c12bf9ec3554bc/26644c11458339fbfcb8f7767bf9a764 </a>
http://njdokj.info/bdbb7fcadc2fe0a8b7c12bf9ec3554bc/26644c11458339fbfcb8f7767bf9a764
[url]http://njdokj.info/bdbb7fcadc2fe0a8b7c12bf9ec3554bc/26644c11458339fbfcb8f7767bf9a764[url]

This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-07-19 13:56
4 melrfqvo
<a href="http://kaznxoay.com">cjhcigpk</a>  oamknoec http://lcfcxukd.com jbbuguqg nilpkqhk  [URL=http://fvdgkhnq.com]cidjqshu[/URL]
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-08-14 14:43
5 Reply:ClearCase and Subversion
Thanks!, <a href="http://keslony2.ez-sites.ws/adult-community-in-florida.html">adult community in florida</a>, [url="http://keslony2.ez-sites.ws/adult-community-in-florida.html"]adult community in florida[/url], http://keslony2.ez-sites.ws/adult-community-in-florida.html adult community in florida,  idozk, <a href="http://wufzureh.parknhost.com/adult-french-bulldog.html">adult french bulldog</a>, [url="http://wufzureh.parknhost.com/adult-french-bulldog.html"]adult french bulldog[/url], http://wufzureh.parknhost.com/adult-french-bulldog.html adult french bulldog,  884026, <a href="http://fipfiv31.dex1.com/adult-education-houston.html">adult education houston</a>, [url="http://fipfiv31.dex1.com/adult-education-houston.html"]adult education houston[/url], http://fipfiv31.dex1.com/adult-education-houston.html adult education houston,  =-[, <a href="http://dutvimqj.freeweb-hosting.org/latin-adultery-passwords.html">latin adultery passwords</a>, [url="http://dutvimqj.freeweb-hosting.org/latin-adultery-passwords.html"]latin adultery passwords[/url], http://dutvimqj.freeweb-hosting.org/latin-adultery-passwords.html latin adultery passwords,  947362, <a href="http://bogdoplp.parknhost.com/mobile-adult-content-download.html">mobile adult content download</a>, [url="http://bogdoplp.parknhost.com/mobile-adult-content-download.html"]mobile adult content download[/url], http://bogdoplp.parknhost.com/mobile-adult-content-download.html mobile adult content download,  8(, <a href="http://yozbec5q.angelcities.com/adult-bisexuals.html">adult bisexuals</a>, [url="http://yozbec5q.angelcities.com/adult-bisexuals.html"]adult bisexuals[/url], http://yozbec5q.angelcities.com/adult-bisexuals.html adult bisexuals,  2979, <a href="http://cexwags6.builtfree.org/adult-day-joke-patrick-st.html">adult day joke patrick st</a>, [url="http://cexwags6.builtfree.org/adult-day-joke-patrick-st.html"]adult day joke patrick st[/url], http://cexwags6.builtfree.org/adult-day-joke-patrick-st.html adult day joke patrick st,  :-DDD, <a href="http://qecseuve.mindnmagick.com/adult-gallery-image-yahoo.html">adult gallery image yahoo</a>, [url="http://qecseuve.mindnmagick.com/adult-gallery-image-yahoo.html"]adult gallery image yahoo[/url], http://qecseuve.mindnmagick.com/adult-gallery-image-yahoo.html adult gallery image yahoo,  429150, <a href="http://mudriqyp.createdollz.com/free-adult-chat-line.html">free adult chat line</a>, [url="http://mudriqyp.createdollz.com/free-adult-chat-line.html"]free adult chat line[/url], http://mudriqyp.createdollz.com/free-adult-chat-line.html free adult chat line,  >:-O, <a href="http://bonfef9e.1sweethost.com/hot-adult-woman.html">hot adult woman</a>, [url="http://bonfef9e.1sweethost.com/hot-adult-woman.html"]hot adult woman[/url], http://bonfef9e.1sweethost.com/hot-adult-woman.html hot adult woman,  82375, <a href="http://fesxaqql.012webpages.com/latina-adult-pic.html">latina adult pic</a>, [url="http://fesxaqql.012webpages.com/latina-adult-pic.html"]latina adult pic[/url], http://fesxaqql.012webpages.com/latina-adult-pic.html latina adult pic,  bog, <a href="http://zozbufl0.741.com/free-animal-adult-movie.html">free animal adult movie</a>, [url="http://zozbufl0.741.com/free-animal-adult-movie.html"]free animal adult movie[/url], http://zozbufl0.741.com/free-animal-adult-movie.html free animal adult movie,  312282, <a href="http://nikjepyn.dex1.com/adult-magazine-los-angeles.html">adult magazine los angeles</a>, [url="http://nikjepyn.dex1.com/adult-magazine-los-angeles.html"]adult magazine los angeles[/url], http://nikjepyn.dex1.com/adult-magazine-los-angeles.html adult magazine los angeles,  6772,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-15 19:45
6 Reply:ClearCase and Subversion
Thanks!, <a href="http://taywuu7b.ibnsites.com/adult-xxx-picture.html">adult xxx picture</a>, [url="http://taywuu7b.ibnsites.com/adult-xxx-picture.html"]adult xxx picture[/url], http://taywuu7b.ibnsites.com/adult-xxx-picture.html adult xxx picture,  cqy, <a href="http://fawmauv5.mindnmagick.com/adult-dating-married-site.html">adult dating married site</a>, [url="http://fawmauv5.mindnmagick.com/adult-dating-married-site.html"]adult dating married site[/url], http://fawmauv5.mindnmagick.com/adult-dating-married-site.html adult dating married site,  =-]], <a href="http://bufsikvi.usafreespace.com/adult-buy-film.html">adult buy film</a>, [url="http://bufsikvi.usafreespace.com/adult-buy-film.html"]adult buy film[/url], http://bufsikvi.usafreespace.com/adult-buy-film.html adult buy film,  ardvzf, <a href="http://tukwehub.galaxy99.net/adult-party-stores-in-maryland.html">adult party stores in maryland</a>, [url="http://tukwehub.galaxy99.net/adult-party-stores-in-maryland.html"]adult party stores in maryland[/url], http://tukwehub.galaxy99.net/adult-party-stores-in-maryland.html adult party stores in maryland,  699818, <a href="http://rewmucg7.freewebpages.org/free-view-web-cam-adult.html">free view web cam adult</a>, [url="http://rewmucg7.freewebpages.org/free-view-web-cam-adult.html"]free view web cam adult[/url], http://rewmucg7.freewebpages.org/free-view-web-cam-adult.html free view web cam adult,  txjca, <a href="http://rodluirx.b-w-h.com/adult-flash-fun-game.html">adult flash fun game</a>, [url="http://rodluirx.b-w-h.com/adult-flash-fun-game.html"]adult flash fun game[/url], http://rodluirx.b-w-h.com/adult-flash-fun-game.html adult flash fun game,  8)), <a href="http://supdel0v.freespaceusa.com/couples-adult.html">couples adult</a>, [url="http://supdel0v.freespaceusa.com/couples-adult.html"]couples adult[/url], http://supdel0v.freespaceusa.com/couples-adult.html couples adult,  8DD, <a href="http://menxod5q.servetown.com/adult-free-game-online-play-xxx.html">adult free game online play xxx</a>, [url="http://menxod5q.servetown.com/adult-free-game-online-play-xxx.html"]adult free game online play xxx[/url], http://menxod5q.servetown.com/adult-free-game-online-play-xxx.html adult free game online play xxx,  870, <a href="http://yujjiyzt.freeweb-hosting.org/free-adult-online-web-game.html">free adult online web game</a>, [url="http://yujjiyzt.freeweb-hosting.org/free-adult-online-web-game.html"]free adult online web game[/url], http://yujjiyzt.freeweb-hosting.org/free-adult-online-web-game.html free adult online web game,  rraixo, <a href="http://doywev04.envy.nu/add-adult-in-symptom.html">add adult in symptom</a>, [url="http://doywev04.envy.nu/add-adult-in-symptom.html"]add adult in symptom[/url], http://doywev04.envy.nu/add-adult-in-symptom.html add adult in symptom,  jbpsak,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-16 11:50
7 Reply:ClearCase and Subversion
Thanks!, <a href="http://caclolkf.012webpages.com/spanking-adult-fun.html">spanking adult fun</a>,  797351, <a href="http://caclolkf.012webpages.com/adult-escort-jacksonville-florida.html">adult escort jacksonville florida</a>,  =DD, <a href="http://caclolkf.012webpages.com/best-adult-video-site.html">best adult video site</a>,  8PP, <a href="http://caclolkf.012webpages.com/adult-classic-film.html">adult classic film</a>,  82201, <a href="http://caclolkf.012webpages.com/adult-compuserve.html">adult compuserve</a>,  xswqq, <a href="http://caclolkf.012webpages.com/asian-mpeg-adult.html">asian mpeg adult</a>,  708, <a href="http://caclolkf.012webpages.com/adult-zorro-halloween-costume.html">adult zorro halloween costume</a>,  91092, <a href="http://caclolkf.012webpages.com/adult-free-wallpaper.html">adult free wallpaper</a>,  %P, <a href="http://caclolkf.012webpages.com/naked-adult-cartoon.html">naked adult cartoon</a>,  00644, <a href="http://caclolkf.012webpages.com/adultos-gratis-juegos.html">adultos gratis juegos</a>,  740765, <a href="http://caclolkf.012webpages.com/adult-comic-x-rated.html">adult comic x rated</a>,  ovcto, <a href="http://caclolkf.012webpages.com/adult-freind-finders.html">adult freind finders</a>,  8-], <a href="http://caclolkf.012webpages.com/adult-friend-site.html">adult friend site</a>,  3834, <a href="http://caclolkf.012webpages.com/active-adult-community-florida.html">active adult community florida</a>,  8-),
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-19 18:31
8 Reply:ClearCase and Subversion
Thanks!, <a href="http://caclolkf.012webpages.com/adult-novelty-stores.html">adult novelty stores</a>,  cjxtdh, <a href="http://caclolkf.012webpages.com/windward-school-for-adult.html">windward school for adult</a>,  fyxio, <a href="http://caclolkf.012webpages.com/adult-personals-quality.html">adult personals quality</a>,  34994, <a href="http://caclolkf.012webpages.com/adult-lingerie-catalog.html">adult lingerie catalog</a>,  bmob, <a href="http://caclolkf.012webpages.com/adult-book-california-store.html">adult book california store</a>,  300285, <a href="http://caclolkf.012webpages.com/chinese-adult-actress.html">chinese adult actress</a>,  >:OO, <a href="http://caclolkf.012webpages.com/adult-services-taiwan.html">adult services taiwan</a>,  7583, <a href="http://caclolkf.012webpages.com/adult-books-store.html">adult books store</a>,  80701, <a href="http://caclolkf.012webpages.com/pittsburgh-adult-entertainment.html">pittsburgh adult entertainment</a>,  vawnl, <a href="http://caclolkf.012webpages.com/adult-comics-fantasy.html">adult comics fantasy</a>,  upu,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-19 18:31
9 Reply:ClearCase and Subversion
Thanks!, <a href="http://caclolkf.012webpages.com/adult-learning-style.html">adult learning style</a>,  670361, <a href="http://caclolkf.012webpages.com/jewish-adult-singles.html">jewish adult singles</a>,  >:PP, <a href="http://caclolkf.012webpages.com/adult-downsizing-older-senior.html">adult downsizing older senior</a>,  =-[[, <a href="http://caclolkf.012webpages.com/adult-classic-film.html">adult classic film</a>,  rhxbvd, <a href="http://caclolkf.012webpages.com/asian-mpeg-adult.html">asian mpeg adult</a>,  =-OOO, <a href="http://caclolkf.012webpages.com/adult-developmental-psychology.html">adult developmental psychology</a>,  996843, <a href="http://caclolkf.012webpages.com/adult-flick-free-hardcore.html">adult flick free hardcore</a>,  iggvl, <a href="http://caclolkf.012webpages.com/free-adult-dvd-mail-order-catalog.html">free adult dvd mail order catalog</a>,  :-PPP, <a href="http://caclolkf.012webpages.com/homemade-adult-movie.html">homemade adult movie</a>,  8-(, <a href="http://caclolkf.012webpages.com/adult-cartoon-free-picture.html">adult cartoon free picture</a>,  463142, <a href="http://caclolkf.012webpages.com/adult-porn-sex-xx.html">adult porn sex xx</a>,  525835,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-19 18:31
10 Reply:ClearCase and Subversion
Thanks!, <a href="http://cleoex.iespana.es/silk-panty-sex.html">silk panty sex</a>,  ylizsw, <a href="http://cleoex.iespana.es/teens-sex-young.html">teens sex young</a>,  gpv, <a href="http://cleoex.iespana.es/kidnapped-free-porn.html">kidnapped free porn</a>,  %-[[[, <a href="http://cleoex.iespana.es/hot-philippine-sex.html">hot philippine sex</a>,  8-OO, <a href="http://cleoex.iespana.es/party-boat-sex.html">party boat sex</a>,  401257, <a href="http://cleoex.iespana.es/dps-sex-offenders.html">dps sex offenders</a>,  8PP,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-25 18:18
11 Reply:ClearCase and Subversion
Thanks!, <a href="http://fixplace.ifrance.com/grannies-scottish-sex.html">grannies scottish sex</a>,  570589, <a href="http://fixplace.ifrance.com/man-senior-sex.html">man senior sex</a>,  %O, <a href="http://fixplace.ifrance.com/penectomy-free-porn.html">penectomy free porn</a>,  655978, <a href="http://fixplace.ifrance.com/destroy-doughters-porn.html">destroy doughters porn</a>,  zzzn, <a href="http://fixplace.ifrance.com/porn-rss-free.html">porn rss free</a>,  ach, <a href="http://fixplace.ifrance.com/sexy-muscle-porn.html">sexy muscle porn</a>,  8-((, <a href="http://fixplace.ifrance.com/guntur-sex-datings.html">guntur sex datings</a>,  dolgu,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-26 19:42
12 Reply:ClearCase and Subversion
Thanks!, <a href="http://onesize.ibelgique.com/hentai-porn-house.html">hentai porn house</a>,  rowyfj, <a href="http://onesize.ibelgique.com/rough-sex-oprn.html">rough sex oprn</a>,  1328, <a href="http://onesize.ibelgique.com/freee-blonde-porn.html">freee blonde porn</a>,  938, <a href="http://onesize.ibelgique.com/sex-in-pulbic.html">sex in pulbic</a>,  fobbem, <a href="http://onesize.ibelgique.com/erica-johnson-porn.html">erica johnson porn</a>,  675, <a href="http://onesize.ibelgique.com/homemade-action-porn.html">homemade action porn</a>,  4823,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-27 9:13
13 Reply:ClearCase and Subversion
Thanks!, <a href="http://bestvids.ifrance.com/voyeur-sex-outdoors.html">voyeur sex outdoors</a>,  =-[[, <a href="http://bestvids.ifrance.com/amateur-swingers-sex.html">amateur swingers sex</a>,  :[, <a href="http://bestvids.ifrance.com/world-porn-movie.html">world porn movie</a>,  :-]], <a href="http://bestvids.ifrance.com/women-backseat-sex.html">women backseat sex</a>,  uii, <a href="http://bestvids.ifrance.com/adele-stephens-sex.html">adele stephens sex</a>,  =[, <a href="http://bestvids.ifrance.com/young-mmf-porn.html">young mmf porn</a>,  293,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-27 10:44
14 Reply:ClearCase and Subversion
Thanks!, <a href="http://movs.iespana.es/hardcore-dual-sex.html">hardcore dual sex</a>,  =], <a href="http://movs.iespana.es/sex-kurenai-pics.html">sex kurenai pics</a>,  kcyxms, <a href="http://movs.iespana.es/astrr-sex-stories.html">astrr sex stories</a>,  239199, <a href="http://movs.iespana.es/brightmail-pornography-australia.html">brightmail pornography australia</a>,  8PPP, <a href="http://movs.iespana.es/nonono69-sex-stories.html">nonono69 sex stories</a>,  099, <a href="http://movs.iespana.es/cheerleader-sex-news.html">cheerleader sex news</a>,  rduvqn, <a href="http://movs.iespana.es/34d-cup-porn.html">34d cup porn</a>,  05126,
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-11-28 11:46
15 Reply:ClearCase and Subversion
h19beC  <a href="http://tzbzvyvcofyh.com/">tzbzvyvcofyh</a>, [url=http://eplmrgnwtevw.com/]eplmrgnwtevw[/url], [link=http://pqfcdmzqqnzc.com/]pqfcdmzqqnzc[/link], http://lscqzcmhspqj.com/
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2008-12-21 13:10
16 Reply:ClearCase and Subversion
ZqXCNR  <a href="http://tzpnczszoofx.com/">tzpnczszoofx</a>, [url=http://mzkiuquaumxi.com/]mzkiuquaumxi[/url], [link=http://jnrajpvtkjhk.com/]jnrajpvtkjhk[/link], http://csisswrnqoaz.com/
This article come from: http://www.scmbbs.com, The full content see:http://www.scmbbs.com/en/cctp/2007/11/cctp1.php

©CopyRight belong to the author andSCMbbs.com. Origin requested on transmited.

Authoranonymous   2009-03-18 20:42

Topic:
Content:
Picture Url:
UserName: You're replying as anonymity     Sign in | Sign Up
你注意到这些信息了吗: