PySide.QtWebKit.QWebSecurityOrigin class defines a security boundary for web sites.
PySide.QtWebKit.QWebSecurityOrigin provides access to the security domains defined by web sites. An origin consists of a host name, a scheme, and a port number. Web sites with the same security origin can access each other's resources for client-side scripting or databases.
For example the site http://www.example.com/my/page.html is allowed to share the same database as http://www.example.com/my/overview.html , or access each other's documents when used in HTML frame sets and JavaScript. At the same time it prevents http://www.malicious.com/evil.html from accessing http://www.example.com/ ‘s resources, because they are of a different security origin.
By default local schemes like file:// and qrc:// are concidered to be in the same security origin, and can access each other's resources. You can add additional local schemes by using QWebSecurityOrigin.addLocalScheme() , or override the default same-origin behavior by setting QWebSettings.LocalContentCanAccessFileUrls to false .
注意
Local resources are by default restricted from accessing remote content, which means your file:// 将不能访问 http://domain.com/foo.html . You can relax this restriction by setting QWebSettings.LocalContentCanAccessRemoteUrls to true .
调用 QWebFrame.securityOrigin() 以获取 PySide.QtWebKit.QWebSecurityOrigin for a frame in a web page, and use PySide.QtWebKit.QWebSecurityOrigin.host() , PySide.QtWebKit.QWebSecurityOrigin.scheme() and PySide.QtWebKit.QWebSecurityOrigin.port() to identify the security origin.
使用 PySide.QtWebKit.QWebSecurityOrigin.databases() to access the databases defined within a security origin. The disk usage of the origin's databases can be limited with PySide.QtWebKit.QWebSecurityOrigin.setDatabaseQuota() . PySide.QtWebKit.QWebSecurityOrigin.databaseQuota() and PySide.QtWebKit.QWebSecurityOrigin.databaseUsage() report the current limit as well as the current usage.
For more information refer to the “Same origin policy” Wikipedia Article.
| 参数: | other – PySide.QtWebKit.QWebSecurityOrigin |
|---|
Constructs a security origin from other .
| 参数: | scheme – unicode |
|---|
添加给定 scheme to the list of schemes that are considered equivalent to the file : scheme.
Cross domain restrictions depend on the two web settings QWebSettings.LocalContentCanAccessFileUrls and QWebSettings.LocalContentCanAccessFileUrls . By default all local schemes are concidered to be in the same security origin, and local schemes can not access remote content.
| 返回类型: |
|---|
Returns a list of all security origins with a database quota defined.
| 返回类型: | PySide.QtCore.qint64 |
|---|
Returns the quota for the databases in the security origin.
| 返回类型: | PySide.QtCore.qint64 |
|---|
Returns the number of bytes all databases in the security origin use on the disk.
| 返回类型: |
|---|
Returns a list of all databases defined in the security origin.
| 返回类型: | unicode |
|---|
Returns the host name defining the security origin.
| 返回类型: | 字符串列表 |
|---|
Returns a list of all the schemes concidered to be local.
By default this is file:// and qrc:// .
| 返回类型: | PySide.QtCore.int |
|---|
Returns the port number defining the security origin.
| 参数: | scheme – unicode |
|---|
移除给定 scheme from the list of local schemes.
注意
You can not remove the file:// scheme from the list of local schemes.
| 返回类型: | unicode |
|---|
Returns the scheme defining the security origin.
| 参数: | quota – PySide.QtCore.qint64 |
|---|
| 参数: | quota – PySide.QtCore.qint64 |
|---|
Sets the quota for the databases in the security origin to quota 字节。
If the quota is set to a value less than the current usage, the quota will remain and no data will be purged to meet the new quota. However, no new data can be added to databases in this origin.