. DocumentRevisions

Hi, I have a problem with space on El Capitan.

I have the 128 SSD and 1/4 is full of. DocumentRevisions. I deleted the files of sketches from there, but I can't get rid of the other files. It is full of 21Mo files that are contained in the 6 files/folders by 5, 4 GB. Someone at - it experience with this?

I tried this command and it did not help.

  • sudo cd /.
  • sudo ls - l. DocumentRevisions-V100
  • sudo rm - rf. DocumentRevisions-V100

Thank you!

For more information about document versioning, see this support article. The database that stores previous versions of your documents became too large.

Please backup all data before making any changes.

Maybe it's not easy to solve the problem without deleting the whole database, clear all previous versions (but not the current criteria). There is often a single document, or maybe, it is large and has a long history, occupying more space. It could be a document Pages or Keynote presentation with great graphics, for example. If you know or can guess which document that is, remove most or all of its latest versions as made in the article linked above support.

If the problem is not resolved in this way, see below. All the previous document versions will be deleted. The current versions will not be affected.

Quit all applications open except the web browser.

Triple-click anywhere in the line below on this page to select this option:

/.DocumentRevisions-V100

Right-click or Ctrl-click on the highlighted line and select

Services ▹ Open

in the context menu. A Finder window should open with a named item '. " DocumentRevisions-V100"selected. Move selected item to the trash. You may be prompted for administrator login password. Restart the computer and empty the trash.

Tags: Mac OS & System Software

Similar Questions

  • Last updated by CC removed the content of my. DocumentRevisions folder. HOW CAN I FIX THIS ADOBE? Can you stop using paid users as beta-testers?

    This thread has been going around warning people, but what are the next steps to address this issue?

    The update in question has been removed from the distribution. There is a new update which solves the problem. When you are prompted for the update, you should install it as usual members of creative cloud. If you have problems with the update, please contact customer support.

    Alternatively, you can refer to this blog for more details:

    http://blogs.Adobe.com/adobecare/2016/02/12/creative-cloud-desktop-on-Mac-update-issue/

  • Mini Mac lack of space - 209GB private folder?

    Hello. Someone please help. My user folder uses only 150 GB, my hard drive is 500 GB and yet I have 50 GB left! FDI all sorts

    I tried 'disk inventory X' and "Disk space" but no one could find the data so after some searching on Google I came across a Terminal command and tried. That's what I found:

    sudo-chxd s 1 /.

    Password:

    10 M /. DocumentRevisions-V100

    388K .fseventsd

    1.2 G. Spotlight-V100

    0 B /. Trashes

    0b climbing.4

    36 G/applications

    2.6 M "/ bin"

    0b /cores

    0 b/data

    4.5 K/dev

    1.0 K/Home

    5.7 M Software /Incompatible

    6.9 G/library

    K/net 1.0

    0 b/network

    0 b / opt

    /Private 209G

    / Sbin 980K

    17 G/system

    142 G/Users

    1.1 G/usr

    /Volumes 4.0 K

    413G /.

    Total of 413G

    I had a quick glance in the partnership, but it does appear that 5 GB! What is going on? Help!

    If you have a time capsule, it could be local time backups of machine waiting for access to your time capsule.

  • How to change the "TextVariable" via javascript

    Hello

    How can I change the value of a "Custom text Variable" via javascript in indesign CS5?

    I understand that there is a 'content' that is me allotted property, but I can't understand how to set or change.

    Here's the javascript code example for reference.

    var docRef = app.activeDocument;
    
    
    for ( var i = 0; i < docRef.textVariables.length; i++ ) {
    
    
        var textVariableItem = docRef.textVariables[i];
    
    
              // Check for the type
              if (textVariableItem.variableType === VariableTypes.CUSTOM_TEXT_TYPE){
    
    
                        var variableOption = textVariableItem.variableOptions;
      
                        // This will give me the text value of the variable
                        alert("Text Variable " + i + " \n " + textVariableItem.name + "\n" + variableOption.contents);
    
    
                        // But how do I set it? 
                        // The following does not seem to work 
                        variableOption.contents = "New custom text..."; 
              }
    }
    
    // Logic behind this script
    
    // theScript()
    // is a wrapper function to provide functional scope to the entire script
    // This function is invoked at the very bottom of the file
    
    // main();
    // the main function that gathers the initial parameters and launches the dialog box
    
    // function mainDialog(docRef, selectedItems, layers, inputs)
    // A function that creates a dialog box this function is passed as a parameter to a "factory method"
    // called function sfDialogFactory(dialog)
    // which is a general purpose utility for creating dialog boxes.
    
    // The mainDialog function has a callback function that responds to the "comtinue" button and after some validation
    // makes a call to a function called
    
    // function doAction(docRef, inputs, options)
    // This is where the main behvior of the script is suppose to be defined.
    // it is designed to be called AFTER the dialog box return and is the result of the callback inside mainDialog
    // The doAction function receives objects that are parameter holders for various inputs and options that come from the
    // dialog box presented to the user
    
    function theScript() {
    ///////////////////////////////////////////////////
    // BEGIN THE SCRIPT
    //=================================================
    
    ////////////////////////////////////////////////////////////////////////////////
    // SCRIPT MAIN PROCESS
    ////////////////////////////////////////////////////////////////////////////////
    // Main Process
    // The beginning of the script starts here
    // Add main logic routine to this function
    
    // Call Main Function to get the ball rolling
    var elementsData;
    var theDocument = app.activeDocument;
    var inputGroup;
    main();
    
    function main(){
    var theSelectedItems = theDocument.selection;
    var theLayers = theDocument.layers;
    
        var myDialog = sfDialogFactory(mainDialog(theDocument, theSelectedItems), theLayers);
        var result = myDialog.show();
        if (result == 1){
            newAction();
            alert("Done");
            }
        else{
            alert("Not Done");
            }
    }
    
    ////////////////////////////////////////////////////////////////////////////////
    // SCRIPT SUPPORTING FUNCTIONS
    ////////////////////////////////////////////////////////////////////////////////
    // Supporting Functions
    // Include functions that offer partial functionality
    // These functions are called and acted upon within the mainProcess function
    function newAction(){
    
            var formData = getControlValues(inputGroup);
            var inputs = {};
            var options = {};
           // alert("callback get form data");
          // Do something with formData values here
            var cLen = formData.controls.length;
            var formValues = '';
            for (var c = 0; c < cLen; c++ )
            {
                if (formData.controls[c].name === "inputECONumber") {
                    inputs.inputECONumber = formData.controls[c].value;
                    // alert(formData.controls[c].name + " | " + formData.controls[c].value);
                }
    
                if (formData.controls[c].name === "inputDocumentName") {
                    inputs.inputDocumentName = formData.controls[c].value;
                    // alert(formData.controls[c].name + " | " + formData.controls[c].value);
                }
    
                if (formData.controls[c].name === "inputDocumentNumber") {
                    inputs.inputDocumentNumber = formData.controls[c].value;
                    // alert(formData.controls[c].name + " | " + formData.controls[c].value);
                }
    
                if (formData.controls[c].name === "inputDocumentRevision") {
                    inputs.inputDocumentRevision = formData.controls[c].value;
                    // alert(formData.controls[c].name + " | " + formData.controls[c].value);
                }
    
                if (formData.controls[c].name === "inputDocumentType") {
                    inputs.inputDocumentType = formData.controls[c].value;
                    // alert(formData.controls[c].name + " | " + formData.controls[c].value);
                }
            }//End FOR
        doAction(theDocument, inputs, options);
        }
    
    function mainDialog(docRef, selectedItems, layers, inputs) {
    
    // Main Dialog
    // alert("Main Dialog: " + docRef.name);
    
    if ( docRef === undefined ) {
      alert("Cannot Execute, please select a document.");
    }
    
      var currentData = getMetaData();
    
      var dialogObj = {};
    
      dialogObj.groups = []; // An array of dialog groups
      dialogObj.title = "Update Meta Data";
    
      var groupLabelInfo = {};
      groupLabelInfo.title = "Edit: " + docRef.name;
    
      // Add Elements using JSON shorthand syntax
      groupLabelInfo.elements = [
        {
            "name":"labelECONumber",
            "type":"statictext",
            "value":"Engineering Change Order (ECO) Number",
            "visible":true
        },
        {
            "name":"inputECONumber",
            "type":"edittext",
            "value": currentData.inputECONumber,
            "visible":true
        },
    
        {
            "name":"documentName",
            "type":"statictext",
            "value":"Document Name",
            "visible":true
        },
        {
            "name":"inputDocumentName",
            "type":"edittext",
            "value": currentData.inputDocumentName,
            "visible":true
        },
    
        {
            "name":"documentNumber",
            "type":"statictext",
            "value":"Document Number",
            "visible":true
        },
        {
            "name":"inputDocumentNumber",
            "type":"edittext",
            "value": currentData.inputDocumentNumber,
            "visible":true
        },
    
        {
            "name":"documentRevision",
            "type":"statictext",
            "value":"Revision",
            "visible":true
        },
        {
            "name":"inputDocumentRevision",
            "type":"dropdownlist",
            "value": currentData.listRevisions,
            "visible":true,
            "selection":currentData.selectionRevision,
        },
    
        {
            "name":"documentType",
            "type":"statictext",
            "value":"Label Type",
            "visible":true
        },
        {
            "name":"inputDocumentType",
            "type":"dropdownlist",
            "value": currentData.listDocumentTypes,
            "visible":true,
            "selection":currentData.selectionDocumentType,
        },
    
      ];
    
      // Add to groups to list
      dialogObj.groups.push(groupLabelInfo);
      return dialogObj;
    }
    
    function doAction(docRef, inputs, options) {
    
    alert("doAction " + docRef.name + " \n INPUTS: \n" + inputs.reflect.properties + "\n\n OPTIONS: \n" + options.reflect.properties);
    
    // Get the current contents
    
    var fooContents = app.activeDocument.textVariables.item ('Foo').variableOptions.contents;
    var barContents = app.activeDocument.textVariables.item ('Bar').variableOptions.contents;
    
    alert("GET textVariable contents \n Foo: \n" + fooContents + "\n\n Bar: \n" + barContents);
    
    // Set/Update the contents
    // Why does this not seem to work?
    
    alert("SET textVariable contents \n Foo: \n" + inputs.inputDocumentName + "\n\n Bar: \n" + inputs.inputDocumentType);
    
    app.activeDocument.textVariables.item ('Foo').variableOptions.contents = inputs.inputDocumentName;
    app.activeDocument.textVariables.item ('Bar').variableOptions.contents = inputs.inputDocumentType;
    
    // Script does not seem to reach this point. Why?
    alert("END of doAction");
    }
    
    // A Factory function for creating dialog boxes
    
    function sfDialogFactory(dialog) {
    
        // A factory method for creating dialog screens
    
        // Dialog Window
        var d = new Window("dialog", dialog.title);
    
        // alert("Number of Inputs" + dialog.inputs.length);
        // alert("Number of Options" + dialog.options.length);
    
        var i; // counter
        var len; // length of array elements
    
        // Generate Groups
        if (dialog.groups.length > 0) {
    
            len = dialog.groups.length;
            for (i = 0; i < len; i++ )
            {
                var currentGroup = dialog.groups[i];
                inputGroup = d.add ("panel", undefined, currentGroup.title);
                    inputGroup.alignChildren = ["fill","fill"];
    
                if (currentGroup.elements.length > 0) {
                    // Add Elements
                    var ii;
                    var elemLen = currentGroup.elements.length;
                    for (ii = 0; ii < elemLen; ii++ )
                    {
                        var currentElement = currentGroup.elements[ii];
    
                        var el = inputGroup.add(currentElement.type, undefined, currentElement.value);
    
                        // Additional properties added for future reflection
                        el.elName = currentElement.name;
                        el.elIndex = ii;
    
                        switch(currentElement.type)
                        {
                            case "statictext":
                                el.visible = currentElement.visible;
                            break;
                            case "edittext":
                                el.visible = currentElement.visible;
                            break;
                            case "dropdownlist":
                                el.visible = currentElement.visible;
                                el.selection = currentElement.selection;
                                el.onChange = currentElement.onChange;
                            break;
                            case "checkbox":
                                el.visible = currentElement.visible;
                                el.value = currentElement.value;
                            break;
                            default:
                            throw new Error('Unknown Dialog Element Type [' + currentElement.type + ']');
                        }
    
                    }
                }
            }
        }
    
      // Buttons Group
      var buttonGroup = d.add("group");
      var bOK = buttonGroup.add("button", undefined, "Continue", {name: "ok"});
      var bCANCEL = buttonGroup.add("button", undefined, "Cancel", {name: "cancel"});
    
      return d;
    }
    function getControlValues(set) {
        elementsData = {};
        elementsData.controls = [];
        // TO DO Add more types
    
        var giLen = set.children.length;
        for (var gi = 0; gi < giLen; gi++ )
        {
            var child = set.children[gi];
            // alert(objReflection(child, "none", false));
            // alert(child.type);
            var control = {};
                control.name = child.elName;
                control.index = child.elIndex;
                control.type = child.type;
                control.visible = child.visible;
            switch(child.type)
            {
                case "statictext":
                    control.value = child.text;
                break;
                case "edittext":
                    control.value = child.text;
                break;
                case "dropdownlist":
                    control.value = child.selection.text;
                break;
                case "checkbox":
                    control.value = child.value;
                break;
                default:
                throw new Error('Unknown Dialog Element Type');
            }
            elementsData.controls.push(control);
            // alert(objReflection(control, "none", false));
        }
        return elementsData;
    }
    function getMetaData() {
    // Return a data structure that contains meta data from the document.
    
        var dataObject = {};
    
         // Default arrays
         dataObject.listRevisions = generateRangeOfNumbers ("r", 1, 100);
         dataObject.listDesignComps = generateRangeOfNumbers ("Comp_", 1, 100);
         dataObject.listDocumentTypes = [
                         "Datasheet",
                         "Manual",
                         "Tech Guide",
                         "Other"
                     ];
    
         // Set Sensible Default Values for the UI Form
         if (!dataObject.inputECONumber) {
             dataObject.inputECONumber = "###ECO###";
         }
    
         if (!dataObject.inputDocumentName) {
             dataObject.inputDocumentName = "Document Name";
         }
    
         if (!dataObject.inputDocumentNumber) {
             dataObject.inputDocumentNumber = "048-xxx-30";
         }
    
         if (!dataObject.inputDocumentRevision) {
             dataObject.inputDocumentRevision = "r01";
         }
    
         if (!dataObject.inputDocumentType) {
             dataObject.inputDocumentType = "Datasheet";
         }
    
         return dataObject;
    
    }
    
    function generateRangeOfNumbers (prefix, start, end) {
        // This function generates an array of sequential numbers within a range
        // prefix = string to append to beginning of each element
        // start = the beginning of the range
        // end = the end of the range
        // length = overall number of cycles to loop through, start and end must fall within this value
    
        var output = [];
    
        for ( var i = start; i <= end; i++ )
        {
            if (i < 10) {
                // Add a leading zero
                output.push(prefix + "0" + i);
            }
            else {
                output.push(prefix + i);
            }
        }
    
        return output;
    }
    
    //=================================================
    // END THE SCRIPT
    ///////////////////////////////////////////////////
    }
    
    theScript();
    

    I modified your code shortly. He works for me here. Check it out...

    Thank you

    Green4ever

  • Problem refreshing the popup

    ADF11g:
    I have problem in refreshing the popup.

    On the homepage, there is a table and a column of this table, I put commandImageLink one click on this image that I supposed to open a popup where I display the result of information.

    during the first click on this image, I am able to show the result correctly, but if I change the line and try to click the image once again, of that I am not able see the new result .it antique watch. OnClick, I checked the new result values are extracted by the server, but not reflecting does not Popup.

    Yet one thing i course is only the first time when I click on the image goes to the action method and then open popup but at next until it clicks fisrt popup opens and then call the action method.

    < af:column sortable = "false" headerText = "Actions".
    rendering = "true" width = "50" >
    < af:panelGroupLayout layout = "horizontal" >
    "< af:commandImageLink icon="/image/info.jpg ".
    shortDesc = "Info".
    partialSubmit = "true" action = "#{IssueActionBean.refresh_ContentRevisionInfo1} '"
    launchListener = "#{IssueActionBean.getRevisionLauncherListener}" >
    "" < af:showPopupBehavior popupId = ": popupinfo".
    triggerType = "click on" / >
    < / af:commandImageLink >
    "< af:commandImageLink icon="/image/checkinout.jpeg ".
    shortDesc = "Check in/out" >
    "" < af:showPopupBehavior popupId = ": popupMenu.
    triggerType = 'action '.
    align = "beforeStart" / >
    < / af:commandImageLink >
    < / af:panelGroupLayout >
    < / af:column >
    < / af:table >
    < af:popup id = popupFetchListener = "#{IssueActionBean.getfetchRevisionLauncherListener"popupinfo"}" >
    < af:panelWindow title = "information content".
    inlineStyle = "width: 600px; height: 500px; ">

    < af:table value = "#{bindings.documentRevisions.collectionModel} '"
    var = 'row' id = 'popupinfo1 '.
    Rows = "#{Bindings.documentRevisions.rangeSize} '"
    emptyText = "#{bindings.documentRevisions.viewable?" "{"No line yet.":"Access Denied."}"
    fetchSize = "#{bindings.documentRevisions.rangeSize} '"
    selectedRowKeys = "#{bindings.documentRevisions.collectionModel.selectedRow} '"
    selectionListener = "#{bindings.documentRevisions.collectionModel.makeCurrent} '"
    rowSelection = 'single '.
    inlineStyle = "width: 750px; height: 250px; margin: 20px; ">
    < af:column sortProperty = "revLable" sortable = "true".
    headerText = "#{res}" >
    < af:outputText value = "#{row.revLable}" >
    < af:convertNumber groupingUsed = "false".
    pattern="#{bindings.documentRevisions.hints.revLable.format}"/ >
    < / af:outputText >
    < / af:column >
    < af:column sortProperty = "release date".
    sortable = "true".
    headerText = "#{res}" >
    < af:outputText value = "#{row.releaseDate}" >
    < af:convertDateTime pattern="#{bindings.documentRevisions.hints.releaseDate.format}"/ >
    < / af:outputText >
    < / af:column >
    < af:column sortProperty = "expirationDate".
    sortable = "true".
    headerText = "#{res}" >
    < af:outputText value = "#{row.expirationDate}" >
    < af:convertDateTime pattern="#{bindings.documentRevisions.hints.expirationDate.format}"/ >
    < / af:outputText >
    < / af:column >
    < af:column sortProperty = 'status' sortable = "true".
    headerText = "#{res}" >
    < af:outputText value = "#{row.status}" / >
    < / af:column >
    < af:column sortProperty = 'fact' sortable 'true '.
    headerText = "#{res}" >
    < af:outputText value = "#{row.did}" >
    < af:convertNumber groupingUsed = "false".
    pattern="#{bindings.documentRevisions.hints.did.format}"/ >
    < / af:outputText >
    < / af:column >
    < af:column sortProperty = "docName" sortable = "true".
    headerText = "#{res}" >
    "< af:goLink destination =" #{row.docURL} "text =" #{row.docName} ".
    targetFrame = "_blank" / >
    < / af:column >


    < af:column sortProperty = "docURL" sortable = "true".
    headerText = "#{bindings.documentRevisions.hints.docURL.label}" >
    < af:outputText value = "#{row.docURL}" / >
    < / af:column >
    < / af:table >
    < af:panelFormLayout >
    < / af:panelFormLayout >
    < / af:panelWindow >
    < / af:popup >



    public String refresh_ContentRevisionInfo1() {}
    BindingContainer links = getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("getContentRevisionInfo");
    Object result = operationBinding.execute ();
    Bindings.Refresh ();
    DCBindingContainer dcBindings = (DCBindingContainer) BindingContext.getCurrent () .getCurrentBindingsEntry ();
    DCIteratorBinding iterBind = (DCIteratorBinding) dcBindings.get ("documentRevisionsIterator");
    iterBind.executeQuery ();
    iterBind.refresh (DCIteratorBinding.RANGESIZE_UNLIMITED);
    Returns a null value.
    }

    {} public void getRevisionLauncherListener (LaunchEvent launchEvent)
    BindingContainer links = getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("getContentRevisionInfo");
    Object result = operationBinding.execute ();
    Bindings.Refresh ();
    DCBindingContainer dcBindings = (DCBindingContainer) BindingContext.getCurrent () .getCurrentBindingsEntry ();
    DCIteratorBinding iterBind = (DCIteratorBinding) dcBindings.get ("documentRevisionsIterator");
    iterBind.executeQuery ();
    iterBind.refresh (DCIteratorBinding.RANGESIZE_UNLIMITED);


    }


    Thanks for any help.
    Katie

    Try to set the attribute contentDelivery of the pop-up window to layzUncached and see if that helps.

    If this is not the case, try to send a ppr to the pop-up window.

    Timo

Maybe you are looking for