1999-02-17 11:09:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1999-02-17 11:09:57 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-02-17 11:09:57 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-02-17 11:09:57 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-02-17 11:09:57 +00:00
|
|
|
*/
|
|
|
|
|
1999-04-27 06:37:41 +00:00
|
|
|
#include "nsIRDFContainer.h"
|
1999-02-17 11:09:57 +00:00
|
|
|
#include "nsRDFParserUtils.h"
|
1999-02-25 01:35:34 +00:00
|
|
|
#include "nsRDFResource.h"
|
1999-02-17 11:09:57 +00:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "rdfutil.h"
|
|
|
|
|
|
|
|
void XXXNeverCalled()
|
|
|
|
{
|
1999-06-09 08:32:17 +00:00
|
|
|
nsAutoString s;
|
1999-07-27 17:20:28 +00:00
|
|
|
nsCAutoString cs;
|
2000-02-23 20:51:36 +00:00
|
|
|
nsCString cStr;
|
(13163, r=alecf, scc, waterson, others; names available on request)
- Fix most of bug 13163 (see TODO for rest). This entails adding a version-string argument to nsIScriptContext::EvaluateString and passing it around lots of places in content sinks.
- Fix leaks and confusion about mSecurityManager and mNameSpaceManager in nsJSEnvironment.cpp. These still need to move from nsJSContext to nsGlobalWindow or thereabouts, jband and vidur are looking at that.
- Added comments and expanded tabs in nsJSEnvironment.cpp, esp. to EvaluateString. Also changed various nsresult vars to be named rv. Also restored brace/style conformity to nsJSProtocolHandler.cpp.
- Factored CompileFunction from AddScriptEventListener to pave the way for brutal sharing of compiled JS event handlers via JS_CloneFunctionObject.
- Lots of nsCOMPtr uses added. I'm using one for mNameSpaceManager. Hold mSecurityManager as a service explicitly, on the other hand (awaiting scc's fix to allow comptrs for services), and release in nsJSContext's dtor (fixing a leak). These two managers should be moved to the window object -- TODO item below.
- Hold JSRuntimeService along with JSRuntime for live of nsJSEnvironment, fix for shaver.
- Fix window.setTimeout etc. so the filename and line number of the timeout expr is propagated. This meant factoring nsJSUtils.cpp code.
- Fix all content sinks to use the same, and up-to-date JavaScript version parsing (whether for script type or for old language attribute); also fix SplitMimeType clones to strip whitespace.
- With waterson, fix bug in brutal-sharing version of XUL content sink: script src= should not evaluate the inline content of its tag.
1999-10-31 00:43:30 +00:00
|
|
|
int v;
|
1999-02-17 11:09:57 +00:00
|
|
|
|
|
|
|
// nsRDFParserUtils
|
|
|
|
nsRDFParserUtils::EntityToUnicode("");
|
|
|
|
nsRDFParserUtils::StripAndConvert(s);
|
|
|
|
nsRDFParserUtils::GetQuotedAttributeValue(s, s, s);
|
(13163, r=alecf, scc, waterson, others; names available on request)
- Fix most of bug 13163 (see TODO for rest). This entails adding a version-string argument to nsIScriptContext::EvaluateString and passing it around lots of places in content sinks.
- Fix leaks and confusion about mSecurityManager and mNameSpaceManager in nsJSEnvironment.cpp. These still need to move from nsJSContext to nsGlobalWindow or thereabouts, jband and vidur are looking at that.
- Added comments and expanded tabs in nsJSEnvironment.cpp, esp. to EvaluateString. Also changed various nsresult vars to be named rv. Also restored brace/style conformity to nsJSProtocolHandler.cpp.
- Factored CompileFunction from AddScriptEventListener to pave the way for brutal sharing of compiled JS event handlers via JS_CloneFunctionObject.
- Lots of nsCOMPtr uses added. I'm using one for mNameSpaceManager. Hold mSecurityManager as a service explicitly, on the other hand (awaiting scc's fix to allow comptrs for services), and release in nsJSContext's dtor (fixing a leak). These two managers should be moved to the window object -- TODO item below.
- Hold JSRuntimeService along with JSRuntime for live of nsJSEnvironment, fix for shaver.
- Fix window.setTimeout etc. so the filename and line number of the timeout expr is propagated. This meant factoring nsJSUtils.cpp code.
- Fix all content sinks to use the same, and up-to-date JavaScript version parsing (whether for script type or for old language attribute); also fix SplitMimeType clones to strip whitespace.
- With waterson, fix bug in brutal-sharing version of XUL content sink: script src= should not evaluate the inline content of its tag.
1999-10-31 00:43:30 +00:00
|
|
|
nsRDFParserUtils::IsJavaScriptLanguage(s, &v);
|
1999-02-17 11:09:57 +00:00
|
|
|
|
|
|
|
// rdfutils
|
1999-06-09 08:32:17 +00:00
|
|
|
rdf_MakeRelativeRef(s, s);
|
|
|
|
rdf_MakeRelativeName(s, s);
|
|
|
|
rdf_MakeAbsoluteURI(s, s);
|
2000-02-23 20:51:36 +00:00
|
|
|
rdf_MakeAbsoluteURI(s, cStr);
|
|
|
|
|
1999-04-24 02:41:02 +00:00
|
|
|
NS_NewContainerEnumerator(nsnull, nsnull, nsnull);
|
|
|
|
NS_NewEmptyEnumerator(nsnull);
|
1999-02-25 01:35:34 +00:00
|
|
|
|
|
|
|
// nsRDFResource
|
1999-02-26 12:18:19 +00:00
|
|
|
nsRDFResource r();
|
1999-02-17 11:09:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|