[svn:bz-4.0.0_fixes] 19745: Comment out sdk. version dependent main target to fix build.

Revision: 19745
Revision: 19745
Author:   [email protected]
Date:     2011-01-13 12:12:29 -0800 (Thu, 13 Jan 2011)
Log Message:
Comment out sdk.version dependent main target to fix build. Using main that omits ds-console build.
Modified Paths:
    blazeds/branches/4.0.0_fixes/build.xml

Before compiling the architecture must be adjusted in the FFdecsa/Makefile (defaults to athlon-xp).
The readme file in the src directory provides more details.

Similar Messages

  • [svn:fx-trunk] 10065: Comment out code causing an RTE in SWFLoader.

    Revision: 10065
    Author:   [email protected]
    Date:     2009-09-08 13:14:26 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Comment out code causing an RTE in SWFLoader. Will fix as part of per-module styles feature development.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-23081
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23081
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/SWFLoader.as

    Hello, first post here..
    I maintain a java based lobby for an opensource RTS
    engine called spring at http://taspring.clan-sy.com
    You can find my lobbys source code at:
    https://taspring.clan-sy.com/svn/spring/trunk/AFLobby/
    Of note being the unitsync.dll/so library used to
    handle mods and maps. Implementing this library in
    pure java is not an option.
    I've dealt with quite a few JNi errors dealing with
    the linux users but we got through them all and it
    all worked great.
    I released a windows installer, and most users can
    run it fine with no issues with JNI, but 2 users seem
    to have problems, despite correctly installing
    everything.Does the JNI code use perl?
    This error message shows several hits on Google for perl related stuff.

  • [svn:bz-trunk] 21017: Comment out the line in Tomcat7Valve that was causing the build to fail.

    Revision: 21017
    Revision: 21017
    Author:   [email protected]
    Date:     2011-04-05 05:59:33 -0700 (Tue, 05 Apr 2011)
    Log Message:
    Comment out the line in Tomcat7Valve that was causing the build to fail. I am not sure what this line was supposed to do - likely, this is not-functional right now.
    Modified Paths:
        blazeds/trunk/modules/opt/src/tomcat/flex/messaging/security/Tomcat7Valve.java

    soon as you start up the computer, keep hitting the F1 key.  That should get you into the BIOS.
    Also, try disabling Active System Protection for your freezing issues.  I'm using XP so  I don't know where to tell you to find it in Vista.

  • How to delete the commented out lines in PC editor of a SAP Script?

    Hi Experts,
    I hv lot of commentde out code in the PC editor of a my_SAP_Script.........so, wanna to delete all this commented out code, so, let me know that, Do we hv any option other than manual deletion.
    Currently am doing it by,
    keeping the line totally blank,
    keeping the left small box, where we define paragraph formts,
    going BACK,
    save + activating,
    now, those lines r disappearing!!
    but, let me know, Is there any other MENU/push button optin to delete these lines?
    replies appreciatesd,
    thanq

    [pc editor doc|http://help.sap.com/saphelp_nw2004s/helpdata/en/f4/b49f1b453611d189710000e8322d00/frameset.htm]

  • Comment out actions in side proxy services in osb

    Do any body know how to comment out certain actions in proxy service in OSB?
    For eg: I have assign, insert, assign, ..route....
    I want to comment out second assign but don't want to delete it, since i might need it later. Can I manipulate the generated code to comment?

    What I meant is that I tried it with a very simple pipeline, a pipeline with one stage and one action. I added the comment tags around that action and it "disappeared" from my pipeline. Later I removed the comment tags and my action was there again.
    But it could get complicated with a pipeline with many stages and actions (that's what I meant by complex). There could be dependencies between the actions (in one you create a variable that you use later in another action), etc.
    I assume you're working directly on the web console. The files are stored in your server's file system but I really advise you against modifying these files directly.
    With your installation of OSB you have an Eclipse (Workshop) with plug-ins for the OSB. You can export your project from the web console and import it into eclipse. You can work on eclipse and then publish your changes to the server.
    There in eclipse you have your files in your file system and you can open them in your favourite text/xml editor. Or inside eclipse you can just right click on the proxy service and choose "open with -> text editor".

  • Script or command line to comment out multiple lines in flat files

    I am looking for a way to go through multiple flat files within the same directory for the occurance of a server name and if found to insert a comment (#) at the beginning of the line. Currently, I am grepping for the server name within the directory and then doing a vi on each individual flat file to comment out the line. The server name is separated by the pipe (|) symbol and each line of every file is in this format:
    webservers:WEBSERVER|Env Name|servername|application name
    So, in the above, I am grepping for the servername part and if found in there, I want to change the line to:
    #webservers:WEBSERVER|Env Name|servername|application name
    I would think there would be a way of doing this either with command line Perl or with maybe awk or sed. Any suggestions would be greatly appreciated.

    You could do something like this with a ksh shell script:
    #!/usr/bin/ksh
    for file in `ls`; do
            echo $file
            sed 's/^webserver/#webserver/g' $file > $file.parsed; mv $file.parsed $file
    doneThis will go through everyfile in the directory and search for "start of line" webserver and replace it with "#webserver". Then the file will get move back to the original file name.
    If you just want to change certain files ie. only filenames with the word "server" in it, then change:
    for file in `ls`; do to something like
    for file in `ls *server*`; doHope this help...
    Cheers
    pdaemon

  • Can i comment out lines of code in a .sql script file to be run in SQL PLUS

    Hi All,
    I have commented out part of the script, and when i ran the script (.sql) file in Sql*Plus
    I am getting some errors like
    SP2-0734: unknown command beginning
    how to avoid these errors?
    any help is appreciated
    Thanks
    R.R

    >
    select * from dual; -- me too!Nope, not this one...
    test@ORA10G>
    test@ORA10G> host type c:\test.sql
    select * from dual; -- me too!
    test@ORA10G>
    test@ORA10G> -- doesn't work
    test@ORA10G>
    test@ORA10G> @c:\test.sql
      2
    test@ORA10G>
    test@ORA10G> @c:\test.sql
      2  /
    select * from dual; -- me too!
    ERROR at line 1:
    ORA-00911: invalid character
    test@ORA10G>
    test@ORA10G> -- now this works...
    test@ORA10G> host type c:\test.sql
    select * from dual -- me too!
    test@ORA10G>
    test@ORA10G> @c:\test.sql
    D
    X
    test@ORA10G>
    test@ORA10G> -- and so does this...
    test@ORA10G> host type c:\test.sql
    select * from dual -- me too!
    test@ORA10G>
    test@ORA10G> @c:\test.sql
    D
    X
    test@ORA10G>
    test@ORA10G>pratz

  • In SQL Editor Window '--' at end of line comments out the next line

    Hello,
    when I run a query with '--' at the end of a line, the next line seems to be commented out:
    select * from v$parameter
    where 1 = 1
    -- and value = '0' ------------
    and value LIKE 'AMERICA%'
    this will result in showing all v$parameter records!
    When I change the last character, it works properly.
    select * from v$parameter
    where 1 = 1
    -- and value = '0' ------------ X
    and value LIKE 'AMERICA%'
    Regards,
    sknoess

    Bugged in EA2: Bug with '--' inside string
    K.

  • Comment out code in Update Rule

    Hello,
    Quick question.
    How do I comment out code in the update rule?  I need to comment out a large amount of code for testing purposes.
    Thanks,
    Sheila

    Hi Sheila
    Go to Update rule code (routine) ->> select the code you want to comment out with mouse ->> then go to top menu Utilities -> Block/Buffer-> Insert Comment *
    This will comment out the code that you had selected.
    Regards
    Pradip
    (don't forget points)

  • Wb_rt_mapaudit_util register_custom_param call commented out in gen'd sql

    Using OWB 10.2.0.3.33.
    In the OWB client if I right mouse on a map and Generate..., then choose the Script tab, then select the script, then Save As...
    it results in a generated script for the map which has the call to wb_rt_mapaudit_util.register_custom_param commented out as seen here (where DATAMART_SEQ is my custom param):
    -- register custom input parameters:
    -- Temp fix until selective registration ensures correct handling of complex types
    -- wb_rt_mapaudit_util.register_custom_param(x_audit_id,
    -- '"DATAMART_SEQ"',
    -- TO_CHAR("DATAMART_SEQ"));
    Does anyone know how to make this not be commented out?
    If I execute that script to define the map, then run the map using the Main procedure in the package {MAPNAME.Main(p_status, p_datamartseq);} it runs but the impact of having it commented is that it leaves the VALUE field of the ALL_RT_AUDIT_EXECUTION_PARAMS table null for the custom param.
    If I run the map using wb_rt_api_exec.run_task, then OWB correctly stores the custom param value in the ALL_RT_AUDIT_EXECUTION_PARAMS table. You can see the two types of runs here, notice the null is the problem caused by the commented out code (if I uncomment it it works -- but for dozens of maps it would be easier if it was generated that way):
    select execution_audit_id,PARAMETER_NAME,PARAMETER_TYPE,VALUE_KIND,nvl(value,'NULL') from ALL_RT_AUDIT_EXECUTION_PARAMS where execution_audit_id in (64908,64859) and parameter_kind='CUSTOM'
    EXECUTION_AUDIT_ID     PARAMETER_NAME     PARAMETER_TYPE     VALUE_KIND     NVL(VALUE,'NULL')
    64859     DATAMART_SEQ     NUMBER     INPUT_VALUE     2000
    64908     DATAMART_SEQ     NUMBER     INPUT_VALUE     NULL

    Hi,
    you used undocumented OWB API and Oracle tech.support or development can explain what is wrong with this code.
    There is exist legal way running OWB mappings/processflow since OWB10gR2 ([url http://download.oracle.com/docs/cd/E11882_01/owb.112/e10935/scheduling_etl.htm#CIHJBCCA]RUN_TASK function from WB_RT_API_EXEC package). Why you didn't use this function?
    Regards,
    Oleg

  • Commenting Out Library Code

    When a Library item is inserted into an html document, it automatically adds some commenting out code
    <!-- #BeginLibraryItem "/Library/footer.lbi" -->
    <!-- #EndLibraryItem -->
    but still appears in Design View (which is expected). There are times when I don't want the actual Library item (a footer in this case) to be visible in Design View, and simply applying an html comment doesn't work (I assume because you are basically trying to double comment the code). So the question is: is there another way to temporarily hide a library item from appearing in Design View? The reason I'm asking this (and maybe there is another underlying issue) is because looking in Design View, the footer appears in the middle of hte page, but renders properly when previewing in either Live Mode or previewing in browser.
    Design View: the red outline shows where the library item (footer) appears - in the middle of the design view area - worth noting, I work in Split view (with code on top, preview on bottom), so maybe that has something to do with not rendering items properly on screen?
    Live View or Browser Preview:
    I don't know if this is happening because of CSS styles of possibly some html code or maybe even an underlying issue somewhere else. This is more irritating than anything else. Does anyone have a clue what might be going on?
    To add: the only way I am currently able to temporarily hide the footer library item is to open the library item, comment out that code, then update all pages (which is a pain for when I need to go back and forth)...

    If this helps, I've uploaded what I think is enough to see what I'm facing.
    As an FYI, your page content falls out of the box when end-users increase default text-size in their browsers (Firefox, View >  Zoom > Zoom Text Only), hit Ctrl+++.
    See screenshot below where I've highlighted dark text on dark background to be visible:
    Height: value in pixels is a restriction in all browsers except IE.  If needed to reveal a background image, use values in ems or the min-height property with Conditional Comments for pre-IE7 browsers.
    CSS:
    #homeContent {
        position: relative;
        width: 892px;
       min-height:400px;
    Conditional Comment:
    <!--[if lt IE 7]>
    <style type="text/css">
    #homeContent {
    height: 25em
    </style>
    <![endif]-->
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Commenting out code in TrueCode mode deletes code

    We used RoboHelp X3 and was trying to comment out specific
    sections of a code by moving over to the True Code view and
    commenting them out following the usual HTML standards/conventions.
    However, we found that when we saved the project, generated the
    file, and opened the topic(s) from the source project next time,
    the sections that we had commented out had actually got deleted.
    Could you please help me with this? Is there a specific way to
    comment out code in RoboHelp?

    (I began the earlier reply before I knew what I wanted to
    say).
    Is it possible that when those particular lines are commented
    out, the result is a syntax error in the remaining html or js code?
    Also, consider that html and js code techniques have come a
    long way since X3. Maybe your code is technically correct now, but
    X3 doesn't know it.
    Good luck.
    Harvey

  • JDeveloper wont start without commenting out setjavahome in jdev.conf

    Jdeveloper crashes on start. Running jdev.exe in console I get a "Duplicate handle failed" error from java. If I edit the jdev.conf and comment out the line SetJavaHome.... then Jdeveloper will start after being prompted to find java.exe. Tried uninstalling/reinstalling. Any suggestions appreciated:
    Environment Variables - JAVA_HOME:
    C:\Program Files\Java\jre6
    jdeveloper/jdev/bin/jdev.conf:
    SetJavaHome C:\oracle\Middleware\jdeveloper\jdk

    Please don't post grepped log output - grepping can be useful if you know what you are looking for - but if you knew what to look for you wouldn't be posting here.  Please post the full log (or put it on a file-sharing site and post the link to it).
    The output you have posted indicates that X exited successfully.  The most common cause of this is an empty (or faulty) ~/.xinitrc.  Do you use startx/xinit or how do you start X?  What is in your xinitrc?
    Also, could you elaborate on which ATI drivers you are using?  Do you have the open source xf86-video-ati or one of the closed-source options?  If this is xf86-video-ati, why do you have an xorg.conf at all, it shouldn't be needed?  If, instead, this is a closed-source driver, where did you get the content for the xorg.conf?

  • Comment out some sections of Labview programs during debuging

    In other programming such as VC or VB, we can always comment out some sections of our program so that the commented section are not executed during debuging. Is there any way to comment out some sections of Labview program during debugging?

    YanWong wrote:
    You can use a case structure to surround the section of the program you do not want to execute and then wire a false constant into the input so the case will never execute.
    Also remember that doing this will only work if the code you "commenting" out must be executable. A broken run arrow will still be there after you put it in the Case Structure. If you are trying to comment out some broken code, you're out of luck, at least now.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Commenting out custom tag

    I have a simple custom tag. but when i use "<!-- -->" for commenting out, it still implements the custom tag line.
    how should i do to comment out the custom tag?
    thanks...

    <!-- --> is an HTML comment
    <%-- --%> is a JSP comment

Maybe you are looking for

  • Mail quit unexpectedly and won't open

    Whenever I click on the Mac Mail Iocn on my Dock a window that says "Problem Report for Mail" pops up and it says "Mail quit unexpectedly, click to Reopen the application again. This report will be sent to Apple automatically."  When I click reopen t

  • HP DESKJET 3050A ALL-IN-ONE J611 series

    My friends. My problem is very simple. I have a printer "HP DESKJET 3050A ALL-IN-ONE J611 series" and she can not work properly on my laptop. I have windowns 8.1 as soy experienced all your drivers and the printer can not work well. Sometimes I can i

  • Image attachments sent from Cameraroll are displayed inline/embedded - why?

    Dear community! I often send pictures from the camera-roll by email to several email-addresses. I would like the recipient to recieve the email with the images as attachments, but now, they are displayed as "inline" / "embedded" images in the mail bo

  • How do I close a numbers document without closing the entire app?

    Can anyone tell me how I can close a numbers document without closing the entire app? i.e. go back to the folders display page - is this even possible?

  • System calculates Vat at Different rate

    Hello consultants Client is uploading one file having employees expenses through Customised Tcode which is generating one Batch session.and executing the same through SM35 Now the problem is Its Picking up correct Vat Code which should calculate 10%