Folder Content Listed in Content Area

I understand that this is an issue that was fixed from a previous version, but I will give it a shot anyway.
I would like to direct the folder content to open in the "content" area NOT in the portlet when I select a folder, but apparently this was something that was fixed in 3.0.8. Does anyone know if there is a way to get it back the old way?

Hi Dharam,
This can be achieved by selecting the object types (eg Folders, Documents, Bookmarks, Notes etc) that you want to use in a collaboration.
If you are a cFolders administrator, you can define which object types are to be used across the entire system on the General tab page under cFolders Administration.
If you are not a cFolders administrator but have administration authorization for a collaboration, you can change this default setting for the relevant collaboration. To do this, proceed as follows:
Go to the collaboration detail screen and choose Object Types. A list of all object types appears. By default, the objects that have been selected under cFolders Administration are already selected. You can select the objects that have not been selected under cFolders Administration as required.
Change this selection if necessary. You can select exactly those object types that you want to be used in your collaboration. The system-wide default is not affected by this.
Regards
Deepak

Similar Messages

  • PRINTING A FOLDER CONTENTS LIST?

    I'm trying to print the contents list of a folder as we used to be able to do in system 9. I'm aware of dragging the folder onto my printer icon that I've placed in my menu bar. That works fine but only shows me the folders contained within the main folder. It will list the contents of any sub folders within the main folder even if I open these folders in the finder to reveal contents on the screen. Am I missing something or is doing a screengrab the only way to get a printed list of a folder's contents?
    Thanks,
    Bruce

    There's a free utility Print Window at versiontracker.com.
    Or, drop the folder on TextWrangler (also freeware) and print from there.

  • Sync error with Workspace "Data in this list references content type "", which is no longer in the list schema"

    Dear,
    I saved a document library containing folders and files as a template to use it as a template when I created a document library.  It contains a lot of folders and files.
    When I tried the document library to sync with workspace it gives an error "Data in this list references content type "", which is no longer in the list schema"
    I checked with this error and I found out that it has issue with onenote file, but my library does not contain any onenote file. 
    I wonder if there is any issue regarding the number of folders to sync at a time because when I tried to sync with document library similar to the big library but lesser folders and files. 
    Thanks

    This is caused by certain OneNote files.  I've filed a support ticket on this.  See my
    post on possible workarounds.  You might view the entire library in windows explorer or flatten the folder structure in a view to confirm that there are not any OneNote related files.
    Corey Roth blog: www.dotnetmafia.com twitter:
    @coreyroth

  • Can you make a folder and it's contents temporarily "invisible"---sort of?

    Can I make a folder and it's contents, temporarily invisible? I don't mean I don't want to see it. I mean I want to make it such that if an automated process was scanning my computer, it temporarily wouldn't see that folder and it's contents.
    For instance, let's say I have a folder on an external firewire drive containing video files. And I'm going to run a batch process or automation that says: "Look at everything on that external drive and move it to another designated location"...but I don't want it to move one folder. And I have several folders on the external drive and I need to keep making some of the folders "visible" to the process or "invisible".
    I know I can physically move the individual folders to another location temporarily, run the process, and then copy them back...but I'm trying to determine if there is anything built into OSX 10.6 that
    lets you identify a folder and temporarily make it and it's contents "invisible" in the sense that I described above.
    To be clear, I don't need the folder to actually disappear...I just need it to be "jumped over" or ignored by any batch processes that would be scanning the external drive, and after I run the process, I want to make it "visible" again.
    Thanks in advance for any input.

    brvideo wrote:
    One question about this....I notice that there are three READ/WRITE options:
    One for my particular user name, one for STAFF and one for EVERYONE.
    Do I need to change all three, or just EVERYONE to WRITE.
    You normally wouldn't want to change the rights to your name in a situation like this. What you'd want is to have the other app logon to your computer with a different username, (you have to create the additional user in System Preferences,) then change the privileges for that username. This would eliminate the need for you to have to change the settings all the time.
    In addition, if you make a mistake, you could prevent any access by your username, which means you'd have to logon as some other administrative user in order to fix your username's privileges. This is why I said I wouldn't recommend this as a first choice.
    And are there any keyboard shortcuts for this?
    No, but I imagine you could create an Applescript to do this. But as I said above, if you have the process use a different username, then set the appropriate privileges for that username, you wouldn't need to change the rights all the time. Just set them once the first time.

  • How to list the content of a URL

    Hi All,
    I am wondering whether the method of listing the content of a URL, is the same as listing a directory on a local system? The listing of a local directory can be achieved with the following code for example:
        File dir = new File("directoryName");
        String[] children = dir.list();
        if (children == null) {
            // Either dir does not exist or is not a directory
        } else {
            for (int i=0; i<children.length; i++) {
                // Get filename of file or directory
                String filename = children;
    // It is also possible to filter the list of returned files.
    // This example does not return any files that start with `.'.
    FilenameFilter filter = new FilenameFilter() {
    public boolean accept(File dir, String name) {
    return !name.startsWith(".");
    children = dir.list(filter);
    // The list of files can also be retrieved as File objects
    File[] files = dir.listFiles();
    // This filter only returns directories
    FileFilter fileFilter = new FileFilter() {
    public boolean accept(File file) {
    return file.isDirectory();
    files = dir.listFiles(fileFilter);However, I am not sure whether it is as simple as replacing "directoryName" with "http://www.abc.com/photos" when using java.net.*.
    I am automating a task to download all photos in a gallery at certain website.
    Any assistance would be very much appreciated.
    Many thanks,
    Jack                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi paulcw, JoachimSauer,
    Thanks for answering to this post.
    I am only trying to automate some downloads of quite a of photo albums of relatives overseas. It only takes a few weddings to take hours to download. Moreover, the reason for having made the photos on the Internet so that the relevant parties can do their own download at their convenience for free as opposed to costing the individual to spend time and money on burn dozens of DVDs... After all, this is information age we are living in.
    Lastly, I am hoping to use the getContentType() method to determine the exact type of image such as jpg, gif, etc but doesn't appears that it is doing the right job. Is there any other way to do this instead?
    Thanks a lot again,
    Jack

  • Select option "Show this View : in Folder of Content type : {Custom Content Type Name}" while creating view using CSOM

    Hi,
    I am trying to create "View" in a Document Library and need to enable following:
    1. Mark as default View
    2. Folders -> Show this view : in Folders of Content Type : {Custom Content Type name}
    I am using following code which sets "in Folders of Content Type : " to "Folder" rather than selecting custom content type despite passing Content Type ID of custom content type.
    code:
    var itemContentTypes = clientContext.LoadQuery(web.AvailableContentTypes.Where(ct => ct.Name == viewContentType));
    clientContext.ExecuteQuery();
    var itemContentType = itemContentTypes.FirstOrDefault();
    view.ContentTypeId = itemContentType.Id;
    view.DefaultViewForContentType = true;
    view.Update();
    clientContext.ExecuteQuery();
    Please highlight what seems to be missing?
    Thanks
    Sonal

    Hi,
    Before you set the content type ID for the view, you need to add the custom content type to the library firstly.
    You can add the content type to library using OOTB feature “Add from existing site content types” in library settings or using Client Object Model.
    Here is a code snippet for your reference:
    var list = context.Web.Lists.GetByTitle(listTitle);
    list.ContentTypesEnabled = true;
    var contentType = context.Site.RootWeb.ContentTypes.GetById("0x0120");
    list.ContentTypes.AddExistingContentType(contentType);
    context.ExecuteQuery();
    More information about add exist content type using Client Object Model:<o:p></o:p>
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.contenttypecollection.addexistingcontenttype%28v=office.15%29.aspx
    Best regards,
    ZhengyuGuo
    Zhengyu Guo
    TechNet Community Support

  • I was moving bookmarks in safari and 2 complete folders have emptied their contents. The folders are still there. I don't have a working time machine and icloud has caused the relevant folders to disappear from all my machines, iPhone, iPad and iMac

    I was moving bookmarks in safari and 2 complete folders have emptied their contents. The folders are still there. I don't have a working time machine and icloud has caused the relevant folders to disappear from all my machines, iPhone, iPad and iMac as well as thge MacBook Air I was working on. HELP!!!

    Hi,
    There is NO need to put your whole questing in the "Questing Heather" therefore you can TYPE here. In the Text window as I did to.
    Now to your questing:
    So, you moved some Bookmarks and now 2 folders are completely empty.
    I think that they dropped in a other folder during dragging the Bookmarks.
    Did you check ALL of you Bookmark folder if they are there?
    If you didn't delete the they have to be still there.
    Dimaxum

  • Assign specific metadata for folder structures in the Content Server

    Assign specific metadata for folder structures in the Content Server
    Hi to all,
    I working with Oracle Content Server 10g and Desktop Integration Suite and I will like to know how can I restrict or enable some specific metadatas from the default metadata, for differents content folder. This is different from the function: Information Field Inherit Configuration.
    tnks!

    I am a bit unclear about your question:
    - do you ask about metadata assigned to folders, or
    - do you ask about metadata assigned to items in folders?
    Starting from #2, if you forget about folders, there is standard functionality that you can use to restrict, enable, ... metadata for an item. Read this chapter: http://docs.oracle.com/cd/E21764_01/doc.1111/e10978/c04_metadata.htm#sthref288 to get full details.
    I am not sure whether you can use anything of this functionality (profiles, option lists, etc.) when you check in a new folder. I doubt it, though. The logic of folders is slightly different - whilst e.g. profiles correspond to "content item", you don't find such a correspondence in folder's hierarchy (why a folder could not contain various content types, for instance?)
    Last question is, from where you want to use this functionality - even for items. In 10g, Desktop Integration Suite's functionality was rather limited (often it was supposed that a user will just 'throw' an item to a folder, and metadata will be inherited from folders). You might have to upgrade your DIS to 11g; it should work even with 10g Content Server, but make sure you verify it before mass upgrade. In 11g, DIS should offer profiles, etc. with full capabilities.

  • How to list the contents of an OSX directory, and output to text file?

    hello there any hints with any known program that does following
    I have recorded my music directory to DVD and now i would like to make an .txt file what the dvd contains...cos its way of hand to write all 100xx files by hand...
    How to list the contents of an OSX directory, and output to text file?
    any prog that does that? any hints?
    best regards

    This script makes a hierarchical file listing all files in a folder and subfolder:
    Click here to launch Script Editor.
    choose folder with prompt "Choose a folder to process..." returning theFolder
    set theName to name of (info for theFolder)
    set thepath to quoted form of POSIX path of theFolder
    set currentIndex to theFolder as string
    do shell script "ls -R " & thepath returning theDir
    set theDirList to every paragraph of theDir
    set newList to {"Contents of folder \"" & theName & "\"" & return & thepath & return & return}
    set theFilePrefix to ""
    repeat with i from 1 to count of theDirList
    set theLine to item i of theDirList
    set my text item delimiters to "/"
    set theMarker to count of text items of thepath
    set theCount to count of text items of theLine
    set currentFolder to text item -1 of theLine
    set theFolderPrefix to ""
    if theCount is greater than theMarker then
    set theNestIndex to theCount - theMarker
    set theTally to -1
    set theFilePrefix to ""
    set theSuffix to ""
    repeat theNestIndex times
    set theFolderPrefix to theFolderPrefix & tab
    set theFilePrefix to theFilePrefix & tab
    if theTally is -1 then
    set theSuffix to text item theTally of theLine & theSuffix
    else
    set theSuffix to text item theTally of theLine & ":" & theSuffix
    end if
    set currentIndex to "" & theFolder & theSuffix
    set theTally to theTally - 1
    end repeat
    end if
    set my text item delimiters to ""
    if theLine is not "" then
    if word 1 of theLine is "Volumes" then
    set end of newList to theFolderPrefix & "Folder: > " & currentFolder & return
    else
    try
    if not folder of (info for alias (currentIndex & theLine & ":")) then
    set end of newList to theFilePrefix & tab & tab & tab & "> " & theLine & return
    end if
    end try
    end if
    end if
    end repeat
    open for access file ((path to desktop as string) & "Contents of folder- " & theName & ".txt") ¬
    with write permission returning theFile
    write (newList as string) to theFile
    close access theFile

  • Invalid element 'welcome-file-list' in content of 'web-app',

    HI, folks.
    I recently used struts to develop a simple web applicaiton, and whenever I tried to use tag libs
    such as /WEB-INF/struts-html.tld
    /WEB-INF/struts-html.tld and
    tried to compile it, it gives out compile error such as:
    Error(52,21): Invalid element 'welcome-file-list' in content of 'web-app', expected elements '[taglib, resource-env-ref, resource-ref, security-constraint, login-config, security-role, env-entry, ejb-ref, ejb-local-ref]'.
    if I remove the above tag libs, the jsp file compiles
    without any problem.
    Are you guys familiar with these problems?
    please let me know if I'm doing anything foolish.
    Thanks!

    Unless some other elements tag are not close correctly this error does not make sense. Can you cut and paste your web.xml?
    It should look something like:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <welcome-file-list>
      <welcome-file>/untitled1.jsp</welcome-file>
    </welcome-file-list>
    <taglib>
      <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
      <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    </web-app>Charles.

  • Archive's list of contents could not be created

    Just started having this problem today after running OS updates.
    When I select a folder and create archive (file menu and contextual menu) I receive this error: "Archive's list of contents could not be created" and the zip archive fails to be created.
    Tested empty folders, folders with various files, etc. and searched for answers here but couldn't find any similar posts.
    Any help would be most welcome.
    G5   Mac OS X (10.4.8)  

    Repair permissions with Disk Utility, restart, and see if the problem persists. If so, create another admin user account, log into it, and try to make an archive.

  • Unable to Archive-list of contents cannot be created

    Hello all,
    I have a problem that I just noticed. I am attempting to create a .zip archive of a folder of pictures. I right-click the folder in the Finder and select "Create Archive of folder". This gives me a message with the header Copy that states "The archive's list of contents cannot be created." and an OK button.
    At first I thought that maybe the folder was too large. I tried the same steps on an individual text file and got the same error message. I tried copying the file to a different drive and still no joy. I created a new admin and normal user accounts and was unable to create any archives and received the same error message as above.
    Does anyone have any clue as to the steps I should follow to correct this issue?

    Charles, your post certainly pointed in a good direction. After posting my question, I went back and reviewed everything that I had changed or installed over the last few days. It turns out that the beta version of Little Snitch causes permission errors. Similar to the posts on MacOSXHints, my /tmp folder suddenly became visible and showed as being owned by the staff group that I was no longer a part of. Uninstalling the Little Snitch program and repairing permissions has re-enabled archiving within the Finder. I've also posted a bug report to the developers of Little Snitch to see if they could look into the issue.
    Thanks again for the advice.

  • PerformancePoint Designer is not loading when clicking on "Add new item" from PerformancePoint Content List

    Hello,
    I am using Internet Explorer 9 to create a new item by launching Performance Point Dashboard Designer from browser. 
    When i click on "Add new item", an Iframe will open showing dashboard design redirect which keep loading for couple of minutes and the designer never opens. 
    Yes, there are working workarounds like opening these links in other tab or opening dashboard designer directly or by clicking on "Run Dashboard Designer"  from BI Center homepage. 
    However, Can someone please help me how to get designer opened when "Add new item" has been clicked from  PerformancePoint Content List from browser? 
    Thanks in advance.
    NKV Prasad Panthangi

    An Update :
    I found this is due to the browser limitation. 
    I have downgraded my Internet Explorer Browser to IE 8 and did the following changes in my browser settings. 
    Tools --> Internet Options --> Navigate to Security Tab --> Click on Custom Level Button --> Under Download --> Select "Enable" radio box for Automatic Prompting for File Downloads. 
    Sadly, I cannot ask users to downgrade their browser to IE 8 because MS already stopped support for this browser and there are no other solution for this except going by workarounds. 
    This clearly says why people are moving away from PerformancePoint Services in SharePoint. 
    Thanks
    NKV Prasad Panthangi

  • Refresh content list in Front Row?

    I'm using Front Row on a Mac Mini as a mediacenter for my LCD-TV. This Mac is only turned on as soon as I'm actually using it for listening to music, watching movies and video podcasts, etc.. When turned on it automatically starts Front Row and iTunes. Via iTunes I subscribed to various video podcasts which are downloaded as soon as a new episode is available.
    The problem is that when new podcasts are available, iTunes actually starts downloading but they are not displayed in Front Row until I quit both Front Row and iTunes and restart Front Row. If I don't do this Front Row either says that there are no podcasts at all (even not the old ones) or it just doesn't display the new ones although they are finished downloading.
    Is there a way to refresh the content list (eg for podcasts) in Front Row, either automatically or manual, without performing the sequence above? Or is it possible to make Front Row download the new episodes of the subscribed podcasts by itself without using iTunes?
    Thanks.

    first question:
    are your movies in itunes also, thus appearing in front row with all the proper meta data? If so, you'll have to delete them from itunes also. Deleting just the movie from the HDD isn't enough

  • Content list of external drive

    Anyone know how to print a content list of an external drive. I could use Grab and capture the first level of items but I wanted to see all subfolders and files.
    Jeff

    Open the Terminal in the /Applications/Utilities/ folder and paste in:
    ls -R
    Type a space and drag the drive into the open Terminal window. Press Enter and copy the list from the Terminal. Use -AR instead of -R to include invisible items.
    (54823)

Maybe you are looking for

  • I-Tunes and and External Drive...Questions!

    Hello, starting my music collection seriously for the 1st time and have some questions. When you use an external drive how does i-Tunes recognize this? Will it still allow me to browse through everything ( album artwork etc) as if the music was in th

  • "An error occurred while trying to save..." Library

    Perhaps it's something minor, but I had this message out of the blue with iPhoto: "An error occurred while trying to save your photo library. Some recent changes may be lost. Make sure your hard disk has enough space and that iPhoto is able to access

  • How to eject DVD in single user mode

    Hi All, When starting my iMac, I get a white screen, the apple logo and the spinning wheel. After a while it goes away and I have just a white screen. I've reset PRAM, to no avail (it did do something, the computer start up sound now occurs each rest

  • JSP, JSF, and ADF

    I've just started playing around with this and was looking for samples/tutorials to help. Of the tutorials/samples I've seen, they appear to fall short of explaining an end-end example and stick mostly to JSF and the backing bean - usually displaying

  • Calculating the path length of a fractal tree

    Hi guys, I have this program that creates fractal trees that I made. I am trying to have it add up the path lengths and display them in a text area but it is not working. Here is the code that is relevant and any help would be greatly appreciated. pu