-
Notifications
You must be signed in to change notification settings - Fork 2
/
.xmlrpc.txt.tmp
100 lines (98 loc) · 3.13 KB
/
.xmlrpc.txt.tmp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ACE Autocompletion demo</title>
<style type="text/css" media="screen">
body {
overflow: hidden;
}
#editor {
margin: 0;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
</style>
</head>
<body>
<pre id="editor">https://heightsmedia.com/xmlrpc.php
http://www.ch-orthez.fr/xmlrpc.php
http://178.62.42.31/xmlrpc.php
http://131.220.122.225/xmlrpc.php
http://192.81.222.191/xmlrpc.php
http://104.236.21.36/xmlrpc.php
http://128.199.97.120/xmlrpc.php
http://122.117.66.52/xmlrpc.php
http://apollomedia.de/xmlrpc.php
http://www.lifequest-services.com/xmlrpc.php
http://broketobooked.com/xmlrpc.php
http://blog.libinpan.com/xmlrpc.php
http://extensor.no/xmlrpc.php
http://gotchacovered.bm/xmlrpc.php
http://missionglobal.com/xmlrpc.php
http://kompetensnavet.org/xmlrpc.php
http://195.189.95.152/xmlrpc.php
http://vatsim-scandinavia.org/xmlrpc.php
http://www.skidmoreandhall.com/xmlrpc.php
http://sgcl.ssu.ac.kr/xmlrpc.php
http://stikespantirapih.ac.id/xmlrpc.php
https://sifat.org/xmlrpc.php
http://www.bankingonmainstreet.com/xmlrpc.php
http://de.alanyatours.net/xmlrpc.php
http://www.acupeace.com/xmlrpc.php
http://www.aandd-ps.com/xmlrpc.php
http://www.egpos.org/xmlrpc.php
http://www.drivingsales.tv/xmlrpc.php
http://www.idealvpn.com/xmlrpc.php
http://www.meteo-agriculture.eu/xmlrpc.php
http://www.formpac.com/xmlrpc.php
http://www.mirchimusicawards.com/xmlrpc.php
http://www.markgoessens.nl/xmlrpc.php
http://www.openschooldns.com/xmlrpc.php
http://www.theshawcentre.org.uk/xmlrpc.php
http://www.fadhilza.com/xmlrpc.php
http://www.tman.ca/hanas/xmlrpc.php
http://www.supersupport.com/xmlrpc.php
http://www.wheresmalta.com/xmlrpc.php
http://www.unabashedresearch.com/xmlrpc.php
http://blog.speedbit.com/xmlrpc.php
http://clothingasconversation.com/xmlrpc.php
http://preprod.chu-amiens.fr/xmlrpc.php
http://wp.omni-tech.net/xmlrpc.php
http://www.bedfactorycontracts.co.uk/xmlrpc.php
http://www.zs18.wroc.pl/xmlrpc.php
http://eldermet.ucc.ie/xmlrpc.php
http://www.litteratureaudio.com/wordpress/xmlrpc.php
http://digitalequality.net/xmlrpc.php
http://www.niitsuhome.com/wp/xmlrpc.php
http://www.fmfracing.com/wordpress/xmlrpc.php
http://mpillumination.com/xmlrpc.php
https://www.e-publicrealestate.gr/xmlrpc.php
http://www.sbc4d.com/xmlrpc.php
http://www.emotion.lu/xmlrpc.php
https://mylivegym.gr/xmlrpc.php</pre>
<!-- load ace -->
<script src="file:///android_asset/src-noconflict/ace.js"></script>
<!-- load ace language tools -->
<script src="file:///android_asset/src-noconflict/ext-language_tools.js"></script>
<script>
// trigger extension
ace.require("ace/ext/language_tools");
var editor = ace.edit("editor");
editor.session.setMode("ace/mode/c_cpp");
editor.setShowPrintMargin(false);
editor.getSession().setUseWrapMode(true);
var code = editor.getValue();
//editor.setValue("new code " + code);
//enable autocompletion and snippets
editor.setOptions({
enableBasicAutocompletion: true,
enableSnippets: true,
enableLiveAutocompletion: true
});
</script>
</body>
</html>