OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:web_inf
(Results
1 - 6
of
6
) sorted by null
/external/jetty/src/java/org/eclipse/jetty/webapp/
JettyWebXmlConfiguration.java
69
Resource
web_inf
= context.getWebInf();
local
71
if(
web_inf
!=null&&
web_inf
.isDirectory())
74
Resource jetty=
web_inf
.addPath("jetty8-web.xml");
76
jetty=
web_inf
.addPath(JETTY_WEB_XML);
78
jetty=
web_inf
.addPath("web-jetty.xml");
100
setupXmlConfiguration(context,jetty_config,
web_inf
);
124
private void setupXmlConfiguration(WebAppContext context, XmlConfiguration jetty_config, Resource
web_inf
)
126
setupXmlConfiguration(jetty_config,
web_inf
);
134
private void setupXmlConfiguration(XmlConfiguration jetty_config, Resource
web_inf
)
[
all
...]
WebInfConfiguration.java
155
Resource
web_inf
= context.getWebInf();
local
158
if (
web_inf
!= null &&
web_inf
.isDirectory() && context.getClassLoader() instanceof WebAppClassLoader)
161
Resource classes=
web_inf
.addPath("classes/");
166
Resource lib=
web_inf
.addPath("lib/");
518
Resource
web_inf
= web_app.addPath("WEB-INF/");
local
524
Resource web_inf_lib =
web_inf
.addPath("lib/");
539
Resource web_inf_classes =
web_inf
.addPath("classes/");
550
web_inf
=Resource.newResource(extractedWebInfDir.getCanonicalPath());
552
ResourceCollection rc = new ResourceCollection(
web_inf
,web_app)
566
Resource
web_inf
= context.getWebInf();
local
701
Resource
web_inf
= context.getWebInf();
local
[
all
...]
WebXmlConfiguration.java
107
Resource
web_inf
= context.getWebInf();
local
108
if (
web_inf
!= null &&
web_inf
.isDirectory())
111
Resource web =
web_inf
.addPath("web.xml");
TagLibConfiguration.java
232
Resource
web_inf
= _context.getWebInf();
local
233
if (
web_inf
!=null)
235
String[] contents =
web_inf
.list();
240
Resource l=
web_inf
.addPath(contents[i]);
247
if (
web_inf
!= null) {
WebAppContext.java
770
Resource
web_inf
= super.getBaseResource().addPath("WEB-INF/");
771
if (!
web_inf
.exists() || !
web_inf
.isDirectory())
774
return
web_inf
;
[
all
...]
/external/jetty/src/config/etc/
webdefault.xml
30
This file is applied to a Web application before it's own
WEB_INF
/web.xml file
Completed in 60 milliseconds