Version Control - Web(JSF) project

Hello fellows,
Which version control for Web project you are using? I have been using CVS for common java (and nojava) projects but is there any another version control tool for Web projects. Any suggestion how web projects should be stored in repository?, how web project should be maintained ?.
Any help and suggestion will be helpful.
Thanks in advance.

SVN is better then CVS

Similar Messages

  • Table display in Visual Web JSF (Project woodstock)

    Hi...
    I am trying to display a table(Quota) from a database in Visual Web JSF(project woodstock) and it works fine, as in I am able to run the project and a browser opens up dislaying the page with the date from the table. However when I try to display another table (Booking) from the same database, I am having problems. The page renders with no content(BLANK) in the browser. I am not sure why this is happening as I am using the same technique used to display content from the Quota table.
    This is my jsp code to display the Quota table ( this is the table that loads fine)
    <jsp:root version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page"
    xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <webuijsf:page id="page1">
                <webuijsf:html id="html1">
                    <webuijsf:head id="head1">
                        <webuijsf:link id="link1" url="/resources/stylesheet.css"/>
                    </webuijsf:head>
                    <webuijsf:body id="body1" style="-rave-layout: grid">
                        <webuijsf:form id="form1">
                            <h:panelGrid id="gridPanel1" style="left: 216px; top: 216px; position: absolute">
                                <webuijsf:staticText id="staticText1" style="font-size: large" text="FACILITY"/>
                                <webuijsf:table augmentTitle="false" id="table1" title="Table" width="0">
                                    <webuijsf:tableRowGroup id="tableRowGroup1" rows="5" sourceData="#{SessionBean1.quotaArray}" sourceVar="currentRow">
                                        <webuijsf:tableColumn headerText="allocatedhours" id="tableColumn1" sort="allocatedhours">
                                            <webuijsf:staticText id="staticText2" text="#{currentRow.value['allocatedhours']}"/>
                                        </webuijsf:tableColumn>
                                        <webuijsf:tableColumn headerText="yearofStudy" id="tableColumn2" sort="yearofStudy">
                                            <webuijsf:staticText id="staticText3" text="#{currentRow.value['yearofStudy']}"/>
                                        </webuijsf:tableColumn>
                                    </webuijsf:tableRowGroup>
                                </webuijsf:table>
                            </h:panelGrid>
                        </webuijsf:form>
                    </webuijsf:body>
                </webuijsf:html>
            </webuijsf:page>
        </f:view>
    </jsp:root>Below is the jsp code to view the Booking table ( I am just getting a blank web page when I run the project with this code).
    <jsp:root version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page"
    xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <webuijsf:page id="page1">
                <webuijsf:html id="html1">
                    <webuijsf:head id="head1">
                        <webuijsf:link id="link1" url="/resources/stylesheet.css"/>
                    </webuijsf:head>
                    <webuijsf:body id="body1" style="-rave-layout: grid">
                        <webuijsf:form id="form1">
                            <h:panelGrid id="gridPanel1" style="left: 216px; top: 216px; position: absolute">
                                <webuijsf:staticText id="staticText1" style="font-size: large" text="FACILITY"/>
                                <webuijsf:table augmentTitle="false" id="table1" title="Table" width="0">
                                    <webuijsf:tableRowGroup id="tableRowGroup1" rows="5" sourceData="#{SessionBean1.bookingArray}" sourceVar="currentRow">
                                        <webuijsf:tableColumn headerText="bookingdate" id="tableColumn1" sort="bookingdate">
                                            <webuijsf:staticText id="staticText2" text="#{currentRow.value['bookingdate']}"/>
                                        </webuijsf:tableColumn>
                                        <webuijsf:tableColumn headerText="bookingendtime" id="tableColumn2" sort="bookingendtime">
                                            <webuijsf:staticText id="staticText3" text="#{currentRow.value['bookingendtime']}"/>
                                        </webuijsf:tableColumn>
                                    </webuijsf:tableRowGroup>
                                </webuijsf:table>
                            </h:panelGrid>
                        </webuijsf:form>
                    </webuijsf:body>
                </webuijsf:html>
            </webuijsf:page>
        </f:view>
    </jsp:root>

    Hi..guys..
    The following is the code from my 'SessionBean1'.java file.
    package com.TestApp.managedbean;
    import com.TestApp.dao.QuotaFacadeLocal;
    import com.TestApp.entity.Quota;
    import com.TestApp.dao.BookingFacadeLocal;
    import com.TestApp.entity.Booking;
    import java.util.List;
    import javax.ejb.EJB;
    import com.sun.rave.web.ui.appbase.AbstractSessionBean;
    import javax.faces.FacesException;
    * <p>Session scope data bean for your application.  Create properties
    *  here to represent cached data that should be made available across
    *  multiple HTTP requests for an individual user.</p>
    * <p>An instance of this class will be created for you automatically,
    * the first time your application evaluates a value binding expression
    * or method binding expression that references a managed bean using
    * this class.</p>
    public class SessionBean1 extends AbstractSessionBean {
        // <editor-fold defaultstate="collapsed" desc="Managed Component Definition">
         * <p>Automatically managed component initialization.  <strong>WARNING:</strong>
         * This method is automatically generated, so any user-specified code inserted
         * here is subject to being replaced.</p>
        private void _init() throws Exception {
        // </editor-fold>
         * <p>Construct a new session data bean instance.</p>
        public SessionBean1() {
        @EJB
         private BookingFacadeLocal bookingDAO;
         private Booking[] bookingArray;
         @EJB
         private QuotaFacadeLocal quotaDAO;
         private Quota[] quotaArray;    
         * <p>This method is called when this bean is initially added to
         * session scope.  Typically, this occurs as a result of evaluating
         * a value binding or method binding expression, which utilizes the
         * managed bean facility to instantiate this bean and store it into
         * session scope.</p>
         * <p>You may customize this method to initialize and cache data values
         * or resources that are required for the lifetime of a particular
         * user session.</p>
        @Override
        public void init() {
            // Perform initializations inherited from our superclass
            super.init();
            // Perform application initialization that must complete
            // *before* managed components are initialized
            // TODO - add your own initialiation code here
            // <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">
            // Initialize automatically managed components
            // *Note* - this logic should NOT be modified
            try {
                _init();
            } catch (Exception e) {
                log("SessionBean1 Initialization Failure", e);
                throw e instanceof FacesException ? (FacesException) e: new FacesException(e);
            // </editor-fold>
            // Perform application initialization that must complete
            // *after* managed components are initialized
            // TODO - add your own initialization code here
         * <p>This method is called when the session containing it is about to be
         * passivated.  Typically, this occurs in a distributed servlet container
         * when the session is about to be transferred to a different
         * container instance, after which the <code>activate()</code> method
         * will be called to indicate that the transfer is complete.</p>
         * <p>You may customize this method to release references to session data
         * or resources that can not be serialized with the session itself.</p>
        @Override
        public void passivate() {
         * <p>This method is called when the session containing it was
         * reactivated.</p>
         * <p>You may customize this method to reacquire references to session
         * data or resources that could not be serialized with the
         * session itself.</p>
        @Override
        public void activate() {
         * <p>This method is called when this bean is removed from
         * session scope.  Typically, this occurs as a result of
         * the session timing out or being terminated by the application.</p>
         * <p>You may customize this method to clean up resources allocated
         * during the execution of the <code>init()</code> method, or
         * at any later time during the lifetime of the application.</p>
        @Override
        public void destroy() {
         * <p>Return a reference to the scoped data bean.</p>
         * @return reference to the scoped data bean
        protected ApplicationBean1 getApplicationBean1() {
            return (ApplicationBean1) getBean("ApplicationBean1");
        public Booking[] getBookingArray() {
             List<Booking> bookingList = bookingDAO.findAll();
             if (bookingList != null) {
                 bookingArray = bookingList.toArray(new Booking[0]);
             } else {
                 bookingArray = null;
             return bookingArray;
        public Quota[] getQuotaArray() {
             List<Quota> quotaList = quotaDAO.findAll();
             if (quotaList != null) {
                 quotaArray = quotaList.toArray(new Quota[0]);
             } else {
                 quotaArray = null;
             return quotaArray;
    }

  • Version control (lvcompare and lvmerge) for projects, classes and libs?

    Hi everyone
    Version control for classes, projects and libs (not just a plain .vi) - can it be done with lvcompare and lvmerge?
    I've tried a simple "LVCompare.exe project1.lvproj project2.lvproj" and it only returns an error (lvcompare.exe vi1.vi vi2.vi works). So this is maybe a dead end.
    How do you guys version control more complex projects? E.g. projects which use classes, libs, labview projects (.lvproj)?
    Best regards
    Jonascj

    Thank you for your reply. You are right, .lvclass, .lvproj and .lvlib are all just xml files - I've just figured that out my self when I accidentally called GIT's default diff on a lvclass
    I've also just spoken to National Instruments. The person I spoke to (from the one of the danish offices) told me that no tools exist at this time (2013-04-08) which will compare those LabView file types, but that there was an internal (National Instruments themselves)  feature request for such tools.
    He also told me another interesting thing which I did not know. The lvcompare.exe (located in National Instruments/Shared/LabVIEW Compare/ on Windows) is actually the not developed by National Instruments, but is either a "fork" of LVDiff (http://meta-diff.sourceforge.net/) or LVDiff renamed. So one could simply obtain the source code from http://meta-diff.sourceforge.net/ (at the bottom of the page "Win32 binary w/source") and add a few property nodes to do comparision of lvclass attributes etc.

  • How do I fix project after "Remove From Version Control" corrupted it?

    I am using RoboHelp 9.0.1 and installed both Tortoise SVN 1.6.9 and latest PushOK SVNSCC then added my large RoboHelp project to SVN. I was able to check in and out files from SVN but had several issues with it:
    1) Super super slow. Working with folders or any renames would take 10 seconds per file and up to 1 hour if needed to refresh the root folder.
    2) I could not perform some actions at all, such as delete, rename, or move folders. I kept getting COM errors.
    I therefore decided that working with SVN and RoboHelp is not practical, at least not on my VPN so I decided to disconnect the project from source control and just work locally. The only option that I saw that sounded like it would do that was the "Remove from Version Control". This started a process that lasted for several hours. At the end of it, I now have several significant issues:
    1) The order of the files and folders in my Project Manager is completely wrong now. I have almost 1000 topics and reordering all of them is not possible.
    2) The Table of Contents, Glossary, and Index files appear empty. They had content before.
    2) A couple of the Single Source Layouts I had created are completely missing.
    3) Many, but not all, of the folders have tons of files with the extension ending in "_temp_removed_by_svn"
    4) Many, but not all, of the files are actually gone from SVN so I can't recover a clean image. There was no warning that this command would actually delete the files from SVN (I thought it would just remove the version control connection).
    5) Who know what other issue exist that I haven't seen.
    Any idea how I can fix this?
    Thanks in advance,
    Dan

    Are the "_temp_removed_by_svn" files in your local folder or SVN? Let us know how you get on with the new project. It sounds like something is wrong with SVN. Can you use the SVN Log command to see whether there is a different version you can restore. This might also give you an indication of what might have caused the problem. You could try deleting your CPD file. It gets rebuilt it is isn't there anyway. This file can become bloated and it is good practice to delete it when it gets close to 2mb in size. Your project is fairly large and has a lot of folders and may affect performance. Have you considered splitting them and merging the output? I know you probably don't want to consider this right now, but I think it may be a better long term solution.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • For a new web application project - Struts OR JSF ?

    Hi ,
    We are starting a new web application project and want to decide whetehr to us Struts or JSF ?
    Currently, mots of the other development teams are using Struts .
    We need to know pros and cons of each to decide one way or the other.
    Any help is appreciated .
    Thanks

    Those are the articles and presentation about this topic:
    http://homepage1.nifty.com/algafield/barcia.html
    http://www.jroller.com/comments/dgeary/Weblog/top_ten_reasons_to_prefer
    http://websphere.sys-con.com/read/46516.htm
    http://www.pjug.org/JavaServerFaces.pdf
    Sergey : http://jsfTutorials.net

  • Version Control in RoboHelp 9: Changing projects

    I am using Robohelp version 9. We had originally set up the internal Version Control to point to a particular project in our Team Forge. Now we have a new project that we need to point to and we cannot figure out how to change the location of where we are checking files into. We can see the path in the Version Control properties dialog box, but no way to edit the path. Any suggestions on how to switch from one project in Team Forge to another?
    Thanks!

    I am a dope! I meant Version 8!!!

  • Opening Project First Time from Version Control.  RoboSource Node

    Four writers have upgraded successfully.  My fifth is having issues...
    She has Serena Dimensions SCC installed as well (another source control product - used by Applications, not the authors or Infra.
    Problem: When she is establishing the root path (and the Browse RoboSource Node window opens, but it does not populate, even after 20 minutes.  Reboot did not work, neither did manually removing Serena Dimensions SCC.  I have verified that she has a connection to the database (via RSC Explorer) and can see the project (as well as the RH7 version of the project).  We have
    These are the instructions... (screenshots not included).  She's hanging up on
    1.1    Using a New Project for the First Time
    IMPORTANT NOTE:
    The author must have local administrator rights on the machine.  If the user has a privileged account, they must set up full local control of their work folder (specified in 1.1.2.8).
    1.1.1    Install RoboHelp and RoboSource Control
    1.    Download appropriate software packages, including all patches, from Adobe.
    2.    Launch RoboHelp Installer.  Select the following options for installation:
    o   RoboHelp for HTML
    o   RoboSource Control (Client)
    o   CS4 Script Extender
    INSTALLATION NOTES
    Installation of each component is separate and may take up to 30 minutes.  You do not have to install RoboHelp for Word.
    Only select the Client Install for RoboSource Control.
    3.    Install all patches in the order specified by the vendor.  Check with the technical communicator on which version is currently in use for patching.
    1.1.2    Open the Project
    1.    Launch RoboSource Control.
    2.    Establish a database connection per section 3.3.1.
    3.    Close RoboSource Control.
    4.    Launch RoboHelp 8 for HTML.
    5.    Click Open under Recent Projects under the main frame (do not use title bars).
    6.    Click the Open Project from version control button (shown below).
    7.    Make sure that RoboSource Control 3.1 is highlighted as the Version Control Provider and the checkbox for “Make this my default selection” is checked.  Click OK.
    8.    Configure the Source Control system as follows:
    Connection:  PROD
    Root Path: Click the … button and navigate to the (project name) root in the database and click OK.  This may take several minutes.
    Connection Mode:  Online
    Get to Local Path:  Click the … button and navigate to your Data folder.  Select Make New Folder under Data and give the folder a unique name to help you identify the files as for the Support KB in RoboHelp. 
    9.    Click OK when you have configured source control.  A copy of the database is now being downloaded to the path you specified.  This may take up to 20 minutes. 
    You can verify that installation is proceeding either by watching your local path fill with files or keeping an eye on the CPU usage of the RSO3MiddleTierService and RoboHelpHTML files under Task Manager.
    10.  Once transfer is complete, highlight Tier1KB.xpj and click Open.  It may take several minutes to open the project the first time.  It is typical for the snippet file to check out the first time you open the project and the first time each day that you save all project files.
    11.  Once the project is open, set Version Control properties:
    a.         Select Tools > Options.
    b.         On the Version Control tab, select all options.  This will prompt the user on each version control action they take.
    12.  Test a check out/check in to validate correct installation and source control operation.

    It's the settings in miscproperties in the XPJ and it works in TFS just fine. I'ts as follows:
    <miscproperties>
      <matchedpair>
      <name>vc::provider</name>
      <value>Team Foundation Server MSSCCI Provider</value>
      </matchedpair>
      <matchedpair>
      <name>vc::agent</name>
      <value>MSSCC</value>
      </matchedpair>
      <matchedpair>
      <name>vc::database</name>
      <value>http://ap-gda113-tfs-a:8080/tfs/centric|NB-WWEELDEN|ITS\Wweelden</value> <- Add the TFS URL, your workspace name and your domain name.
      </matchedpair>
      <matchedpair>
      <name>vc::cookie</name>
      <value>$/BV - MVV/Main/Tools/Documentatie/mvv-beheerders</value> <- The location of the project in TFS.
      </matchedpair>
      </miscproperties>

  • Cp5 Project version control

    Hi all
    Can anyone recommend best practice for version control in Cp5? In other documentation I'm in the habit of saving the version number in the file name, but with Captivate, if there are links to projects, changing file names with every edit will cause problems.
    Any advice would be appreciated.
    Regards
    Amanda

    I don't know of a way to do this so that you can see the version information without opening the Captivate file. My way to include version information within the .cptx file is to put the version number into a caption on the title slide of the presentation. If the version number is only relevant to the developer(s), make the caption invisible, but if you want users to be able to see it in the published presentation, leave it visible and format it appropriately (e.g., a transparent caption with say 8 point font, at the very bottom of the slide).

  • Writer can't see projects in Robo Version Control - no error messages

    Background:
    Robo Version Control 3.1
    RoboHelp 8 (same issue happened with 7)
    Issue:
    We are having trouble with our source control, and I wasn't able to find an answer on this forum or on Google.
    From time to time, when a writer opens RoboSource Control Explorer, they can't see any projects. They're not getting error messages, they seem to connect to the DB, but the left pane is simply empty (they don't see the root folder or anything else). We recently upgraded to RoboHelp 8, but this has happened on RoboHelp 7 too. Source control does work - for example, if they open their local version of a version controlled project, they can get the latest version of files, check in, check out and so on. They simply can't use RSC Explorer, so they can't Get projects they don't have on their HDDs already.
    In the meantime, Source Control works just fine for the rest of the team, so I'm guessing it's a problem with some local settings. (The writer who is having trouble now can't get it working on her machine with her personal user or the admin user. At the same time, I can use the admin user just fine from my machine.)
    This problem always solved itself after a while, but it's getting a bit annoying and I'm hoping someone knows why this is happening.

    In general, manually moving files around inside the store like this should be discouraged.
    reconstruct is telling you something is wrong:
    ERROR: Inconsistent information: 0 idx records   41 messages   0 expunged
    Reconstructing...
    cannot retrieve message uid 590
    cannot retrieve message uid 807
    cannot retrieve message uid 911
    cannot retrieve message uid 915
    cannot retrieve message uid 1198
    cannot retrieve message uid 1286The first line is to be expected based on what you have done. The store.idx indicates there are no messages in the folder. But it found 41 .msg files. So it is going to rebuild store.idx to fix that.
    But then there is some problem with accessing the .msg files. Possibilities would include:
    - wrong ownership/permissions?
    - the .msg file being in the wrong NN subdir ??
    If those guesses do not lead to anything, try truss on the reconstruct command to see what happens when reconstruct tries to open those files.

  • Extremely slow performance on projects under version control using RoboHelp 11, PushOk, Tortoise SVN repository

    We are also experiencing extremely slow performance for RoboHelp projects under version control. We are using RoboHelp 11, PushOk and a Tortoise SVN repository on a Linux server. We are using a Linux server on our IT guys advice because we found SVN version control under Windows was unstable.
    When placing a Robohelp project under version control, and yes the project is on my local machine, it can take up to two hours to complete. We are using the RoboHelp sample projects to test.
    We have tried to put the project under version control from Robohelp, and also tried first putting the project under version control from Tortoise SVN, and then trying to open the project from version control in Robohelp. In both cases, the project takes a ridiculous amount of time to open. The Robohelp status bar displays Querying Version Control Status for about an hour before it starts to download from the repository, which then takes more than an hour to complete. In many cases Robohelp becomes unresponsive and we have to start the whole process again.
    If adding the project to source control completes successfully, and the the project is opened from version control, performing any function also takes a very long time, such as creating a topic. When I generated a printed documentation layout it took an astonishing 218 minutes and 17 seconds to complete. Interestingly, when I generated the printed documentation layout again, it took 1 min and 34 seconds. However when I closed the project, opened from version control, and tried to generate a printed documentation layout, it again took several hours to complete. The IT guys are at a loss, and say it is not a network issue and I am starting to agree that this is a RoboHelp issue.
    I see there are a few other discussions here related to this kind of poor performance, none of which seem to been answered satisfactorily. For example:
    Why does it take so long when adding a new topic in RH10 with PushOK SVN
    Does anybody have any ideas on what we can do or what we can investigate? I know that there are options for version control, but am reluctant to pursue them until I am satisfied that our current issues cannot be resolved.
    Thanks Mark

    Do other applications work fine with the source control repository? The reason I'm asking is because you must first rule out that there are external factors causing this behaviour. It seems that your it guys have already looked at it, but it's better to be safe than sorry.
    I have used both VSS and TFS and I haven't encountered such a performance issue. I would suggest filing it as a bug if you rule out that the problem is not related to external influences: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&loc=en
    Kind regards,
    Willam

  • Opening a project from version control

    RH11 | WebHelp
    This may be related to my previous post (File Status "New version available") but I am now unable to open a project from version control using the padlock button in RoboHelp's Open Project dialog box. It lets me select a project to open, but then just sits there, not doing anything.
    Any ideas?
    Thanks
    Jonathan

    This sounds like a bug to me. Does the RH11 work on a Windows 7 machine? If you have a VMWare lying around, you may want to give that a shot. Short of contacting Adobe with a bug report, I'm out of idea's.
    Kind regards,
    Willam

  • Project Not Checking out From Version Control

    All of our help projects are managed using version control
    (Team Foundation Server).
    I recently had an XPJ file that became corrupted. As per
    Adobe's instructions, I deleted the XPJ and CPD files and
    regenerated the project from the HHP file. That worked fine, but
    now launching the project from the XPJ file opens the project
    outside of version control. (I'm no longer being prompted to check
    the files out.) I think this is because the newly created XPJ file
    now disassociated with the source control. If this is true, how do
    I get the XPJ file back into source control?
    Hopefully this makes sense.
    Christina Stommel

    Hi Christina,
    My understanding of the entire "version control" process is
    limited but since no one else has thrown in, I will try to pass
    along what little I know. What I have learned is that version
    control works great until it doesn't.
    What I've had to do in the past, when I've had these sort of
    synchronization problems, is to remove the entire project from
    version control (I would be sure to back up your local project as
    well as your version-controlled project). Then, you should be able
    to add the repaired project back to your source control software
    (we use MS VSS but I think it shouldn't matter).
    I have tried, in the past, to add individual files to the
    database from the RH interface (you could try "check in all files")
    and I have gone into the database and manually added the necessary
    files, but I have had mixed results. In the end, it seems that
    removing the project from version control, then adding it back, is
    the only thing that is guaranteed to work.
    Good luck!

  • How do you create translated versions of a project under version control?

    Hi,
    We have a project under version control that has been translated. How do we best create projects for the translated material so that the webhelp output matches the English version only translated? Is it possible to create a project with a name that reflects the translated language, copy the English project file to the new folder, change the name to coincide with the translated version, import all of the associated English files, and then exchange all of the English files with the translated ones?
    Thanks,
    Allen

    Hello Allen and welcome to the community.
    See if this article helps.  You didn't mention which RH version you're using, but except for the features specifically called out as being in RH8, the process should work for RH7 projects.
    I use Subversion for version control, and I haven't had any additional challenges from having localized projects in version control—you check the files in and out as you do the English ones. Check out the article and let us know if you have any additional questions.
    Note that the article gives recommendations, but you certainly can do your localized versions as completely separate projects.  If you do it that way, for each separate project, copy the English project to a new location, rename it if you want, and change the project language.
    Hope this helps,
    Ben
    GryphonMountain.net

  • How to upgrade RoboHelp HTML 9 version-controlled projects to RoboHelp HTML 10

    Existing Environment:
    PC 1: RoboSource Control Server
    Windows 7, 64-bit, SP1
    Adobe TCS 3.5
    RoboHelp HTML 9
    RoboSource Control 3.1 (Server install)
    Microsoft SQL Server 2005
    PC 2:  Client
    Windows 7 Enterprise, 64-bit, SP1
    Adobe TCS 3.5
    RoboHelp HTML 9
    RoboSource Control 3.1 (Client install)
    PC 3:  Client
    Windows 7 Enterprise, 64-bit, SP1
    Adobe TCS 3.5
    RoboHelp HTML 9
    RoboSource Control 3.1 (Client install)
    PC 4:  Client
    Windows 7 Enterprise, 64-bit, SP1
    Adobe TCS 3.5
    RoboHelp HTML 9
    RoboSource Control 3.1 (Client install)
    PC 5:  Client
    Windows 7 Enterprise, 64-bit, SP1
    Adobe TCS 3.5
    RoboHelp HTML 9
    RoboSource Control 3.1 (Client install)
    We are upgrading from TCS 3.5 to TCS 4. In our existing TCS 3.5 environment, we have approximately 20 RoboHelp HTML 9 projects that are under version control. Our version control system is provided through RoboSource Control 3.1/Microsoft SQL Server 2005.
    I have determined that RoboSource Control 3.1 is provided with TCS 4. Therefore, it doesn't appear that we need to worry about upgrading the version control databases or the RoboSource Control software (we had to upgrade both the version control software and the version control databases when we upgraded from RoboHelp x5 to TCS 3.5).
    So, my primary question is this: After we run the TCS 4 install, what is the recommended process for opening our existing RoboHelp HTML 9 projects from the new RoboHelp HMTL 10? As I see it, there are three potential answers:
    Delete all existing RoboHelp HTML 9 "working" folders for the projects, and use RoboHelp HTML 10 to recreate the "working" folders from the version control databases.
    Simply open the existing RoboHelp HTML 9 "working" folders for the projects using RoboHelp HTML 10.
    It doesn't matter; either of the two options above will work.

    Hi,
    I'm not really familiar with RCS, but for other source control systems I recommend the following:
    1. Make sure that all your changes are checked in and that at least on pc has the latest version of all the files before updating TCS.
    2. Run the update.
    3. Now open the project on the pc that has the latest version of all files.
    4. After update, check in the entire project.
    5. Get the latest version on all pc's using the server. (Don't open the project in the client.)
         - Mostly, I just remove the entire project from the pc's and use a GET to get updated project from the server.
    I hope the RCS supports a get all from the server, if not, please ignore the above list.
    Greet,
    Willam

  • Error Message - Project is missing or has been removed from version control

    All of a sudden, the SharePoint RoboHelp version control "link" stopped connecting to the team's local versions.  Now, once we logout of RH, we have to redownload the SP version to our computers in order to continue working.  We are on RoboHelp 10 and did not have this issue previously.  We do not know what may have triggered it (perhaps an enterprise deployment of new security software?). Any thoughts or ideas on how to re-establish and MAINTAIN the version control connection?

    Thread moved to Source Control.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for

  • App Download Error

    Hi.. I am new to BB...need guidance esp related to downloading the app from BB world. Before I get to the issue following needs to be informed about my Phone & Laptop: BB model: Curve 9380 OS- OS-7 BB world pre-installed Desktop- Apple Macbook pro wi

  • [SOLVED] Images being rendered in abnormally low quality

    Hi guys, I'm not entirely sure what the issue is since I don't usually play around with image {libraries,software,etc} on Arch, but I have noticed recently that images on Arch, regardless of WM/DE, have been rendered (drawn?) in very low quality. htt

  • [svn:cairngorm3:] 19791: fixing the flexunit 4. 1 related fb config files and build files

    Revision: 19791 Revision: 19791 Author:   [email protected] Date:     2011-01-18 00:03:58 -0800 (Tue, 18 Jan 2011) Log Message: fixing the flexunit 4.1 related fb config files and build files Modified Paths:     cairngorm3/trunk/libraries/Integration

  • After upgrading to OS X Yosemite i have aventail issues...

    After upgrading to OS X Yosemite i am experiencing issues with my Aventail software. I am getting a java error message but java is up to date. Is anyone else having issues with this? It takes away my ability to work from home which is no good. Any he

  • Question from ICWeb cookbook

    I'm stuck with adding a field to an ICWeb view. I tried the following procedure from cookbook.I wanted to add a field to BTactivityH attribute. Copied the controller class, copied super class for the controller  class and then the super class of it t