├── .gitignore ├── 404.html ├── CNAME ├── README.md ├── Rakefile ├── _config.yml ├── _includes ├── JB │ ├── analytics │ ├── analytics-providers │ │ ├── getclicky │ │ ├── google │ │ └── mixpanel │ ├── categories_list │ ├── comments │ ├── comments-providers │ │ ├── disqus │ │ ├── facebook │ │ ├── intensedebate │ │ └── livefyre │ ├── liquid_raw │ ├── pages_list │ ├── posts_collate │ ├── setup │ ├── sharing │ └── tags_list ├── site │ └── navigation └── themes │ ├── awesome │ ├── default.html │ ├── page.html │ ├── post.html │ └── settings.yml │ └── twitter │ ├── default.html │ ├── page.html │ ├── post.html │ └── settings.yml ├── _layouts ├── default.html ├── page.html └── post.html ├── _plugins └── debug.rb ├── assets ├── themes │ ├── awesome │ │ ├── images │ │ │ ├── arrow-down.png │ │ │ ├── awe-flat-icon-logo.png │ │ │ ├── awe-trans-icon-logo.png │ │ │ ├── favicon.png │ │ │ ├── logo-delimiter.png │ │ │ ├── octocat-small.png │ │ │ └── white-linen.png │ │ ├── javascripts │ │ │ └── scale.fix.js │ │ ├── stylesheets │ │ │ ├── pygment_trac.css │ │ │ └── styles.css │ │ └── webfonts │ │ │ ├── 27DDD3_0_0.eot │ │ │ ├── 27DDD3_0_0.ttf │ │ │ ├── 27DDD3_0_0.woff │ │ │ └── MyFontsWebfontsKit.css │ └── twitter │ │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── css │ │ └── style.css └── wpf_source.png ├── atom.xml ├── changelogs ├── breaking-changes.md ├── index.md ├── whats-new-1-7-0.md ├── whats-new-1-7-1.md ├── whats-new-1-7-2.md ├── whats-new-1-7-3.md ├── whats-new-1-7-4.md ├── whats-new-1-7-5.md ├── whats-new-1-7-5.pdf ├── whats-new-1-7-rc3.md └── whats-new.md ├── favicon.ico ├── general-use ├── index.md ├── initialization-sequence.md ├── introduction-to-web-views.md ├── synchronization-model.md ├── using-data-sources.md ├── using-the-webview.md ├── using-web-sessions.md └── webcore-initialization.md ├── getting-started ├── basic-concepts.md ├── index.md ├── redist.md ├── setting-up-on-mac-osx.md └── setting-up-on-windows.md ├── index.md ├── javascript ├── index.md ├── introduction.md ├── jec.md └── sync-async-js-api.md ├── monomac ├── index.md └── osmwebview.md ├── sitemap.txt ├── unity ├── index.md └── webuicomponent.md ├── winforms ├── index.md └── webcontrol.md └── wpf ├── index.md ├── starter_sample_1.png ├── starter_sample_1_thumb.png ├── user-input.md ├── walkthrough-webcontrol.md └── webcontrol.md /.gitignore: -------------------------------------------------------------------------------- 1 | [Tt]humbs.db 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |{{text | replace:"|.", "{" | replace:".|", "}" | replace:">", ">" | replace:"<", "<" }}
31 | {% endif %}
32 | {% assign text = nil %}
--------------------------------------------------------------------------------
/_includes/JB/pages_list:
--------------------------------------------------------------------------------
1 | {% comment %}{% endcomment %}
22 |
23 | {% comment %}
24 |
59 | {% endcomment %}
60 |
61 | {% if site.JB.pages_list.provider == "custom" %}
62 | {% include custom/pages_list %}
63 | {% else %}
64 | {% for weight in (1..10) %}{% for node in pages_list %}{% if node.title != null %}{% if node.weight == weight and group == node.group %}{% if page.url == node.url %}#{obj.class}\n#{obj.pretty_inspect}" 33 | end 34 | 35 | end # DebugFilter 36 | end # Jekyll 37 | 38 | Liquid::Template.register_filter(Jekyll::DebugFilter) -------------------------------------------------------------------------------- /assets/themes/awesome/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/images/arrow-down.png -------------------------------------------------------------------------------- /assets/themes/awesome/images/awe-flat-icon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/images/awe-flat-icon-logo.png -------------------------------------------------------------------------------- /assets/themes/awesome/images/awe-trans-icon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/images/awe-trans-icon-logo.png -------------------------------------------------------------------------------- /assets/themes/awesome/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/images/favicon.png -------------------------------------------------------------------------------- /assets/themes/awesome/images/logo-delimiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/images/logo-delimiter.png -------------------------------------------------------------------------------- /assets/themes/awesome/images/octocat-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/images/octocat-small.png -------------------------------------------------------------------------------- /assets/themes/awesome/images/white-linen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/images/white-linen.png -------------------------------------------------------------------------------- /assets/themes/awesome/javascripts/scale.fix.js: -------------------------------------------------------------------------------- 1 | fixScale = function(doc) { 2 | 3 | var addEvent = 'addEventListener', 4 | type = 'gesturestart', 5 | qsa = 'querySelectorAll', 6 | scales = [1, 1], 7 | meta = qsa in doc ? doc[qsa]('meta[name=viewport]') : []; 8 | 9 | function fix() { 10 | meta.content = 'width=device-width,minimum-scale=' + scales[0] + ',maximum-scale=' + scales[1]; 11 | doc.removeEventListener(type, fix, true); 12 | } 13 | 14 | if ((meta = meta[meta.length - 1]) && addEvent in doc) { 15 | fix(); 16 | scales = [.25, 1.6]; 17 | doc[addEvent](type, fix, true); 18 | } 19 | 20 | }; -------------------------------------------------------------------------------- /assets/themes/awesome/stylesheets/pygment_trac.css: -------------------------------------------------------------------------------- 1 | .highlight { background: #ffffff; } 2 | .highlight .c { color: #abacb3; } /* Comment */ 3 | .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ 4 | .highlight .k { color: #445588; } /* Keyword */ 5 | .highlight .o { color: #445588; } /* Operator */ 6 | .highlight .cm { color: #abacb3; } /* Comment.Multiline */ 7 | .highlight .cp { color: #a17169; } /* Comment.Preproc */ 8 | .highlight .c1 { color: #abacb3; } /* Comment.Single */ 9 | .highlight .cs { color: #abacb3; ; } /* Comment.Special */ 10 | .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ 11 | .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ 12 | .highlight .ge { } /* Generic.Emph */ 13 | .highlight .gr { color: #aa0000 } /* Generic.Error */ 14 | .highlight .gh { color: #999999 } /* Generic.Heading */ 15 | .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ 16 | .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ 17 | .highlight .go { color: #888888 } /* Generic.Output */ 18 | .highlight .gp { color: #555555 } /* Generic.Prompt */ 19 | .highlight .gs { } /* Generic.Strong */ 20 | .highlight .gu { color: #800080; ; } /* Generic.Subheading */ 21 | .highlight .gt { color: #aa0000 } /* Generic.Traceback */ 22 | .highlight .kc { color: #445588; } /* Keyword.Constant */ 23 | .highlight .kd { color: #445588; } /* Keyword.Declaration */ 24 | .highlight .kn { } /* Keyword.Namespace */ 25 | .highlight .kp { } /* Keyword.Pseudo */ 26 | .highlight .kr { } /* Keyword.Reserved */ 27 | .highlight .kt { color: #445588; } /* Keyword.Type */ 28 | .highlight .m { color: #009999 } /* Literal.Number */ 29 | .highlight .s { color: #d14 } /* Literal.String */ 30 | .highlight .na { color: #008080 } /* Name.Attribute */ 31 | .highlight .nb { color: #0086B3 } /* Name.Builtin */ 32 | .highlight .nc { color: #445588; } /* Name.Class */ 33 | .highlight .no { color: #008080 } /* Name.Constant */ 34 | .highlight .ni { color: #800080 } /* Name.Entity */ 35 | .highlight .ne { color: #990000; } /* Name.Exception */ 36 | .highlight .nf { color: #990000; } /* Name.Function */ 37 | .highlight .nn { color: #555555 } /* Name.Namespace */ 38 | .highlight .nt { color: #000080 } /* Name.Tag */ 39 | .highlight .nv { color: #008080 } /* Name.Variable */ 40 | .highlight .ow { } /* Operator.Word */ 41 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 42 | .highlight .mf { color: #009999 } /* Literal.Number.Float */ 43 | .highlight .mh { color: #009999 } /* Literal.Number.Hex */ 44 | .highlight .mi { color: #009999 } /* Literal.Number.Integer */ 45 | .highlight .mo { color: #009999 } /* Literal.Number.Oct */ 46 | .highlight .sb { color: #d14 } /* Literal.String.Backtick */ 47 | .highlight .sc { color: #d14 } /* Literal.String.Char */ 48 | .highlight .sd { color: #d14 } /* Literal.String.Doc */ 49 | .highlight .s2 { color: #d14 } /* Literal.String.Double */ 50 | .highlight .se { color: #d14 } /* Literal.String.Escape */ 51 | .highlight .sh { color: #d14 } /* Literal.String.Heredoc */ 52 | .highlight .si { color: #d14 } /* Literal.String.Interpol */ 53 | .highlight .sx { color: #d14 } /* Literal.String.Other */ 54 | .highlight .sr { color: #009926 } /* Literal.String.Regex */ 55 | .highlight .s1 { color: #d14 } /* Literal.String.Single */ 56 | .highlight .ss { color: #990073 } /* Literal.String.Symbol */ 57 | .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ 58 | .highlight .vc { color: #008080 } /* Name.Variable.Class */ 59 | .highlight .vg { color: #008080 } /* Name.Variable.Global */ 60 | .highlight .vi { color: #008080 } /* Name.Variable.Instance */ 61 | .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ 62 | 63 | .type-csharp .highlight .k { color: #0000FF } 64 | .type-csharp .highlight .kt { color: #0000FF } 65 | .type-csharp .highlight .nf { color: #000000; font-weight: normal } 66 | .type-csharp .highlight .nc { color: #2B91AF } 67 | .type-csharp .highlight .nn { color: #000000 } 68 | .type-csharp .highlight .s { color: #A31515 } 69 | .type-csharp .highlight .sc { color: #A31515 } 70 | -------------------------------------------------------------------------------- /assets/themes/awesome/webfonts/27DDD3_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/webfonts/27DDD3_0_0.eot -------------------------------------------------------------------------------- /assets/themes/awesome/webfonts/27DDD3_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/webfonts/27DDD3_0_0.ttf -------------------------------------------------------------------------------- /assets/themes/awesome/webfonts/27DDD3_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/awesome/webfonts/27DDD3_0_0.woff -------------------------------------------------------------------------------- /assets/themes/awesome/webfonts/MyFontsWebfontsKit.css: -------------------------------------------------------------------------------- 1 | /* @license 2 | * MyFonts Webfont Build ID 2612691, 2013-07-30T17:40:11-0400 3 | * 4 | * The fonts listed in this notice are subject to the End User License 5 | * Agreement(s) entered into by the website owner. All other parties are 6 | * explicitly restricted from using the Licensed Webfonts(s). 7 | * 8 | * You may obtain a valid license at the URLs below. 9 | * 10 | * Webfont: Neo Sans Std Bold by Monotype Imaging 11 | * URL: http://www.myfonts.com/fonts/mti/neo-sans/std-bold/ 12 | * Copyright: Copyright 2004 Monotype Imaging, Inc. All Rights Reserved. 13 | * Licensed pageviews: 250,000 14 | * 15 | * 16 | * License: http://www.myfonts.com/viewlicense?type=web&buildid=2612691 17 | * 18 | * © 2013 MyFonts Inc 19 | */ 20 | 21 | 22 | /* @import must be at top of file, otherwise CSS will not work */ 23 | @import url("//hello.myfonts.net/count/27ddd3"); 24 | 25 | 26 | @font-face {font-family: 'NeoSansStd-Bold';src: url('/assets/themes/awesome/webfonts/27DDD3_0_0.eot');src: url('/assets/themes/awesome/webfonts/27DDD3_0_0.eot?#iefix') format('embedded-opentype'),url('/assets/themes/awesome/webfonts/27DDD3_0_0.woff') format('woff'),url('/assets/themes/awesome/webfonts/27DDD3_0_0.ttf') format('truetype');} -------------------------------------------------------------------------------- /assets/themes/twitter/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/twitter/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /assets/themes/twitter/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/themes/twitter/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /assets/themes/twitter/css/style.css: -------------------------------------------------------------------------------- 1 | /* Override some defaults */ 2 | html, body { 3 | background-color: #eee; 4 | } 5 | .navbar { 6 | margin-bottom: 0; 7 | } 8 | .container > footer { 9 | margin-top: 20px; 10 | } 11 | .container > footer p { 12 | text-align: center; /* center align it with the container */ 13 | } 14 | 15 | /* The white background content wrapper */ 16 | .content { 17 | background-color: #fff; 18 | padding: 20px; 19 | margin: 0 -20px; /* negative indent the amount of the padding to maintain the grid system */ 20 | -webkit-border-radius: 0 0 6px 6px; 21 | -moz-border-radius: 0 0 6px 6px; 22 | border-radius: 0 0 6px 6px; 23 | -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15); 24 | -moz-box-shadow: 0 1px 2px rgba(0,0,0,.15); 25 | box-shadow: 0 1px 2px rgba(0,0,0,.15); 26 | } 27 | 28 | /* Page header tweaks */ 29 | .page-header { 30 | background-color: #f5f5f5; 31 | padding: 20px 20px 10px; 32 | margin: -20px -20px 20px; 33 | } 34 | 35 | .topbar .btn { 36 | border: 0; 37 | } 38 | 39 | 40 | /* tag_box ======================================================== */ 41 | 42 | .tag_box { 43 | list-style:none; 44 | margin:0; 45 | padding:5px 0 ; 46 | overflow:hidden; 47 | } 48 | .tag_box li { 49 | line-height:28px; 50 | } 51 | .tag_box.inline li { 52 | float:left; 53 | } 54 | .tag_box a { 55 | padding: 3px 6px; 56 | margin: 2px; 57 | background: #eee; 58 | color:#005F6B; 59 | border-radius: 3px; 60 | text-decoration:none; 61 | } 62 | .tag_box a span{ 63 | vertical-align:super; 64 | font-size:0.8em; 65 | } 66 | .tag_box a.active { 67 | background:#57A957; 68 | border:1px solid #4C964D; 69 | color:#FFF; 70 | } 71 | .highlight { background: #ffffff; } 72 | .highlight .c { color: #999988; font-style: italic } /* Comment */ 73 | .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ 74 | .highlight .k { font-weight: bold } /* Keyword */ 75 | .highlight .o { font-weight: bold } /* Operator */ 76 | .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ 77 | .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ 78 | .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ 79 | .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ 80 | .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ 81 | .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ 82 | .highlight .ge { font-style: italic } /* Generic.Emph */ 83 | .highlight .gr { color: #aa0000 } /* Generic.Error */ 84 | .highlight .gh { color: #999999 } /* Generic.Heading */ 85 | .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ 86 | .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ 87 | .highlight .go { color: #888888 } /* Generic.Output */ 88 | .highlight .gp { color: #555555 } /* Generic.Prompt */ 89 | .highlight .gs { font-weight: bold } /* Generic.Strong */ 90 | .highlight .gu { color: #aaaaaa } /* Generic.Subheading */ 91 | .highlight .gt { color: #aa0000 } /* Generic.Traceback */ 92 | .highlight .kc { font-weight: bold } /* Keyword.Constant */ 93 | .highlight .kd { font-weight: bold } /* Keyword.Declaration */ 94 | .highlight .kp { font-weight: bold } /* Keyword.Pseudo */ 95 | .highlight .kr { font-weight: bold } /* Keyword.Reserved */ 96 | .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ 97 | .highlight .m { color: #009999 } /* Literal.Number */ 98 | .highlight .s { color: #d14 } /* Literal.String */ 99 | .highlight .na { color: #008080 } /* Name.Attribute */ 100 | .highlight .nb { color: #0086B3 } /* Name.Builtin */ 101 | .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ 102 | .highlight .no { color: #008080 } /* Name.Constant */ 103 | .highlight .ni { color: #800080 } /* Name.Entity */ 104 | .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ 105 | .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ 106 | .highlight .nn { color: #555555 } /* Name.Namespace */ 107 | .highlight .nt { color: #000080 } /* Name.Tag */ 108 | .highlight .nv { color: #008080 } /* Name.Variable */ 109 | .highlight .ow { font-weight: bold } /* Operator.Word */ 110 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 111 | .highlight .mf { color: #009999 } /* Literal.Number.Float */ 112 | .highlight .mh { color: #009999 } /* Literal.Number.Hex */ 113 | .highlight .mi { color: #009999 } /* Literal.Number.Integer */ 114 | .highlight .mo { color: #009999 } /* Literal.Number.Oct */ 115 | .highlight .sb { color: #d14 } /* Literal.String.Backtick */ 116 | .highlight .sc { color: #d14 } /* Literal.String.Char */ 117 | .highlight .sd { color: #d14 } /* Literal.String.Doc */ 118 | .highlight .s2 { color: #d14 } /* Literal.String.Double */ 119 | .highlight .se { color: #d14 } /* Literal.String.Escape */ 120 | .highlight .sh { color: #d14 } /* Literal.String.Heredoc */ 121 | .highlight .si { color: #d14 } /* Literal.String.Interpol */ 122 | .highlight .sx { color: #d14 } /* Literal.String.Other */ 123 | .highlight .sr { color: #009926 } /* Literal.String.Regex */ 124 | .highlight .s1 { color: #d14 } /* Literal.String.Single */ 125 | .highlight .ss { color: #990073 } /* Literal.String.Symbol */ 126 | .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ 127 | .highlight .vc { color: #008080 } /* Name.Variable.Class */ 128 | .highlight .vg { color: #008080 } /* Name.Variable.Global */ 129 | .highlight .vi { color: #008080 } /* Name.Variable.Instance */ 130 | .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ 131 | -------------------------------------------------------------------------------- /assets/wpf_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomium/net-wiki/5f701335b5dd436a747410885b542eff7723a03b/assets/wpf_source.png -------------------------------------------------------------------------------- /atom.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: nil 3 | title : Atom Feed 4 | --- 5 | 6 |