1. 13 5月, 2018 1 次提交
  2. 04 5月, 2018 1 次提交
  3. 29 4月, 2018 2 次提交
  4. 13 4月, 2018 1 次提交
  5. 06 4月, 2018 3 次提交
  6. 04 4月, 2018 1 次提交
  7. 15 3月, 2018 2 次提交
  8. 10 3月, 2018 1 次提交
  9. 07 3月, 2018 2 次提交
  10. 01 3月, 2018 1 次提交
  11. 28 2月, 2018 2 次提交
  12. 27 2月, 2018 2 次提交
  13. 22 2月, 2018 4 次提交
  14. 20 2月, 2018 2 次提交
  15. 16 2月, 2018 3 次提交
  16. 15 2月, 2018 1 次提交
    • M
      Webview Api Prototype (#42690) · 3412eab2
      Matt Bierner 提交于
      * Webview api
      
      * Cleaning up markdown webview
      
      * Hooking up dispose
      
      * Fix some merge errors
      
      * Use custom context key to show markdown title bar contributions
      
      * Add basic on focus and on blur events
      
      * Fixing find widget in webview
      
      * Hookup _isDisposed
      
      * Use new extension resource scheme to load markdown extension resources
      
      * Documenting keep alive
      3412eab2
  17. 02 2月, 2018 1 次提交
  18. 29 1月, 2018 2 次提交
  19. 24 1月, 2018 2 次提交
  20. 23 1月, 2018 1 次提交
  21. 20 1月, 2018 1 次提交
  22. 19 1月, 2018 2 次提交
  23. 17 1月, 2018 1 次提交
    • M
      Allow loading webview outside of file: origin (#41698) · cbf9ae23
      Matt Bierner 提交于
      * Allow loading webview outside of file: origin
      
      **Problem**
      Webviews are currently always loaded from a file on the disk. This results in the webview running in the file origin, potentially allowing it to access any file on disk. If a webview fails to sanitize workspace or remote input, untrusted code could potentially access files on the user's system.
      
      **Fix**
      Add a new option to serve the webview out of a "data:" uri instead. This prevents access to `file://` resources.
      
      In order to allow webviews to still load resources from disk, add a new protocol called `vscode-core-resource://` that only allows access to resources inside of the vscode directory.
      
      Moves extension pages and our release notes to use this new option. These already are pretty locked down. We cannot move the htmlpreview command to use this option as it would break a huge number of existing extensions, however the new webview API will always have this new option enabled.
      
      * Shorted protocol name
      cbf9ae23
  24. 21 12月, 2017 1 次提交