TypeScript mode
27 | 28 | 29 | 51 | 52 | 59 | 60 |This is a specialization of the JavaScript mode.
61 |├── gui ├── sounds │ ├── ring3.wav │ ├── ringin.wav │ ├── incomingcall.wav │ ├── outgoingcall.wav │ └── outgoingcallbusy.wav ├── images │ ├── call-hold.png │ ├── call-stop.png │ ├── camera-on.png │ ├── call-start.png │ ├── camera-off.png │ ├── call-hold-22.png │ ├── call-start-22.png │ ├── call-stop-22.png │ ├── video-icon-big.png │ ├── video-icon-off.png │ ├── video-icon-on.png │ ├── audio-volume-high.png │ ├── audio-volume-muted.png │ ├── audio-volume-muted-22.png │ └── audio-volume-medium-22.png ├── webenginepagepanel.cpp ├── WebViewNotify.cpp ├── webenginepagepanel.h ├── WebView_images.qrc ├── webtabcontents.h ├── filedownloader.h ├── WebViewMainpage.h ├── filedownloader.cpp ├── webviewrs.h ├── webenginepagepanel.ui ├── webtabcontents.ui ├── WebViewMainpage.ui ├── WebViewNotify.h ├── webtabcontents.cpp ├── webbridgers.h ├── WebViewMainpage.cpp └── webviewrs.cpp ├── rshtml ├── ivank │ ├── car.png │ ├── asphalt.jpg │ └── kevents.html ├── audio │ └── receive.wav ├── loading.html ├── cmtest.html ├── codemirror │ ├── mode │ │ ├── javascript │ │ │ ├── test.js │ │ │ ├── typescript.html │ │ │ └── index.html │ │ ├── css │ │ │ ├── index.html │ │ │ ├── scss_test.js │ │ │ ├── scss.html │ │ │ └── test.js │ │ ├── xml │ │ │ └── index.html │ │ └── htmlmixed │ │ │ ├── index.html │ │ │ └── htmlmixed.js │ └── codemirror.css ├── acetest.html ├── listforums.html ├── extimgtest.html ├── downloadurl.html ├── js │ ├── THREEx.WindowResize.js │ ├── Detector.js │ ├── Stats.js │ ├── THREEx.FullScreen.js │ └── THREEx.KeyboardState.js ├── style.css ├── improvedbroadcastchat.html ├── broadcastchat.html ├── select.html ├── nicehtml │ ├── style.css │ └── index.html ├── directchat.html ├── friends.html ├── search2.html ├── viewforum.html ├── localstorage.html ├── search3.html ├── term_tree.js ├── preview.html ├── tree.html ├── search.html ├── index.html ├── speech.js ├── interactiveparticles.html ├── libsha512.js └── Texture-From-Canvas.html ├── .gitmodules ├── cptest ├── docs └── Mainpage.dox ├── rename_plugin.sh ├── README.md ├── interface └── rsWebView.h ├── WebView.pro ├── WebViewPlugin.h ├── services ├── p3WebView.h ├── rsWebViewItems.h ├── rsWebViewItems.cc └── p3WebView.cc ├── html_rc.qrc └── WebViewPlugin.cpp /gui/sounds/ring3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/sounds/ring3.wav -------------------------------------------------------------------------------- /gui/sounds/ringin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/sounds/ringin.wav -------------------------------------------------------------------------------- /rshtml/ivank/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/rshtml/ivank/car.png -------------------------------------------------------------------------------- /gui/images/call-hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/call-hold.png -------------------------------------------------------------------------------- /gui/images/call-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/call-stop.png -------------------------------------------------------------------------------- /gui/images/camera-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/camera-on.png -------------------------------------------------------------------------------- /rshtml/audio/receive.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/rshtml/audio/receive.wav -------------------------------------------------------------------------------- /rshtml/ivank/asphalt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/rshtml/ivank/asphalt.jpg -------------------------------------------------------------------------------- /gui/images/call-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/call-start.png -------------------------------------------------------------------------------- /gui/images/camera-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/camera-off.png -------------------------------------------------------------------------------- /gui/images/call-hold-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/call-hold-22.png -------------------------------------------------------------------------------- /gui/images/call-start-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/call-start-22.png -------------------------------------------------------------------------------- /gui/images/call-stop-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/call-stop-22.png -------------------------------------------------------------------------------- /gui/images/video-icon-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/video-icon-big.png -------------------------------------------------------------------------------- /gui/images/video-icon-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/video-icon-off.png -------------------------------------------------------------------------------- /gui/images/video-icon-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/video-icon-on.png -------------------------------------------------------------------------------- /gui/sounds/incomingcall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/sounds/incomingcall.wav -------------------------------------------------------------------------------- /gui/sounds/outgoingcall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/sounds/outgoingcall.wav -------------------------------------------------------------------------------- /gui/sounds/outgoingcallbusy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/sounds/outgoingcallbusy.wav -------------------------------------------------------------------------------- /gui/images/audio-volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/audio-volume-high.png -------------------------------------------------------------------------------- /gui/images/audio-volume-muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/audio-volume-muted.png -------------------------------------------------------------------------------- /gui/images/audio-volume-muted-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/audio-volume-muted-22.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "html"] 2 | path = html 3 | url = git@github.com:RetroShare/ExampleRSPlugin.git 4 | branch = gh-pages 5 | -------------------------------------------------------------------------------- /gui/images/audio-volume-medium-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chozabu/WebViewRS/master/gui/images/audio-volume-medium-22.png -------------------------------------------------------------------------------- /cptest: -------------------------------------------------------------------------------- 1 | kdesudo -u retrotester cp lib*.so* /home/retrotester/.retroshare/extensions6/ 2 | kdesudo -u retrotester /home/chozabu/git/RetroShare/retroshare-gui/src/RetroShare 3 | 4 | -------------------------------------------------------------------------------- /rshtml/loading.html: -------------------------------------------------------------------------------- 1 |
Original external image
10 | 11 | 12 | 24 | 25 | -------------------------------------------------------------------------------- /gui/filedownloader.h: -------------------------------------------------------------------------------- 1 | #ifndef FILEDOWNLOADER_H 2 | #define FILEDOWNLOADER_H 3 | 4 | #includeThis is a specialization of the JavaScript mode.
61 |MIME types defined: text/css.
51 | Back to index
52 | 53 | Chat: 54 | 55 | 57 | 58 | 59 | 62 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /rshtml/codemirror/mode/xml/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |The XML mode supports two configuration parameters:
46 |htmlMode (boolean)br) do not require a closing tag.alignCDATA (boolean)MIME types defined: application/xml, text/html.
34 | Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nonummy nibh euismod tinunt ut laoreet dolore magna aliquam erat volut. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. 35 |
36 |37 | Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. 38 |
39 |40 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. 41 |
42 |48 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan. 49 |
50 |The HTML mixed mode depends on the XML, JavaScript, and CSS modes.
69 | 70 |It takes an optional mode configuration
71 | option, scriptTypes, which can be used to add custom
72 | behavior for specific <script type="..."> tags. If
73 | given, it should hold an array of {matches, mode}
74 | objects, where matches is a string or regexp that
75 | matches the script type, and mode is
76 | either null, for script types that should stay in
77 | HTML mode, or a mode
78 | spec corresponding to the mode that should be used for the
79 | script.
MIME types defined: text/html
82 | (redefined, only takes effect if you load this parser after the
83 | XML parser).
MIME types defined: text/scss.
Local Notes - back to index
22 | 23 | hide source? 24 | 25 | 26 |92 | JavaScript mode supports a two configuration 93 | options: 94 |
json which will set the mode to expect JSON
96 | data rather than a JavaScript program.typescript which will activate additional
98 | syntax highlighting and some other things for TypeScript code
99 | (demo).statementIndent which (given a number) will
101 | determine the amount of indentation to use for statements
102 | continued on a new line.MIME types defined: text/javascript, application/json, text/typescript, application/typescript.