What are the NewWeb and Empty configurations in WSS site definitions?

I am setting up WSS site definitions by setting up one of the built-in definitions. When studying the definition of sts, I see that it has the configuration "NewWeb" with identifier -1 and "Empty" with identifier 1. In the definition of sps, they are defined as follows:

<Configuration ID="-1" Name="NewWeb"/>
<Configuration ID="1" Name="Blank">
  <ExecuteUrl Url="_layouts/[%=Web.Language%]/settings.aspx" />
</Configuration>

Does anyone know what they mean? Should I include them in my user definition or can I omit them?

+3
source share
1 answer

NewWeb is a website that does not have a template associated with it. Essentially, just a prepared URL.

BlankWeb is a template that does not specify lists or libraries.

+3

Source: https://habr.com/ru/post/1702907/


All Articles