HELP! - Lost CVS Version Control Profiles in JSC-2

Can anyone tell me how to restore the default JSC-2 Version Management CVS Profile?
Somehow I managed to delete the CVS AND the VSS Profiles, so I cannot set up ANY sort of Version Management.
What can I do to fix this??
Many thanks in advance,
<-j->

I think the easiest way would be to start with a fresh userdir. That's where the IDE stores all the per-user changed information.
Move $HOME/.Creator/2_? (0 or 1 depending on which update version you are) to something like $HOME/.Creator/2_?.myOld ;-)
Now the next time you start the IDE, everything should be back in order with the version control. But you will have to open you projects again etc!
Thanks,
-- Marco

Similar Messages

  • Gallery App Help/Lost ability to control whether to resize a photo when emailing

    When emailing photos and using the Gallery App I had the option to resize or not. I could select a new size and select "Always" or "Just Once". I don't have the option anymore and I really need to get it back. What do I do?
    Example:
    I'd begin to compose an email and then I'd select add an attachment & it would take me to the list & I'd select "Picture" at the top of the list on the right hand side. It would take me to the Gallery App where I could select a photo. Before attaching it I would get asked if I wanted to resize it or not along with resizing options to select from. I could use for example like small, medium, and large just by selecting the toggle I wanted. It would also ask "Just Once" or "Always". I think somewhere I may have accidentally hit "always" when I was in a rush & I did not know it. Now all my photos are resized when emailing them and I don't get a choice. I want the choice back not having photos always resized.
    I have an LG phone if that makes a difference.
    What do I do? Please help!
    Thanks

    I don't get an error message. The Gallery App automatically resizes the
    photos when I try to email them. I had the option to resize or not resize
    and it would come up as "Just Once" or "Always" and I could pick the size
    of the phone like, original, large, medium, small. I like being in control
    of the photos I email from my phone. I have not had any recent software
    updates. Under About Phone it says phone name: VS980 4G LTE and when I send
    emails it reads at the bottom "Verizon 4G LTE Smartphone"
    Thanks
    Anne McGugin (Queen Sapphyre)
    On Sat, Jan 10, 2015 at 2:40 PM, Verizon Wireless Customer Support <

  • Dreamweaver Help | Version Control and Advanced settings

    This question was posted in response to the following article: http://helpx.adobe.com/dreamweaver/using/version-control-advanced-settings.html

    FlashBanger wrote:
    Why am I getting an "Image is not inside the site." alert?
    It could be because you haven't defined/setup your site.  In DW you always need to define a site before you can do anything.  I suggest read this part 1 tutorial to get the idea.

  • Reg: Openscript files should store  version control system (CVS)

    Dear's.
    I dont see any option in Openscript to directly send files to repository like Eclipse. Eclipse has an option to team sync with repository .Is their a way to store openscript files in to any kind of version control system .
    Thnkq
    Raju.

    Hello
    Pls find here http://dl.free.fr/gZ9qmGToA (for the next 30 days) a HowTo integrate OpenScript with Subversion.
    Let us know if it fits your needs.
    Cheers
    JB

  • Urgent Help Metadata Version Control

    Hai Friends...
    Any version control available for metadata at design time.
    Cheers
    Gopi

    Gopi,
    I think you have posted within the wrong forum...
    Christopher

  • Need help writing script to change version control for all document libraries in all sites

    Hello,
    I found this script, http://get-spscripts.com/2010/10/changing-sharepoint-list-settings-using.html that
    changes versions control for a document library.  However, many sites have many document libraries with different names.  The script below just changes a the settings to a document library that is named "Shared Documents", but does not
    change one if its named something else.  How can change the script to loop through all document libraries so their settings are changed?
    $site = Get-SPSite http://site
    $listName = "Shared Documents"
    #Walk through each site in the site collection
    $site | Get-SPWeb | 
    ForEach-Object {
    #Get the list in this site
    $list = $_.Lists[$listName]
    #Create a version each time you edit an item in this list (lists)
    #Create major versions (document libraries)
    $list.EnableVersioning = $true
    #Create major and minor (draft) versions (document libraries only)
    $list.EnableMinorVersions = $true
    #Keep the following number of versions (lists)
    #Keep the following number of major versions (document libraries)
    $list.MajorVersionLimit = 7
    #Keep drafts for the following number of approved versions (lists)
    #Keep drafts for the following number of major versions (document libraries)
    $list.MajorWithMinorVersionsLimit = 5
    #Update the list
    $list.Update()
    #Dispose of the site object
    $site.Dispose()
    Paul

    Sorry, I agree. It will update Style Library and other out of the box ones. Include the library titles in a collection and run the update against them provided these libraries are common across all sites. If not, you will have to first get an extract of
    all such libraries in all sites say in a CSV file and then update the script below to refer to the CSV records.
    Add-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction Stop;
    #List of Libraries to be updated.
    $Libraries = @("Shared Documents","My Document Library");
    $spAssgn = Start-SPAssignment;
    $site = Get-SPSite http://site -AssignmentCollection $spAssgn
    #Walk through each site in the site collection
    $site | Get-SPWeb -Limit ALL -AssignmentCollection $spAssgn |
    ForEach-Object {
    #Enumerate through all document libraries
    $_.Lists|Where{$_.BaseTemplate -eq "DocumentLibrary" -and $Libraries -contains $_.Title}|Foreach-Object{
    #Get the list in this site
    $list = $_;
    #Create a version each time you edit an item in this list (lists)
    #Create major versions (document libraries)
    $list.EnableVersioning = $true
    #Create major and minor (draft) versions (document libraries only)
    $list.EnableMinorVersions = $true
    #Keep the following number of versions (lists)
    #Keep the following number of major versions (document libraries)
    $list.MajorVersionLimit = 7
    #Keep drafts for the following number of approved versions (lists)
    #Keep drafts for the following number of major versions (document libraries)
    $list.MajorWithMinorVersionsLimit = 5
    #Update the list
    $list.Update()
    Stop-SPAssignment $spAssgn;
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • Lightweight Version Control and/or IDE ?

    Summary:
    I would like to know if anyone has any suggestions for a light-weight version control system ? A light-weight IDE would also be of interest (more advanced than TextPad, less complicated than Eclipse).
    I would have stuck this in the IDE forum, but it seems their isn't one.
    Details:
    Previously, I have been doing my Java development using a text editor (TextPad), and doing most everything manually. I like this approach, because I understand everything that is going on.
    I recently ventured out in the hopes of implenting version control. Going with what's popular, I set up CVS on my Linux server and access it using Eclipse on my PC. I would just continue using TextPad, but I like how Eclipse provides a nice GUI front-end for CVS functions.
    Unfortunately, I've found the whole CVS/Eclipse setup to be buggy and convoluted. I still don't have CVS set up quite right. I can't seem to tag anything with a version, and I still don't know how to properly set up access privelidges (for simplicity, I ended up using chmod 777 on all CVS directories and files).
    This whole setup seems to require intricate Linux, CVS, and Elipse knowledge. Now, instead of working on my Java application, I spend most of my time trying to better learn Linux, CVS, and Eclipse. Progress on my projects have ground to a halt. Every problem I encounter requires hours of research to resolve, and it often results from not understanding the complicated inner workings of one of these insufficiently documented products.
    In the end, I really just wanted some version control for my software with a user-friendly GUI front end. I have no wish to be a Linux expert, or a CVS expert, or an Eclipse expert. I just want to be a user, so I can get on with doing my real work -- Java programming.
    <rant>
    I find Linux in particular to be especially difficult to grasp. It's not that the O/S is complicated. It's that materials for learning are sub-par or nonexistent. The Linux community, as well as many other software communities, like to think of themselves as part of some elite club of experts they don't want others to join. To perpetuate this, there is a general lack of tutorials, GUIs, or helpful information of any kind. Take "man" for instance, the worst help facility ever created, which has never been improved upon.
    This would all be okay if I could simply use the non-existent CVS installer to install and configure CVS. But no, I have to do it all manually, from setting up the CVS server in xinetd, to editing the cvswrappers file (why is this not set up from the get go?), to changing iptables to allow CVS connections through the firewall. Simply trying to figure out how to set an environment variable is an exercise in frustration the first time. It took me probably an hour of research just to figure out that I needed to edit the file "profile" in the "/etc" directory because such information is not nicely documented anywhere.
    </rant>
    Conclusion:
    Ideally, I would like a SIMPLE version control system that I can just run on my Windows PC. Something with a GUI preferably, as managing large numbers of files from a command prompt is tedius. Likewise, a light-weight IDE, something less complicated than Eclipse, would also be of interest to me.
    Also, if you have any recommendations for a good Linux book, that would also be of interest to me. Such a book would probably be tailored to a specific flavor of Linux since each flavor uses different tools. I currently use Fedora Core, so a Fedora Core book would be preferable. I think I am probably stuck using Linux for a server, as my copy of Windows NT Server is hopelessly outdated, and Windows Server upgrades cost thousands of dollars I don't have (why don't they have an educational version of Windows Server?). I still regret spending thousands of dollars the first time.
    Thanks for any suggestions.

    Imho, CVS is a rather simple version control system, though I wouldn't want to access it using IDE plugins as they hide a lot of functionality. For an alternate frontend, have a look at WinCVS (www.wincvs.org) -- it's not that buggy.
    You could also try subversion as a replacement for CVS, but afaik, there's no reliable and comfortable GUI client available yet.

  • Version control tool for Mac OS X?

    Hi all
    If using labview on Mac OS X, 
    do you have some version control tools to recommend?
    Thanks  a lot

    As far as i know, LV for Mac does not integrate with source code control provider. LV for Windows has two requirements for this:
    a) Professional Development Environment
    b) A source code control provider compatible to the Microsoft Source Interface
    There is still always (Mac, Linux and Windows alike) the possibility to control source files using the SCC providers client software.
    Many open source project SCCs like CVS or Git integrate, at least in Windows, in the File Explorer.
    I recommend you to research possible solutions like this for Mac.
    The next question is if you want to use a distributed SCC or a local one. Depending on this, you will have to setup a network server with compatible provider (e.g. RhodeCode).
    LV provides both a Diff and Merge tool as EXE (Professional). I am not sure if this is also true for the Mac version, so look for "LVCompare" and "LVMerge".
    hope this helps,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • 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

  • OWB 10g/11g version control

    I am using OWB 10g release 2 but there is no feature for version control. The snapshot feature and export/import can help but Its very difficult with big project.
    Is there any new feature with OWB 11g release 1 or 2 for version control ? Do you have any proposition for version control in 10g ?
    Robin
    Edited by: user451399 on 2009-06-12 08:07

    Hi Robin,
    In the repository there can be only one version at the moment. If you have to work on an older release, you have to load it into another repository.
    We proceed as follows:
    1. Build a collection containing all objects that belong to the release
    2. Export that collection
    3. Check the file into CVS
    4. Import the file into production repository (in production db)
    5. Deploy from the production repository to the production target schema
    That way the release that is currently deployed on production is also in the production repository. You may do hotfixes directly here or just have a look at what is currently deployed.
    In our development repository we can work on new features.
    I gave a talk about automating this process on DOAG 2008. You may request the presentation here [http://www.metafinanz.de/leistungen/leistungsbereiche/bi-reporting/data-warehousing/kontaktformular/|http://www.metafinanz.de/leistungen/leistungsbereiche/bi-reporting/data-warehousing/kontaktformular/]
    Though the slides are in german they show the architecture and should give you some idea.
    Regards,
    Carsten.

  • SCM and Forms Builder version control

    Hi,
    I would like to start using Oracle 10g SCM repository with Forms builder for version control. The idea would be that the forms developers do not use Repository Object Navigator.
    I read from the instructions that Oracle9i Forms Developer requires the .fmb and other associated files to be located on an accessible disk, i.e. outside of the Oracle9i SCM repository. Thus to edit a .fmb file it must first be downloaded to a file system. That means that the developer needs to use RON. Is that really so? What is the reason for that?
    When I was testing the version control functionality with Forms Builder I realized that the users cannot easily determine if a file is checked in or our unless they use RON or try to perform the action (i.e. check in or out). Is there any other solution for this?
    Thanks,
    Tomi

    Hi user574160
    Subversion is seen as the natural successor of CVS, and so is a natural choice for many development sites out there.
    Note you should have a look at the following Re: Configuration Management in Forms 6i regards Subversion locking to ensure the integrity of your binary forms files.
    In turn the Subversion Book under section 3 Locking gives a good explanation of protecting binary files.
    Hope this helps.
    Regards,
    CM.

  • Keynote destroys version control files inside of .key directory

    Hi - I've been using Keynote for a couple of years now and in general I really prefer it. However, I've noticed a change in the more recent versions of the iWork apps, particularly Keynote. It seems that when I save my presentation, Keynote is erasing data files (".svn" directories) which my version control system (Subversion) leaves inside of the Keynote directories, which renders me unable to check the changes to my Keynote file back into the repository (Subversion). A similar problem occurs when I save my ".pages" documents.
    Storing my files in Subversion is an important part of how I manage my business' documents, and I cannot see how erasing the ".svn" directories as part of the "save" routine adds useful function to Keynote or any of the iWork apps. This problem is not unique to subversion, as CVS does the same thing. I would suggest removing the code which erases/cleans the directories under the ".key" top-level directory.
    Thanks for your consideration!

    The "your bug/my bug" dialogue doesn't seem to be very helpful in this discussion (and the open/proprietary arguments even less so). It's a bug at the interaction of how two packages are using the file system, an "our bug" so to speak.
    I think the underlying issue has to do with the design discipline of orthogonality which is part of the Unix DNA. Different components are designed to both not step on each other and (where possible) to connect together well. One of the tricks for that orthogonality is the use of dot.files to store application information in the file hierarchy.
    OS X Packages, which are a great idea, break orthogonality when they delete information from other tools with prejudice and compound the problem by having no way to override that policy (for example, allowing the declaration of some dotted file or directory names as valid external metadata).
    Whose bug is it that subversion doesn't respect one particular vendor's way of using the file system? Given that dot.files are a broad and historically deep Unix convention, I'd be inclined to suggest that the application doing the deleting is in error. subversion could fix the problem with vendor-specific patches, but this doesn't seem the right kind of open approach.
    The argument could be made that the iWork applications are Mac applications, not Unix applications, so they shouldn't have to worry about these Unix conventions. But one of the nicest things about the Mac is that it is both Apple and Unix and it would be nice if it stayed that way as Apple added more cool pieces to the OS X universe.
    I think I've seen all the workaround and I'm using one for the time being, but I am also seriously but regrettably considering dropping iWork in my company to switch to something more Unix-resonant.

  • Version control for databases, schemas, objects

    Dear All,
    I'm looking for a designer tool with version control abilities. I don't need to have many types of models, if it's able to do ER and version control, plus it has a command line interface then it's fine. (I need to automate everything, so installing schemas with one click or with one command shouldn't be a problem.) The funny thing is that I've already built such environments with SVN and VSS, but now I need a reliable product with such features. (I don't like Designer, so that one is out of scope.) One more thing: it has to be able to store parameters of objects for example: PCTFREE, PCTUSED, TABLESPACE, etc.
    I'm looking forwrad to your help.
    Franky

    Released in April 2008, Oracle SQL Developer 1.5 is the "Version Control" release, as it includes integration with open source version control products, CVS and Subversion.Supporting the version control is a File Browser to browse and read files stored in the file system. You can open and edit these files from within SQL Developer.
    http://www.oracle.com/technology/products/database/sql_developer/files/what_is_sqldev15.html

  • Version Control for Oracle Reports and Java

    Hi
    I have a Reports and Java development enviroment and I need version control for both. In JDeveloper there is only support for CVS and SVN. Does report have support for CVS and SVN?. What can I choose to offer Java and Reports version control?
    Regards,
    Néstor Boscán

    Hello,
    You might find neXtep Designer helpful, depending on what you need. It is a free database development environment based on the concept of version control. You will work in a dedicated version control repository in which you can import any existing database through reverse synchronization. Once imported, you will gain control over the lifecycle of your database model all along your developments. The tool will generate SQL scripts resulting from the delta between any 2 versions, allowing you to automate SQL generation. It also provide a delivery mechanism and an installer program which can automate deployment of the changes on a target database.
    The product is based on the Eclipse platform and provides features like graphical data model, dependency management, SQL clients, powerful SQL editors for stored code development and currently supports Oracle, MySql and PostgreSql. You will find more information here :
    http://www.nextep-softwares.com
    Also have a look at the WIKI for more detailed information about the product, the concepts and the reasons why we created neXtep.
    Hope this helps,
    Christophe

  • CVS versioning

    Hi,
    I am trying to use CVS to manage version control for a business
    components project. I have the following problem:
    - If we include the project file in CVS every time somebody
    tries to commit the changes he gets a conflict in all the
    project files.
    - If we try to use different project files we are not able to
    use the same business components stored in the initial project.
    Has someone used cvs for a OBC4J project?
    am I doing something wrong?
    Thanks
    Andres Umana

    Hi David,
    Thanks for the information.
    Yes, I am trying to merge the jpr file.
    Great that you are working on that.
    In the mean time is it possible to do any of this options:
    - Reconstruct the hash, renumbering manually.
    - Using a project file for each of the developers. Is it
    possible to import the source of a OBC4J package to a different
    project?
    Thanks again for your information
    Andres Umana
    Hi
    Just want to confirm you are merging the project jpr file?
    BC4J files with in a project are held in a hashmap, the
    hashmap contents are written out into the jpr file. The hashmap
    contents can be written out in any order, therefore the problem
    when merging the jpr file back into the CVS repository.
    In the production release of jdeveloper - to be release early
    next year, we have made the hashmap write is contents using a
    ordered pattern. This will greatly help merging the project jpr
    file and should solve your problem

Maybe you are looking for

  • How can i stream video and audio from macbook air to my tv?

    how can i stream video and audio from macbook air to my tv?

  • I created a new Apple ID, but can't access iTunes

    I created a new Apple ID, but can't access iTunes, it doesn't recognize my ID

  • Document type change for excise document

    Dear Experts, I would like to change the document type for excise invoice generated at the time of J1IIN. At present system is generating document type SA. I want to maintain different number range for these documents instead of SA document number. S

  • NoSuchMethodException

    Hi, When I run my application on one machine it works fine. However, when I run it on a second machine ( Class path ok cause the GUI launches ok ) I get the following error when I press a button on the GUI. All classes are in the same package. Any id

  • Speed of mouse double click controls also finder

    I was wondering why my new macbook pro responded slower than my imac. Then I came across this: When I single-click on a folder that I haven't opened for weeks. The time that it takes the finder to show the content of a folder is affected by the setti