-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
409 lines (227 loc) · 10.8 KB
/
index.html
File metadata and controls
409 lines (227 loc) · 10.8 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Kryhear's Blog</title>
<meta name="author" content="Kryhear">
<meta name="description" content="利用MobileInstallation实现IPA程序安装后,最近有网友问起同步推、91等在线一键安装APP的实现,于是这两天抽了时间研究了一下。一开始以为可以通过调用MobileInstallation Framework来安装,仔细想想后,实在不可能通过一网页调用到系统级文件, …">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://kryhear.github.com">
<link href="/favicon.png" rel="icon">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<script src="/javascripts/modernizr-2.0.js"></script>
<script src="/javascripts/ender.js"></script>
<script src="/javascripts/octopress.js" type="text/javascript"></script>
<link href="/atom.xml" rel="alternate" title="Kryhear's Blog" type="application/atom+xml">
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
</head>
<body >
<header role="banner"><hgroup>
<h1><a href="/">Kryhear's Blog</a></h1>
<h2>A blogging for Ber.</h2>
</hgroup>
</header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
<li><a href="/atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="http://google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:kryhear.github.com" />
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
<ul class="main-navigation">
<li><a href="/">Blog</a></li>
<li><a href="/blog/archives">Archives</a></li>
<li><a href="/blog/categories/ios/">iOS</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article>
<header>
<h1 class="entry-title"><a href="/blog/2012/07/14/use-itms-services-install-ipa-to-a-jailbreak-ios-device/">越狱iOS设备利用itms-services协议,实现Safari一键安装IPA</a></h1>
<p class="meta">
<time datetime="2012-07-14T17:24:00+08:00" pubdate data-updated="true">Jul 14<span>th</span>, 2012</time>
| <a href="/blog/2012/07/14/use-itms-services-install-ipa-to-a-jailbreak-ios-device/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><p>利用MobileInstallation实现IPA程序安装后,最近有网友问起同步推、91等在线一键安装APP的实现,于是这两天抽了时间研究了一下。一开始以为可以通过调用MobileInstallation Framework来安装,仔细想想后,实在不可能通过一网页调用到系统级文件,更别说调用系统私有库里面的方法来安装。最后只好从<a href="http://tui.tongbu.com/jb" title="同步推">同步推</a>等网站入手。</p>
</div>
<footer>
<a rel="full-article" href="/blog/2012/07/14/use-itms-services-install-ipa-to-a-jailbreak-ios-device/">阅读全文 →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2012/06/27/how-to-install-ipa-with-a-jailbrbreak-ios-device-by-program/">越狱iOS设备实现IPA的安装</a></h1>
<p class="meta">
<time datetime="2012-06-27T15:17:00+08:00" pubdate data-updated="true">Jun 27<span>th</span>, 2012</time>
| <a href="/blog/2012/06/27/how-to-install-ipa-with-a-jailbrbreak-ios-device-by-program/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><p>我想,大多数人将手中的iOS设备(iPhone、iPad、iTouch)jailbreak后,除了进去Cydia安装各种插件后,也会安装诸如同步推、PP助手等第三方市场吧。我也不例外。</p>
<p>一直对于第三方市场怎样安装破解的IPA包表示好奇,恰好最近有朋友问起IPA安装的实现,于是想要一探究竟。</p>
</div>
<footer>
<a rel="full-article" href="/blog/2012/06/27/how-to-install-ipa-with-a-jailbrbreak-ios-device-by-program/">阅读全文 →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2012/06/07/Why-This-Blog-So-B/">为什么开始这个装B的Blog</a></h1>
<p class="meta">
<time datetime="2012-06-07T12:07:00+08:00" pubdate data-updated="true">Jun 7<span>th</span>, 2012</time>
| <a href="/blog/2012/06/07/Why-This-Blog-So-B/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><h3>源起</h3>
<p>最近似乎变得有点清闲,竟然鬼使神差的想找点东西学学,却也不知想学什么。然后觉得无论学什么都好,一要能装装B,二可以打发打发时间,最后是最好真能学点东西,真能记录些心得。</p>
<p>想起牛B的大神们都会弄个B(Blog),记录一些牛B的大经笔记什么的。觉得咱家也可以弄个B来写写日志心得什么的,虽然写的东西不牛,但是B应该还是可以有的。</p>
</div>
<footer>
<a rel="full-article" href="/blog/2012/06/07/Why-This-Blog-So-B/">阅读全文 →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2012/06/01/hello/">Hello</a></h1>
<p class="meta">
<time datetime="2012-06-01T02:52:00+08:00" pubdate data-updated="true">Jun 1<span>st</span>, 2012</time>
| <a href="/blog/2012/06/01/hello/#disqus_thread">Comments</a>
</p>
</header>
<div class="entry-content"><h2>Hello, Octopress!</h2>
</div>
</article>
<div class="pagination">
<a href="/blog/archives">Blog Archives</a>
</div>
</div>
<aside class="sidebar">
<section>
<h1>Weibo</h1>
<ul id="tweets">
</ul>
<iframe width="100%" height="90" class="share_self" frameborder="0" scrolling="no" src="http://widget.weibo.com/weiboshow/index.php?language=zh_cn&width=0&height=90&fansRow=2&ptype=1&speed=300&skin=2&isTitle=0&noborder=1&isWeibo=0&isFans=0&uid=1705750757&verifier=b5d94de5&colors=0082cb,efefef,666666,0082cb,ecfbfd&dpc=1"></iframe>
<!-- UY END -->
</section>
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
<li class="post">
<a href="/blog/2012/07/14/use-itms-services-install-ipa-to-a-jailbreak-ios-device/">越狱iOS设备利用itms-services协议,实现Safari一键安装IPA</a>
</li>
<li class="post">
<a href="/blog/2012/06/27/how-to-install-ipa-with-a-jailbrbreak-ios-device-by-program/">越狱iOS设备实现IPA的安装</a>
</li>
<li class="post">
<a href="/blog/2012/06/07/Why-This-Blog-So-B/">为什么开始这个装B的Blog</a>
</li>
<li class="post">
<a href="/blog/2012/06/01/hello/">hello</a>
</li>
</ul>
</section>
<section>
<h1>Categories</h1>
<ul id="tag-cloud">
<a href='/blog/categories/ios' style='font-size: 160.0%'>iOS(2)</a> </ul>
</section>
<section>
<h1>Tags</h1>
<ul class="cloud">
<a style="font-size: 170%" href="/blog/tags/ipa/">IPA</a>
<a style="font-size: 100%" href="/blog/tags/itms-services/">itms-services</a>
<a style="font-size: 170%" href="/blog/tags/jailbreak/">jailbreak</a>
<a style="font-size: 170%" href="/blog/tags/octopress/">octopress</a>
</ul>
</section>
<section>
<h1>GitHub Repos</h1>
<ul id="gh_repos">
<li class="loading">Status updating…</li>
</ul>
<a href="https://github.com/kryhear">@kryhear</a> on GitHub
<script type="text/javascript">
$.domReady(function(){
if (!window.jXHR){
var jxhr = document.createElement('script');
jxhr.type = 'text/javascript';
jxhr.src = '/javascripts/libs/jXHR.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s);
}
github.showRepos({
user: 'kryhear',
count: 10,
skip_forks: true,
target: '#gh_repos'
});
});
</script>
<script src="/javascripts/github.js" type="text/javascript"> </script>
</section>
<section class="googleplus">
<h1>
<a href="https://plus.google.com/zhxuqun@gmail.com?rel=author">
<img src="http://www.google.com/images/icons/ui/gprofile_button-32.png" width="32" height="32">
Google+
</a>
</h1>
</section>
<section>
<h1>Latest Tweets</h1>
<ul id="tweets">
<li class="loading">Status updating…</li>
</ul>
<script type="text/javascript">
$.domReady(function(){
getTwitterFeed("kryhear", 4, false);
});
</script>
<script src="/javascripts/twitter.js" type="text/javascript"> </script>
<p>Follow <a href="http://twitter.com/kryhear">@kryhear</a></p>
</section>
</aside>
</div>
</div>
<footer role="contentinfo"><p>
Copyright © 2012 - Kryhear -
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
</p>
</footer>
<!-- 友言评论代码 -->
<!-- UY BEGIN ->
<div id="uyan_frame"></div>
<script type="text/javascript" id="UYScript" src="http://v1.uyan.cc/js/iframe.js?UYUserId=1598173" async=""></script>
<!-- UY END -->
<!-- //原来disqus评论代码
<script type="text/javascript">
var disqus_shortname = 'kryhear';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
-->
<script type="text/javascript">
(function() {
var script = document.createElement('script'); script.type = 'text/javascript'; script.async = true;
script.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(script, s);
})();
</script>
</body>
</html>