CSS in eclipse

Hi,
Can any one tell CSS is in eclipse.If so how to use CSS in eclipse.
thanks

You use a plugin. There are quite a number available!
http://www.google.com/search?q=%2Bcss+%2Beclipse&ie=UTF-8&sa=N&tab=nw

Similar Messages

  • Editing flex CSS in FB on Eclipse

    I have FB3 installed on Eclipse, which has been working
    nicely until I started messing around with skins and CSS. Eclipse
    wants to validate CSS as normal CSS, so it shows an error on every
    line of my flex skin CSS file ('Property xxx doesn't exist'). What
    do I have to change so that all these errors go away? There are
    over 600 of them, and it's making it impossible to find real errors
    in the project that matter.
    Also would be sweet to have some code hinting for flex CSS
    syntax.
    I do a lot of normal html/css work in eclipse, so I don't
    want to break CSS error checking in general. I'm using Aptana for
    PHP/JS/CSS, if that helps... I've tried using other installed CSS
    editors, including the one that installed with Flex, but all same
    results.
    Please help... this is driving me nuts. Thanks in
    advance.

    FB only supports 3.2, just 3.1.1.
    Tracy

  • CSS Editor in Eclipse hijacked/disabled

    Flex sets itself as the default CSS editor in Eclipse, whihc
    is fine.. except that I prefer the WST CSS editor that is installed
    with the WST toolkit that you can get from Eclipse.org.
    So.. going to "Preferences>General>Editors>File
    Associations" I can set the default CSS editor back to the WST CSS
    editor, and even delete the Flex CSS editor - but doing that just
    gives me "plain text" css files (black font, no code completion,
    Outline View etc).
    But - if I go into "Help>Manage Configuration" and DISABLE
    Flex - I get my CSS editor back!
    SO - does anyone know how I can have Flex ENABELD *and* have
    my referred CSS editor..?
    Cheers,
    Sean

    zydecode wrote:
    > Flex sets itself as the default CSS editor in Eclipse,
    whihc is fine.. except
    > that I prefer the WST CSS editor that is installed with
    the WST toolkit that
    > you can get from Eclipse.org.
    >
    > So.. going to "Preferences>General>Editors>File
    Associations" I can set the
    > default CSS editor back to the WST CSS editor, and even
    delete the Flex CSS
    > editor - but doing that just gives me "plain text" css
    files (black font, no
    > code completion, Outline View etc).
    >
    > But - if I go into "Help>Manage Configuration" and
    DISABLE Flex - I get my CSS
    > editor back!
    >
    > SO - does anyone know how I can have Flex ENABELD *and*
    have my referred CSS
    > editor..?
    I don't know if this is the problem, but Eclipse remembers
    the last
    editor used to open a file. So, if you have a file called
    foo.css and
    open it with the Flex CSS editor, that file will open with
    the Flex CSS
    editor the next time you open it even if you have changed the
    file
    association for .css files. But files that you haven't opened
    before
    should open with the editor specified by the fila
    associations.
    Here's something to try: Right-click on your CSS file and
    choose the WST
    editor from the "Open With" submenu. That file should then
    open with the
    WST editor on subsequent openings.
    -- Greg Dow
    -- Adobe Flex Builder Team

  • Import CSS file locks up Eclipse

    Hi;
    I was following the JSF Tutorial and it got to the point where I am supposed to drag Import CSS File from the tag libraries window to the design window for register.jsp.
    So I pressed the LMB down, dragged and got the O with a slash through it cursor. No matter where I drag the cursor it has the O. I released the LMB and still the O. I can't do anything in Eclipse - it's totally non-responsive.
    I then hit CTRL-ALT-DEL to bring up the task manager, and then the O goes away and I can edit again in Eclipse. But I have tried 4 times to drag "Import CSS File" and each time it goes to the O and no response until I CTRL-ALT DEL. So needless to say, I'm stuck at this point in the tutorial.
    ??? - thanks - dave

    Hi,
    We are not able to reproduce the issue. Are you still facing the problem exercising "Import CSS file" by drag & drop method?
    If so, send the following to [email protected]
    * register.jsp file
    * workspace - ..eclipse\workspace\.metadata - .log file
    * <NitroX Install Folder>\NitroX\eclipse\plugins\com.m7.nitrox_2.1.0 - m7.log.0 file
    Thanks,
    M7 Support

  • How to use webui ui:upload in eclipse 3.2

    Hi,
    I would like to use file upload using sun products.
    I tried with <ui:upload> but i am not able to render that component.
    my jsf:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://www.sun.com/web/ui" prefix="ui"%>
    <f:view>
    <html>
    <head>
    <title>Portfolio Analyzer</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link rel="stylesheet" type="text/css" href="css/menu.css" />
    <link rel="stylesheet" type="text/css" href="css/stylesheet.css" />
    </head>
            <ui:page id="page1">
                <ui:html id="html1">
                    <ui:body id="body1">
                        <ui:form id="form1">
                            <ui:upload id="fileUpload1" />
                        </ui:form>
                    </ui:body>
                </ui:html>
            </ui:page>
    </html>
    </f:view>my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>
         GPJ</display-name>
         <context-param>
            <param-name>javax.faces.CONFIG_FILES</param-name>
            <param-value>/WEB-INF/faces-config.xml</param-value>
        </context-param>
          <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>server</param-value>
        </context-param>
        <context-param>
            <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
            <param-value>true</param-value>
            <!-- <description>
                This parameter tells MyFaces if javascript code should be allowed in the
                rendered HTML output.
                If javascript is allowed, command_link anchors will have javascript code
                that submits the corresponding form.
                If javascript is not allowed, the state saving info and nested parameters
                will be added as url parameters.
                Default: "true"
            </description>-->
        </context-param>
         <!-- Filter needed for File Upload component  -->
        <filter>
          <filter-name>UploadFilter</filter-name>
          <filter-class>com.sun.rave.web.ui.util.UploadFilter</filter-class>
          <init-param>
            <description>
              The maximum allowed upload size in bytes.  If this is set
              to a negative value, there is no maximum.  The default
              value is 1000000.
            </description>
            <param-name>maxSize</param-name>
            <param-value>1000000</param-value>
          </init-param>
          <init-param>
            <description>
              The size (in bytes) of an uploaded file which, if it is
              exceeded, will cause the file to be written directly to
              disk instead of stored in memory.  Files smaller than or
              equal to this size will be stored in memory.  The default
              value is 4096.
            </description>
            <param-name>sizeThreshold</param-name>
            <param-value>4096</param-value>
          </init-param>
    </filter>
        <filter-mapping>
          <filter-name>UploadFilter</filter-name>
          <servlet-name>Faces Servlet</servlet-name>
        </filter-mapping>
    <!--
    Where this servlet refer to the faces context
    -->
    <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
         <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
         <servlet-name>Faces Servlet</servlet-name>
         <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <!--
    This gives the welcome page as First.jsp
    -->
    <welcome-file-list>
            <welcome-file>faces/addCampaignGroup.jsp</welcome-file>
    </welcome-file-list>
    <!-- Faces Servlet Mapping -->
      <!--<servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
          --><login-config>
      <auth-method>BASIC</auth-method>
    </login-config>
    <!--
    either this servlet or the listener can be given to refer the application context
    -->
    <!--<servlet>
                 <servlet-name>context</servlet-name>
                 <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>      
                <load-on-startup>1</load-on-startup>
    </servlet>
    -->
    <!--
    This listener is to get the first jsp page   
    -->
    <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    </web-app>I think i have some problem with my web.xml
    Could anyone pls help me regarding.
    Thanks,
    Ambika.

    I just tested it at my Eclipse environment. It was set to UTF-8 and the following line was not allowed:
    String &#35430;&#39443; = "&#35430;&#39443;";When I set the encoding to UTF-16, it was accepted. If you still fails in this somehow, consult the eclipse boys, as said before.
    However. In name of reusability I don't recommend to use other languages than English thoroughout the whole Java code. Maybe only in javadocs. But still, English is preferred over all other languages. The core Java API itself is also all in English.

  • Can DVDSP create a CSS enabled Video_TS ready for replication?

    Can I create a copy-protected DVD with a Video_TS folder ready for replication?
    From what I understand, copy-protected DVD's for replication can only be created through the DDP file process. That means that the replicator must apply a "mastering process" to the files before a glass master is created.
    I am being told my a replicator that in the past, they have received discs from clients that are copy protected and ready for replication. Is this possible? Can I burn these type of discs with DVD Studio Pro and a built in burner?
    Ed

    Here is a post from another site that provides more details--basically the answer to my question is no.
    Can I create a copy-protected DVD with a Video_TS folder ready for replication?
    Nope. All CSS encrypted DVD's must be in DDP or CMF format on either hard drive, DLT, or DVD-R (provided as DVD-ROM, not Video_TS).
    The "mastering process" is us (replicators) adding the actual CSS keys to the final image while it is premastering. DVD Studio Pro "flags" the master with CSS. The keys are added in the premastering stage at the replicator before glass is made (unless you use Scenarist, you can add the keys upon output, which doesn't make it playable but the Eclipse software will see the keys are present and we don't have to add them).
    I am being told by my replicator that in the past, they have received discs from clients that are copy protected and ready for replication. Is this possible? Can I burn these type of discs with DVD Studio Pro and a built in burner?
    I would think that this would be the DDP image with the CSS keys included. I dont believe there is any way to output a playable DVD that has CSS to a DVD-R on any authoring system. Even if there was you cannot premaster a DVD-Video with CSS at any replication facility.
    -Luke
    I think that pretty much sums it up.
    Ed

  • Custom stylesheet using Eclipse

    Hi friends,
    I have Developed a project in Eclipse 3.3.2 Created my Theme "TEST". Changed my theme as I need. Then Exported the theme using option " Export to Webdynpro". This created one test.zip and po_ie6.css and ie6.css file.
    Now tell me how to upload these themes to SAP. I already saw some threads but none helped me.
    Let me know the right way of doing this.
    Thanks in Advance

    Closing the thread as no one posted any answer

  • How do I import Eclipse Help project/pages?

    I have an Eclipse Help project with about 100 html topic pages that I created in Eclipse and organized in various folders. However, the editor in Eclipse that I am using is not very advanced and it's quite tedious to manage the help project and cannot easily create other help formats. I want to try RoboHelp 8 as the authoring environment and have it output Eclipse Help (which I hear it can do).
    However, I can't find a way to easily import my existing Eclipse Help pages and folder structure. Is there a way to do this without breaking anything (like images or css) or having to go to each page and do some fixing up?
    Ideally, I would like some kind of two-way transfer so I can share the project with others on my team using Eclipse to edit the topics; but I realize that may be too much to ask for.

    Peter, thank you for your reply.
    I went ahead and re-created the folder structure and imported the topic pages into each folder. This part seems to work fine. However, I have a few issues:
    1) When I double-click on the topic pages they open in Notepad rather than the built-in editor. If I right-click on a topic and choose Edit With Design View, that works, but is quite tedious to do for every page. I also notice that if I make a change to the page in design view and save it, from then on it opens in Design View.
    I see that the files that open in Design View have the following markup added:
    <meta name="generator" content="Adobe RoboHelp 8" />
    Is there a way to have these .html pages always open in Design View by default, at least for this project?
    2) I used the instructions here to create Eclipse Help: http://blogs.adobe.com/techcomm/2009/12/how_to_generate_eclipse_help_from_robohelp.html
    When I bring up the pages in Eclipse, the ones that I edited using the Design View seem OK (so far), however the ones that were imported from original Eclipse Help format now show this error when I try to view them:
    An error occured while processing the requested document:
    org.xml.sax.SAXParseException: Content is not allowed in prolog.
    at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(Unknown Source)
    at org.eclipse.help.internal.dynamic.DocumentReader.read(DocumentReader.java:56)
    at org.eclipse.help.internal.dynamic.XMLProcessor.process(XMLProcessor.java:49)
    at org.eclipse.help.internal.xhtml.DynamicXHTMLProcessor.process(DynamicXHTMLProcessor.java: 66)
    at org.eclipse.help.internal.webapp.servlet.DynamicXHTMLFilter$1.close(DynamicXHTMLFilter.ja va:81)
    at java.io.FilterOutputStream.close(Unknown Source)
    at org.eclipse.help.internal.webapp.servlet.FilterHTMLHeadAndBodyOutputStream.close(FilterHT MLHeadAndBodyOutputStream.java:311)
    Any idea why I am getting this error? I am using the EclipseHelp.jsx that came with RoboHelp 8.0.0.203 (incidentally, the "latest" script file pointed to in the link above actually has an older copyright date so it would not seem that it's the latest). Would solving #1 solve this issue?
    3) I set a default topic for my books, which works fine in Web Help. But when I try to view the book in Eclipse, it displays a Contents list instead of the default topic.
    Any idea how to fix this?
    Thanks in advance,
    Dan

  • CSS WON'T GET COLOR CODED UNLESS THE FILE IS IN A PROJECT?? R U KIDDIN??

    If I open a CSS file outside of a project, there is no color coding! Please tell me this can be changed. I DO NOT WANT CFBUILDER ORGANIZING MY PROJECTS!
    $299 for this? Really - please explain why I should pay $300 for a bloated version of Homesite?  Homesite was GREAT!  You guys frakked up by killing it.  CFB is confusing, the settings especially, nothing does what it states. Spend too much time trying to figure out how to update a simple thing.  Bad when I have to Google when I just want to display line numbers.  Typical Adobe - non-intuitive.

    Stop shouting.  Jesus.
    What you're whining about is the equivalent of my mum (who is a lovely little old lady in her late 70s) buying a new VHS and having a tanty of the buttons not being in "the right place".
    If you struggle so much with a software app having settings in different places that it yields this sort of response - and not even an inital visceral response, but lingering enough for you to put the caps lock on and write it down! - you're in the wrong industry, mate.  We're not talking rocket surgery here.  Or even brain science.
    That's not to say that shifting from something like HS to Eclipse doesn't involve a bit of a mindshift, but it's not the end of the world.  And no-one's making you change text editors either.
    Personally I think CFS was a really good text editor, and I rued moving onto DW (not my choice, I was the guinea pig for a failed experiment at a job I had years ago), and when I moved from DW to Eclipse I spend a few moments going "what's all this project sh!t?".  But then I realised everything I work on actually is a project, and there's no harm in having a little organisation in my work. And the work of the rest of the team.  And whilst I found Eclipse has some quirks I could do without, I also remember CFS had some quirks I could do without (and DW was an app I could simply do without from start it finish), so they're even in that regard.  But I also found that Eclipse's inifintitely customisable platform is a real boon for my development across various languages and productivity tools.  Eclipse really is far far better than CFS when one looks at the bigger picture: the one that is outside the realms of developing just basic websites, by one's self, on a single server (and that's not Adobe's target market with CF & CFB anyway, I think).
    That said:  CFB has a way to go (and is ot worth $300: it's just a Eclipse plug-in after all), but being built on Eclipse is a good start.
    I look fwd to CFB 2.0 to see if it's worth buying...
    Adam

  • CSS images not loading

    ALl when I had my images in the same package as the class. And the following css statements
         -fx-background-image: url("image.png");
    But now I want to package my images and css into a directory structure.
    So when running inside eclipse I have the css and images in bin
    so
    bin/name.css
    bin/images/image.png
    So I change the url to
    -fx-background-image: url("images/image.png");
    It does not load.

    Checked it in my own project (eclipse too), its working for me!
    Is your CSS actually loading?
    Maybe you can provide the code, where you are loading the CSS?
    In your case it should look somethink like that:
    scene.getStylesheets().add("name.css");But I wont suggest to add the images and css directly into the bin folder, because the next "Project clean" will delete your files!
    I would suggest to add another source folder to your Build Path. I have my java source files in "src/main/java" and the resources (images, css, fxml ...) in "src/main/resources"!
    than you can load your css by the following code:
    scene.getStylesheets().add(this.getClass().getResource("/name.css").toExternalForm());Edited by: BurnedToast on 01.02.2012 10:52

  • Flex Builder 2 corrupting Eclipse 3.2.1

    Flex Builder 2 has some issues with Eclipse 3.2.1. I was
    working with the trial version, so maybe the full version does not
    exhibit these same problems, but if that is the case, then it is
    disappointing that adobe is trying to support two separate products
    instead of trying to resolve issues.
    The largest issue with the Flex Builder 2 plugin for eclipse
    is that if you have a flex project in the same workspace as other
    projects (like dynamic Java projects) the flex builder 2 will try
    to incorporate those projects in to the flex project when you do a
    build or a clean only on that specific flex project. As a result,
    eclipse consumes enormous amounts of memory that even with 2 gigs
    allocated to the heap, it runs in to out of memory exceptions
    frequently and the stability of eclipse has degraded significantly
    since I installed this product! The flex projects that I had loaded
    were some of the examples dealing with SpringGraph so I would not
    consider them as being large or complex. When there is a build
    occuring on just a Flex Project, it SHOULD HAVE NO BUSINESS even
    scanning other non-related projects regardless as to if they are in
    the same workspace!!!
    I am not too impressed with flex's interface with eclipse on
    the memory, the instability it introduced to eclipse, or how
    SpringGraph handles large graphs, so I did not pursue getting a
    license for future development. I also felt that the asking price
    for the Flex Builder 2 is steep for what you get and its maturity
    level. As such, when the license expired, Adobe had the nerve to
    disable core functionality within Eclipse!!! For example, it would
    not allow a CSS document to be opened in the CSS Editor! It
    Hijacked the basic Eclipse functionality!!!
    I am very disappointed in how the Flex Builder 2 plugin for
    Eclipse does not play friendly!
    But at least it does allow itself to be disabled. I am
    grateful for at least that level of accepted behavior.

    Cluebcke, thanks for the reply!
    I am using a compaq nx7010 laptop with 2 gigs ram, 60 gig hd,
    eclipse is set to utilize a minimum of 512 megs and a maximum of
    1540 megs for the heap space. Virtual memory is set to a max of
    4092 megs. Fairly generous I would assume. I doubt it was a
    configuration issue, but hey, I’m open to learning and the
    best lessons are through mistakes! ;-)
    Sorry, I was being a bit sarcastic when I mentioned that
    perhaps the issues were related to the free trial version knowingly
    perfectly well that in fact there is no difference between the two
    products. But I guess I was also conceding a possible out for Flex
    too. Hmm...
    To clarify my comment about aggressively compiling against
    other projects:
    1) I had about 4 demos loaded in to a workspace (269 files,
    82 folders, and 7.2 megs including my 1 test project as mentioned
    in item 4)
    2) I had about 7 large Java projects loaded in to the same
    workspace
    3) Total workspace size was about 22,000+ files and 1600+
    megs, give or take a fair number either way.
    4) I was making changes to a simple flex project based upon
    a SpringGraph demo
    5) I choose to manually build only the small flex project I
    was working on so as to replace all the generated files. NOTE:
    Might have been a clean, but only on that one flex project and NOT
    the whole work space. It takes too long to rebuild all of my other
    Java projects so that option has been unchecked for quite a while.
    6) What I saw in the Eclipse progress window was a list of
    files within my flex project getting reconstructed, and then it
    started to scan through the other projects too. All of their names
    and resources were flashed within that window.
    7) When finished with the build of the ONE flex project, the
    Java heap was basically gone. Starting a TomCat server would cause
    an out of memory exception. Recall I have allocated 1.5 gigs for
    the heap.
    8) Checking the other Java projects and Flex projects, the
    timestamps on the objects did not reflect that they were just
    rebuilt. They were untouched. Proof that I did not perform a build
    or a clean over the whole workspace.
    I agree with you whole heartedly that unless I explicitly
    select “build all” or “clean all” it should
    not touch other projects in anyway. But it did.
    As far as the issue with the CSS editor, I understand and
    accept your point. Perhaps as a friendly suggestion, when the trial
    expires, the plugin should uninstall itself. This may be very
    doable, and still have the functionality of a reminder and
    reactivation upon registration if Flex Builder actually had a
    second plugin called something like "FlexBuilder Registration"
    which would "intercept" attempts to edit and utilize the
    FlexBuilder only functionality so an informative message could be
    displayed. The benefit would be that normal functionality for
    non-flex resources such as CSS would return to normal.
    Anyway, as I stated before, I was not too impressed with
    performance of large graphs. What I consider to be large would be
    on the magnitude of 20,000 to 100,000+. It would need to display
    just about all nodes, or at lease an abstract relationship of those
    nodes rolled up to a higher level. I realize that SpringGraph is
    not ideal for those situations to begin with, but I was exploring
    the idea of writing other plugins to deal with other graphing
    formats.
    I guess to be fair to Flex in general, I should probably ask
    a general question of how well does Flex deal with large data sets
    that need to be resident and the manipulations of those data sets?
    Thanks for your time,
    Scott Tabar

  • Flex Builder 2 errors on Eclipse 3.2

    Whenever you start Eclipse 3.2, five errors and two warnings
    occur, apparently caused by Flex Builder 2. To see them, follow the
    Eclipse menu
    Window =>
    Show View =>
    Other =>
    PDE Runtime =>
    Error Log. Here is a summary of the logs.
    You get the following errors whenever you start Eclipse 3.2:
    eclipse.buildId=M20060921-0945
    java.version=1.5.0_09
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86
    plugin: org.eclipse.core.filebuffers
    Error
    Sat Dec 09 08:39:04 CET 2006
    The content type with id
    "com.adobe.flexbuilder.project.content-type.actionscript" specified
    in the extension point does not exist.
    plugin: org.eclipse.core.filebuffers
    Error
    Sat Dec 09 08:39:04 CET 2006
    The content type with id
    "com.adobe.flexbuilder.project.content-type.css" specified in the
    extension point does not exist.
    plugin: org.eclipse.core.filebuffers
    Error
    Sat Dec 09 08:39:04 CET 2006
    The content type with id
    "com.adobe.flexbuilder.project.content-type.mxml" specified in the
    extension point does not exist.
    plugin: org.eclipse.ui
    Error
    Sat Dec 09 08:39:04 CET 2006
    Internal plug-in action delegate error on creation.
    java.lang.NullPointerException
    at
    org.cfeclipse.cfml.editors.actions.EditTagAction.setActiveEditor(EditTagAction.java:112)
    at
    org.eclipse.ui.internal.EditorPluginAction.initDelegate(EditorPluginAction.java:56)
    at
    org.eclipse.ui.internal.PluginAction.createDelegate(PluginAction.java:123)
    at
    org.eclipse.ui.internal.PluginAction.selectionChanged(PluginAction.java:278)
    at
    org.eclipse.ui.internal.PluginAction.<init>(PluginAction.java:110)
    at
    org.eclipse.ui.internal.PartPluginAction.<init>(PartPluginAction.java:29)
    at
    org.eclipse.ui.internal.EditorPluginAction.<init>(EditorPluginAction.java:32)
    at
    org.eclipse.ui.internal.ActionDescriptor.createAction(ActionDescriptor.java:256)
    at
    org.eclipse.ui.internal.ActionDescriptor.<init>(ActionDescriptor.java:170)
    at
    org.eclipse.ui.internal.ActionDescriptor.<init>(ActionDescriptor.java:100)
    at
    org.eclipse.ui.internal.EditorActionBuilder.createActionDescriptor(EditorActionBuilder.ja va:41)
    at
    org.eclipse.ui.internal.PluginActionBuilder.readElement(PluginActionBuilder.java:158)
    at
    org.eclipse.ui.internal.registry.RegistryReader.readElements(RegistryReader.java:138)
    at
    org.eclipse.ui.internal.registry.RegistryReader.readElementChildren(RegistryReader.java:1 27)
    at
    org.eclipse.ui.internal.PluginActionBuilder.readElement(PluginActionBuilder.java:141)
    at
    org.eclipse.ui.internal.registry.RegistryReader.readElements(RegistryReader.java:138)
    at
    org.eclipse.ui.internal.registry.RegistryReader.readExtension(RegistryReader.java:149)
    at
    org.eclipse.ui.internal.registry.RegistryReader.readRegistry(RegistryReader.java:170)
    at
    org.eclipse.ui.internal.PluginActionBuilder.readContributions(PluginActionBuilder.java:11 2)
    at
    org.eclipse.ui.internal.EditorActionBuilder.readActionExtensions(EditorActionBuilder.java :58)
    at
    org.eclipse.ui.internal.EditorManager.createEditorActionBars(EditorManager.java:318)
    at
    org.eclipse.ui.internal.EditorManager.createSite(EditorManager.java:832)
    at
    org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:583)
    at
    org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:372)
    at
    org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:566)
    at
    org.eclipse.ui.internal.EditorAreaHelper.setVisibleEditor(EditorAreaHelper.java:263)
    at
    org.eclipse.ui.internal.EditorManager.setVisibleEditor(EditorManager.java:1446)
    at
    org.eclipse.ui.internal.EditorManager$5.run(EditorManager.java:1006)
    at
    org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.runtime.Platform.run(Platform.java:843)
    at
    org.eclipse.ui.internal.EditorManager.restoreState(EditorManager.java:1001)
    at
    org.eclipse.ui.internal.WorkbenchPage.restoreState(WorkbenchPage.java:2843)
    at
    org.eclipse.ui.internal.WorkbenchWindow.restoreState(WorkbenchWindow.java:1936)
    at
    org.eclipse.ui.internal.Workbench.doRestoreState(Workbench.java:2857)
    at
    org.eclipse.ui.internal.Workbench.access$14(Workbench.java:2805)
    at
    org.eclipse.ui.internal.Workbench$19.run(Workbench.java:1681)
    at
    org.eclipse.ui.internal.Workbench.runStartupWithProgress(Workbench.java:1421)
    at
    org.eclipse.ui.internal.Workbench.restoreState(Workbench.java:1679)
    at
    org.eclipse.ui.internal.Workbench.access$12(Workbench.java:1650)
    at
    org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1529)
    at
    org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at
    org.eclipse.ui.internal.Workbench.restoreState(Workbench.java:1473)
    at
    org.eclipse.ui.internal.WorkbenchConfigurer.restoreState(WorkbenchConfigurer.java:183)
    at
    org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:702)
    at
    org.eclipse.ui.internal.Workbench.init(Workbench.java:1085)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1847)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at
    org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95)
    at
    org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:92)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:68)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
    Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
    Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at
    org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
    at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
    at org.eclipse.core.launcher.Main.run(Main.java:977)
    at org.eclipse.core.launcher.Main.main(Main.java:952)
    plugin: org.eclipse.ui
    Error
    Sat Dec 09 08:39:04 CET 2006
    Could not create action delegate for id:
    org.cfeclipse.cfml.editors.actions.EditTagAction
    plugin: org.eclipse.ui
    Warning
    Sat Dec 09 08:39:00 CET 2006
    Warnings while parsing the editor contributions from the
    'org.eclipse.ui.editorActions' extension point
    Warning
    Sat Dec 09 08:39:00 CET 2006
    Actions require a non-empty label or definitionId:
    plug-in='com.adobe.flexbuilder.debug.ui',
    id='AUTOGEN:::com.adobe.flexbuilder.debug.ui.mxmlRulerActions/com.adobe.flexbuilder.debug .ui.mxmlDoubleClickBreakpointAction'
    Warning
    Sat Dec 09 08:39:00 CET 2006
    Actions require a non-empty label or definitionId:
    plug-in='com.adobe.flexbuilder.debug.ui',
    id='AUTOGEN:::com.adobe.flexbuilder.debug.ui.actionScriptRulerActions/com.adobe.flexbuild er.debug.ui.actionScriptDoubleClickBreakpointAction'
    plugin: org.eclipse.ui
    Warning
    Sat Dec 09 08:38:59 CET 2006
    Warnings while parsing the key bindings from the
    'org.eclipse.ui.commands' extension point
    Warning
    Sat Dec 09 08:38:59 CET 2006
    Cannot bind to an undefined command:
    plug-in='org.cfeclipse.cfml',
    id='org.cfeclipse.cfml.editors.actions.EditTagAction'

    FB only supports 3.2, just 3.1.1.
    Tracy

  • Replication Problem "Encrypted file on unencrypted media" (CSS)

    Hello,
    since a couple of weeks, we have problems with the replicator. They use Eclipse-Imageanalysis to check the DDP-masterdata before they do the glass-mastering. Imageanalysis is a standard-software for replicators.
    This software reports from time to time "Encrypted file on unencrypted media". This means, that files are tagged for encryption (CSS) but the images do not have or require any encryption on a DVD master, which is not prepared for CSS.
    We use GEAR Mastering Pro to create DDP masters by the VIDEO_TS folder created by Encor, instead of creating DLT tapes with Encore. But GMP is not where this problem is coming from. GMP does not affect the tagged files. The files are already tagged in the VIDEO_TS folder. The problem is definitely created by Encore. We had this problem already with Encore 1.5.
    Has anyone experience with this problem? Is there a work-around, or a possibility to check this tagging/flagging ourselves instead of waiting for the replicators error-message?
    Thanks in advance
    A.

    @JBowden - I don´t need Encore to add CSS. I would never use Encore to master, never ever. Encore is so much unreliable. It´s better to use DDP images on disks (GEAR) instead of creating old-school and ultra-slow DLT tapes. Futhermore: A DDP can be veryfied and checked, a DLT not.
    @Neil - Thanks. Well, i did exactly what Gear told, that means, we use SSCRST 4 / DDP 2.1. Is this 2048 or 2054? I am not sure, but i am sure that the VOBTABLE.DAT is always present, and this is typically for CSS - at least in DDP verson 2.0.
    We create a big bunch of commercial masters each year, some with CSS and some without, all CSS-DVDs without problems, and some Encore-Non-CSS with this problem. The Gear company reports, that this problem is definitely caused by Adobe Encore, and that Adobe is not willing to cooperate in any way. This problem is present in Version 1.5 and in version 2.0.
    Yesterday i bought the first Mac & DVD Studio Pro for our company. We have and had so much heavy problems with Encore and i spent so much money and time for the problems in it. If it will be better with the Apple software, we will drop Encore completely. Do you have experience with DVD Studio & Gear in combination?
    Thanks
    A

  • How can I make use of the CSS feature?

    <p>Hi </p><p>I am using Cr4E to design a report that will be deployed over the web both as an html page and in PDF format. I now want to assign styles to the fields in the report so that the PDF and the HTML version look differently . </p><p>My questions:</p><p>1) Is there a short explanation on how to that properly?<br /></p><p>2) I assume that the CSS styles will only  be used in the HTML version and will be ignored in the PDF. Is that correct and - if not - is there another way to apply different styles to the PDF and HTML? </p><p> </p><p>As always any suggestions are highly appreciated!</p><p>Peter Buchmann from  a rainy Zurich, Switzerland </p><p> </p>

    <p>Hi Peter, </p><p>Ok, I learned something new on this one as well. It appears that the JRC has not yet been updated to include CSS support. As you mentioned, the CSS feature will enable specific output when rendered in our HTML viewer. So to answer your question, yes, if this was indeed supported, it would provide a different output when viewed over the web as opposed to PDF format.</p><p>Now, I know the next question you have is "If it is not supported, then why is it exposed?". There are actually 2 reasons for this:</p><ol><li>This same Designer is also bundled with IBM Rational Application Developer. With the RAD integration we include an Enterprise Repository Explorer view which will allow users to publish reports to a BusinessObjects Enterprise or Crystal Reports Server system. On these systems the CSS field will work.<br /><br /></li><li> Backwards-compatibility - if you open an existing report designed by the external designer then you will need to ensure that all of the properties are re-saved when the report is saved in the CR4E designer. Users can still modify these values, it&#39;s just that they will not be honored by the runtime engine.</li></ol><p>The good news is that we should have support for this feature in the next full release of Crystal Reports for Eclipse. Unfortunately, I don&#39;t think I can officially comment on timelines until early next year, once I get some resource commitments. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p><p>P.S.</p><p>Did I mention I live in Vancouver? We have 2 seasons in Vancouver...the rainy season and August. </p><p> <strong><a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a></strong>          </p>

  • Faulty error message in Eclipse

    Hi,
    I'm using Eclipse (version 3.0.2) together with the N. Takezoe's FacesIDE plugin (version 0.1.5).
    Unfortunately - for code lines like <h:outputText value="#{msg[client.rc]}" styleClass="message"/> - I always get (in Eclipse's "Problems View" window) a corresponding error message:
    msg[client.rc] is not defined
    For your better understanding here are the most important code parts:
    Extract from "modifyCam_1.jsp":
    <%@ page contentType="text/html; charset=Cp1252" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <head>
         <meta http-equiv="Content-Type" content="text/html; charset=Cp1252"/>
         <link rel="stylesheet" type="text/css" href="css/style.css"/>
         <title></title>
    </head>
    <body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
    <f:view>
         <f:loadBundle basename="resource.gui" var="gui"/>
         <f:loadBundle basename="resource.hlp" var="hlp"/>
         <f:loadBundle basename="resource.msg" var="msg"/>
         <h:panelGrid cellspacing="0" columns="2" styleClass="centerArea" columnClasses="pageNavigation,pageBody">
         <h:form>
              <h:outputText value="#{gui['title_modifyCam']}" title="#{hlp['title_modifyCam']}" styleClass="bodyTitle"/>
              <f:verbatim><br/><br/></f:verbatim>
              <h:panelGrid cellspacing="0" columns="5" columnClasses="none,space,none,space,none">
                   <h:outputText value="#{gui['label_CamID']}" styleClass="label"/>
                   <h:outputText value=""/>
                   <h:inputText id="Cam_ID" value="#{client.camID}" title="#{hlp['input_CamID']}" required="true" styleClass="inputField"/>
                   <h:outputText value=""/>
                   <h:message for="Cam_ID" showSummary="true" styleClass="message"/>
                   <h:outputText value=""/>
                   <h:outputText value=""/>
                   <h:commandButton value="#{gui['button_Search']}" title="#{hlp['button_Search']}" action="#{client.searchCamera}" styleClass="button"/>
              </h:panelGrid>
              <f:verbatim><br/></f:verbatim>
              <h:outputText value="#{msg[client.rc]}" styleClass="message"/>
         </h:form>
         </h:panelGrid>
    </f:view>
    </body>
    </html>Extract from "ClientBean.java":
        public String searchCamera() throws Exception {
            rc = "camNotFound";
            return rc;
        }Extract from "msg.properties":
        camModified = The entered camera data have been updated successfully
        camNotFound = The specified camera was not found!
        camDeleted  = The selected camera has been deleted in the data baseExtract from "faces-config.xml":
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN" "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
         <application>
              <message-bundle>resource.gui</message-bundle>
              <locale-config>
                   <default-locale>en</default-locale>
              </locale-config>
         </application>
         <application>
              <message-bundle>resource.hlp</message-bundle>
              <locale-config>
                   <default-locale>en</default-locale>
              </locale-config>
         </application>
         <application>
              <message-bundle>resource.msg</message-bundle>
              <locale-config>
                   <default-locale>en</default-locale>
              </locale-config>
         </application>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>go_modifyCam</from-outcome>
                   <to-view-id>/modifyCam_1.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>/modifyCam_1.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>success</from-outcome>
                   <to-view-id>/modifyCam_2.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <managed-bean>
              <managed-bean-name>client</managed-bean-name>
              <managed-bean-class>CamPortal.ClientBean</managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
         </managed-bean>
    </faces-config>
    Does anybody know how to prevent Eclipse from displaying such unnecessary - and annoying - error messages (because from technical point of view the mentioned line of code works perfectly) ?
    Thanx in advance for your kind support

    Did. you already check this discussion?
    https://discussions.apple.com/thread/3814421?tstart=0

Maybe you are looking for