Month: September 2009

Beginning Eclipse CVS – Branching Tutorial 5: Work in the branch

<= Back to previous section “Create a Branch”

    NOTE: This section of the Eclipse CVS tutorial is based on Paul Glezen’s article on the Eclipse website: Branching with Eclipse and CVS, and is used with his permission under the terms of the EPL license. The changes I am making to his version are mainly to expand it with more step by step images and explanations, and integrate it with my own beginner tutorials in an attempt to make it more accessible to beginners and designers. Experienced developers will probably prefer to work from Paul’s version.
  1. Paul is working in the branch p1test. Open f1.txt in the text editor (Double-click f1.txt or right click it and select Open in Text Editor).


  2. Continue reading below break…


    Continue reading

Beginning Eclipse CVS – Branching Tutorial 4: Create a branch

<= Back to previous section “Share the Project”

    NOTE: This section of the Eclipse CVS tutorial is based on Paul Glezen’s article on the Eclipse website: Branching with Eclipse and CVS, and is used with his permission under the terms of the EPL license. The changes I am making to his version are mainly to expand it with more step by step images and explanations, and integrate it with my own beginner tutorials in an attempt to make it more accessible to beginners and designers. Experienced developers will probably prefer to work from Paul’s version.

    Now that you have created a project, the other people on your team should check it out from CVS. If they aren’t sure how to check out a project from CVS, have them view this tutorial then return here.

    Scenario walkthrough

    We’ll be following the workflow shown in the diagram below. This article will employ a scenario of two programmers, Paul and Wing, working on separate branches of the same project. 

    scenario1.jpg


    Continue reading below break…


    Continue reading

Beginning Eclipse CVS – Branching Tutorial 3: Share the Project

<= Back to previous section “Create the Workspace and Project”

NOTE: This section of the Eclipse CVS tutorial is based on Paul Glezen’s article on the Eclipse website: Branching with Eclipse and CVS, and is used with his permission under the terms of the EPL license. The changes I am making to his version are mainly to expand it with more step by step images and explanations, and integrate it with my own beginner tutorials in an attempt to make it more accessible to beginners and designers. Experienced developers will probably prefer to work from Paul’s version.

Now that you’ve created a new project, check it into the CVS repository so your team can collaborate on it.

Continue reading below break:


Continue reading

Beginning Eclipse CVS – Branching Tutorial 2: Create the Project

<= Back to previous section “Branching Strategies”

NOTE: This section of the Eclipse CVS tutorial is based on Paul Glezen’s article on the Eclipse website: Branching with Eclipse and CVS, and is used with his permission under the terms of the EPL license. The changes I am making to his version are mainly to expand it with more step by step images and explanations, and integrate it with my own beginner tutorials in an attempt to make it more accessible to beginners and designers. Experienced developers will probably prefer to work from Paul’s version.

Continue reading below break…


Continue reading

Beginning Eclipse CVS – Branching Tutorial 1: Branching Strategies

<= Back to previous section “Setting up the Eclipse Interface for CVS”

NOTE: This section of the Eclipse CVS tutorial is based on Paul Glezen’s article on the Eclipse website: Branching with Eclipse and CVS, and is used with his permission under the terms of the EPL license. The changes I am making to his version are mainly to expand it with more step by step images and explanations, and integrate it with my own beginner tutorials in an attempt to make it more accessible to beginners and designers. Experienced developers will probably prefer to work from Paul’s version.
When working together in a team, developers often need to isolate code lines from each other to prevent conflicts. Besides the possibility of simply stepping on each other’s toes and overwriting new versions with older versions, different functions under development may conflict with each other while being tested.

To prevent this, projects can be developed in concurrent paths, with one path being devoted to the main line of development and others set aside for testing new features or bugfixes. One line can be kept stable or close to stable, with others not yet even in testing. Several common configuration strategies are used for team collaboration on software development.

 
Continue reading below break:


Continue reading

Captivate scoring problem

An instructional designer came to me with a Captivate issue the other day. She had converted a working version 3 Captivate file to version 4. The converted file no longer calculated scores properly. There was a walk-through tutorial showing how to use a new web application, then a short multiple-choice quiz with 5 questions. The setting “Show Progress” was turned on, so each question should show a label: “Question 1 of 5, Question 2 of 5, etc.”

In version 3, everything had worked fine. In version 4, things looked fine in Edit mode, but at runtime, the numbering was off. The first question was numbered “Question 2 of 7” and it would increment from there.



I immediately assumed it was counting clickboxes from somewhere else in the file, but when I looked at the Advanced Interaction page, Add to Total was grayed out for all buttons and clickboxes, and Track Score was also not checked for any of them. So, I assumed it could not be the clickboxes. Thinking it might be some corruption in the question slides, I re-created all the quiz questions, and yet the problem remained. 

Continue reading