Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTLM data printing on 1 long line

Status
Not open for further replies.

bobk5444

Programmer
Jan 28, 2005
17
0
0
US
I just started using a new tool, sorcerer, that is printing the whole HTML line of data on 1 long line and apparently not advancing to the next line.

This tool is also using alot of (.js) files which i'm not used to seeing in a diretory, so could this line writing problem be related to the use of these javasript files by any chance?

Thanks very much
BobK

Here is the HTML data:

/*===========================================================================+ | Copyright (c) 2004 Oracle Corporation, Redwood Shores, CA, USA | | All rights reserved. | +===========================================================================+ | HISTORY | +===========================================================================*/ // javadoc_private package oracle.apps.fnd.framework.toolbox.labsolutions; import oracle.jbo.domain.Date; import oracle.jbo.domain.Number; import oracle.svc.ServiceDataObjectImpl; import oracle.svc.util.List; import oracle.apps.fnd.common.VersionInfo; public class Supplier extends ServiceDataObjectImpl { /** * Oracle Applications internal source control identifier */ public static final String RCS_ID = "$Header: Supplier.java 115.0 2004/05/20 08:59:22 nigoel noship $"; /** * Oracle Applications internal source control identifier */ public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion(RCS_ID, "oracle.apps.fnd.framework.toolbox.labsolutions"); public Supplier() { super(); } public String getName() { return (String)getAttribute("Name"); } public void setName(String value) { setAttribute("Name", value); } public Date getEndDate() { return (Date)getAttribute("EndDate"); } public void setEndDate(Date value) { setAttribute("EndDate", value); } public Number getSupplierId() { return (Number)getAttribute("SupplierId"); } public void setSupplierId(Number value) { setAttribute("SupplierId", value); } public String getOnHoldFlag() { return (String)getAttribute("OnHoldFlag"); } public void setOnHoldFlag(String value) { setAttribute("OnHoldFlag", value); } public Date getStartDate() { return (Date)getAttribute("StartDate"); } public void setStartDate(Date value) { setAttribute("StartDate", value); } public List getSupplierSites() { return (List)getAttribute("SupplierSites"); } public void setSupplierSites(List list) { setAttribute("SupplierSites", list); } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 dummyFind usages
 
It's possible, but very hard to say. I wouldn't say this is a JavaScript question as such... so I'd say you either need to find a forum about that editor/tool, or check with the people who created it.

Hope this helps,
Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top