KDE + undo in joe editor

Hi.
I have recently switched to kde-unstable repo and am having a problem.
New konsole (so yakuake as well) uses 'ctrl-shift-minus' to shrink the font size.
This is also the shortcut for the joe editor to 'undo' changes (in text console it's simply Ctrl-minus, in KDE it was always Ctrl-Shift-minus).
Now it doesn't work, so instead of undo the font size decreases.
Does anybody know how to deal with that? Either modifying joe's shortcut, or making it accept 'ctrl-minus' for undo, ar disabling the font
size changes in konsole...

I don't know about konsole but to change the keyboard shortcut for undo in joe edit /etc/joe/joerc, find the line
undo ^_ Undo changes
and change it to something different, such as
undo ^z Undo changes

Similar Messages

  • Customizing Undo for Text Editor

    Hi,
    After some effort, I finally made the undo action on the menu to work. But all it does it add or remove the last action that was performed. For instance, if I enter "abc" in the text area and I undo it, it would be "ab". What I want from the editor is to bring back whatever I've entered before pressing "Backspace" or "del" button. Just like Windows Notepad.
    For the implimentaion, I have this method:
    output.getDocument().addUndoableEditListener(new UndoableEditListener() {
    public void undoableEditHappened(UndoableEditEvent e) {
         undoManager.addEdit(e.getEdit()) ;
         updateButtons();
    I know I have to alter the above code somehow, but I'm not sure what am I supposed to do with it.
    Any help is appreciated.

    Here is a class I called CompoundUndoManager, which may be what you are looking for:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.event.*;
    import javax.swing.undo.*;
    public class CompoundUndoManager extends UndoManager implements UndoableEditListener
         public CompoundEdit compoundEdit;
         private JTextComponent editor;
         private int lastOffset;
         public CompoundUndoManager(JTextComponent editor)
              this.editor = editor;
              editor.getDocument().addUndoableEditListener( this );
         **  Whenever an UndoableEdit happens the edit will either be absorbed
         **  by the current compound edit or a new compound edit will be started
         public void undoableEditHappened(UndoableEditEvent e)
              //  Start a new compound edit
              if (compoundEdit == null)
                   compoundEdit = startCompoundEdit( e.getEdit() );
                   return;
              //  Check for an incremental edit, backspace or attribute change
              AbstractDocument.DefaultDocumentEvent event =
                   (AbstractDocument.DefaultDocumentEvent)e.getEdit();
              System.out.println(event.getLength());
              int diff = editor.getCaretPosition() - lastOffset;
              if (Math.abs(diff) == 1
              ||  event.getType().equals(DocumentEvent.EventType.CHANGE) )
                   compoundEdit.addEdit( e.getEdit() );
                   lastOffset += diff;
                   return;
              //  Not incremental edit, end previous edit and start a new one
              compoundEdit.end();
              compoundEdit = startCompoundEdit( e.getEdit() );
         **  Each CompoundEdit will store a group of related incremental edits
         **  (ie. each character typed or backspaced is an incremental edit)
         private CompoundEdit startCompoundEdit(UndoableEdit anEdit)
              //  Track the starting offset of this compound edit
              lastOffset = editor.getCaretPosition();
              //  The compound edit is used to store incremental edits
              compoundEdit = new MyCompoundEdit();
              compoundEdit.addEdit( anEdit );
              //  The compound edit is added to the UndoManager. All incremental
              //  edits stored in the compound edit will be undone/redone at once
              addEdit( compoundEdit );
              return compoundEdit;
         class MyCompoundEdit extends CompoundEdit
              public boolean isInProgress()
                   //  in order for the canUndo() and canRedo() methods to work
                   //  assume that the compound edit is never in progress
                   return false;
              public void undo() throws CannotUndoException
                   //  End the edit so future edits don't get absorbed by this edit
                   if (compoundEdit != null)
                        compoundEdit.end();
                   super.undo();
                   //  Always start a new compound edit after an undo
                   compoundEdit = null;
         public static void main(String[] args)
              final JTextPane textPane = new JTextPane();
              textPane.setPreferredSize( new Dimension(200, 200) );
              //  Comment out this code when not using SyntaxDocument class
              //  http://www.discoverteenergy.com/files/SyntaxDocument.java
              EditorKit editorKit = new StyledEditorKit()
                   public Document createDefaultDocument()
                        return new SyntaxDocument();
              textPane.setEditorKit(editorKit);
              final CompoundUndoManager undoManager = new CompoundUndoManager( textPane );
              JPanel panel = new JPanel();
              panel.setLayout( new BorderLayout() );
              panel.add( new JScrollPane(textPane), BorderLayout.CENTER );
              JPanel buttons = new JPanel();
              panel.add(buttons, BorderLayout.SOUTH);
              JButton undo = new JButton( "Undo" );
              undo.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        try
                             undoManager.undo();
                             textPane.requestFocus();
                        catch (CannotUndoException ex)
                             System.out.println("Unable to undo: " + ex);
              buttons.add( undo );
              JButton redo = new JButton( "Redo" );
              redo.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        try
                             undoManager.redo();
                             textPane.requestFocus();
                        catch (CannotRedoException ex)
                             System.out.println("Unable to redo: " + ex);
              buttons.add( redo );
              JFrame frame = new JFrame("Compound Edit");
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.getContentPane().add( panel );
              frame.pack();
              frame.setVisible(true);
    }

  • Undo with external editor

    Please I need your help because after the modification in external editor if I undo the modification Aperture put my photo in the trash.
    There is also a problem that my Pentax lens 55-300 HD is not recognize from the app.
    Many many thanks for your reply.
    Toni

    Please I need your help because after the modification in external editor if I undo the modification Aperture put my photo in the trash.
    Aperture can only undo edits losslessly, that are done using Aperture's internal edit tools. When you edit in an external editor, Aperture creates a new original image files (TIFF or PSD) and sends this to the external editor.
    When you undo the external edits, essentially this second new original image file will be moved to the Trash. The image that you originally edited should still be there, only the copy will be gone.
    There is also a problem that my Pentax lens 55-300 HD is not recognize from the app.
    Does Aperture show "unknown lens" or a wrong lens tag?  That can happen. Aperture does not know all lens makes, and some tags are ambiguous. Use Aperture's feedback form to report the error. Perhaps there will be a bug fix.

  • KDE: Dolphin search not searching, and menu editor

    Well, I'm trying to look for some files, sometimes I use the `find` command but then again I don't know if there is a better way to search (as in having a gui). I was reading a while ago about document indexers, could anyone fill me in a bit, is this what I'm looking for?
    Also, does KDE have a menu editor? been looking at settings menu for a while, after my switch from gnome to kde the menu is pretty crowded and need to re-organize (and also need to add new icon)
    Thanks in advance!

    lucke wrote:
    Logging out on my netbook currently puts me into virtual console - graphics side in Linux world is still in a bit of flux due to all those recent changes. You generally should be able to alt-ctrl-f1 to the first virtual console, login as root and run "init 3; init 5" to get X running again (if you're starting kdm through inittab).
    You can try playing with strigiclient/strigicmd - maybe it'd point to something. You can use locate (after running updatedb) in the console to
    quickly search for filenames.
    Did you have those apps open when you were logging out? KDE by default starts whatever you had running last time.
    I'll give that next time *just hoping I don't forget!*
    I ran strigidaemon, it started collecting stuff but segfaulted later on
    '12/13' is not a UTF8 or latin1 string                                                                               
    'Coldplay' is not a UTF8 or latin1 string                                                                           
    ''Til Kingdom Come' is not a UTF8 or latin1 string                                                                   
    'X & Y' is not a UTF8 or latin1 string                                                                               
    'alternative' is not a UTF8 or latin1 string                                                                         
    '13/13' is not a UTF8 or latin1 string                                                                               
    'Coldplay' is not a UTF8 or latin1 string                                                                           
    'Help Is Round The Corner' is not a UTF8 or latin1 string                                                           
    'Alternative' is not a UTF8 or latin1 string                                                                         
    'Coldplay' is not a UTF8 or latin1 string                                                                           
    'Yellow' is not a UTF8 or latin1 string                                                                             
    Error in parsing:                                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    '' is not a UTF8 or latin1 string                                                                                   
    Error: Directory Image: Next pointer is out of bounds; ignored.                                                     
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.                         
    Error: Directory Image, entry 0x0000 has invalid size 538976288*1; skipping entry.                                   
    Error: Directory Image: Next pointer is out of bounds; ignored.                                                     
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.                         
    Error: Directory Image, entry 0x0000 has invalid size 1128354633*1; skipping entry.                                 
    Error: Directory Image: Next pointer is out of bounds; ignored.                                                     
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.                         
    Error: Directory Image, entry 0x0000 has invalid size 538976288*1; skipping entry.                                   
    Error: Directory Image: Next pointer is out of bounds; ignored.                                                     
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.                         
    Error: Directory Image, entry 0x0000 has invalid size 1128354633*1; skipping entry.                                 
    Error: Directory Image: Next pointer is out of bounds; ignored.
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.
    Error: Directory Image, entry 0x0000 has invalid size 1128354633*1; skipping entry.
    Error: Directory Image: Next pointer is out of bounds; ignored.
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.
    Error: Directory Image, entry 0x0000 has invalid size 538976288*1; skipping entry.
    Error: Directory Image: Next pointer is out of bounds; ignored.
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.
    Error: Directory Image, entry 0x0000 has invalid size 538976288*1; skipping entry.
    Error: Directory Image: Next pointer is out of bounds; ignored.
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.
    Error: Directory Image, entry 0x0000 has invalid size 538976288*1; skipping entry.
    Error: Directory Image: Next pointer is out of bounds; ignored.
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.
    Error: Directory Image, entry 0x0000 has invalid size 538976288*1; skipping entry.
    Error: Directory Image: Next pointer is out of bounds; ignored.
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.
    Error: Directory Image, entry 0x0000 has invalid size 1128354633*1; skipping entry.
    Error: Directory Image: Next pointer is out of bounds; ignored.
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.
    Error: Directory Image, entry 0x0000 has invalid size 1128354633*1; skipping entry.
    Error: Directory Image: Next pointer is out of bounds; ignored.
    Warning: Directory Image, entry 0x0000 has unknown Exif (TIFF) type 0; setting type size 1.
    Error: Directory Image, entry 0x0000 has invalid size 1128354633*1; skipping entry.
    Segmentation fault
    I didnt paste everything, seemed irrevelant
    any suggestions?
    It's quite a pity, log out worked well for GDM, and KDM is giving me problems, maybe I should switch back and see

  • What's the difference between gnome, kde and xfce?

    What's the difference between gnome, kde and xfce? Today I heard someone said gnome and kde have more software than xfce. Is that real?
    Thank you.
    Last edited by thesimpsons (2009-04-02 01:50:28)

    Its really a matter of taste, really. KDE is know to be configurable like hell, GNOME very easy to use, and XFCE lightweitgh.
    Keep in mind that whatever desktop environment (DE) you choose, you can use any application in any DE. For example, firefox, a "GTK" application, works without problem under KDE. Or Kile, a latex front-end for KDE, works perfect under Gnome.
    Personnally I prefer KDE. But I mostly prefer KDE applications like the editors (Kate/Kwrite) and file manager (dolphin).
    KDE is slower to start on my EeePC (really small machine) but because it is full featured, I can cut on number of packages installed, so in the end, with the same functionality, I have more room on my disk then using XFCE!
    Just try them, and choose the one you like

  • Ctrl+Z fuctianlity is not working in oracle 10g Form

    Hi
    I am using oracle 10g form and using
    Edit_TextItem to invoke Text Editor
    When i using CTRL+Z to undo things in editor it is not working but it works when i used Form6i.
    Please help me to solve this issue. i need to this functinality to be work.
    BR,
    SPS

    This works for me in 10.2.0.2
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select * from tab;
    TNAME                          TABTYPE            CLUSTERID
    LOAN_DETAIL                    TABLE
    PLAN_TABLE                     TABLE
    ...

  • How to Incorporate "fade" Into the Navigation Bar with iWeb?

    I started wondering about and exploring this topic in another thread. I would like to make the navigation bar shine brightly and then slowly fade whenever the cursor overlaps the navigation buttons. Does anyone have any idea how to do this? For an example of what I'm looking for, please visit Neonsky.com. This company is a website builder that has, as one of its features, the fading navigation bar option that I'm looking to incorporate into iWeb. Just look at some of their featured websites for an example. I also found the following doing a google search. Any thoughts and ideas of how to get this feature on my iWeb designed website would be helpful. Thank you.
    http://dreamweavermenu.com/dreamweaver-navigation-bar-fade.html

    Leave all files in the folder as you downloaded them. Drop the index.html file on the browser icon. You will then see what the menu will look like when published on a page. Edit the index.html file to your needs. Your edits will be shown in the browser window (save file upon edit - don't worry, you can still undo in most editors - and refresh the browser window).
    If required, also edit the main.css and image files.
    When done, copy the contents of the index.html file into a HTML snippet in iWeb. Position the snippet to exactly where you want it to be (height and width accordingly) and publish. Upload the other files manually and make sure that their path on the iDisk/server matches the path mentioned in the index.html and main.css files.
    As you will have gathered, you need to understand some HTML and CSS. You may acquire understanding and knowledge by trial and error.

  • No Edit Command in Photo Browser or Date View

    I am seeking to edit the contact book. There is suppose to be and "Edit" choice in the Photo Browser / Date View. However, this choice does not exist for me. I'm thinking that this is suppose to be a drop down menu choice. And am wondering if the program didn't fully install. At the top all I have is the pse icon, the welcome screen icon, then it jumps to "Sign in" "Join Now", "Undo," "Display", and "Editor."

    The Organizers menu bar (File, Edit, etc.) wont show if your display is set in Windows to a DPI (dots per inch) larger than 96.
    You will have to change the DPI to 96.
    Refer to: http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402728&sliceId=2

  • TIP: Editor Undo and Redo

    It happend to me a couple of times already that I pressed some strange key combination by accident and erased the whole editor content; probably Ctrl-z. Unfortunately Undo from the web browser menu is greyed out and not available.
    Checking the Jive 5 documenation I found a link to editor shortcuts, which mentioned Ctrl-z for undo and Ctrl-y for redo.
    I have not figured out yet what the exact criteria for undo and redo is, but I find it very important to know that undo and redo exist and work. It just does not use the browser, which provides undo using platform specific shortcuts. So the editor does provide undo and redo support by using the editor's keyboard shortcuts, despite of what is available in the web browser menu.
    I suggest to mention important editor shortcuts in the forum FAQ.

    @https://forums.oracle.com/people/HemantKChitale the like Burton
    for the opening thread is in the top right under the 'follow' button.
    Timo 

  • [extra:editors] nvu 1.0 with KDE mimetypes

    Introduction
    The Nvu WYSIWYG web editor is available on two flavors:  the standard build which do not require KDE, and another one which use KDE to provide mimetypes icons on the Site Manager. This thread supports only the KDE mimetypes version.  For the non KDE version, look here.
    Below is a comparison picture of both Site Managers so you can compare and decide then which version do you want to install.
    Note: Both packages share the same directory structure, which means only one of them can be installed at the same time. That's the reason a conflict restriction exists between them.
    Pre Install Notes
    1. If upgrading from 0.80 or earlier, remove the .nvu dir in your home folder.  Already have 0.90 or later?  Can keep your dir and settings.
    2. Look the Change Log at the botton for a summary of the changes.
    Installation
    1. Grab a gziped tar from on AUR site here, or the splited files below:
    a. PKGBUILD
    b. mozconfig
    c. nvu.desktop
    d. mozilla-1.7.3-ft2.patch or get it from /var/abs/network/mozilla-firefox (or mozilla-thunderbird)
    e. nvu-0.70-domainfix.patch
    f. launcher.patch
    g. mozilla-ext
    h. nvu-browser-ext
    i. nvu-1.0PR-kdesitemanager.patch
    j. nvu-nonroot.tar.gz
    2. Create the folder to store the files with the name nvu-kde on your abs/local folder
    $ mkdir /var/abs/local/nvu-kde
    3. Put the files on that directory
    $ cp * /var/abs/local/nvu-kde
    4. Change to /var/abs/local/nvu-kde dir and build the package
    # cd /var/abs/local/nvu-kde && makepkg
    5. Install the package
    # pacman -U nvu-kde-1.0-1.pkg.tar.gz (Upgrading a previous version installed, or)
    # pacman -A nvu-kde-1.0-1.pkg.tar.gz (Adding or installing a new program)
    Post Installation & Enhancements
    After installing Nvu and recommended prior to its first execution, but can be done anytime, visit this link which allow the normal user to add themes & extensions to Nvu and in fact, to all mozilla product line installed on your computer.
    This step will not be included on the package until the changes explained on that HOWTO became adopted by other Arch mozilla packages.
    Troubleshooting:
    Click the icon and doesn't run:  Run it from the console, and if you got a loop message with the phrase "Loading the extensions datasource", then as root type:
    $ nvu -register
    and run nvu again as a user, and report your sucess or failure here.
    Loading the extensions datasource message on shell:  Look above for the workaround.
    FAQ
    1. Browse button and help hyperlinks open mozilla-firefox and I would like to open another browser. Edit your /opt/mozilla/bin/mozilla-ext, comment the line exec $MOZILLA_FIVE_HOME/firefox $url and uncomment one of the other lines.  Currently you can choose between firefox, mozilla, opera and konqueror.
    Current Issues
    Nothing at the moment
    TODO
    Nothing at the moment
    Change Log
    Doc modified 2005-07-01: Updated info.
    Files modified in 2005-06-31:  PKGBUILD, nvu-nonroot.tar.gz
    2005-07-01 (1.0-1) Upgraded to 1.0, smaller nonroot patch.
    2005-04-15 (1.0PR-1) Upgrade to 1.0PR, return to nonroot patch so Gnome users can compile without root.
    2005-03-11 (0.90-1) Upgrade to 0.90.
    2005-02-13 (0.81-1) Upgraded to 0.81, nonroot patch replaced by nvu -register, new script to activate browse button and help hyperlinks. Locale dirs of win and mac removed.
    2005-02-05 (0.80-1) Updated to 0.80.
    2005-01-19 (0.70-2) Freetype2 fix, file structure matches other mozilla apps. Mozilla-common dependency added.
    2005-01-12 (0.70-1) First version with KDE mimetypes support.
    Hope you enjoy it.

    New package for the 0.81 version. 
    In addition to the updated version, I made the following enhancements or changes to the package:
    1. Remove some locale directories bundle with nvu which belongs to mac and windows architectures.
    2. Added a mozilla-ext script which is execute a predefined browser either when the browse button is pressed or a hyperlink from the help menu entries is clicked.  Previous versions do nothing on those actions.  The default browser is firefox, but the file can be edited if your current browser is other.  Just edit /opt/mozilla/bin/mozilla-ext, comment the first browser which is firefox, and uncomment the one you want to use.
    3. The most important in terms of usage and future package maintenance is the replacement of the nonroot.tar.gz file with  the -register option.  That change takes out the most difficult and time consuming patch  of the package.  That means faster releases.
    Since many changes were done to the package, please test it and post any success or failure.

  • KDE Menu Editor will not save.

    Menu changes could not be saved because of the following problem:
    Could not write to /home/soylent/.config/menus/applications-kmenuedit.menu
    The file doesn't exist, and creating it does not solve the problem, so it seems to me that KDE is looking to save the wrong file for some reason, because for programs that have scripts for entering into the menu, they have no problem doing this.  So, how do I make KDE point to the correct menu file?  What is the correct menu file?

    Hey, thanks a ton for helping.  I think you're right:
    I wasn't able to run it as root either, so I put in:
    xhost +localhost
    ls -l
    -rw-r--r--  1 root root 121
    and it run as root.  I don't know what 'xhost +localhost' does.  Ha, ha, dumb to issue a command and not know what it does. 
    I assume the whole problem was there NO permissions for it.  Now I need to know what permissions it needs/best way to set them.

  • [nevermind]Undo Super+TAB in KDE

    Hello!
    I'm currently trying out KDE. I accidentally pressed Super+TAB instead of ALT+TAB and now all my windows are gone. And I really need them back. I can see the programs are still running. But all Desktops are black, everything except for conky and the plasma task bar is invisible. I restarted the window manager, switched the window manager, tried pressing alt+tab again a few times, that didn't help.
    ( Also: WTH, KDE!?!?!? Seriously, I didn't have that "help, all my windows are gone!" Problem since windows 3.11! )
    Last edited by whoops (2014-09-07 14:43:48)

    Thanks, but none of those Keys did anything useful. I guess the cause of the Problem was that at the time I accidentally hit the hotkey, kwin was not running so the windows just disappeared and when I started kwin that didn't help either.
    In the meantime, I tried to dump the memory of the hidden applications to disk which caused the affected X-server to die a horrible death. So I'm marking this as... sol... uhm... nevermind, I broke it :3

  • Restoring wine menu in KDE [SOLVED]

    Hi, i'm using KDE 4.4.1 and wine. Before i decided to clean up mess in KDE menu, all wine installed menu items were under "lost and found"
    As http://wiki.archlinux.org/index.php/Win … Fix.5B1.5D states, i have edited /etc/xdg/menus/kde-applications.menu
    Now i had Wine menu, but i didn't need all items, so i ran kde menu editor, and some items were removed. After relogin, wine menu didn't have "Programs" submenu at all :s. I deleted wine menu from KDE menu
    Now, hot to restore that?
    I figure out that all desktop files created by wine are in /home/bagheera/.local/share/applications/
    In /home/bagheera/.config/menus/ i have several files:
    -rw-r--r-- 1 bagheera users 15647 03-15 12:22 applications-kmenuedit.menu
    -rw-r--r-- 1 bagheera 1000 3527 03-15 13:11 applications.menu
    -rw-r--r-- 1 bagheera users 3527 03-15 13:11 applications.menu~
    -rw-r--r-- 1 bagheera 1000 2349 2008-12-09 applications.menu.undo-10
    -rw-r--r-- 1 bagheera 1000 2418 2008-12-09 applications.menu.undo-11
    -rw-r--r-- 1 bagheera 1000 2492 2008-12-09 applications.menu.undo-12
    -rw-r--r-- 1 bagheera 1000 2571 2008-12-09 applications.menu.undo-13
    -rw-r--r-- 1 bagheera 1000 2647 2008-12-09 applications.menu.undo-14
    -rw-r--r-- 1 bagheera 1000 3358 2009-01-21 applications.menu.undo-15
    -rw-r--r-- 1 bagheera 1000 3373 2009-01-21 applications.menu.undo-16
    drwxr-xr-x 2 bagheera 1000 28672 03-15 12:35 applications-merged
    drwxr-xr-x 2 bagheera 1000 4096 2009-01-20 kde4-applications-merged
    drwxr-xr-x 2 bagheera 1000 4096 03-15 12:43 kde-applications-merged
    -rw-r--r-- 1 bagheera 1000 345 2009-03-20 settings.menu
    Do i need "undo" file, can they be safely removed?
    Witch file contains "wine menu"?
    There is so many files:
    settings.menu
    <!DOCTYPE Menu
    PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
    'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
    <Menu>
    <Name>Desktop</Name>
    <MergeFile type="parent">/etc/xdg/menus/settings.menu</MergeFile>
    <Include>
    <Filename>gnomecc.desktop</Filename>
    </Include>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    </Menu>
    applications-kmenuedit.menu
    <!DOCTYPE Menu PUBLIC '-//freedesktop//DTD Menu 1.0//EN' 'http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd'>
    <Menu>
    <Menu>
    <Name>Development</Name>
    <Layout>
    <Merge type="files"/>
    <Filename>pyCrust.desktop</Filename>
    <Merge type="menus"/>
    <Menuname>Web Development</Menuname>
    <Menuname>Translation</Menuname>
    <Menuname>X-KDE-KDevelopIDE</Menuname>
    <Filename>java-monitoring-and-management-console.desktop</Filename>
    <Filename>kde4-akonadiconsole.desktop</Filename>
    <Filename>netbeans.desktop</Filename>
    <Filename>python2.5.desktop</Filename>
    <Filename>kde4-kapptemplate.desktop</Filename>
    <Filename>designer.desktop</Filename>
    <Filename>kde4-kompare.desktop</Filename>
    <Filename>kde4-cervisia.desktop</Filename>
    <Filename>kde4-kcachegrind.desktop</Filename>
    <Filename>java-visualvm.desktop</Filename>
    <Filename>kde4-umbrello.desktop</Filename>
    <Filename>kde4-kuiviewer.desktop</Filename>
    <Filename>assistant.desktop</Filename>
    <Filename>kde4-kbugbuster.desktop</Filename>
    <Filename>geany.desktop</Filename>
    </Layout>
    <Include>
    <Filename>pyCrust.desktop</Filename>
    </Include>
    </Menu>
    <Menu>
    <Name>Applications</Name>
    <Exclude>
    <Filename>wine-Programy-4shared Service-4shared Uploader.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-AC3Filter.desktop</Filename>
    <Filename>wine-Programy-AutoCAD R14-AutoCAD R14.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Tools-Xvid StatsReader.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoHotkey.desktop</Filename>
    <Filename>wine-Programy-AutoCAD R14-AutoCAD Readme.desktop</Filename>
    <Filename>wine-Programy-Larian Studios-Beyond Divinity Demo-Configuration.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-Cyberlink MPEG-2 decoder.desktop</Filename>
    <Filename>wine-Programy-DeliPlayer-DeliPlayer.desktop</Filename>
    <Filename>wine-Programy-Miranda IM-Database Tool.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Documentation.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-DirectVobSub.desktop</Filename>
    <Filename>wine-Programy-AviSynth 2.5-Folder wtyczek.desktop</Filename>
    <Filename>wine-Programy-Atmel AVR Tools-AVR QTouch Studio.desktop</Filename>
    <Filename>wine-Programy-Audacity.desktop</Filename>
    <Filename>wine-Programy-AviSynth 2.5-Angielska dokumentacja.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoIt3 Window Spy.desktop</Filename>
    <Filename>wine-Programy-SubEdit-Player-SubEdit Pomoc.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoHotkey Help File.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoScriptWriter (recorder).desktop</Filename>
    <Filename>wine-Programy-Atmel AVR Tools-AVR Battery Studio.desktop</Filename>
    <Filename>wine-Programy-Borland Delphi 7-Help-Error Messages & Warnings.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Download Manager.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-FDM remote control server.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Download Manager on the Web.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Upload Manager.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Instalacja.desktop</Filename>
    <Filename>wine-Programy-MySQL Oracle Import, Export & Convert Software-MySQL Oracle Import, Export & Convert Software.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Pierwsze kroki.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Pomoc online.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Pomoc techniczna offline.desktop</Filename>
    <Filename>wine-Programy-Unreal-Play Unreal.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Poradnik do gry (trzynasty schron).desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Readme.desktop</Filename>
    <Filename>wine-Programy-Unreal-Information-Release Notes.desktop</Filename>
    <Filename>oraclexe-runsql.desktop</Filename>
    <Filename>alacarte-made.desktop</Filename>
    <Filename>Shareaza.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Słownik Fallout.desktop</Filename>
    <Filename>oraclexe-startdb.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Szkolna.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Uninstall Free Download Manager.desktop</Filename>
    <Filename>wine-Programy-MySQL Oracle Import, Export & Convert Software-Uninstall MySQL Oracle Import.desktop</Filename>
    <Filename>wine-Programy-Unreal-Unreal Editor.desktop</Filename>
    <Filename>wine-Programy-Unreal-Unreal Safe Mode.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Uruchom grę Fallout.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Usuń grę Fallout.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Usuń WSCAD 5.0.desktop</Filename>
    <Filename>wine-Programy-WIBU-KEY-WIBU-KEY Help (English).desktop</Filename>
    <Filename>wine-WinRAR.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-WSCAD File Viewer.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Przejęcie danych.desktop</Filename>
    <Filename>wine-winecfg.desktop</Filename>
    </Exclude>
    <Include/>
    <Layout>
    <Merge type="files"/>
    <Filename>screensavers-biof.desktop</Filename>
    <Filename>screensavers-busyspheres.desktop</Filename>
    <Filename>screensavers-colorfire.desktop</Filename>
    <Filename>screensavers-cyclone.desktop</Filename>
    <Filename>screensavers-pixelcity.desktop</Filename>
    <Filename>screensavers-drempels.desktop</Filename>
    <Filename>screensavers-euphoria.desktop</Filename>
    <Filename>screensavers-feedback.desktop</Filename>
    <Filename>screensavers-fieldlines.desktop</Filename>
    <Filename>screensavers-flocks.desktop</Filename>
    <Filename>screensavers-flux.desktop</Filename>
    <Filename>screensavers-helios.desktop</Filename>
    <Filename>screensavers-hufo_smoke.desktop</Filename>
    <Filename>screensavers-hufo_tunnel.desktop</Filename>
    <Filename>screensavers-hyperspace.desktop</Filename>
    <Filename>screensavers-lattice.desktop</Filename>
    <Filename>screensavers-lorenz.desktop</Filename>
    <Filename>screensavers-matrixview.desktop</Filename>
    <Filename>screensavers-plasma.desktop</Filename>
    <Filename>screensavers-skyrocket.desktop</Filename>
    <Filename>screensavers-solarwinds.desktop</Filename>
    <Filename>screensavers-spirographx.desktop</Filename>
    <Filename>screensavers-sundancer2.desktop</Filename>
    </Layout>
    </Menu>
    <Menu>
    <Name>.hidden</Name>
    <Include>
    <Filename>wine-Programy-4shared Service-4shared Uploader.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-AC3Filter.desktop</Filename>
    <Filename>wine-Programy-AutoCAD R14-AutoCAD R14.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Tools-Xvid StatsReader.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoHotkey.desktop</Filename>
    <Filename>wine-Programy-AutoCAD R14-AutoCAD Readme.desktop</Filename>
    <Filename>wine-Programy-Larian Studios-Beyond Divinity Demo-Configuration.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-Cyberlink MPEG-2 decoder.desktop</Filename>
    <Filename>wine-Programy-DeliPlayer-DeliPlayer.desktop</Filename>
    <Filename>wine-Programy-Miranda IM-Database Tool.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Documentation.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-DirectVobSub.desktop</Filename>
    <Filename>wine-Programy-AviSynth 2.5-Folder wtyczek.desktop</Filename>
    <Filename>wine-Programy-Atmel AVR Tools-AVR QTouch Studio.desktop</Filename>
    <Filename>wine-Programy-Audacity.desktop</Filename>
    <Filename>wine-Programy-AviSynth 2.5-Angielska dokumentacja.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoIt3 Window Spy.desktop</Filename>
    <Filename>wine-Programy-SubEdit-Player-SubEdit Pomoc.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoHotkey Help File.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoScriptWriter (recorder).desktop</Filename>
    <Filename>wine-Programy-Atmel AVR Tools-AVR Battery Studio.desktop</Filename>
    <Filename>wine-Programy-Startup-ST5UNST Uninstaller.desktop</Filename>
    <Filename>wine-Programy-Borland Delphi 7-Help-Error Messages & Warnings.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Download Manager.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-FDM remote control server.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Download Manager on the Web.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Upload Manager.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Instalacja.desktop</Filename>
    <Filename>wine-Programy-MySQL Oracle Import, Export & Convert Software-MySQL Oracle Import, Export & Convert Software.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Pierwsze kroki.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Pomoc online.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Pomoc techniczna offline.desktop</Filename>
    <Filename>wine-Programy-Unreal-Play Unreal.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Poradnik do gry (trzynasty schron).desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Readme.desktop</Filename>
    <Filename>wine-Programy-Unreal-Information-Release Notes.desktop</Filename>
    <Filename>oraclexe-runsql.desktop</Filename>
    <Filename>alacarte-made.desktop</Filename>
    <Filename>Shareaza.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Słownik Fallout.desktop</Filename>
    <Filename>oraclexe-startdb.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Szkolna.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Uninstall Free Download Manager.desktop</Filename>
    <Filename>wine-Programy-MySQL Oracle Import, Export & Convert Software-Uninstall MySQL Oracle Import.desktop</Filename>
    <Filename>wine-Programy-Unreal-Unreal Editor.desktop</Filename>
    <Filename>wine-Programy-Unreal-Unreal Safe Mode.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Uruchom grę Fallout.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Usuń grę Fallout.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Usuń WSCAD 5.0.desktop</Filename>
    <Filename>wine-Programy-WIBU-KEY-WIBU-KEY Help (English).desktop</Filename>
    <Filename>wine-WinRAR.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-WSCAD File Viewer.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Przejęcie danych.desktop</Filename>
    </Include>
    </Menu>
    <Menu>
    <Name>wine-wine</Name>
    <Menu>
    <Name>wine-Programy</Name>
    <Layout>
    <Merge type="menus"/>
    <Menuname>wine-Programy-Bulk Rename Utility</Menuname>
    <Menuname>wine-Programy-K-Lite Codec Pack</Menuname>
    <Menuname>wine-Programy-Microsoft Office</Menuname>
    <Menuname>wine-Programy-PowerISO</Menuname>
    <Menuname>wine-Programy-Shareaza</Menuname>
    <Menuname>wine-Programy-Startup</Menuname>
    <Menuname>wine-Programy-TED Notepad</Menuname>
    <Menuname>wine-Programy-WinRAR</Menuname>
    <Menuname>wine-Programy-WinUAE</Menuname>
    <Menuname>wine-Programy-XnView</Menuname>
    <Menuname>wine-Programy-Xvid</Menuname>
    <Merge type="files"/>
    <Filename>wine-Programy-Windows Media Player.desktop</Filename>
    </Layout>
    <Menu>
    <Name>wine-Programy-Startup</Name>
    <Layout/>
    <Exclude>
    <Filename>wine-Programy-Startup-ST5UNST Uninstaller.desktop</Filename>
    </Exclude>
    </Menu>
    <Deleted/>
    <Menu>
    <Name>wine-Programy-4shared Service</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Atari</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Atmel AVR Tools</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoCAD R14</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoCAD R14.0 - odinstalowanie</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoHotkey</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Black Isle</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Borland Delphi 7</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Bullfrog</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-DeliPlayer</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Diablo</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-DreamCatcher</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-EuroPlus+ Angielski z Cambridge</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-femm 4.2</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Heroes of Might and Magic III</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Intelligent Converters</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Interplay</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-xp-AntiSpy</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Winamp</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Unreal Antologia</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-SubEdit-Player</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Sierra</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-NAPI-PROJEKT</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Miranda IM</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-MicroSim Eval 8</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Larian Studios</Name>
    <Deleted/>
    </Menu>
    </Menu>
    <Menu>
    <Name>wine-Programs</Name>
    <Deleted/>
    </Menu>
    <Include>
    <Filename>wine-winecfg.desktop</Filename>
    <Filename>dysk C.desktop</Filename>
    </Include>
    <Layout>
    <Merge type="menus"/>
    <Menuname>Programy</Menuname>
    <Merge type="files"/>
    <Filename>dysk C.desktop</Filename>
    <Filename>wine-winecfg.desktop</Filename>
    <Filename>wine-Nowy dokument Office.desktop</Filename>
    <Filename>wine-Otwórz dokument Office.desktop</Filename>
    </Layout>
    <Menu>
    <Name>Programy</Name>
    <NotDeleted/>
    <Layout>
    <Merge type="files"/>
    <Filename>TEDNotepad.desktop</Filename>
    </Layout>
    <Include>
    <Filename>TEDNotepad.desktop</Filename>
    </Include>
    </Menu>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>Programy</Name>
    <Directory>Programy.directory</Directory>
    </Menu>
    <Move>
    <Old>Programy/</Old>
    <New>wine-wine/Programy/</New>
    </Move>
    <Layout>
    <Merge type="menus"/>
    <Menuname>Programy</Menuname>
    <Menuname>Office</Menuname>
    <Menuname>Education</Menuname>
    <Menuname>Graphics</Menuname>
    <Menuname>Games</Menuname>
    <Menuname>Internet</Menuname>
    <Menuname>Multimedia</Menuname>
    <Menuname>Utilities</Menuname>
    <Menuname>Development</Menuname>
    <Menuname>Science</Menuname>
    <Menuname>System</Menuname>
    <Menuname>Settingsmenu</Menuname>
    <Menuname>Arch Linux</Menuname>
    <Menuname>Applications</Menuname>
    <Merge type="files"/>
    <Filename>kde4-Help.desktop</Filename>
    <Filename>kde4-kfind.desktop</Filename>
    </Layout>
    </Menu>
    applications.menu
    <!DOCTYPE Menu
    PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
    'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
    <Menu>
    <Name>Applications</Name>
    <MergeFile type="parent">/etc/xdg/menus/applications.menu</MergeFile>
    <Menu>
    <Name>System</Name>
    <DirectoryDir>/home/bagheera/.local/share/desktop-directories</DirectoryDir>
    </Menu>
    <Menu>
    <Name>Development</Name>
    <DirectoryDir>/home/bagheera/.local/share/desktop-directories</DirectoryDir>
    <Include>
    <Filename>python2.5.desktop</Filename>
    </Include>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    </Menu>
    <Menu>
    <Name>Other</Name>
    <DirectoryDir>/home/bagheera/.local/share/desktop-directories</DirectoryDir>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>alacarte-made</Name>
    <Directory>alacarte-made.directory</Directory>
    <Deleted/>
    </Menu>
    <DefaultLayout inline="false"/>
    <Menu>
    <Name>alacarte-made-1</Name>
    <Directory>alacarte-made-1.directory</Directory>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>Multimedia</Name>
    <Include>
    <Filename>cdemu-client.desktop</Filename>
    </Include>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    <Include>
    <Filename>vumeter.desktop</Filename>
    </Include>
    </Menu>
    <Menu>
    <Name>Office</Name>
    <Include>
    <Filename>ooo-math.desktop</Filename>
    </Include>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    </Menu>
    <Menu>
    <Name>wine-wine</Name>
    <Menu>
    <Name>wine-Programs</Name>
    <DirectoryDir>/home/bagheera/.local/share/desktop-directories</DirectoryDir>
    </Menu>
    <Menu>
    <Name>wine-Programy</Name>
    <Menu>
    <Name>wine-Programy-4shared Service</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoCAD R14</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoCAD R14.0 - odinstalowanie</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-MicroSim Eval 8</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Miranda IM</Name>
    </Menu>
    <Include>
    <Filename>EuroPlus+ Angielski z Cambridge.desktop</Filename>
    </Include>
    <Menu>
    <Name>wine-Programy-Intelligent Converters</Name>
    </Menu>
    <Include>
    <Filename>WinRAR.desktop</Filename>
    </Include>
    <Include>
    <Filename>TED Notepad.desktop</Filename>
    </Include>
    <Include>
    <Filename>Shareaza.desktop</Filename>
    </Include>
    <Menu>
    <Name>wine-Programy-WinRAR</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-TED Notepad</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Shareaza</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-EuroPlus+ Angielski z Cambridge</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Atari</Name>
    <Menu>
    <Name>wine-Programy-Atari-Temple of Elemental Evil</Name>
    </Menu>
    </Menu>
    <Menu>
    <Name>wine-Programy-WinUAE</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-PowerISO</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-NAPI-PROJEKT</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-femm 4.2</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Diablo</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Heroes of Might and Magic III</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Xvid</Name>
    </Menu>
    </Menu>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    <Exclude>
    <Filename>wine-µTorrent.desktop</Filename>
    </Exclude>
    </Menu>
    <Menu>
    <Name>Education</Name>
    <Include>
    <Filename>alacarte-made.desktop</Filename>
    </Include>
    </Menu>
    </Menu>
    K, i got it!
    I have removed all files from ~/.config/menus/ except applications-kmenuedit.menu, and removed all sections from file except first *menu:
    <!DOCTYPE Menu PUBLIC '-//freedesktop//DTD Menu 1.0//EN' 'http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd'>
    <Menu>
    <Menu>
    <Name>Development</Name>
    <Include>
    <Filename>pyCrust.desktop</Filename>
    <Filename>IDLE.desktop</Filename>
    </Include>
    <Layout>
    <Merge type="files" />
    <Filename>IDLE.desktop</Filename>
    <Filename>pyCrust.desktop</Filename>
    <Merge type="menus" />
    <Menuname>Web Development</Menuname>
    <Menuname>Translation</Menuname>
    <Menuname>X-KDE-KDevelopIDE</Menuname>
    <Filename>kde4-cervisia.desktop</Filename>
    <Filename>CMake.desktop</Filename>
    <Filename>geany.desktop</Filename>
    <Filename>java-monitoring-and-management-console.desktop</Filename>
    <Filename>java-visualvm.desktop</Filename>
    <Filename>kde4-kcachegrind.desktop</Filename>
    <Filename>kde4-kompare.desktop</Filename>
    <Filename>kde4-akonadiconsole.desktop</Filename>
    <Filename>kde4-kuiviewer.desktop</Filename>
    <Filename>netbeans.desktop</Filename>
    <Filename>kde4-kbugbuster.desktop</Filename>
    <Filename>assistant.desktop</Filename>
    <Filename>designer.desktop</Filename>
    <Filename>kde4-kapptemplate.desktop</Filename>
    <Filename>kde4-umbrello.desktop</Filename>
    </Layout>
    </Menu>
    </Menu>
    *contents may vary
    Now i have wine menu back :]
    Last edited by bagheera (2010-03-15 13:01:08)

    faxmanloveswaffles wrote:bump?
    Please don't do that. Please read the Forum Etiquette, in particular the section on bumping:
    Posting a single word or useless message (bumping) to attract attention to your thread is not allowed. Do your own research, continue to troubleshoot, post the results, and be patient with the community. If people are reading your thread without answering or offering help, you may try supplying more details, or ask to be pointed in the right direction. Often, the reason for posts remaining unanswered is due in large part to the sparse details in the original post itself, or, the obvious availability of solutions in the wiki, on the forum or on the web, and the community's unwillingness to point out the obvious.
    Last edited by 2ManyDogs (2012-10-28 19:47:06)

  • Undo is not working properly (grayed out)

    Undo is not working properly in Indesign CC 9.2. I am using a 17" MBP running OSX 10.9.1.
    Processor: 2.2 GHz Intel Core i7
    Memory: 4GB 1333 MHz DDR3
    I ran into this issue doing a publication layout. I was not doing anything overly complicated. Copying/pasting, placing images, adding text boxes, copying/pasting text boxes. It seems to happen without rhyme or reason.
    I know that is not helpful for troubleshooting so I was able to isolate the problem. Here is how to recreate it.
    Open new doc (standard letter)
    Create text box with random text
    copy the text box (cmd C)
    paste the text box (cmd V)
    move the resulting text box using selection tool (V)
    select NEW text box (selection tool)
    copy the NEW text box (cmd C)
    paste the NEW text box (cmd V)
    move the text box (selection tool).
    Repeat until there are 5 text boxes (at least).
    Undo the various actions after placing and moving the 5 text boxes.
    I cannot undo back to a "new document."
    In some cases I can only undo 2 actions before "undo" becomes grayed out, and in some cases, I can undo up to 9 or 10 actions before it gets grayed out.
    Other programs running:
    Illustrator
    Photoshop
    Text Edit
    MS Word 2011
    Excell 2011
    Messages
    Chrome
    Finder
    Fetch (FTP software)
    I need to have these programs running simultaneously in many cases and have done so successfully in the past. I have a feeling it might be a memory issue, but I have not seen a similar post and I never had the issue with CS5 running with an identical setup. I was able to undo actions up until my previous save in CS5 sometimes 25-30 actions.

    I unplugged the USB items and the problem still persisted so it is not related to any of those.
    I shut down InDesign and tried reopening. InDesign crashed at reopen. I have provided the log below. Hopefully this shows where the problem is occurring.
    Process:         Adobe InDesign CC [3814]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.2.0.69 (9200)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [172]
    Responsible:     Adobe InDesign CC [3814]
    User ID:         ***
    Date/Time:       2014-01-27 11:58:37.300 -0800
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  ********************
    Sleep/Wake UUID: *********************
    Crashed Thread:  8
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    *** error for object 0x6180002737c0: Heap corruption detected, free list canary is damaged
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff8af44622 __open_nocancel + 10
    1   libsystem_c.dylib             0x00007fff8fa09c9b __opendir2$INODE64 + 59
    2   com.apple.CoreFoundation       0x00007fff8d160d4a _CFIterateDirectory + 74
    3   com.apple.CoreFoundation       0x00007fff8d1636b3 _CFBundleCopyInfoDictionaryInDirectoryWithVersion + 627
    4   com.apple.CoreFoundation       0x00007fff8d16331d CFBundleGetInfoDictionary + 141
    5   com.apple.CoreFoundation       0x00007fff8d15fb5b _CFBundleCreate + 827
    6   com.apple.CoreFoundation       0x00007fff8d1a3e89 _CFBundleEnsureBundleExistsForImagePath + 89
    7   com.apple.CoreFoundation       0x00007fff8d24bb93 _CFBundleEnsureAllBundlesUpToDateAlreadyLocked + 67
    8   com.apple.CoreFoundation       0x00007fff8d1a3bf8 CFBundleGetBundleWithIdentifier + 248
    9   com.adobe.InDesign.AWS         0x000000011667d2bc 0x116676000 + 29372
    10  com.adobe.InDesign.AWS         0x000000011667a577 0x116676000 + 17783
    11  com.adobe.InDesign.AWS         0x000000011667a370 0x116676000 + 17264
    12  com.adobe.InDesign.AWS         0x00000001166772a7 0x116676000 + 4775
    13  com.adobe.InDesign.AWS         0x0000000116683fb0 0x116676000 + 57264
    14  com.adobe.InDesign.AWS         0x000000011668472e 0x116676000 + 59182
    15  com.adobe.InDesign.AWSUI       0x0000000116646597 0x116636000 + 66967
    16  com.adobe.InDesign.AWSUI       0x0000000116645f05 0x116636000 + 65285
    17  com.adobe.InDesign.AppFramework 0x000000010d6739bb 0x10d632000 + 268731
    18  ObjectModelLib.dylib           0x0000000104b2fcd3 0x104b10000 + 130259
    19  ObjectModelLib.dylib           0x0000000104b4306c 0x104b10000 + 209004
    20  ObjectModelLib.dylib           0x0000000104b3e3fc ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 7676
    21  com.adobe.InDesign             0x0000000100001c7e main + 94
    22  com.adobe.InDesign             0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8af45662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff9067043d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff90670152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8af44716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff97874c77 _pthread_cond_wait + 787
    2   com.apple.CoreServices.CarbonCore 0x00007fff92a51c37 TSWaitOnConditionTimedRelative + 148
    3   com.apple.CoreServices.CarbonCore 0x00007fff92a2238d MPWaitOnQueue + 192
    4   PMRuntime.dylib               0x0000000101682be1 0x101681000 + 7137
    5   com.apple.CoreServices.CarbonCore 0x00007fff92a2290b PrivateMPEntryPoint + 58
    6   libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff8af44e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff97873f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff97876fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8af4534a fstat$INODE64 + 10
    1   IMSLib.dylib                   0x0000000119a3d2dd 0x1199c0000 + 512733
    2   IMSLib.dylib                   0x00000001199f3616 0x1199c0000 + 210454
    3   IMSLib.dylib                   0x00000001199f39ef 0x1199c0000 + 211439
    4   IMSLib.dylib                   0x0000000119a1f3c8 0x1199c0000 + 390088
    5   IMSLib.dylib                   0x00000001199f328d 0x1199c0000 + 209549
    6   IMSLib.dylib                   0x0000000119a2ebdf 0x1199c0000 + 453599
    7   IMSLib.dylib                   0x00000001199f64f0 0x1199c0000 + 222448
    8   IMSLib.dylib                   0x00000001199f894b 0x1199c0000 + 231755
    9   IMSLib.dylib                   0x0000000119a3fc0e 0x1199c0000 + 523278
    10  IMSLib.dylib                   0x0000000119a40a0b 0x1199c0000 + 526859
    11  IMSLib.dylib                   0x00000001199ea34e 0x1199c0000 + 172878
    12  IMSLib.dylib                   0x00000001199ded11 0x1199c0000 + 126225
    13  IMSLib.dylib                   0x00000001199d37ef 0x1199c0000 + 79855
    14  IMSLib.dylib                   0x00000001199e3851 0x1199c0000 + 145489
    15  IMSLib.dylib                   0x00000001199da4f1 0x1199c0000 + 107761
    16  IMSLib.dylib                   0x00000001199cce14 0x1199c0000 + 52756
    17  libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    18  libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    19  libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8af44e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff97873f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff97876fb9 start_wqthread + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8af40a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8af3fd18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8d1b0315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8d1af939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8d1af275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff975a1907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff975a170b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff8af44e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff97873f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff97876fb9 start_wqthread + 13
    Thread 8 Crashed:
    0   libsystem_kernel.dylib         0x00007fff8af44866 __pthread_kill + 10
    1   libsystem_pthread.dylib       0x00007fff9787335c pthread_kill + 92
    2   libsystem_c.dylib             0x00007fff8fa39bba abort + 125
    3   libsystem_malloc.dylib         0x00007fff919a5bf9 nanozone_error + 486
    4   libsystem_malloc.dylib         0x00007fff919a5dbb _nano_malloc_check_clear + 445
    5   libsystem_malloc.dylib         0x00007fff919a46c4 nano_malloc + 35
    6   libsystem_malloc.dylib         0x00007fff919a287c malloc_zone_malloc + 71
    7   libsystem_malloc.dylib         0x00007fff919a3290 malloc + 42
    8   libc++abi.dylib               0x00007fff90c5853e operator new(unsigned long) + 30
    9   libstdc++.6.dylib             0x00007fff8f47d0be std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) + 102
    10  libstdc++.6.dylib             0x00007fff8f47d00d std::string::_Rep::_M_clone(std::allocator<char> const&, unsigned long) + 35
    11  libstdc++.6.dylib             0x00007fff8f47dae6 std::string::reserve(unsigned long) + 62
    12  libstdc++.6.dylib             0x00007fff8f47de3b std::string::append(char const*, unsigned long) + 101
    13  IMSLib.dylib                   0x0000000119a414fb 0x1199c0000 + 529659
    14  IMSLib.dylib                   0x0000000119a416a2 0x1199c0000 + 530082
    15  IMSLib.dylib                   0x00000001199ea192 0x1199c0000 + 172434
    16  IMSLib.dylib                   0x00000001199ded11 0x1199c0000 + 126225
    17  IMSLib.dylib                   0x00000001199d37ef 0x1199c0000 + 79855
    18  IMSLib.dylib                   0x00000001199e3851 0x1199c0000 + 145489
    19  IMSLib.dylib                   0x00000001199da4f1 0x1199c0000 + 107761
    20  IMSLib.dylib                   0x00000001199cce14 0x1199c0000 + 52756
    21  libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    22  libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    23  libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8af449aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff8d1fbd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff97872899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff9787272a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff97876fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff8af44e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff97873f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff97876fb9 start_wqthread + 13
    Thread 8 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000119dfa000  rcx: 0x0000000119df8958  rdx: 0x0000000000000000
      rdi: 0x0000000000007c13  rsi: 0x0000000000000006  rbp: 0x0000000119df8980  rsp: 0x0000000119df8958
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x0000000104bf7000  r13: 0x00006180002737c0  r14: 0x0000000000000006  r15: 0x0000000000000000
      rip: 0x00007fff8af44866  rfl: 0x0000000000000206  cr2: 0x00000001083c9000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.2.0.69 - 9200) <B7C09BD6-74AF-323E-8D22-D5E1F7965643> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <612870BE-869E-3165-9714-55F900A66BCC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <1039F962-C495-36E4-B868-3DA5C43E3EBF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10013aff7 +DV_WidgetBinLib.dylib (1) <57491245-3B90-3D4B-B4B6-4441EE325E3C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001d5000 -        0x10021aff7 +TextPanelLib.dylib (1) <4B30610F-C637-3910-A413-C40325795CAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100237000 -        0x100398fff +WidgetBinLib.dylib (1) <50EE77D3-591B-306F-9D62-2026938837EE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x10044a000 -        0x100616fff +com.adobe.owl (AdobeOwl version 5.0.24 - 5.0.24) <1C99AA07-E73F-370B-82FA-01C1C4AAF97D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x100659000 -        0x10089dfff +com.adobe.dvacore.framework (7.0.849324 - 7.0.849324.0) <08EB97C1-03E5-3C1B-B154-C886807BC6F1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x100964000 -        0x100df1ff7 +com.adobe.dvaui.framework (7.0.849324 - 7.0.849324.0) <25942AAC-0437-303F-9663-B17113468EBB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x101089000 -        0x101089fff +com.adobe.InDesign.InDesignModel (9.0 - 0) <7DCCCD9E-8ECB-330B-84AF-4F090F82BBBA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x10108e000 -        0x10109cfff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x1010b2000 -        0x1010b8ff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010c7000 -        0x101536ff7 +PublicLib.dylib (1) <1B305F6E-A0D3-39A3-91FE-B878D638B7A7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x101681000 -        0x10168bfff +PMRuntime.dylib (1) <0164EA5E-E56E-332F-901A-5E514833C38F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101694000 -        0x1016abff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x1016ba000 -        0x1019cbff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.31977 - 5.15.00.31977) <42323DBD-3A6D-3C41-A2C1-2B944789D8A9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x101a13000 -        0x101a30fff +com.adobe.BIB (AdobeBIB 1.2.03.31977 - 1.2.03.31977) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a38000 -        0x101b7efff +com.adobe.ACE (AdobeACE 2.20.02.31977 - 2.20.02.31977) <3A212837-B075-34C0-96E9-5A4019C9DFEE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b92000 -        0x102163fff +com.adobe.AGM (AdobeAGM 4.30.29.31977 - 4.30.29.31977) <BFFDBF0E-28EF-3720-93BE-293618541D26> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x102200000 -        0x10223dfff +com.adobe.ARE (AdobeARE 1.5.02.31977 - 1.5.02.31977) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x102245000 -        0x10226bfff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x102273000 -        0x10280cfff +com.adobe.MPS (AdobeMPS 5.8.1.31977 - 5.8.1.31977) <96C4D283-326B-3E50-B555-534492C6AA95> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102889000 -        0x1028a7fff +com.adobe.dvaflashview.framework (7.0.849324 - 7.0.849324.0) <46FFD5B4-2182-3CC3-A258-486E585A5B2D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x1028bf000 -        0x1028c3ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028ca000 -        0x10298cfff +com.adobe.exo.framework (7.0.849324 - 7.0.849324.0) <AF41BB10-6BB7-3645-9F60-AE77E54F04F1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x102a2a000 -        0x102ad8fff +com.adobe.dvaworkspace.framework (7.0.849324 - 7.0.849324.0) <97F274A8-A56B-3F3A-AAA7-66B9FBEFEBF1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b5b000 -        0x1031fafff +com.adobe.PlugPlugOwl (4.2.0.36 - 4.2.0.36) <D6EC53B4-E257-3698-8EA8-24D4E3D98EBD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x1034ef000 -        0x10351bff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x103536000 -        0x103555fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10357a000 -        0x1042bffff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x1042d3000 -        0x104404ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x104458000 -        0x10454eff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x104586000 -        0x1046b4fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10470f000 -        0x1047fffff +com.adobe.amtlib (7.0.0.247 - 7.0.0.247) <48D8FFDB-DFEA-310D-BAE3-DFD8D05B0160> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x104812000 -        0x104814fff +com.adobe.AdobeCrashReporter (7.0 - 7.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x10481a000 -        0x1048d1ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x10493b000 -        0x1049aaff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x1049b5000 -        0x1049c0fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x1049cf000 -        0x1049d3fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x1049d9000 -        0x104a7afff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a9a000 -        0x104afcfff +DataBaseLib.dylib (1) <670C9B64-DD9A-3B32-BDA9-22D6EA26A5EF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104b10000 -        0x104b7dfff +ObjectModelLib.dylib (1) <38EFA738-542E-32EB-A5AA-45380C5CCAAF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b9a000 -        0x104bbefff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x108348000 -        0x108386fff +com.adobe.InDesign.Dictionary Editor Dialog (9.2.0.69 - 0) <EC06E951-7EDF-306A-85E2-B52805F8110C> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x1083a7000 -        0x1083b6ff7 +com.adobe.InDesign.DTTransform (9.2.0.69 - 0) <417A914C-BEA9-3AF6-94BC-158C93DCDC56> /Applications/Adobe InDesign CC/*/DTTransform
           0x10846c000 -        0x108479ff7 +com.adobe.InDesign.Text Color Panel (9.2.0.69 - 0) <B9722BDD-B3B2-3B6B-90EC-D7B52D54C678> /Applications/Adobe InDesign CC/*/Text Color Panel
           0x108482000 -        0x108496ff7 +com.adobe.InDesign.Story Panel (9.2.0.69 - 0) <989D8312-C513-36B9-9A2A-A161EC806905> /Applications/Adobe InDesign CC/*/Story Panel
           0x1084a5000 -        0x1084afff7 +com.adobe.InDesign.Span Columns Panel (9.2.0.69 - 0) <15F063E0-7874-30AE-841C-C10A12CF8B5E> /Applications/Adobe InDesign CC/*/Span Columns Panel
           0x1084b8000 -        0x1084c9ff7 +com.adobe.InDesign.SING (9.2.0.69 - 0) <3CC6846B-D663-31F2-BAB9-03BCAD89606E> /Applications/Adobe InDesign CC/*/SING
           0x1084d3000 -        0x1084ddfff +com.adobe.InDesign.Justification Panel (9.2.0.69 - 0) <4F940073-AAF8-3FDF-87FA-04A8DC87679D> /Applications/Adobe InDesign CC/*/Justification Panel
           0x109caa000 -        0x109cabff7 +com.adobe.InDesign.Metadata Database Filter (9.2.0.69 - 0) <3BE1DF86-81E8-359D-A40E-84EC7A016E16> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
           0x109cb0000 -        0x109ccaff7 +com.adobe.InDesign.IME (9.2.0.69 - 0) <905334C5-8BF8-3958-8216-720BDB4D3A1F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
           0x109cda000 -        0x109cddfff +com.adobe.InDesign.Global Preferences Panel (9.2.0.69 - 0) <3B261D67-E6B5-32E3-AC7E-AFCCDC9B75CB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
           0x109ce3000 -        0x109cedfff +com.adobe.InDesign.Workgroup Client UI (9.2.0.69 - 0) <5025F9EC-7C4C-377B-92F0-EC208F75B671> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
           0x10aa1f000 -        0x10aa23fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10af61000 -        0x10af9ffff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications
           0x10afdc000 -        0x10afeefff +com.adobe.boost_filesystem.framework (7.0.847203 - 7.0.847203.0) <B0F56E9F-BAAB-34C5-93C4-C713203AB0DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
           0x10c6ee000 -        0x10c6f0ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10c6f5000 -        0x10c6f9fff +com.adobe.InDesign.Help (9.2.0.69 - 0) <09CFAB79-828F-39A9-8E6C-634999CF4EC8> /Applications/Adobe InDesign CC/*/Help
           0x10d632000 -        0x10d7f8ff7 +com.adobe.InDesign.AppFramework (9.2.0.69 - 0) <D84FAD4D-B653-3EB4-8FDA-7264A51F7359> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
           0x10e0cf000 -        0x10e255ff7 +com.adobe.InDesign.SettingsInCloud (9.2.0.69 - 0) <EC5B37FA-9195-3243-9D62-C6A5FB8E394A> /Applications/Adobe InDesign CC/*/SettingsInCloud
           0x10e640000 -        0x10e7feff7 +com.adobe.InDesign.Text Walker (9.2.0.69 - 0) <BA84432B-6B10-3684-982F-856AB2248204> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
           0x10e856000 -        0x10e8a7fff +com.adobe.InDesign.Linguistics (9.2.0.69 - 0) <13A4BC6D-4C68-3884-9059-5837B952EC17> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
           0x10e8c1000 -        0x10e927fff +com.adobe.InDesign.Text Panel (9.2.0.69 - 0) <70BA1FF5-A8FD-3D59-976A-5AE782CB79ED> /Applications/Adobe InDesign CC/*/Text Panel
           0x10e94a000 -        0x10e996ff7 +com.adobe.InDesign.Spelling Panel (9.2.0.69 - 0) <B208BBCC-1AAB-354C-9CA6-44C6B5D35946> /Applications/Adobe InDesign CC/*/Spelling Panel
           0x10e9b0000 -        0x10ec14fff +com.adobe.InDesign.Package and Preflight (9.2.0.69 - 0) <6590908A-0A78-32F4-A455-ABBEC9D97B5E> /Applications/Adobe InDesign CC/*/Package and Preflight
           0x10ec5a000 -        0x10ecc7ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 21 - 79.154911) <E8E31BC1-F7BC-3018-8CF8-AC3C7B2DCEA2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10ecd3000 -        0x10eda5fff +com.adobe.InDesign.Text Editor (9.2.0.69 - 0) <C8F82611-461D-3339-A65E-51190B515F9F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
           0x10edd5000 -        0x10efe3fff +com.adobe.InDesign.Layout UI (9.2.0.69 - 0) <5BC0A7D6-7A69-346C-B5A1-4F4AF2AC5F01> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
           0x10f043000 -        0x10f0b3fff +com.adobe.InDesign.Import Export UI (9.2.0.69 - 0) <FFA896AE-BAF9-30EC-A788-25AD02061296> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
           0x10f0da000 -        0x10f1e8fff +com.adobe.InDesign.Hyperlinks (9.2.0.69 - 0) <BF029BB8-6578-303F-A983-9ADEE43AB7A4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
           0x10f213000 -        0x10f2b7fff +com.adobe.InDesign.Master Page (9.2.0.69 - 0) <557BD678-3F9D-3A4F-ABDA-8A1DD7D41AF6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
           0x10f2d1000 -        0x10f2fffff +com.adobe.InDesign.Utilities (9.2.0.69 - 0) <9F7A613A-54DB-3604-B811-FCE0BC56F416> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
           0x10f31a000 -        0x10f417fff +com.adobe.InDesign.Color Management (9.2.0.69 - 0) <33023C59-D4C5-3BF2-8C42-54BD6E50E651> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
           0x10f444000 -        0x10f659ff7 +com.adobe.InDesign.Application UI (9.2.0.69 - 0) <2235307F-D211-397C-BAA7-34028F1C4F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
           0x10f6f0000 -        0x10fa0eff7 +com.adobe.dvaadameve.framework (7.0.849324 - 7.0.849324.0) <FF303DE3-2F53-3AA7-94E7-93B46DB28918> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x10fce4000 -        0x10fd33fff +com.adobe.headlights.LogSessionFramework (2.1.2.1785) <160BF2F9-B418-31C5-866F-6FADA1B720ED> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x10fd59000 -        0x10fe17fff +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.31983) <7764EE73-651A-3D8A-9B0F-A25DF57D79E1> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x10fe3f000 -        0x10feeaff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.31983) <0E9111E5-ECBF-3C1C-82DB-9A945F1A573C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10ff14000 -        0x110064fff +com.adobe.dvascriptui.framework (7.0.849324 - 7.0.849324.0) <EC31CE70-34C1-31E0-A68D-F49D99ADA604> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui
           0x110186000 -        0x110366fff +com.adobe.InDesign.Document Framework (9.2.0.69 - 0) <ABC1E3A8-3AC3-3199-B572-B734998B696E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
           0x1106d2000 -        0x110813fff +com.adobe.InDesign.SangamServicer-Mapper (9.2.0.69 - 0) <F2E5BD34-3091-317F-88A8-0B6090F262E0> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x110837000 -        0x1108a0fff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.31977 - 5.65.0.31977) <81A4C7F3-E791-3AD1-A44B-CF5BB5B6A545> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x1108ee000 -        0x11091aff7 +com.adobe.Reader for DOCX (Reader for DOCX 5.65.0.31977 - 5.65.0.31977) <C21B199B-542B-34CD-8F0E-F38D970D88BD> /Applications/Adobe InDesign CC/*/Reader for DOCX
           0x110925000 -        0x110a23ff7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.30807 - 3.8.0.30807) <DF0EC9F6-D499-39B8-B2F4-CAF4F742D702> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x110a39000 -        0x110b16fff +com.adobe.AXEXSLT (AdobeAXSLE 3.8.0.30807 - 3.8.0.30807) <6299FB87-471B-3EA2-9E02-6DEA293FA533> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
           0x110b2b000 -        0x110b96ff7 +com.adobe.AdobeSangamML (AdobeSangamML 5.65.0.31977 - 5.65.0.31977) <BF6D92E9-AF42-3B9F-BBDD-FBCDE605C4BE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
           0x110bba000 -        0x110c18ff7 +com.adobe.Reader for Excel (Reader for Excel 5.65.0.31977 - 5.65.0.31977) <628DA00F-210B-3856-89F3-66393386E801> /Applications/Adobe InDesign CC/*/Reader for Excel
           0x110c2b000 -        0x110c3ffff +com.adobe.AdobeSFL (AdobeSFL 1.1.0.31977 - 1.1.0.31977) <A1874DA3-6F12-333D-8941-ED3A08A1E265> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
           0x110c47000 -        0x110d3cfff +com.adobe.Reader for Quark (Reader for Quark 5.65.0.31977 - 5.65.0.31977) <7877BBF5-B31A-3CA9-9E8E-3FDFB174F261> /Applications/Adobe InDesign CC/*/Reader for Quark
           0x110d56000 -        0x110db1ff7 +com.adobe.Reader for RTF (Reader for RTF 5.65.0.31977 - 5.65.0.31977) <3ACB0F8E-0B51-3E5C-B924-A31D1D6606F6> /Applications/Adobe InDesign CC/*/Reader for RTF
           0x110dca000 -        0x110e38ff7 +com.adobe.Reader for Word (Reader for Word 5.65.0.31977 - 5.65.0.31977) <27531852-B602-3785-94C0-3B316DBEC69C> /Applications/Adobe InDesign CC/*/Reader for Word
           0x110e4d000 -        0x110eb3fff +com.adobe.Reader for XLSX (Reader for XLSX 5.65.0.31977 - 5.65.0.31977) <D896568B-FB6A-3036-91FC-A1DF0FA820DF> /Applications/Adobe InDesign CC/*/Reader for XLSX
           0x110ecd000 -        0x110ed5ff7 +com.adobe.ZTextReader (ZTextReader 5.65.0.31977 - 5.65.0.31977) <28B268EF-A3AD-3933-B4DC-247428D3A88D> /Applications/Adobe InDesign CC/*/ZTextReader
           0x110f5c000 -        0x110fcbfff +com.adobe.InDesign.XMLParser (9.2.0.69 - 0) <745F02C0-071B-3979-B284-391BA59D9CF5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
           0x110fe1000 -        0x111204fff +com.adobe.InDesign.XML (9.2.0.69 - 0) <97314A64-BB21-3965-B9D3-F4C219C3DCDF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
           0x11124e000 -        0x11127bfff +com.adobe.InDesign.WorldReady (9.2.0.69 - 0) <787871A9-77D2-3095-8930-4F140D091F0A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
           0x11128b000 -        0x1112c8ff7 +com.adobe.InDesign.Workgroup (9.2.0.69 - 0) <FEA65E81-92F4-36EE-940C-3C7BD07DB7F4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
           0x1112d8000 -        0x1112fafff +com.adobe.InDesign.Workgroup Client (9.2.0.69 - 0) <2447A61F-74CA-38D1-9444-22A25D2DEE98> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
           0x111308000 -        0x111416fff +com.adobe.InDesign.Widgets (9.2.0.69 - 0) <A9FB91A0-7CDB-3025-B6AC-D53BA8BBEB1E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets
           0x11147c000 -        0x1115c0ff7 +com.adobe.InDesign.Transparency (9.2.0.69 - 0) <636FD3CD-06FE-3D25-A252-368317D80C66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
           0x1115eb000 -        0x11259ffef +com.adobe.psl (AdobePSL 14.0.0.31988 - 14.0.0.31988) <1EBD1547-F7B1-379D-8F50-FB49C7E01A58> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x112762000 -        0x11281bff7 +com.adobe.JP2K (1.2.2 - 1.2.2.31977) <8BD41D6E-B8A2-36FA-B855-7CF02E856A08> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x112842000 -        0x1128a4fff +com.adobe.InDesign.TOC (9.2.0.69 - 0) <99A6C9FF-2F20-3475-A9CF-24C7B0F63CF3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
           0x1128b8000 -        0x112ebbff7 +com.adobe.InDesign.Text (9.2.0.69 - 0) <4216A99F-7F58-3E9B-A37E-8178A6ED812A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
           0x112f59000 -        0x112fcfff7 +com.adobe.InDesign.Text Wrap (9.2.0.69 - 0) <8B65C672-BB4E-3F46-A7C5-6B2D0331C0F5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
           0x112fe8000 -        0x11300cfff +com.adobe.InDesign.Text Wrap Path (9.2.0.69 - 0) <D826BA05-20A8-367F-9414-573944D46303> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
           0x113015000 -        0x11302bff7 +com.adobe.InDesign.Text Editor Model (9.2.0.69 - 0) <C997B3C0-98C6-34A5-89E0-DBD7FB071AD6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
           0x113036000 -        0x11308cff7 +com.adobe.InDesign.Text Attributes (9.2.0.69 - 0) <F90E2E25-38B2-3F12-8902-D5A56D6AD919> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
           0x1130a7000 -        0x113104ff7 +com.adobe.InDesign.TableStyles (9.2.0.69 - 0) <4D83BFF9-CAF4-34EF-BEAE-86E2D8A1D14F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
           0x113117000 -        0x113349fff +com.adobe.InDesign.Table Model (9.2.0.69 - 0) <829471A3-999A-3B01-BD5A-B2ADC2F2972A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
           0x113385000 -        0x1133d8ff7 +com.adobe.InDesign.Image Filters (9.2.0.69 - 0) <F3DF9DCA-6073-3DF8-89EB-18F8D1DB8902> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
           0x1133e4000 -        0x11346ffff +com.adobe.InDesign.SVGExport (9.2.0.69 - 0) <E86D7C69-48CA-362B-B3A0-CC2C8F4B31B5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/SVGExport.InDesignPlugin/SVGExport
           0x113489000 -        0x113547fff +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <2FAB4B9A-EDB9-0FF9-55B2-52DEC380D2BF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x11356a000 -        0x11360efff +com.adobe.InDesign.Support for JavaScript (9.2.0.69 - 0) <EC1C0215-E510-3D0F-B692-E2F8853811D9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
           0x113639000 -        0x113690ff7 +com.adobe.InDesign.Support for AppleScript (9.2.0.69 - 0) <7D7706C3-B3C9-3B96-8473-CAD03A053148> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
           0x1136a6000 -        0x1137a8ff7 +com.adobe.InDesign.Graphics (9.2.0.69 - 0) <FCBDB8E7-46E8-3987-9BCB-0E3177F00F11> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
           0x1137cc000 -        0x113827ff7 +com.adobe.InDesign.Stroke and Fill (9.2.0.69 - 0) <72D3DE23-CFCC-3821-80AE-0908DB5768F5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
           0x11383f000 -        0x113980ff7 +com.adobe.InDesign.Spread (9.2.0.69 - 0) <AF10A69E-0D98-3E25-ABE5-CC310529098A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
           0x1139b2000 -        0x113a14fff +com.adobe.InDesign.Spread UI (9.2.0.69 - 0) <B7A3AE3F-DC65-34F6-B601-1780AF9220D9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
           0x113a30000 -        0x113a7afff +com.adobe.InDesign.Spline (9.2.0.69 - 0) <53E6EF37-C070-39BE-BB18-2703B2041EC6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
           0x113a92000 -        0x113adaff7 +com.adobe.InDesign.Spline UI (9.2.0.69 - 0) <9FC93D14-6D7C-32EE-BF90-3756FEA25FEE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
           0x113af6000 -        0x113b09ff7 +com.adobe.InDesign.Spelling Service (9.2.0.69 - 0) <1E6AAFFE-ACCA-3E0B-AA63-37A767CC336E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
           0x113b18000 -        0x113b26fff +com.adobe.InDesign.Sound (9.2.0.69 - 0) <43D68A27-E17F-3E9D-A02D-EB3230178339> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
           0x113b32000 -        0x113bbcfff +com.adobe.InDesign.SharedContent (9.2.0.69 - 0) <3863D336-3468-35E6-8298-3C1BFB37FBA5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/SharedContent.InDesignPlugin/SharedContent
           0x113bdd000 -        0x113c05fff +com.adobe.InDesign.Sections (9.2.0.69 - 0) <4DB2B4F0-124A-36F1-B1A3-9BFA36BB2FCF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
           0x113c16000 -        0x113cc4fff +com.adobe.InDesign.Scripting (9.2.0.69 - 0) <01395410-7F18-323A-BF92-4FAC6F3ECCD5> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
           0x113ce3000 -        0x113d0dff7 +com.adobe.InDesign.Rulers (9.2.0.69 - 0) <C21FAD98-14EA-3E6F-9D58-7DED5B0EFB76> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
           0x113d20000 -        0x113eb5fff +com.adobe.InDesign.Print (9.2.0.69 - 0) <4E53767E-8497-32D1-B922-735E610640E2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
           0x113ee2000 -        0x113f21ff7 +com.adobe.InDesign.PNG Import Filter (9.2.0.69 - 0) <3EA87A99-3FBF-38E5-BE00-896001E5AD91> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
           0x113f31000 -        0x113f6afff +com.adobe.InDesign.Photoshop Import Filter (9.2.0.69 - 0) <B62B89C7-29F4-3058-BBD9-62BAB193B133> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
           0x113f7a000 -        0x113fe0fff +com.adobe.InDesign.Book (9.2.0.69 - 0) <A57C7841-5282-3A46-8202-CAB3C70DFBD0> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
           0x113ff7000 -        0x11410dff7 +com.adobe.InDesign.Image (9.2.0.69 - 0) <E026A24C-EF82-33E8-95FD-463A23618CB2> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
           0x114139000 -        0x114145ff7 +com.adobe.InDesign.Group (9.2.0.69 - 0) <8DF66586-0FC5-3EA5-8F0D-6083387F0697> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
           0x114152000 -        0x114294fe7 +com.adobe.InDesign.EPS Page Item (9.2.0.69 - 0) <CFD4D636-06B2-3969-91FA-ED68F0873111> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
           0x1142d3000 -        0x11451ffff +com.adobe.InDesign.PDF (9.2.0.69 - 0) <36EED87F-F233-3B82-83C4-57584FEBE296> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
           0x114561000 -        0x114665fff +com.adobe.PDFPort (AdobePDFPort 2.1.0.31977 - 2.1.0.31977) <83787D51-C878-3CFF-A3A2-F2107F7BB920> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x114678000 -        0x1146a1ff7 +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <E07D101E-E47A-392A-8A44-005B49393DEC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
           0x1146ab000 -        0x114917ff7 +com.adobe.InDesign.Generic Page Item (9.2.0.69 - 0) <F0DECCE6-EAF5-30C0-8FB0-48FA56CB3503> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
           0x114963000 -        0x1149a7fff +com.adobe.InDesign.Path Type (9.2.0.69 - 0) <32D8F2D5-AF06-375A-85ED-C4E42D3B790B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
           0x1149c0000 -        0x1149caff7 +PathTypeLib.dylib (1) <A6E44FB4-61D6-3729-B3DD-A4D22EEC73B3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PathTypeLib.dylib
           0x1149d3000 -        0x114a88fff +com.adobe.InDesign.Paragraph Composer (9.2.0.69 - 0) <EEE3D51D-AF42-30AF-A8BA-DE663DC95888> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph Composer
           0x114a99000 -        0x114adafff +com.adobe.InDesign.Open Place (9.2.0.69 - 0) <6CBC4B8F-3B3D-3B14-9512-6808497AC68A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
           0x114aee000 -        0x114b06ff7 +com.adobe.InDesign.Movie (9.2.0.69 - 0) <FD78448B-F572-32C2-9580-4A0681AC69EE> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie
           0x114b15000 -        0x114ba0fff +com.adobe.InDesign.Metadata (9.2.0.69 - 0) <361ED9DD-BAD7-35E5-AFE5-3176BAD1C0FC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata
           0x114bbd000 -        0x114ccafff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 81 - 79.154911) <38348CA8-7905-3AA4-AA00-95A6D912C491> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x114d00000 -        0x114d5cff7 +com.adobe.InDesign.Media (9.2.0.69 - 0) <560CE1DB-99AF-389F-8BC2-37D5F83C110F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
           0x114d72000 -        0x114eacfff +com.adobe.InDesign.Links (9.2.0.69 - 0) <1BCD7856-3DD0-3C58-AF61-0E430CF5EFBC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
           0x114ee1000 -        0x114f0afff +com.adobe.InDesign.Layout (9.2.0.69 - 0) <98815961-6446-3917-B266-7E3DB625B782> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
           0x114f19000 -        0x114f46fff +com.adobe.InDesign.Layer (9.2.0.69 - 0) <94604B73-0E52-30CB-9CC0-805F5B138FE4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
           0x114f59000 -        0x115029fff +com.adobe.InDesign.INXCore (9.2.0.69 - 0) <FCF49243-A7FD-3993-A242-7ECAB3971857> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
           0x115051000 -        0x115157ff7 +com.adobe.InDesign.Indexing (9.2.0.69 - 0) <CD23A88C-DBB2-3F46-91CC

  • List of forum editor issues and bugs

    This thread is work in progress. Please report additional bugs and issues you are aware off. I will try to reproduce the issue and add your information to the appropriate columns below. Thanks!
    Note: For accurate results, the width of your web browser window needs to be adjusted to show the following dotted line as a single line. Your screen resolution needs to be at least 1280 pixels wide.
    Issue
    Date
    Summary
    Browser
    Status
    Remark
    1
    08-Jan-2014
    last verified
    24-Aug-2014
    Text copied from discussions, such as code, result in double line spacing when copied to the host system.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    fixed
    fixed
    1.1
    1.2
    2
    08-Jan-2014
    last verified23-Aug-2014
    Cannot append text or code to Syntax Highlighting.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    3
    08-Jan-2014
    last verified23-Aug-2014
    Cannot properly select text or code with Syntax Highlighting.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    fixed
    fixed
    fixed
    3.1
    4
    08-Jan-2014
    last verified23-Aug-2014
    Subsequent edit sessions add empty lines to Syntax Highlighting code.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    5
    08-Jan-2014
    last verified23-Aug-2014
    Copying text under Syntax Highlighting includes line numbers.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    open
    fixed
    fixed
    5.1
    5.2
    6
    08-Jan-2014
    last verified23-Aug-2014
    Cannot copy and paste the whole Syntax Highlighting frame.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    fixed
    improved
    improved
    6.1
    6.3
    6.3
    7
    09-Jan-2014
    last verified23-Aug-2014
    Syntax Highlighting suppresses empty lines and white space when browsing.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    8
    08-Jan-2014
    last verified23-Aug-2014
    Syntax Highlighting overwrites font.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    improved
    improved
    improved
    8.1
    8.1
    8.1
    8.1
    9
    09-Jan-2014
    last verified23-Aug-2014
    Cannot paste any text into the editor window.
    Firefox
    Internet Explorer 11
    Safari
    Chrome
    working
    fixed
    working
    working
    10
    09-Jan-2014
    last verified23-Aug-2014
    Cannot change the font when selecting several lines of text.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    working
    fixed
    improved
    10.1
    10.1
    11
    09-Jan-2014
    last verified23-Aug-2014
    Changing the font gets confused and shows the wrong font.
    Firefox
    Internet Explorer
    Safari
    Chrome
    improved
    working
    open
    open
    11.1
    11.3
    11.3
    12
    09-Jan-2014
    last verified23-Aug-2014
    Pasting a URL captures the text insertion point.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    13
    16-Jan-2014
    last verified23-Aug-2014
    Quoting captures insertion point.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    14
    24-Jan-2014
    last verified23-Aug-2014
    Adding HTML label tag for no apparent reason.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    15
    28-Feb-2014
    last verified23-Aug-2014
    Undo disables functions, such as Quote and Syntax Highlighting and results in complete loss of text when attempting to post.
    Firefox
    Internet Explorer
    Safari
    Chrome
    Improved
    working
    working
    working
    15.1
    16
    28-Feb-2014
    last verified23-Aug-2014
    Syntax Highlighting shows several <span> when browsing.
    Firefox
    Internet Explorer
    Safari
    Chrome
    fixed
    fixed
    fixed
    fixed
    17
    23-Jun-2014
    last verified23-Aug-2014
    When specifying a table width, typed numbers are falling through and land the table as text.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    18
    23-Aug-2014
    Quoting of content with Syntax Highlighting looks fine when editing, but when posting, quoting around SH is removed.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    19
    22-Aug-2014
    Text like "Patch 11.2.0.3" are converted to non-functional hyperlinks when posting.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    20
    20-Jul-2014
    last verified23-Aug-2014
    The editor toolbar disappears behind the forum banner when scrolling to the next page.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    21
    17-Nov-2014
    Insertion point displayed in text under Syntax Highlighting is not showing the real position.
    Firefox
    open
    22
    23-Aug-2014
    Hover-up and pop-up menus are in the way then typing text in tables and code under Syntax Highlighting.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    23
    23-Aug-2014
    Copying text from the first post of a thread includes a grey background.
    Firefox
    Internet Explorer
    Safari
    Chrome
    working
    working
    open
    open
    24
    24-Aug-2014
    Copy and paste does not retain the size of a picture and resizing produces bad quality images. Resizing also no longer shows picture dimensions. Copying images between documents does not copy size settings.
    Firefox
    Internet Explorer
    Safari
    Chrome
    open
    open
    open
    open
    25
    17-Nov-2014
    Copying and pasting of text determine the source format and creates unwanted or useless tables, affecting also Syntax Highlighting.
    Firefox
    open
    26
    17-Nov-2014
    Adding additional rows to tables do not inherit the previous cell formats, such as vertical and horizontal center line.
    Firefox
    working
    27
    02-Dec-2014
    The Jive spell-checker is difficult to use. Pointing and clicking of marked text has to be very precise in order to function, or the spell-checker deactivates itself.
    Firefox
    open
    Ref. No.
    Remarks
    1.1
    Pasting of regular text results in double-line spacing. Pasting of code with Syntax Highlighting does not produce double-line spacing, but includes line numbers when pasting in a rich text editor window, or results in indented lines when pasting to the command prompt or plain text window.
    1.2
    Pasting of code with Syntax Highlighting includes line numbers when pasting into notepad or to the command prompt. Copying of normal text does not wrap and appears a single line when pasting into notepad.
    3.1
    Selecting of code and copying works, but selected text looks like a tape and is not visible.
    5.1
    Copy works find and does not include line numbers, but the text is indented.
    When pasting text into a rich text enabled editor window, it includes line numbers.
    5.2
    Code in syntax highlighting does not copy blank lines, but copies line numbers.
    6.1
    Only parts of a code segment can be copied, but not the complete code segment. Copy and paste always copies an additional line that was actually not selected.
    6.3
    Copy and paste only copies the code but not syntax highlighting, which can however be can be re-applied.
    8.1
    Applying syntax highlighting now applies a font that is suitable for displaying code.
    However, it is not possible to change the font, if necessary, or apply color or bold or highlighting. Color can be applied, which looks like double-vision, but anyway is removed when posting.
    10.1
    Not working reliably. Sometimes the last line selected is not changed, or only the first line changes.
    11.1
    Sometimes fonts are not displayed properly, for instance, the text insertion point may show Arial, but the text is Courier. There is no clear pattern when this happens or what triggers the problem.
    11.3
    The text insertion point or selected text always reports the font name "font family", regardless of the font applied.
    15.1
    Ctrl-z aborting editor functions under Firefox on Mac OS X. However, Cmd-z, which is standard, works properly. This problem does not affect Safari.
    Issue
    Steps to reproduce
    Workaround
    1
    Copy a couple or more lines of text from a discussion window and paste it into any application or document on your host system. For instance:
    The following may produce double line spacing:
    If there are two or more ways to do something, and one of those
    ways can result in a catastrophe, then someone will do it.
    The following should work correctly:
    If there is a possibility of several things going wrong, the one that will
    cause the most damage will be the first one to go wrong
    Use Shift-Return instead of Return to terminate the end of lines when creating text.
    Use a different browser to perform cut and paste operations, such as Apple Safari or Google Chrome.
    2
    Paste some text code into the forum editor window. Select the code and choose Syntax Highlighting:Plain from the editor toolbar (>>). Close and re-edit the thread. It is not possible to place the insertion point below the block of code in order to add any additional lines of code or to add any normal text. For instance:
    mknod compress_pipe p
    mknod export_pipe p
    chmod +rw export_pipe compress_pipe
    nohup split -b 8192m < export_pipe &
    nohup gzip < compress_pipe > export_pipe &
    exp system/passwd full=y direct=y consistent=y compress=n \
    buffer=10485760 file=compress_pipe
    It is possible to insert additional code or text below Syntax Highlighting, provided the frame it is not the end, as shown in issue 7.
    Add any line of text at the end of your code before applying Syntax Highlighting to the lines above.
    Adding code within the frame of Syntax Highlighting works in Safari and Google Chrome.
    3
    Re-edit a post with Syntax Highlighting. It is not possible to properly select any lines of code. An additional empty code line is added and the focus is shifted. The selection mask does not match the actual text. It is pretty much impossible to re-edit Syntax Highlighting.
    Screenshot: http://img24.imageshack.us/img24/6121/viun.jpg
    Use Safari or Google Chrome when to re-edit text or code under Syntax Highlighting.
    4
    Every subsequent edit of a post with Syntax Highlighting adds an empty blank line to the code block with an incremented line number. The resulting empty lines (07, 08) shown in the screenshot cannot be selected or removed unless there is text below the code frame as shown in issue 7. Screenshot: http://img809.imageshack.us/img809/5514/cxkd.jpg
    Removing of empty lines woks in Safari and Google Chrome.
    5
    When browsing code with Syntax Highlighting, it is not possible to select the code without the line numbers. Screenshot: http://img835.imageshack.us/img835/6626/j7n7.jpg
    Select and copy each line separately. Or use Firefox or Google Chrome, but note issue in Remark 5.
    6
    When editing, it is possible to copy and paste lines under Syntax Highlighting when selecting the lines, but not when selecting the complete Syntax Highlighting frame.
    Carefully select text without the Syntax Highlighting frame boundaries.
    7
    Empty lines and white space (identation) in Syntax Highlighting are suppressed when browsing, although they exist in the actual post. For instance:
    mknod compress_pipe p
       mknod export_pipe p
    Screenshot when editing the above code:
    http://img401.imageshack.us/img401/673/kmy4.jpg
    8
    Syntax Highlighting changes the font to Arial and it is not possible to apply something more suitable for the displaying of code, such as fixed-width Courier New.
    mknod compress_pipe p
    Arial: 1l0OI
    Courier New: 1l0OI
    Arial: 1l0OI
    Courier New: 1l0OI
    9
    It is not possible to paste any text into the editor window.
    Use a different web browser or downgrade to IE 10.
    Or enable F12 Developer Tools from the Tools menu. Press Ctrl-8
    Change the default document mode from Edge to IE 10. Select Leave this page.
    10
    Create a new thread and type several lines of text. Then select select several lines of text and choose a font, e.g. Courier New. Not all selected lines are changed and only a couple of lines remain highlighted. For instance:
    It is difficult to prove the existence of aliens.
    Photos exist with aliens, but they could be fake.
    On the other hand, photos without aliens could be fake too.
    11
    Select a line of text and change the font to Courier New. Then select the line again and it will show Arial. Change the font to Courier New and the text will change back to Arial.
    12
    Copy a URL and paste it into the editor window. The URL will be shown as a hyperlink using blue text. It is not possible to continue with normal writing without changing the text of the link. The text insertion point is captured inside the text of the link when trying to click below the link.
    After pasting the URL, use the arrow key or mouse to move the cursor to the end of the link, then press RETURN and start writing normally. You can than move the cursor to the beginning of the line and use BACKSPACE to move the text up, after the link.
    13
    When replying to a thread and pressing the Quote Previous Message button and then clicking inside the quoted text, for instance, to remove some of the content, it is sometimes no longer possible to move the text insertion point outside of the quoted text back to the normal editing area.
    When this happens it helps to switch to HTML and then switch back to the Full Editor.
    14
    While writing normal text in the editor, it sometimes becomes impossible to edit a line of text. When clicking on any text to move the text insertion point, it selects the complete paragraph instead. http://imagizer.imageshack.us/v2/800x600q90/585/d0v5.jpg. When pressing the "Post Message" button, a dialog appears to "Stay" or "Leave" the page.
    Apparently the editor adds HTML label tags for no apparent reason, which can be seen when switching the editor to HTML mode. http://imagizer.imageshack.us/v2/800x600q90/199/1r5a.jpg
    15
    Copy some text into the editor window. Select the text and choose Syntax Highlighting form the >> insert toolbar. Undo using Ctrl-z. It is no longer possible to use any of the >> insert functions. After that it is also not possible to post the message, resulting in an unexpected error and the content is lost.
    16
    Syntax Highlighting shows several <span> at the beginning and end of the Syntax Highlighting block after posting. This affects old and new posts.
    17
    When changing the width of a table column, entering the 2nd number gets punched into the cell content instead.
    After entering the first number, click in the entry field again to enter the 2nd number.
    18
    19
    Automatic insertion of links to support.oracle.com contains more info, including responses from Oracle staff.
    20
    Change the width of browser window until the editor toolbar appears. It will then stay on top when scrolling through pages.
    21
    Select Syntax Highlighting, Plain from the >> insert menu, then copy and past several lines of text (code) into it. Or, copy and paste the text, then mark the text with the mouse and select SH from the insert menu. Many times, the insertion point is not reflecting it's actual position when you click inside the text. Very often it is also not possible to position the insertion point to the end or beginning of a line using the left and right arrow keys; the insertion point jumps to the next line, even though the end of the line has not been reached.
    For instance:
    The text insertion point [|] is showing up between the words "point" and "is", but when pressing the delete key or entering text, it affects a different area.
    22
    The following is a picture with text and Syntax Highlighting.
    In tables, pressing the delete key will remove or rearrange the hover-up window.
    23
    The original or initial post of a thread is shown with a grey background when browsing. Depending on the web browser application, this background is also copied when doing a copy and paste of the text, provided the target window supports rich text editing.
    Change the target editor window to plain text.
    24
    After resizing a pasted image to the same size than the original, the quality is much worse. The following shows a screenshot of the original and copied image:
    When resizing a picture by moving the image end-points, the editor does no longer show the current picture dimensions (pixel x pixel) as it did in Jive 5. Also when copying a picture between documents, the picture is enlarged and requires resizing.
    25
    Copy and paste content from /etc/oratab, for example:
    The same also happens when pasting the text into a Syntax Highlighting field.
    It is often necessary to use undo (ctrl-z, cmd-z) to get rid of the mess.
    26
    Please see below screenshot:
    27
    Message was edited by: Dude!

    moniquevdb_oracle wrote:
    Holy.... wow, this is helpful, thank you so much for kicking this off, Dude!
    BluShadow I know you are in favor of reenabling code formatting and ditching the Syntax Highlighter altogether. I've also heard that users would prefer the advanced editor to open by default. Anything else on the wishlist?
    correction, I would certainly be in favour (favor to you ) of reenabling code tags, mainly because I work quicker by copy/paste and by keyboard than by having to click through a load of buttons (that currently don't do what they should).  I've not said that syntax highlighting should be ditched altogether, and I'd certainly be in favour of it being there, just so long as it provided a decent formatting that was appropriate, so code actually looked like code, and the ability for people to copy/paste the code out of the forum to their own environment wasn't corrupted with double line spacing (as dude has already mentioned) and the addition of the line numbers it puts in (the line numbers are useful for reference on the forum, e.g. when we want to say "you're problem is on line X", but not good when you copy/paste code out to your environment and have to spend ages deleting them all to get the code to do anything).  If it's too difficult, then removing the line numbers from the code formatting would be preferable to having them there and not being able to copy the code out without them.
    I agree with dude that it would be good to be able to highlight portions of code with bold or colours, which the old forum didn't allow, but this one does, so it's really a combination of old and new that's needed.  And as dude highlights, the supressing of blank lines is a pain as it can make the posting of multiple code commands become all compressed and difficult to read, and is not representative of what we have in our interfaces such as SQL*Plus etc.
    Basic example:
    Copy paste from my SQL*Plus window into the forum (and me applying courier new and quoting it)...
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE                    SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980 00:00:00        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981 00:00:00       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981 00:00:00       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981 00:00:00       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981 00:00:00       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981 00:00:00       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981 00:00:00       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987 00:00:00       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981 00:00:00       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981 00:00:00       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987 00:00:00       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-1981 00:00:00        950                    30
          7902 FORD       ANALYST         7566 03-DEC-1981 00:00:00       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-1982 00:00:00       1300                    10
    14 rows selected.
    SQL> select * from dept;
        DEPTNO DNAME          LOC
            10 ACCOUNTING     NEW YORK
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
            40 OPERATIONS     BOSTON
    SQL>
    but in my SQL*Plus window it looks like.
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE                    SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980 00:00:00        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981 00:00:00       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981 00:00:00       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981 00:00:00       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981 00:00:00       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981 00:00:00       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981 00:00:00       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987 00:00:00       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981 00:00:00       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981 00:00:00       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987 00:00:00       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-1981 00:00:00        950                    30
          7902 FORD       ANALYST         7566 03-DEC-1981 00:00:00       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-1982 00:00:00       1300                    10
    14 rows selected.
    SQL> select * from dept;
        DEPTNO DNAME          LOC
            10 ACCOUNTING     NEW YORK
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
            40 OPERATIONS     BOSTON
    SQL>
    Obviously that's a basic example; in reality we can be providing a solution to someone, explaining multiple steps and commands to demonstrate their issue and the solution, and having to go back through the code once we've pasted it adding back in all the line spacings, is a real pain and time consuming.
    Certainly, having the advanced editor options available immediately for replying would be better than having to switch to it manually, especially as most people using these forums are going to want to paste code in (what with it being a technical forum and not really a social forum), and the basic editor just doesn't allow for any suitable code formatting (unless the person is mad enough to switch to HTML mode).

Maybe you are looking for

  • How do I Manually remove CD when iMac won't boot?

    Last night I downloaded several updates. Suddenly my Intel iMac 20 no longer boots up past the grey screen of death. A CD is stuck in the drive so I can't use my Install disk. None of the key commands on boot up work so I can't eject. Tech support ha

  • Select option in global class

    Hi, I want to add one data dictionary field as select option in a global class. I am trying to declare as table type. But i missed out something and it is not working. Could anybody help me out in this. Regards, Krishna.

  • Where can I obtain the Mac os9, I live outside the USA now?

    The powerbook g3 operating system is not available at stores in the locality and I need to know where I can obtain it from, such as free downloads ? Please advise.

  • Errors loading XMLParser

    I am getting the following errors when running the script oraclexmlsqlload.csh on an HP-UX 11.0 system running oracle 8i. loading : xmlparser_2.0.0.1.0_beta creating : xmlparser_2.0.0.1.0_beta Error while creating resource xmlparser_2.0.0.1.0_beta OR

  • One iTune Library - Multiple Computers - Playlists?

    I am running a couple of Windows PC from the same iTune library stored on a network drive. There's no need to use "sharing" in this situation since all computers access the same library. So far so good. My problem is that I cannot see the Playlists f