ege_parser 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.rspec +1 -0
- data/Gemfile +19 -0
- data/Gemfile.lock +111 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +50 -0
- data/VERSION +1 -0
- data/ege_parser.gemspec +83 -0
- data/examples/2.rb +11 -0
- data/lib/ege_parser.rb +77 -0
- data/lib/error.rb +7 -0
- data/lib/pupil.rb +11 -0
- data/spec/ege_parser_spec.rb +70 -0
- data/spec/spec_helper.rb +30 -0
- data/spec/templates/authed_error.html +723 -0
- data/spec/templates/bad_data.html +973 -0
- data/spec/templates/success.html +973 -0
- data/spec/templates/unknown_error.html +0 -0
- metadata +190 -0
@@ -0,0 +1,973 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
7
|
+
<meta name="keywords" content="">
|
8
|
+
<meta name="description" content="">
|
9
|
+
<title>Проверить результаты ЕГЭ / Официальный информационный портал единого государственного экзамена (ЕГЭ 2014)</title>
|
10
|
+
<link rel="icon" href="/common/img/ege_new/favicon_ege.gif" type="ico">
|
11
|
+
|
12
|
+
<link rel="stylesheet" type="text/css" href="/common/css/style_ege_new.css" media="all">
|
13
|
+
<script type="text/javascript" src="/common/js/mootools.js"></script>
|
14
|
+
<script type="text/javascript" src="/common/js/jquery.js"></script>
|
15
|
+
<script type="text/javascript" src="/common/js/jquery.cookie.js"></script>
|
16
|
+
<script type="text/javascript" src="/common/js/ege_new.js"></script>
|
17
|
+
<script type="text/javascript" src="/common/js/ege_second.js"></script>
|
18
|
+
<script type="text/javascript" src="/common/js/custom-form-elements.js"></script>
|
19
|
+
<link media="screen" rel="stylesheet" href="/common/css/colorbox.css">
|
20
|
+
<script type="text/javascript" src="/common/js/jquery.colorbox.js"></script>
|
21
|
+
</head>
|
22
|
+
<body id="second" class="EGE">
|
23
|
+
<div id="content">
|
24
|
+
<div class="main_top">
|
25
|
+
<a class="regions example6" href="/ru/karta_russia/">Ваш регион</a>
|
26
|
+
<script type="text/javascript">
|
27
|
+
jQuery(document).ready(function(){
|
28
|
+
jQuery('.div_new_scr2').css('display', 'block');
|
29
|
+
jQuery('.div_new_scr1').css('display', 'none');
|
30
|
+
|
31
|
+
// if(!get_cookie('region_id')){
|
32
|
+
// location.href = "./?region_code=77";
|
33
|
+
// }
|
34
|
+
});
|
35
|
+
|
36
|
+
function get_cookie ( cookie_name ){
|
37
|
+
var results = document.cookie.match ( '(^|;) ?' + cookie_name + '=([^;]*)(;|$)' );
|
38
|
+
|
39
|
+
if ( results )
|
40
|
+
return ( unescape ( results[2] ) );
|
41
|
+
else
|
42
|
+
return null;
|
43
|
+
}
|
44
|
+
</script>
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<script type="text/javascript">
|
50
|
+
if(!$.colorbox)
|
51
|
+
{
|
52
|
+
var script = document.createElement("script")
|
53
|
+
script.type = "text/javascript";
|
54
|
+
script.src = '/common/js/jquery.colorbox.js';
|
55
|
+
document.getElementsByTagName("head")[0].appendChild(script);
|
56
|
+
|
57
|
+
var link = document.createElement("link")
|
58
|
+
link.type = "text/javascript";
|
59
|
+
link.rel = 'stylesheet';
|
60
|
+
link.type = 'text/css';
|
61
|
+
link.href = '/common/css/style_ege_new.css';
|
62
|
+
link.media = 'all';
|
63
|
+
document.getElementsByTagName("head")[0].appendChild(link);
|
64
|
+
}
|
65
|
+
jQuery(document).ready(function(){
|
66
|
+
|
67
|
+
jQuery('.btn1_reg').click(function(){
|
68
|
+
jQuery('.top_2_reg').slideToggle();
|
69
|
+
jQuery(this).toggleClass('btn1_sel');
|
70
|
+
jQuery('.auth_tbl .inp').removeClass('tblink').css('border-color','#ccc');
|
71
|
+
return false;
|
72
|
+
}
|
73
|
+
);
|
74
|
+
|
75
|
+
jQuery('#new_pass').click(function(){
|
76
|
+
jQuery('.client_top_bl').css('display', 'none')
|
77
|
+
jQuery.colorbox({ html : '<div style="padding : 20px 20px 0 20px;"><div id="answer_serv"> </div><div><b style="font-family: trebuchet MS; color: #1F262D; font-size: 14px;">Укажите Ваш E-mail</b></div><input class="inp tblink" type="email" id="user_email" value=""> <input type="button" id="send_pass" class="new_st_kn" value="отправить"><div>' });
|
78
|
+
jQuery('#send_pass').unbind('click');
|
79
|
+
jQuery('#send_pass').click(function(){
|
80
|
+
var email = $('#user_email').val();
|
81
|
+
if(/^[A-Za-z0-9_\-\.]+@[A-Za-z0-9_\-\.]+\.[A-Za-z0-9]+$/.test(email))
|
82
|
+
{
|
83
|
+
jQuery.ajax({
|
84
|
+
type: "POST",
|
85
|
+
url: "index.php",
|
86
|
+
async : true,
|
87
|
+
data: "send_new_pass=1&email=" + email,
|
88
|
+
success: function(data){
|
89
|
+
if(data == 'ok')
|
90
|
+
{
|
91
|
+
jQuery('#answer_serv').html('<span class="good">Успешно отправлено!</span>')
|
92
|
+
setTimeout('jQuery.colorbox.close()', 2000);
|
93
|
+
}
|
94
|
+
else if(data == 'error')
|
95
|
+
{
|
96
|
+
jQuery('#answer_serv').html('<span class="wrong">Возникла ошибка при отправке сообщения</span>')
|
97
|
+
}
|
98
|
+
else if (data == 'not_found')
|
99
|
+
{
|
100
|
+
jQuery('#answer_serv').html('<span class="wrong">Адрес не найден!</span>')
|
101
|
+
}
|
102
|
+
}
|
103
|
+
});
|
104
|
+
}
|
105
|
+
else
|
106
|
+
{
|
107
|
+
jQuery('#answer_serv').html('<span class="wrong">Неверный формат адреса!</span>')
|
108
|
+
}
|
109
|
+
});
|
110
|
+
return false;
|
111
|
+
});
|
112
|
+
|
113
|
+
$('#send_auth').click(ch_auth);
|
114
|
+
$('form[name="auth_form"]').submit(ch_auth);
|
115
|
+
|
116
|
+
});
|
117
|
+
|
118
|
+
function ch_auth()
|
119
|
+
{
|
120
|
+
var em = $('#auth_email').val().trim();
|
121
|
+
var pas = $('#auth_pass').val().trim();
|
122
|
+
if(em && pas && /^[a-z0-9_\-\.]+@[a-z0-9_\-\.]+\.[a-z0-9]+$/.test(em) )
|
123
|
+
{
|
124
|
+
var params = $('form[name="auth_form"]').serialize() + '&ajax=1';
|
125
|
+
$.post('index.php', params, function(data){
|
126
|
+
if(data === '1')
|
127
|
+
{
|
128
|
+
location.reload();
|
129
|
+
}
|
130
|
+
else
|
131
|
+
{
|
132
|
+
$('#auth_email').addClass('inp_eror_bor_aut');
|
133
|
+
$('#auth_pass').addClass('inp_eror_bor_aut');
|
134
|
+
$('#error_mess').show();
|
135
|
+
}
|
136
|
+
});
|
137
|
+
}
|
138
|
+
else
|
139
|
+
{
|
140
|
+
$('#auth_email').addClass('inp_eror_bor_aut');
|
141
|
+
$('#auth_pass').addClass('inp_eror_bor_aut');
|
142
|
+
$('#error_mess').show();
|
143
|
+
}
|
144
|
+
|
145
|
+
return false;
|
146
|
+
}
|
147
|
+
</script>
|
148
|
+
|
149
|
+
<div class="client_top">
|
150
|
+
<div class="client_top_enter"><a class="a1">Вход</a></div>
|
151
|
+
<div class="client_top_bl">
|
152
|
+
<div class="client_top_bl_str"></div>
|
153
|
+
|
154
|
+
|
155
|
+
<div class="main_top_1">
|
156
|
+
<div class="main_top_1_in">
|
157
|
+
<div class="div1a_vh">Вход в личный кабинет</div>
|
158
|
+
<div class="div1a">Авторизуйтесь через</div>
|
159
|
+
|
160
|
+
<div class="div2a">
|
161
|
+
|
162
|
+
<a class="soc_ico2 soc1" onclick="authorization_tw();return false;" href=""></a>
|
163
|
+
<a class="soc_ico2 soc2" href="https://www.facebook.com/dialog/oauth?client_id=498574560176910&redirect_uri=http%3A%2F%2Fege.edu.ru%2Fru%2Fclasses-11%2Fcheck_results%2Findex.php&state=2572792e4d837926ef0a150cd4db239d&scope=email%2Coffline_access%2Cpublish_stream%2Cuser_birthday%2Cuser_location%2Cuser_work_history%2Cuser_about_me%2Cuser_hometown"></a>
|
164
|
+
<a class="soc_ico2 soc3" onclick="authorization_vk();return false;" href=""></a>
|
165
|
+
<a class="soc_ico2 soc5" href="https://accounts.google.com/o/oauth2/auth?response_type=code&redirect_uri=http%3A%2F%2Fege.edu.ru%2Fru%2F&client_id=1004577682056.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fplus.me&access_type=offline&approval_prompt=force"></a>
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
</div>
|
170
|
+
|
171
|
+
<div class="top_2_reg" >
|
172
|
+
|
173
|
+
</div>
|
174
|
+
|
175
|
+
</div>
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
</div>
|
180
|
+
</div>
|
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
|
+
<script type="text/javascript" src="http://userapi.com/js/api/openapi.js?48"></script>
|
207
|
+
<script type="text/javascript" src="/common/js/api_auth_vk.js"></script>
|
208
|
+
<script type="text/javascript" src="/common/js/twitter_auth.js"></script>
|
209
|
+
|
210
|
+
|
211
|
+
</div> <span id="rbccontents_ee_block.1682.CONTENT_TEXT.80.949"></span>
|
212
|
+
|
213
|
+
<div class="top_right_nav">
|
214
|
+
|
215
|
+
<div class="tp_rig_nav1">
|
216
|
+
<a href="/ru/mobile/">PDA версия</a>
|
217
|
+
</div>
|
218
|
+
|
219
|
+
</div>
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
<div class="top_right_soc">
|
226
|
+
<a class="soc_se0" href="http://blog-ege.livejournal.com/" target="_blank"></a>
|
227
|
+
<a class="soc_se1" href="http://twitter.com/#!/osokoru" target="_blank"></a>
|
228
|
+
<a class="soc_se2" href="http://www.facebook.com/pages/ОСОКО-ЕГЭ-ГИА/122142527911639" target="_blank"></a>
|
229
|
+
<a class="soc_se3" href="http://vk.com/osokoru" target="_blank"></a>
|
230
|
+
<a class="soc_se4" href="http://www.youtube.com/user/osokoru" target="_blank"></a>
|
231
|
+
</div>
|
232
|
+
|
233
|
+
|
234
|
+
<div class="top_right_3_ico"><span></span></div>
|
235
|
+
<div class="top_right_3">
|
236
|
+
<form action="/ru/search/" id="search_form">
|
237
|
+
|
238
|
+
<input type="Text" class="inp1" title="Поиск" name="q" value="Поиск" onfocus="javascript:this.value=''">
|
239
|
+
<input alt="Найти" class="inp2" type="image" src="/common/img/img_2013/search_bg1.jpg" value="Поиск">
|
240
|
+
|
241
|
+
|
242
|
+
</form>
|
243
|
+
</div>
|
244
|
+
</div>
|
245
|
+
<span id="rbccontents_ee_block.1688.CONTENT_TEXT.6.955"></span>
|
246
|
+
|
247
|
+
<div class="logo_new">
|
248
|
+
<div class="logo_ico" onclick="location.href='/'"></div>
|
249
|
+
<div class="logo_text" onclick="location.href='/'">
|
250
|
+
<div class="logo_text1">Официальный информационный портал</div>
|
251
|
+
<div class="logo_text2">Единого государственного экзамена</div>
|
252
|
+
</div>
|
253
|
+
|
254
|
+
<div class="vers_special"><a href="/ru/special/main/">версия для слабовидящих</a></div>
|
255
|
+
</div>
|
256
|
+
<div class="menu_top">
|
257
|
+
<div class="menu_top_all">
|
258
|
+
<table class="menu_top_tbl">
|
259
|
+
<tr>
|
260
|
+
<td>
|
261
|
+
<div class="menu_m menu_m_1">
|
262
|
+
<a href="/ru/main/" class="menu1">Общие сведения</a>
|
263
|
+
|
264
|
+
<div class="menu_view">
|
265
|
+
|
266
|
+
<table class="menu_view_tbl">
|
267
|
+
<tr>
|
268
|
+
<td class="td1">
|
269
|
+
|
270
|
+
<div class="menu5">
|
271
|
+
<a href="/ru/main/news/" >Новости</a>
|
272
|
+
</div>
|
273
|
+
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
<div class="menu5">
|
278
|
+
<a href="/ru/main/news2/" >Региональные новости</a>
|
279
|
+
</div>
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
|
284
|
+
<div class="menu5">
|
285
|
+
<a href="/ru/main/main_item/" >Основные сведения о ЕГЭ</a>
|
286
|
+
</div>
|
287
|
+
|
288
|
+
|
289
|
+
|
290
|
+
|
291
|
+
<div class="menu5">
|
292
|
+
<a href="/ru/main/kalendege/" >Календарь участников ЕГЭ</a>
|
293
|
+
</div>
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
|
298
|
+
<div class="menu5">
|
299
|
+
<a href="/ru/main/blanks/" >Бланки ЕГЭ</a>
|
300
|
+
</div>
|
301
|
+
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
<div class="menu5">
|
306
|
+
<a href="/ru/main/brief-glossary/" >Словарь ЕГЭ</a>
|
307
|
+
</div>
|
308
|
+
|
309
|
+
|
310
|
+
</td><td class="td2">
|
311
|
+
|
312
|
+
<div class="menu5">
|
313
|
+
<a href="/ru/main/demovers/" >Демонстрационные варианты КИМ ЕГЭ</a>
|
314
|
+
</div>
|
315
|
+
|
316
|
+
|
317
|
+
|
318
|
+
|
319
|
+
<div class="menu5">
|
320
|
+
<a href="/ru/main/rules_procedures/" >Правила и процедура проведения ЕГЭ</a>
|
321
|
+
</div>
|
322
|
+
|
323
|
+
|
324
|
+
|
325
|
+
|
326
|
+
<div class="menu5">
|
327
|
+
<a href="/ru/main/chpege/" >Чем пользоваться на ЕГЭ</a>
|
328
|
+
</div>
|
329
|
+
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
<div class="menu5">
|
334
|
+
<a href="/ru/main/consult/" >Консультации по ЕГЭ</a>
|
335
|
+
</div>
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
|
340
|
+
<div class="menu5">
|
341
|
+
<a href="/ru/main/schedule/" >Расписание ЕГЭ</a>
|
342
|
+
</div>
|
343
|
+
|
344
|
+
|
345
|
+
|
346
|
+
|
347
|
+
<div class="menu5">
|
348
|
+
<a href="/ru/main/scaling/" >Шкалирование</a>
|
349
|
+
</div>
|
350
|
+
|
351
|
+
|
352
|
+
</td><td class="td2">
|
353
|
+
|
354
|
+
<div class="menu5">
|
355
|
+
<a href="/ru/main/appel/" >Апелляция</a>
|
356
|
+
</div>
|
357
|
+
|
358
|
+
|
359
|
+
|
360
|
+
|
361
|
+
<div class="menu5">
|
362
|
+
<a href="/ru/main/min-points/" >Минимальное количество баллов</a>
|
363
|
+
</div>
|
364
|
+
|
365
|
+
|
366
|
+
|
367
|
+
|
368
|
+
<div class="menu5">
|
369
|
+
<a href="/ru/main/legal-documents/" >Документы</a>
|
370
|
+
</div>
|
371
|
+
|
372
|
+
|
373
|
+
|
374
|
+
|
375
|
+
<div class="menu5">
|
376
|
+
<a href="/ru/main/Q_and_A/" >Вопрос-ответ</a>
|
377
|
+
</div>
|
378
|
+
|
379
|
+
|
380
|
+
|
381
|
+
|
382
|
+
<div class="menu5">
|
383
|
+
<a href="/ru/main/q_a/" >Часто задаваемые вопросы </a>
|
384
|
+
</div>
|
385
|
+
|
386
|
+
|
387
|
+
|
388
|
+
|
389
|
+
<div class="menu5">
|
390
|
+
<a href="/ru/main/regional/" >Региональные документы</a>
|
391
|
+
</div>
|
392
|
+
|
393
|
+
|
394
|
+
</td><td class="td2">
|
395
|
+
|
396
|
+
<div class="menu5">
|
397
|
+
<a href="/ru/main/satistics-ege/" >Статистика ЕГЭ</a>
|
398
|
+
</div>
|
399
|
+
|
400
|
+
|
401
|
+
|
402
|
+
|
403
|
+
<div class="menu5">
|
404
|
+
<a href="/ru/main/mer/" >Мероприятия</a>
|
405
|
+
</div>
|
406
|
+
|
407
|
+
|
408
|
+
|
409
|
+
|
410
|
+
<div class="menu5">
|
411
|
+
<a href="/ru/main/vote/" >Опросы</a>
|
412
|
+
</div>
|
413
|
+
|
414
|
+
|
415
|
+
|
416
|
+
|
417
|
+
<div class="menu5">
|
418
|
+
<a href="/ru/main/check_results/" >Проверить результаты ЕГЭ</a>
|
419
|
+
</div>
|
420
|
+
|
421
|
+
|
422
|
+
|
423
|
+
|
424
|
+
<div class="menu5">
|
425
|
+
<a href="/ru/main/video/" >Видео</a>
|
426
|
+
</div>
|
427
|
+
|
428
|
+
|
429
|
+
|
430
|
+
</td>
|
431
|
+
|
432
|
+
</tr>
|
433
|
+
</table>
|
434
|
+
|
435
|
+
</div>
|
436
|
+
|
437
|
+
</div>
|
438
|
+
</td>
|
439
|
+
<td>
|
440
|
+
<div class="menu_m menu_m_2">
|
441
|
+
<a href="/ru/classes-11/" class="menu1 sel">Выпускникам 11 классов<div class="st_treug"></div></a>
|
442
|
+
|
443
|
+
<div class="menu_view">
|
444
|
+
|
445
|
+
<table class="menu_view_tbl">
|
446
|
+
<tr>
|
447
|
+
<td class="td1">
|
448
|
+
|
449
|
+
<div class="menu5">
|
450
|
+
<a href="/ru/classes-11/school-ege/" >ЕГЭ и школа</a>
|
451
|
+
</div>
|
452
|
+
|
453
|
+
|
454
|
+
|
455
|
+
|
456
|
+
<div class="menu5">
|
457
|
+
<a href="/ru/classes-11/egerus/" >ЕГЭ по русскому языку</a>
|
458
|
+
</div>
|
459
|
+
|
460
|
+
|
461
|
+
|
462
|
+
|
463
|
+
<div class="menu5">
|
464
|
+
<a href="/ru/classes-11/egemath/" >ЕГЭ по математике</a>
|
465
|
+
</div>
|
466
|
+
|
467
|
+
|
468
|
+
|
469
|
+
|
470
|
+
<div class="menu5">
|
471
|
+
<a href="/ru/classes-11/olympics/" >Олимпиады и ЕГЭ</a>
|
472
|
+
</div>
|
473
|
+
|
474
|
+
|
475
|
+
|
476
|
+
|
477
|
+
<div class="menu5">
|
478
|
+
<a href="/ru/classes-11/participant/" >Участники с ОВЗ</a>
|
479
|
+
</div>
|
480
|
+
|
481
|
+
|
482
|
+
|
483
|
+
|
484
|
+
<div class="menu5">
|
485
|
+
<a href="/ru/classes-11/links/" >Полезная информация</a>
|
486
|
+
</div>
|
487
|
+
|
488
|
+
|
489
|
+
</td><td class="td2">
|
490
|
+
|
491
|
+
<div class="menu5">
|
492
|
+
<a href="/ru/classes-11/budvn/" >Будьте внимательны!</a>
|
493
|
+
</div>
|
494
|
+
|
495
|
+
|
496
|
+
|
497
|
+
|
498
|
+
<div class="menu5">
|
499
|
+
<a href="/ru/classes-11/psych/" >Советы психолога</a>
|
500
|
+
</div>
|
501
|
+
|
502
|
+
|
503
|
+
|
504
|
+
|
505
|
+
<div class="menu5">
|
506
|
+
<a href="/ru/classes-11/sic/" >СИЦ-ЕГЭ 2014</a>
|
507
|
+
</div>
|
508
|
+
|
509
|
+
|
510
|
+
|
511
|
+
|
512
|
+
<div class="menu5">
|
513
|
+
<a href="/ru/classes-11/check_results/" class="sel_2ur">Проверить результаты ЕГЭ</a>
|
514
|
+
</div>
|
515
|
+
|
516
|
+
|
517
|
+
|
518
|
+
</td>
|
519
|
+
|
520
|
+
</tr>
|
521
|
+
</table>
|
522
|
+
|
523
|
+
</div>
|
524
|
+
|
525
|
+
</div>
|
526
|
+
</td>
|
527
|
+
<td>
|
528
|
+
<div class="menu_m menu_m_3">
|
529
|
+
<a href="/ru/universities-colleges/" class="menu1">Поступающим в вузы и ссузы</a>
|
530
|
+
|
531
|
+
<div class="menu_view">
|
532
|
+
|
533
|
+
<table class="menu_view_tbl">
|
534
|
+
<tr>
|
535
|
+
<td class="td1">
|
536
|
+
|
537
|
+
<div class="menu5">
|
538
|
+
<a href="/ru/universities-colleges/institutions/" >База данных вузов</a>
|
539
|
+
</div>
|
540
|
+
|
541
|
+
|
542
|
+
|
543
|
+
|
544
|
+
<div class="menu5">
|
545
|
+
<a href="/ru/universities-colleges/colleges/" >База данных ссузов</a>
|
546
|
+
</div>
|
547
|
+
|
548
|
+
|
549
|
+
|
550
|
+
|
551
|
+
<div class="menu5">
|
552
|
+
<a href="/ru/universities-colleges/perexam/" >Перечень вступительных испытаний в ВУЗы</a>
|
553
|
+
</div>
|
554
|
+
|
555
|
+
|
556
|
+
|
557
|
+
|
558
|
+
<div class="menu5">
|
559
|
+
<a href="/ru/universities-colleges/perexam_suz/" >Перечень вступительных испытаний в ССУЗы</a>
|
560
|
+
</div>
|
561
|
+
|
562
|
+
|
563
|
+
|
564
|
+
|
565
|
+
<div class="menu5">
|
566
|
+
<a href="/ru/universities-colleges/links/" >Полезные ссылки</a>
|
567
|
+
</div>
|
568
|
+
|
569
|
+
|
570
|
+
|
571
|
+
|
572
|
+
<div class="menu5">
|
573
|
+
<a href="/ru/universities-colleges/bvm/" >Будьте внимательны!</a>
|
574
|
+
</div>
|
575
|
+
|
576
|
+
|
577
|
+
</td><td class="td2">
|
578
|
+
|
579
|
+
<div class="menu5">
|
580
|
+
<a href="/ru/universities-colleges/appel/" >Апелляция</a>
|
581
|
+
</div>
|
582
|
+
|
583
|
+
|
584
|
+
|
585
|
+
|
586
|
+
<div class="menu5">
|
587
|
+
<a href="/ru/universities-colleges/check_results/" >Проверить результаты ЕГЭ</a>
|
588
|
+
</div>
|
589
|
+
|
590
|
+
|
591
|
+
|
592
|
+
</td>
|
593
|
+
|
594
|
+
</tr>
|
595
|
+
</table>
|
596
|
+
|
597
|
+
</div>
|
598
|
+
|
599
|
+
</div>
|
600
|
+
</td>
|
601
|
+
<td>
|
602
|
+
<div class="menu_m menu_m_4">
|
603
|
+
<a href="/ru/organizers/" class="menu1">Организаторам</a>
|
604
|
+
|
605
|
+
<div class="menu_view">
|
606
|
+
|
607
|
+
<table class="menu_view_tbl">
|
608
|
+
<tr>
|
609
|
+
<td class="td1">
|
610
|
+
|
611
|
+
<div class="menu5">
|
612
|
+
<a href="/ru/organizers/subjects/" >Спецификации по предметам</a>
|
613
|
+
</div>
|
614
|
+
|
615
|
+
|
616
|
+
|
617
|
+
|
618
|
+
<div class="menu5">
|
619
|
+
<a href="/ru/organizers/codifier_subjects/" >Кодификаторы по предметам</a>
|
620
|
+
</div>
|
621
|
+
|
622
|
+
|
623
|
+
|
624
|
+
|
625
|
+
<div class="menu5">
|
626
|
+
<a href="/ru/organizers/legal-documents/" >Документы</a>
|
627
|
+
</div>
|
628
|
+
|
629
|
+
|
630
|
+
|
631
|
+
|
632
|
+
<div class="menu5">
|
633
|
+
<a href="/ru/organizers/infographics/" >Информационные материалы</a>
|
634
|
+
</div>
|
635
|
+
|
636
|
+
|
637
|
+
|
638
|
+
</td>
|
639
|
+
|
640
|
+
</tr>
|
641
|
+
</table>
|
642
|
+
|
643
|
+
</div>
|
644
|
+
|
645
|
+
</div>
|
646
|
+
</td>
|
647
|
+
</tr>
|
648
|
+
</table>
|
649
|
+
</div>
|
650
|
+
</div> <div class="status_menu">
|
651
|
+
<a href="/">Главная</a> <a href="/ru/classes-11/">Выпускникам 11 классов</a> <span>Проверить результаты ЕГЭ</span> </div> <table class="second_cont_tbl">
|
652
|
+
<tr>
|
653
|
+
<td class="second_cont_tbl_1"></td>
|
654
|
+
<td class="second_cont_tbl_2"><div class="content"> <H1 class="head_ttl">Проверить результаты ЕГЭ</H1>
|
655
|
+
|
656
|
+
<span id="rbccontents_ee_block.1736.CONTENT_TEXT.15.990"></span>
|
657
|
+
|
658
|
+
<div id="result_ege_text" style="display:none;">
|
659
|
+
Дорогие участники ЕГЭ! Здесь Вы можете узнать свои результаты экзаменов.<br><br><b>ВНИМАНИЕ! </b><br><br>Официальное ознакомление с результатами ЕГЭ: <br><br><ul><li>у выпускников текущего года – в школе; </li><li>у остальных участников – там, где регистрировались на ЕГЭ. </li></ul>Некоторые регионы могут организовать ознакомление с индивидуальными результатами через специальные Интернет-ресурсы.<br><br>
|
660
|
+
</div>
|
661
|
+
<script type="text/javascript" src="/common/js/jquery.dataTables.js"></script>
|
662
|
+
<link media="screen" rel="stylesheet" href="/common/css/jquery.dataTables.css">
|
663
|
+
<link media="screen" rel="stylesheet" href="/common/css/jquery.dataTables_themeroller.css">
|
664
|
+
|
665
|
+
<div class="infa_rzo_div infa_rzo_div2 ">
|
666
|
+
<div class="infa_rzo_div_tel infa_rzo_div_tel2">Телефон горячей линии РЦОИ<span>8(818-2)62-57-39</span></div>
|
667
|
+
<div class="infa_rzo_div_tit">Информация от РЦОИ</div>
|
668
|
+
<div class="infa_rzo_div_text">
|
669
|
+
|
670
|
+
</div>
|
671
|
+
</div>
|
672
|
+
<div class="head_tt2nm_pos">
|
673
|
+
<h1 class="head_tt2nm">Ваши результаты ЕГЭ</h1>
|
674
|
+
<div class="result_page result_page2nm">
|
675
|
+
<!--
|
676
|
+
<div class="img_exam"><img src="/common/img/image_pupil.png"></div>
|
677
|
+
-->
|
678
|
+
<div class="tit_exam">Попов С.О. <a href='?exituser=1'>Выход</a></div>
|
679
|
+
</div>
|
680
|
+
</div>
|
681
|
+
|
682
|
+
|
683
|
+
<script type="text/javascript">
|
684
|
+
/*$('.head_ttl').text('Ваши результаты ЕГЭ');*/
|
685
|
+
$('.head_ttl').css('display', 'none');
|
686
|
+
|
687
|
+
/* Define two custom functions (asc and desc) for string sorting */
|
688
|
+
$.fn.dataTableExt.oSort['date-case-asc'] = function(x,y) {
|
689
|
+
var tmp = x.split('.');
|
690
|
+
x = new Date(tmp[2], tmp[1], tmp[0]);
|
691
|
+
|
692
|
+
tmp = y.split('.');
|
693
|
+
y = new Date(tmp[2], tmp[1], tmp[0]);
|
694
|
+
return ((x < y) ? -1 : ((x > y) ? 1 : 0));
|
695
|
+
};
|
696
|
+
|
697
|
+
$.fn.dataTableExt.oSort['date-case-desc'] = function(x,y) {
|
698
|
+
var tmp = x.split('.');
|
699
|
+
x = new Date(tmp[2], tmp[1], tmp[0]);
|
700
|
+
|
701
|
+
tmp = y.split('.');
|
702
|
+
y = new Date(tmp[2], tmp[1], tmp[0]);
|
703
|
+
return ((x < y) ? 1 : ((x > y) ? -1 : 0));
|
704
|
+
};
|
705
|
+
|
706
|
+
|
707
|
+
$(document).ready(function(){
|
708
|
+
$('.exams_table').dataTable({
|
709
|
+
bPaginate: false,
|
710
|
+
bLengthChange: false,
|
711
|
+
bFilter: false,
|
712
|
+
bInfo: false,
|
713
|
+
bAutoWidth: false,
|
714
|
+
oLanguage: {
|
715
|
+
sEmptyTable: "У вас нет запланированных экзаменов"
|
716
|
+
},
|
717
|
+
aaSorting: [[0, 'asc']],
|
718
|
+
aoColumns: [
|
719
|
+
{ sType: 'date-case' },
|
720
|
+
null,
|
721
|
+
null,
|
722
|
+
null,
|
723
|
+
null,
|
724
|
+
null
|
725
|
+
]
|
726
|
+
});
|
727
|
+
});
|
728
|
+
|
729
|
+
</script>
|
730
|
+
|
731
|
+
|
732
|
+
|
733
|
+
<div class="faq_exam appil_history"><a href="/ru/universities-colleges/faq/" target="_blank">Вопросы и ответы по сервису «Результаты ЕГЭ»</a></div>
|
734
|
+
<div class="appil_table_block">
|
735
|
+
<table class="appil_resultat table exams_table"> <!-- <div class="exam_top"> </div> <div class="exam_bot"> </div> table_exam -->
|
736
|
+
<thead>
|
737
|
+
<tr>
|
738
|
+
<!--<th>№</th>-->
|
739
|
+
<th style="width: 90px;"><span>Дата экзамена</span></th>
|
740
|
+
<th style="width: 170px;"><span>Предмет</span></th>
|
741
|
+
<th style="width: 90px;"><span>Тестовый балл</span></th>
|
742
|
+
<th style="width: 90px;"><span>Минимальный балл</span></th>
|
743
|
+
<th style="width: 170px;">Статус экзамена</th>
|
744
|
+
<th style="width: 90px;"><span>Апелляция</span></th>
|
745
|
+
</tr>
|
746
|
+
</thead>
|
747
|
+
<tbody>
|
748
|
+
<tr>
|
749
|
+
<!--<td><a class="appil_tab_a" href='?exam=19'></a></td>-->
|
750
|
+
<td>
|
751
|
+
09.06.2014
|
752
|
+
</td>
|
753
|
+
<td>
|
754
|
+
<nobr></nobr> </td>
|
755
|
+
|
756
|
+
<td>
|
757
|
+
</td>
|
758
|
+
<td>
|
759
|
+
</td>
|
760
|
+
<td>Экзамен не проходил</td>
|
761
|
+
<td class="td_last">
|
762
|
+
нет
|
763
|
+
</td>
|
764
|
+
</tr>
|
765
|
+
<tr>
|
766
|
+
<!--<td><a class="appil_tab_a" href='?exam=21'></a></td>-->
|
767
|
+
<td>
|
768
|
+
29.05.2014
|
769
|
+
</td>
|
770
|
+
<td>
|
771
|
+
<nobr>Русский язык</nobr> </td>
|
772
|
+
|
773
|
+
<td>
|
774
|
+
</td>
|
775
|
+
<td>
|
776
|
+
</td>
|
777
|
+
<td><span style='text-decoration: underline;' title='Обработка работ по данному экзамену не завершена или результаты еще не поступили на региональный уровень'><nobr>Нет результата (обработка)</nobr></span></td>
|
778
|
+
<td class="td_last">
|
779
|
+
нет
|
780
|
+
</td>
|
781
|
+
</tr>
|
782
|
+
<tr>
|
783
|
+
<!--<td><a class="appil_tab_a" href='?exam=24'></a></td>-->
|
784
|
+
<td>
|
785
|
+
05.06.2014
|
786
|
+
</td>
|
787
|
+
<td>
|
788
|
+
<nobr>Математика</nobr> </td>
|
789
|
+
|
790
|
+
<td>
|
791
|
+
</td>
|
792
|
+
<td>
|
793
|
+
</td>
|
794
|
+
<td>Экзамен не проходил</td>
|
795
|
+
<td class="td_last">
|
796
|
+
нет
|
797
|
+
</td>
|
798
|
+
</tr>
|
799
|
+
<tr>
|
800
|
+
<!--<td><a class="appil_tab_a" href='?exam=32'></a></td>-->
|
801
|
+
<td>
|
802
|
+
02.06.2014
|
803
|
+
</td>
|
804
|
+
<td>
|
805
|
+
<nobr>Физика</nobr> </td>
|
806
|
+
|
807
|
+
<td>
|
808
|
+
</td>
|
809
|
+
<td>
|
810
|
+
</td>
|
811
|
+
<td>Экзамен не проходил</td>
|
812
|
+
<td class="td_last">
|
813
|
+
нет
|
814
|
+
</td>
|
815
|
+
</tr>
|
816
|
+
</tbody>
|
817
|
+
</table>
|
818
|
+
</div>
|
819
|
+
|
820
|
+
|
821
|
+
|
822
|
+
<!--p>Попов С.О. <a href='?exituser=1'>Выход</a></p>
|
823
|
+
<p>Экзамены участника</p>
|
824
|
+
<table class='examtable'>
|
825
|
+
<tr>
|
826
|
+
<td>№</td>
|
827
|
+
<td>Предмет</td>
|
828
|
+
<td>Дата экзамена</td>
|
829
|
+
<td>Тестовый балл</td>
|
830
|
+
<td>Первичный балл</td>
|
831
|
+
<td>Апелляция</td>
|
832
|
+
</tr>
|
833
|
+
<tr>
|
834
|
+
<td><a href='?exam=19'>1</a></td>
|
835
|
+
<td><a href='?exam=19'>Информатика и ИКТ</a></td>
|
836
|
+
<td><a href='?exam=19'>09.06.2014</a></td>
|
837
|
+
<td><a href='?exam=19'>0</a></td>
|
838
|
+
<td><a href='?exam=19'>0</a></td>
|
839
|
+
<td><a href='?apil=19'>нет</a></td>
|
840
|
+
</tr>
|
841
|
+
<tr>
|
842
|
+
<td><a href='?exam=21'>2</a></td>
|
843
|
+
<td><a href='?exam=21'>Русский язык</a></td>
|
844
|
+
<td><a href='?exam=21'>29.05.2014</a></td>
|
845
|
+
<td><a href='?exam=21'>0</a></td>
|
846
|
+
<td><a href='?exam=21'>0</a></td>
|
847
|
+
<td><a href='?apil=21'>нет</a></td>
|
848
|
+
</tr>
|
849
|
+
<tr>
|
850
|
+
<td><a href='?exam=24'>3</a></td>
|
851
|
+
<td><a href='?exam=24'>Математика</a></td>
|
852
|
+
<td><a href='?exam=24'>05.06.2014</a></td>
|
853
|
+
<td><a href='?exam=24'>0</a></td>
|
854
|
+
<td><a href='?exam=24'>0</a></td>
|
855
|
+
<td><a href='?apil=24'>нет</a></td>
|
856
|
+
</tr>
|
857
|
+
<tr>
|
858
|
+
<td><a href='?exam=32'>4</a></td>
|
859
|
+
<td><a href='?exam=32'>Физика</a></td>
|
860
|
+
<td><a href='?exam=32'>02.06.2014</a></td>
|
861
|
+
<td><a href='?exam=32'>0</a></td>
|
862
|
+
<td><a href='?exam=32'>0</a></td>
|
863
|
+
<td><a href='?apil=32'>нет</a></td>
|
864
|
+
</tr>
|
865
|
+
</table--><span id="rbccontents_ee_block.1671.CONTENT_TEXT.21.939"></span>
|
866
|
+
|
867
|
+
<style>
|
868
|
+
.second_cont_tbl_1 {display:none}
|
869
|
+
.second_cont_tbl_2 {padding-left:32px;}
|
870
|
+
</style>
|
871
|
+
</div></td>
|
872
|
+
</tr>
|
873
|
+
</table>
|
874
|
+
<span id="rbccontents_ee_block.1687.CONTENT_TEXT.17.954"></span>
|
875
|
+
|
876
|
+
<table class="main_lnk_tbl">
|
877
|
+
<tr>
|
878
|
+
<td class="td0"> </td>
|
879
|
+
<td class="td1"><a href="http://www.obrnadzor.gov.ru/" target="_blank" class="ic_st_s1"><span>РОСОБРНАДЗОР</span>
|
880
|
+
Федеральная служба по надзору
|
881
|
+
в сфере образования и науки</a></td>
|
882
|
+
<td class="td_r"> </td>
|
883
|
+
<td class="td1"><a href="http://fipi.ru/" target="_blank" class="ic_st_s2"><span>ФИПИ</span>
|
884
|
+
Федеральный институт
|
885
|
+
педагогических измерений</a></td>
|
886
|
+
<td class="td_r"> </td>
|
887
|
+
<td class="td1"><a href="http://www.rustest.ru/" target="_blank" class="ic_st_s3"><span>ФЦТ</span>
|
888
|
+
Федеральный центр
|
889
|
+
тестирования</a></td>
|
890
|
+
<td class="td_r"> </td>
|
891
|
+
<td class="td1"><a href="http://mon.gov.ru/" target="_blank" class="ic_st_s4"><span>Минобрнауки</span>
|
892
|
+
Министерство образования
|
893
|
+
и науки РФ</a></td>
|
894
|
+
<td class="td_r"> </td>
|
895
|
+
<td class="td1"><a href="http://www.edu.ru/" target="_blank" class="ic_st_s5"><span>Российское образование</span>
|
896
|
+
Федеральный портал</a></td>
|
897
|
+
<td class="td0"> </td>
|
898
|
+
|
899
|
+
|
900
|
+
</tr>
|
901
|
+
</table>
|
902
|
+
|
903
|
+
<div class="cont_bottom"></div>
|
904
|
+
</div>
|
905
|
+
|
906
|
+
<div id="footer"> <span id="rbccontents_ee_block.1504.CONTENT_TEXT.75.865"></span>
|
907
|
+
|
908
|
+
<div class="fot_line"></div>
|
909
|
+
|
910
|
+
|
911
|
+
<a class="new_st_kn2" href="/ru/feedback/">Обратная связь</a>
|
912
|
+
|
913
|
+
<div class="div1">
|
914
|
+
Служба поддержки портала: e-mail - sites_support@obrnadzor.gov.ru, тел. +7-499-372-11-58<br>
|
915
|
+
© 2001-2014 Федеральная служба по надзору в сфере образования и науки<br>
|
916
|
+
При использовании материалов портала ЕГЭ на внешних Интернет-ресурсах
|
917
|
+
ссылка на <a href="http://www.ege.edu.ru/">первоисточник</a> обязательна
|
918
|
+
</div>
|
919
|
+
|
920
|
+
|
921
|
+
<div class="rambler_top" style="display:none;">
|
922
|
+
|
923
|
+
<!-- begin of Top100 code -->
|
924
|
+
|
925
|
+
<script id="top100Counter" type="text/javascript" src="http://counter.rambler.ru/top100.jcn?2679311"></script>
|
926
|
+
<noscript>
|
927
|
+
<a href="http://top100.rambler.ru/navi/2679311/">
|
928
|
+
<img src="http://counter.rambler.ru/top100.cnt?2679311" alt="Rambler's Top100" border="0" />
|
929
|
+
</a>
|
930
|
+
|
931
|
+
</noscript>
|
932
|
+
<!-- end of Top100 code -->
|
933
|
+
</div>
|
934
|
+
|
935
|
+
|
936
|
+
|
937
|
+
<div class="div_right">
|
938
|
+
</div>
|
939
|
+
|
940
|
+
|
941
|
+
<!-- Yandex.Metrika counter -->
|
942
|
+
<div style="display:none;"><script type="text/javascript">
|
943
|
+
(function(w, c) {
|
944
|
+
(w[c] = w[c] || []).push(function() {
|
945
|
+
try {
|
946
|
+
w.yaCounter12242530 = new Ya.Metrika({id:12242530, enableAll: true, webvisor:true});
|
947
|
+
}
|
948
|
+
catch(e) { }
|
949
|
+
});
|
950
|
+
})(window, "yandex_metrika_callbacks");
|
951
|
+
</script></div>
|
952
|
+
<script src="//mc.yandex.ru/metrika/watch.js" type="text/javascript" defer="defer"></script>
|
953
|
+
<noscript><div><img src="//mc.yandex.ru/watch/12242530" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
|
954
|
+
<!-- /Yandex.Metrika counter -->
|
955
|
+
|
956
|
+
<script type="text/javascript">
|
957
|
+
|
958
|
+
var _gaq = _gaq || [];
|
959
|
+
_gaq.push(['_setAccount', 'UA-28842015-1']);
|
960
|
+
_gaq.push(['_trackPageview']);
|
961
|
+
|
962
|
+
(function() {
|
963
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
964
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
965
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
966
|
+
})();
|
967
|
+
|
968
|
+
</script>
|
969
|
+
|
970
|
+
|
971
|
+
</div>
|
972
|
+
</body>
|
973
|
+
</html>
|