Cannot import color schemes with kate 14.12.1

Could someone please confirm that with the newer version of kate it's impossible to import color schemes (.kateschema files)?
To import a scheme the standard procedure is:
Settings -> configure kate -> fonts & colors -> import...
However, when I check the directory where my schemes reside kate does not see the files. I checked bko but I have not found any bug about this issue.
Last edited by Wu (2015-01-24 21:12:23)

firewalker wrote:
I guess you are referring to kate 14.12. I can confirm it.
Also the open file dialog isn't the dolphin one. Also you can;t choose the encoding when saving a file. Can you confirm it too?
confirmed.
arojas wrote:Works for me.
I tried with the same scheme you linked and it didn't work... I copy/pasted the text into kate and saved it as nightsky.kateschema, then tried to import it but it did not work. Did you do something different or (just asking) are you running the git version of kate or some other component?

Similar Messages

  • Import color schemes to Excel 2010

    Hi, Everyone 
    I really need your help for Excel 2010.
    For excel 2003, when I import color scheme from another excel: on the menu bar>tools>options>color
    tab in the "copy color from" box, click the down arrow and select the workbook which contains the color schemes
    Then I can find and use the color imported.
    For 2010, Click the Microsoft Office Button, and then click Excel Options. Click on Save.
    Under 'Preserve Visual Appearance of the workbook'
    Click on Colors
    Click on 'dropdown box' of Copy Colors from and select the file I want to copy the colors from and click OK.
    Click OK to close the Excel Options dialog box.
    In Excel 2010, I cann't find the color imported in the color palette, nor use it of cause.
    If you have any idea, please don't hesitate put your answers, I really need the solution for it. Thanks in advanced
    Jun
    Jun LOU

    Hi,
    I tried the following and it worked!
    To copy your existing colour palette to a document or template in Excel 2010:
    <dir>
    Open the file (containing the existing colour palette to copy) with version Excel 2010
    Go to tab "Page Layout"
    Click on the Icon "Themes" (Themes menu)
    Go to the bottom page and click "Save current Theme..."
    Give a name with extension *.thmx (e.g. "mycolours.thmx")
    The theme will be available to use and copy in other existing Excel documents repeating the actions described.
    For new documents the recommendation is to create a workbook or a template.
    </dir>

  • Can't import XML schema with ref to external namespace

    In TopLink 10.1.3 Dev Preview 3 (build 041116), I have 2 simple schema files. One defines an element as a ref to an element in the other schema, so the ref points to an element in an external namespace. TopLink won't import this schema.
    First schema, imports fine:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema
       xmlns:xs="http://www.w3.org/2001/XMLSchema"
       targetNamespace="http://www.oracle.com/employee"
       xmlns="http://www.oracle.com/employee"
       elementFormDefault="qualified"
       attributeFormDefault="unqualified">
         <xs:element name="employee">
           <xs:complexType>
             <xs:sequence>
                    <xs:element name="name" type="xs:string"/>
             </xs:sequence>
           </xs:complexType>
         </xs:element>
    </xs:schema>
    Second schema, fails import with "ERROR: null. Please check to ensure the document conforms to the XML Schema specification and try again":
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema
       xmlns:xs="http://www.w3.org/2001/XMLSchema"
       targetNamespace="http://www.oracle.com/department"
       xmlns="http://www.oracle.com/department"
       xmlns:employee="http://www.oracle.com/employee"
       elementFormDefault="qualified"
       attributeFormDefault="unqualified">
       <xs:import
         namespace="http://www.oracle.com/employee"
             schemaLocation="employee.xsd"/>
       <xs:element name="department">
         <xs:complexType>
           <xs:sequence>
             <xs:element ref="employee:employee"         maxOccurs="unbounded"/>
           </xs:sequence>
         </xs:complexType>
       </xs:element>
    </xs:schema>
    Both schemas are valid according to the W3C schema validation checker at http://www.w3.org/2001/03/webdata/xsv.
    I can work around the issue by putting the employee definitions into the department schema file so that all elements are in the same namespace. But I would like the schemas to be in separate files for better modularity and maintainability.
    Am I doing something wrong? I would really like to be able to use references to external namespaces in my element definitions.
    Thanks,
    Dave

    Hello David,
    Apologies, but this is a bug in DP3 with respect to references to elements in imported namespaces. This has been fixed in current code, but until you get that, there are a couple ways to work around it:
    ==========================================================
    1) Use an include rather than an import.
    department.xsd
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema
        targetNamespace="http://www.oracle.com/department"
        xmlns="http://www.oracle.com/department"
        xmlns:xs="http://www.w3.org/2001/XMLSchema"
        elementFormDefault="qualified"
        attributeFormDefault="unqualified">
       <xs:include schemaLocation="employee.xsd"/>
       <xs:element name="department">
          <xs:complexType>
             <xs:sequence>
                <xs:element ref="employee" maxOccurs="unbounded"/>
             </xs:sequence>
          </xs:complexType>
       </xs:element>
    </xs:schema>employee.xsd
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema
        xmlns:xs="http://www.w3.org/2001/XMLSchema"
        targetNamespace="http://www.oracle.com/department"
        xmlns="http://www.oracle.com/department"
        elementFormDefault="qualified"
        attributeFormDefault="unqualified">
       <xs:element name="employee">
          <xs:complexType>
             <xs:sequence>
                <xs:element name="name" type="xs:string"/>
             </xs:sequence>
          </xs:complexType>
       </xs:element>
    </xs:schema>You should only have to import the parent schema (i.e. department.xsd), as the included document will automatically be built in. Note that this works for imports as well, provided that there aren't nasty bugs blocking the process.
    ==========================================================
    2. Build everything into the same document
    department.xsd
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema
        targetNamespace="http://www.oracle.com/department"
        xmlns="http://www.oracle.com/department"
        xmlns:xs="http://www.w3.org/2001/XMLSchema"
        elementFormDefault="qualified"
        attributeFormDefault="unqualified">
       <xs:element name="department">
          <xs:complexType>
             <xs:sequence>
                <xs:element ref="employee" maxOccurs="unbounded"/>
             </xs:sequence>
          </xs:complexType>
       </xs:element>
       <xs:element name="employee">
          <xs:complexType>
             <xs:sequence>
                <xs:element name="name" type="xs:string"/>
             </xs:sequence>
          </xs:complexType>
       </xs:element>
    </xs:schema>Obviously, this one won't work quite as well in some cases.
    ==========================================================
    Until you can get to the latest code, I hope this helps some.
    - Paul

  • Cannot import .MOV files with Premiere Elements 12: generic error. Using Windows 8.1 (64b)

    This question was already on the forum for older version of Premiere and Windows. I'm making my videos (.MOV format) with the digital camera Casio EX-ZR400.
    I have no any problems with Photoshop Elements 12 for pictures produced by this camera.

    Dngineer
    What is the source of your .mov file..(brand/model/settings of the camera that recorded the video)......what is the video and audio compression and frame rate?
    Are you working with the 12.1 Update of 12? If not, please do so using an opened project's Help Menu/Update. Both QuickTime and Premiere Elements need to be run from a User Account with Administrative Privileges. Are you doing that?
    Narrowing things down
    Are all files with the .mov file extensions the only video files that you cannot import into the program? Any exceptions?
    When you open Premiere Elements 12/12.1 to the Expert workspace and go to Publish+Share/Computer/QuickTime, does that choice have its presets?
    Let us start here and decide what next based on your reply.
    Thank you.
    ATR

  • CANNOT IMPORT TO X WITH MY PANASONIC AG DVC 200. ANY HELP OUT THERE? THANKS!

    I cannot import to X from my Panasonic ag dvc 200. Is there ar fix for this?

    On the new install with a default Logic Project, kernal_task (activity monitor) shows 600% CPU usage when ideling (no audio or midi playing.
    Logic using 600% or total CPU at 600%?
    If it's total CPU usage and not Logic itself.. check for a runaway mdworker routine... caused by a spotlight bug thats been longstanding and never totally fixed... Resolve by stopping the MDworker routine and then exclude all drives from spotlight.. and add back in just the system drive. Wait a couple of hours for spotlight to properly reindex the system drive and then test with Logic to see if CPU usage drops down to normal levels...
    If it's Logic that is using 600% then something very weird is going on that is specific to your system or install as that simply isn't normal behaviour even with using just the internal hardware and CoreAudio.

  • Exporting and Importing the schema with AQ capability

    Hi,
    We have a production DB which is using Advance queuing and this whole queuing is working fine in Prod but now we have a problem in test Env and it seems that somebody has already tampered the test DB. (the queue reads and sends the messages to DB2)
    So i wanted to export the prod schema and import it to the test schema that we have.
    i wanted to make sure that if i import it to test db , it doesn't send the messages to the prod DB2 database!!
    now it should send the messages to the test DB2 database.
    How can i see where it sends the messages after i imported it ? how can i change it?
    i'm not sure if i have explained my problem in a correct way and if you have understood my question. Please send me messages and i can explain more about it.

    Hi Adhappan
    I have tried importing without success. The import is not consistent. The same schema creates different sets of tables & fields each time. Sometimes if you reimport some more tables which were not set up the first time gets selected for import.
    I did a simple exercise to test the import / export functionality.
    1. I unarchived a repository from standard content provided by SAP
    2. I exported the schema
    3. I tried importing the schema without any modifications to schema
    4. The results were highly inconsistent.
    Arvind
    Pls reward useful answers

  • I cannot import my photos with Preview and iOS 5. Help!

    I've just update my iPhone 4 to iOS5 and now i can't import my pic with Preview on a Macbook Pro (OSX fully updated). Someone knows something or has had the same problem?

    Some kinds of bugs has arrived with the new iOS. Neither can I import my photos to my IPad2 from my Sony digital camera anymore. That was no problem before with ios4. There seems to many "small" problem. Also the AirPlay used with the app "GarageBand" does not work anymore.

  • Cannot import .avi files with 5.1 audio created in Premiere 2.0

    Using Encore 2.0 when I attempt to import an .avi file I exported from Prem1ere 2.0 which was exported with 5.1 audio, I get an error message - "More that two audio channels for this type of encoding is not supported". Does Encore 2.0 not support 5.1 audio?

    The SurCode plugin for Premiere really does represent amazing value for money. Dolby Digital 5.1 is a mandatory format for DVD-Video as well, meaning all players are required to be capable of decoding it. You will also be able to preview the encoded stream in Encore.
    When using DTS, support is optional, which means that a DTS stream cannot be stream 1 in any title.
    Also, support for DTS in Encore is in "passthrough" mode, IE "as is" and will not be audible in preview. Discs will burn true though.

  • Cannot import  and work with the files from Canon 6D and Panasonic GH4

    Thanks for your answer, but it is not really helpful. Perhaps my question was not exactly enough-sorry but my english is not in the best condition. I dont need trials I have some applications and my Intel MAC Pro 2009 is strong enough. For instance Phase One can read my RAW-pictures from my Canon 6D, but no RAW-file from the GH4. Finalcut Pro Vers 7.0.3 no chance to open Movies made with the GH4 and the AVCHD-codec, though the AVCHD-codecs from my old Canon Videocamera works perfect. Even movies with Mpg 4 H 264 are not recognized.  Perhaps I need a special Converter App, for all my Converter Apps like Mpeg streamclip or Flip for MAC cannot read and convert the these files into RS 422.

    Will the DNG files perform the same, meaning will I retain all the information that makes RAW important for processing?
    Yes. That's why DNGs were invented. Adobe has put a lot of work into the DNG format for this very reason.
    Raw files are proprietary and manufacturer specific. Raw formats change with every make and model of camera. Software must be updated for the new Raw format of every single camera. Adobe does an admirable job of upgrading Camera Raw for every new camera.
    DNG is also a Raw format but it's open source and works in any software which can read the DNG format. If camera manufacturers used the DNG format instead of their own Raw format, you would not have to upgrade Elements 10. But they don't, and probably never will, so you must upgrade the Camera Raw plugin (and therefore Elements 10 since it's not compatible with the new Camera Raw) to read the new Raw format from the 6D or add another step to your workflow with conversion to DNG first.
    See
    http://photographylife.com/dng-vs-raw
    http://www.adobe.com/products/photoshop/extend.displayTab2.html

  • Import/export schema with ODI

    Hi all,
    do you know if with ODI11g I can import a full schema from Oracle database to another Oracle database?
    Thanks
    Erika

    why don't use imp/exp command to export schema from source db and import into target db.
    1) export11g ODI repository schemas in DMP files
    example : my 11g schemas are "ODI_MASTER" and "ODI_WORK"
    exp userid=odi_master/*odi_master* file=c:\odi_master.dmp
    exp userid=odi_work/*odi_work* file c:\odi_work.dmp
    2) import the dump file into new schemas in the new database (or is it the same database ? in my case, it was a different one)
    imp userid=SYSTEM/password touser=odi_master fromuser=odi_master file=c:\odi_master.dmp
    imp userid= SYSTEM/password touser=odi_work fromuser=odi_work file=c:\odi_work.dmp
    --nayan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Cannot Import Video made with iMovie for iPhone/iPod Touch

    I edited a video on my iPod touch using Apple's iMovie. The resulting .MOV file that iMovie creates will not import into iPhoto '11. While iMovie recognises the file just fine, iPhoto believes it is an unsupported file type. It's a .MOV for goodness sakes created with Apple's own hardware and program! Very strange. Just wondering if anyone else has had a similar experience.

    Hey there. In answer to your question, all other clips that appear in my camera roll are easily seen by iPhoto. It is only those movies that I have created with iMovie for iPhone that iPhoto does not recognize. It's really strange, considering the fact that it's just a .MOV file. As a result, I've had to download a program called 'DiskAid' that allows me to transfer the .MOV file directly to my computer from the iPod Touch.
    In answer to your question regarding whether or not iMovie for iPhone was worth downloading, I would have to say yes (assuming of course the import-to-iPhoto problem gets fixed). It's not a perfect program. My biggest complaint is that you have to import clips ONE at a time. There's no 'import all' option. This is really time consuming as you have to cycle through all the videos on your iPod or iPhone and manually tap each one and repeat. My dad likes to take a lot of 1-minute videos that then have to get spliced together and that can be really tedious with how this iMovie is currently set up. However, if you regularly think to add your clips to an existing project as you go along, things should be fine. It could do with a few more features and faster rendering times, but on the whole, it's a decent program. I have a feeling, though, that it was designed more for the YouTube generation who want to upload a five-minute video instead of people like my father and I who like to edit an hour or so and then eventually burn to a DVD. iMovie for the Mac still CERTAINLY has it's place.

  • Cannot Import BP BankAccounts with DTW 2007

    Hello All
    I try to insert with DTW 2007 (on a SAP 2007 database) some BP banks account.
    My Structure is like in SBO 2005.
    I get : Invalid Code [OCRB.BankCode]
    I d'ont understand because the bank Code exist in the Bank Table.
    I Try to set the internal key of the bank or even a bank account name but nothing change...
    There is my structure
    RecordKey     LineNum     BankCode     Branch     AccountNo     AccountName     ControlKey     Country     InternalKey
    1                         1        a bank code    a bank branch an account   a name                a ctrl key       FR         1
    Without the BPaccount CSV file, the DTW process work fine....
    Thanks a lot for answers
    Julien

    Dear
    The linenum might be wrong, please change to 0 for a try.
    Best Regards,
    Xiaodan AN

  • Import Schema with tables resized

    I've created a new database and would like to import a schema from another database. I want everything from the schema I'm importing however I want to resize the tables.
    I was wondering what would be the best way to handle this. I can create the tables first with the new specs and then import the schema with the "ignore=yes" option. I'm not sure however if this will cause errors. Any suggestions?
    Thanks.

    Hi,
    If you exported data with "compress=y" option (which is the default) tables would be automatically reorganized (import create one extent = total actual size).
    Anyway, if you need a different size for your tables, the procedure you posted is correct.
    Paolo

  • Motif L&F: support for color schemes?

    I want to use the Motif L&F in my Java application, but I want the color scheme to be chosen as per the users installed Color theme(using the CDE Style Manager).
    Having a default bluish grey UI does not blend well with my 'Desert' or 'Delphinium' color theme... how can I achieve this in my java app with minimal code?
    Thanks

    Doesnt look like Sun provided support for Themes in
    Motif L&F...
    I tried the SwingSet demo on Solaris, and when Motif
    L&F is chosen, the Theme drop down gets disabled...Got Mantis? The GTK L&F in 1.4.2 supports themes. Otherwise, you might be able to do what you want by subclassing MotifLookAndFeel--just that class, I mean, not the whole L&F. You would actually be creating a new L&F that uses all of the Motif UI delegate classes, but replacing its color scheme with your own. I've never tried it, so it might not be that simple--and if it takes any more effort than that, it's not worth it. Not with the GTK L&F already out there, and the Synth L&F coming in 1.5.
    and, as an aside, the SwingSet font in the 'view
    source' pane is extremely small and unreadable on
    Solaris... looks like sloppy workmanship!
    It's the same on Windows. I believe it's due to a known bug that causes the HTML renderer to make Swing's already-too-small fonts, even smaller.

  • [SOLVED] Vim color scheme

    Hello! This is my first post and I'm new with Archlinux, sorry if this trouble is very simple but I'm a newbie...
    The question... Vim color scheme only works fine when I use sudo or when I'm root...
    I've put the color scheme in /usr/share/vim/vim73/colors and in ~/.vim/colors, and I've configured /etc/vimrc and ~/.vimrc
    I don't know what's wrong...
    Correct color scheme (with sudo):
    Wrong color scheme (normal user):
    Thank you very much!!
    Last edited by Midnith (2012-03-27 11:58:48)

    Hi again!
    Kaustic wrote:
    There's your problem. xterm (as indicated by tput) only supports 8 colours.
    If you're using Konsole, check the configuration and change the session to xterm-256color. Alternatively can set the environment variable within your ~/.bashrc file like so: export TERM=xterm-256color
    It works! Thank you very much and sorry for the inconveniece
    Kaustic wrote:
    (PS: To list all the terminals you can use with 256 colours try the following command: (Iirc there was a cleaner way to do this, but alas)
    ls /usr/share/terminfo/*/* | grep 256
    The output:
    /usr/share/terminfo/E/Eterm-256color
    /usr/share/terminfo/d/darwin-256x96
    /usr/share/terminfo/d/darwin-256x96-m
    /usr/share/terminfo/g/gnome-256color
    /usr/share/terminfo/k/konsole-256color
    /usr/share/terminfo/m/mlterm-256color
    /usr/share/terminfo/m/mrxvt-256color
    /usr/share/terminfo/p/putty-256color
    /usr/share/terminfo/r/rxvt-256color
    /usr/share/terminfo/s/screen-256color
    /usr/share/terminfo/s/screen-256color-bce
    /usr/share/terminfo/s/screen-256color-bce-s
    /usr/share/terminfo/s/screen-256color-s
    /usr/share/terminfo/v/vte-256color
    /usr/share/terminfo/x/xnuppc+256x96
    /usr/share/terminfo/x/xnuppc-256x96
    /usr/share/terminfo/x/xnuppc-256x96-m
    /usr/share/terminfo/x/xterm+256color
    /usr/share/terminfo/x/xterm-256color
    How I put xterm-256color by default?

Maybe you are looking for