How to post jsp code snippets without losing the bet in shape

Please forgive me for this stupid question and do not know if this is the right place. But I'm having a hard time sticking the jsp code snippets when I answer all the sections. The jsp code snippet will be all html tags with ' < ' and ' / > ' etc. I tried to replace by & lt; etc but still no help. I see that other users are able to view the jsp code correctly snippets. Is there something special I need to do. I use both FF and IE browser. I use
...tag also. Still no help. Also I am not able to paste any Graphic images. How can we do this. Any help highly appreciated.

Thanks
Ravi Jegga

Edited by: Ravi Jegga on Nov 18, 2009 11:06 AM

Edited by: Ravi Jegga on Nov 18, 2009 11:07 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

Hello Ravi,

More-than and less - that signs are deleted by the forum software. From:

http://wiki.Oracle.com/page/Oracle+discussion+forums+FAQ

but from my experience, sometimes they appear and sometimes they are not. I have yet to understand the model. The FAQ says. = can be used instead of a more - and less - than, but I never got it to work.

You cannot paste images in, but you can use exclamation points at the ends of a full URL to put in an image tag, for example:

!http://forums.oracle.com/forums/themes/english/resources/oralogo_small.gif!

becomes

! http://forums.Oracle.com/forums/themes/English/resources/oralogo_small.gif!

The 'Preview' in the editor mode is the best way I have found to see what forums software will make your formatting, so that you can play with formatting before posting.

Kevin

Tags: Fusion Middleware

Similar Questions

  • How to remove a basedOn style without losing the bet in shape

    I have a problem that I solved in my case, but I wonder if there is a cleaner solution. I have a function that removes the basedOn of a paragraph style or a character style that is passed. I thought that it worked, but it came to my attention that the character styles were losing their formatting when their basedOn style has been deleted (in fact, the value '[No Style character]'). Set the style basedOn the "[None]" style has the same effect. I also tried to create a dummy no style and use it as my base, same effect. When you do this through InDesign UI, the formatting is preserved, so I think it's a bug. My solution has been to create a new character style, all properties of the first style (except basedOn and properties) copy on it, delete the original style (replace with the new style), and then rename the new style to match the old. Far as I can tell it works, but it seems exaggerated. Does anyone have a better suggestion or hint?

    Here is the code that causes the problem:

    function unBaseStyle(funcSty){
        //Current style name.
        var myStyName = funcSty.name;
        //If the style is surrounded in brackets it is a default InDesign style and should not be unbased. In that case, skips to next style.
        if (myStyName.lastIndexOf("[", 0)  != -1) {return false;}
        else{
            var myBaseStyName = funcSty.basedOn.name;
            //Checks that the base style isn't undefined (which would indicate that it is already [No ... Style] and also that it isn't bracketed.
            if (myBaseStyName == undefined || myBaseStyName.lastIndexOf("[", 0)  != -1) {return false;}
            else{
                //If the style is a paragraph style, bases it on [No Paragraph Style].
                if (funcSty instanceof ParagraphStyle){funcSty.basedOn = "[No Paragraph Style]";}
                //If the style is a character style, bases it on [No Character Style].
    //--->This is the line that causes the problem. funcDoc.characterStyles("None") has the same effect.
                else{funcSty.basedOn = "[No Character Style]";}
                return true;
            }
        }
    }
    

    Here is my code to work:

    function unBaseStyle(funcDoc, funcSty){
        //Current style name.
        var myStyName = funcSty.name;
        //If the style is surrounded in brackets it is a default InDesign style and should not be unbased. In that case, skips to next style.
        if (myStyName.lastIndexOf("[", 0)  != -1) {return false;}
        else{
            var myBaseStyName = funcSty.basedOn.name;
            //Checks that the base style isn't undefined (which would indicate that it is already [No ... Style] and also that it isn't bracketed.
            if (myBaseStyName == undefined || myBaseStyName.lastIndexOf("[", 0)  != -1) {return false;}
            else{
                //If the style is a paragraph style, bases it on [No Paragraph Style].
                if (funcSty instanceof ParagraphStyle){funcSty.basedOn = "[No Paragraph Style]";}
                //If the style is a character style, bases it on [No Character Style].
                    else{
                        var funcStyName = funcSty.name;
                        var newSty = funcDoc.characterStyles.add(funcStyName + " basedOnCopy");
                        var p
                        for (p in funcSty){
                            if (funcSty.hasOwnProperty(p) && p != "basedOn" && p != "properties"){
    //-->This copies over the properties; wrapped in try/catch because some properties are read-only.
                                try{newSty[p] = funcSty[p];}catch(e){}}
                        }
                        funcSty.remove(newSty);
                        newSty.name = funcStyName;
                return true;
            }
        }
    }
    

    Am I missing something or is my solution more or less the way forward?

    Hi cchimi,

    Easily check if a style property is inherited is a question open for me

    Perhaps our fellow Scripting Guys have some ideas on this point.

    In regards to your routine of rewriting from scratch , a better approach (although not fully tested) may be:

    function unBaseStyle(/*ParagraphStyle|CharacterStyle*/sty)
    {
        var o = sty.properties;
        if( !o.hasOwnProperty('basedOn') || 0 <= o.name.indexOf('[') ) return;
        o.basedOn = "$ID/None";
        sty.properties = o;
    }
    

    @+

    Marc

  • How to use reveal all this without losing the work of culture?

    My workflow is to editing and cropping of images. I need the flexibility to perform any order.

    When I use the crop tool, I continue to delete the cropped Pixels unchecked. When I edit the images I want to edit the complete picture, not cropped image.

    If I use reveal all to make alterations on the full image after cropping, I lose my job of cropping. Is there a solution?

    How to use reveal all this without losing the work of culture?

    How to take a bath without getting wet?

    Enter drollery side you could use a path of access to store the current size before calling "Reveal everything", then later on the path as a selection of load, switch to the crop tool and hit.

    Or convert to smart object before you crop, then do the editing in the SO (it could be a potentially significant increase in file size, however).

  • How can I copy properties related without losing the connection to the control?

    I have dealt with a problem that is boring when copying / pasting properties. If the properties are bound to a control when copy them, they lose this link in the pasted version.

    Basically, the paste does not really the expected behavior of 'copy', 'paste' that results is different from the copied item. Is there a way to get around this in addition to having to go to each of them and re - link manually?

    Here are the excerpts to demonstrate the problem:

    Before pasting

    After pasting:

    So the solution then, as I found from reading the post of the wish list, is to CTRL-click and drag.

  • Laptop with XP/Ubuntu Dual Boot (grub 2, not to wubi). How to safely to Windows 7 without losing the dual boot ubuntu?

    Hello

    I have a laptop Dell Inspiron 6400/1505 (1.73 Gz, Intel Core 2 Duo, 2 GB RAM, 750 GB (7200 RPM) HARD drive) with Windows XP and Ubuntu 12.04 LTS installed in dual boot. I installed Ubuntu in a separate partition, not not using WUBI. Since support for XP runs in the month of April, I have to upgrade to Windows 7. I would like to know if I could pass safely XP to Windows 7 (I understand the parameters and programs cannot be transferred to the upgraded version of Windows and must be done manually) without disturbing my score of Ubutnu and the GRUB that starts when I turn on the computer. What are my options if this is not possible. I know one option is to completely wipe the hard drive and start over. But I just wanted to know if I could save my Ubuntu installation.

    PS. forgive me if this has been discussed already, please redirect.

    Thank you

    Joseph.

    To begin with, as you already know, there is no way to upgrade from Windows XP to Windows 7, it will have to do a clean install.  When you install Windows 7 it will rewrite the MBR and dislodge the grub, you need to reinstall GRUB after Windows installation and you need to add the Windows installation for the grub.

    John

  • How can I re - install firefox without losing my data. It is infested bame ad.

    Firefox is infested with "ads name.

    How can I get rid of it or how can I
    Re-install firefox without losing any data?

    There is a rash that goes around, and the solution is not yet clear 100%. I suggest try reinstalling this way:

    Clean reinstall it

    We use this name, but it is not about the deletion of your settings, it comes to ensure that program files are-own and contain no alien code files. As described below, this process does not disrupt your existing settings. Don't uninstall NOT Firefox, that does not need.

    (1) download a fresh Installer for Firefox 37.0.1 of https://www.mozilla.org/firefox/all/ in an ideal location. (Scroll down your preferred language).

    (2) close Firefox (if applicable).

    (3) to rename the program folder

    (Windows 32-bit folder names)

    C:\Program Files\Mozilla Firefox
    

    TO

    C:\Program Files\OldFirefox
    

    (Windows 64-bit folder names)

    C:\Program Files (x86)\Mozilla Firefox
    

    TO

    C:\Program Files (x86)\OldFirefox
    

    (4) run the installer you downloaded in the #1. It should automatically connect to your existing settings.

    Any improvement?

    Note: Some plugins can only exist in this OldFirefox file. If it is missing something essential, present in these files:

    • \OldFirefox\Plugins
    • \OldFirefox\browser\plugins
  • I forgot my password and got my iphone disabled after several attempts. its display to connect to itunes, but I am unable to connect to itunes too. How can I unlock my phone without losing any data? Help, please

    I forgot my password and got my iphone disabled after several attempts. its display to connect to itunes, but I am unable to connect to itunes too. How can I unlock my phone without losing any data? Help, please

    In short - you can't

    IF you have a computer with iTunes on which you did a prior backup - the phone will be recognized and iTunes offer todo backup before it clears your device - that - except if you know the access code the content cannot be saved

  • How can I close my hotmail without losing my data of MCP?

    How can I close my hotmail without losing my data of MCP?

    Concerning
    Walter

    Hi warhee1,

    Thank you for visiting the Microsoft answers community.
    The question you have posted is bound using Windows Live and would be better suited to the

    Windows Live Solution Center Help.

    Please visit this link to find a community that will provide the support you want.

  • How to save pictures of Photos in the form of files without losing the GPS data?

    Hello!

    Can someone advice me in the following cases:

    I want to erase my Photos from iPhone and iMac. Before that, I wish I had pictures of my library of Photos saved as a regular directory with files. As Windows does, for example.

    Can someone tell me how to save all Photos in the form of files without losing the GPS data? Thank you!

    Just export them (File menu) in unmodified versions.

  • Two copies of Firefox open. How to close one without losing the lugs on the other.

    Firefox has been slow to open up, so after awhile I clicked on the icon a second time.
    Then two copies opened, one with this page of solution of Mozilla and the other with all the many tabs that I use frequently.
    But when I tried to close the copy of solution of Mozilla, I was warned that the two copies would be closed, I know from
    experience can sometimes cause me to lose all the tabs on my master copy.
    So, how can I safely close a copy without losing the tabs on the other?
    Thank you.
    Dave

    Press Alt to display the Menu bar, and then press F to open the file menu, and then use the menu item close this window .
    Or use the X in the upper right of this window.

  • Equium A200: How to remove a partition without losing the BONE

    I have a laptop of A200 equium with a 120 GB hard drive but it is partitioned.
    Can you remove a partition on a hard disk without losing the operating system and get a hard drive with 120 GB?

    If so can you tell me how.

    Hello

    If you want to use the Toshiba Recovery CD and then the whole HARD disk will be formatted and all partitions will be deleted!
    Don t forget that the Toshiba Recovery CD is not the same as an original Microsoft windows Vista CD. The restore CD contains the OS, the driver and additional software

    Concerning

  • How can I switch phones with a member of the family without losing the data on a phone?

    How can I switch phones with a member of the family without losing the data on a phone?

    jkatts wrote:

    How can I switch phones with a member of the family without losing the data on a phone?

    Make a backup of each phone to iTunes or iCloud (do not forget to use your Apple ID or personal computer), then do whatever your carrier wants do you to change numbers if that's your intention, then restore these backups on the device of the "other."

  • How to get the image complete at all times without losing the old frame in labview

    Hello

    How to create a vi that accept full frame at all times in a list without losing the old that come from a table.

    Sorry - thought you meant a combo Box is not a listbox control.

    Please find attached an example with a multicolumn listbox.

    You need to build an array of information from the line, then insert a new row in the main table.

    I hope this helps.

  • How can I change the key of a lunch without losing the words in my karaoke VanBasco window when using cakewalk pro audio.

    Original title: Using cakewalk pro audio

    How can I change the key of a lunch without losing the words in my karaoke VanBasco window when using cakewalk pro audio. Can anyone help please

    Hello

    What operating system is installed on the computer?

    Contact Cakewalk for assistance:

    Here is the link: http://forum.cakewalk.com/default.aspx

  • How can I re install Photoshop CS6 without losing the plugins?

    How can I re install Photoshop CS6 without losing the plugins? After unsubscribing creative cloud. Thank you

    Hi rich,

    If you reinstall Photoshop CS6, plugins will be deleted unless you manually uninstall plugins.

    Concerning

    Tanuj

Maybe you are looking for

  • Credit card decline

    Hai. I wanted to buy an app, but every time I insert my credit card he refuse. Recently, I received a new card, but he always refused. Someone can help me.

  • Need drivers of Windows XP Home for Satellite L series PSL43

    I installed Windows XP Home edition on the laptop and I would like to know where I can get WXP drivers form Satellite L series PSL43 or when they will be released?Thank you

  • New reminder of the execution and the appellant

    Hello I created a sequence that launches two new executions. These 2 executions can be considered 2 branches, each calling a specific sous-suite in the same file. These 2 branches are launched as 'new performance' because you can pause the other (whi

  • Windows Media Player problem-CD burning.

    The past 2 CD I burned using Windows Media won't play in my boombox/stereo. The meter moves forward as if playing but there is no sound. It displays only 1 track. What I am doing wrong?

  • HP Photosmart &amp; Printer Wizard

    I have a laptop running Windows 8.1. I noticed that I don't have Printer Wizard for the photosmart. I removed the printer and downloaded the driver again. It appears after the download, but then it disappears. When I double click on the HP icon, I ge