Skip to content

Commit

Permalink
Move 'authors' page to documentation with minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
klenin committed Sep 17, 2014
1 parent d9ad566 commit e11ba13
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 18 deletions.
14 changes: 3 additions & 11 deletions cgi-bin/main.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2090,12 +2090,6 @@ sub about_frame
}


sub authors_frame
{
init_template('authors.html.tt');
}


sub generate_menu
{
my $logged_on = $sid ne '';
Expand Down Expand Up @@ -2140,13 +2134,12 @@ sub generate_menu
@right_menu = ( { item => res_str(518), href => url_f('settings') } );
}

push @right_menu, (
push @right_menu, (
{ item => res_str(544), href => url_f('about') },
{ item => res_str(501), href => url_f('registration') } );

attach_menu('left_menu', undef, [ @left_menu ]);
attach_menu('right_menu', 'about', [ @right_menu ]) ;
$t->param(url_authors => url_f('authors'));
attach_menu('left_menu', undef, \@left_menu);
attach_menu('right_menu', 'about', \@right_menu);
}


Expand Down Expand Up @@ -2193,7 +2186,6 @@ sub interface_functions ()
problem_text => \&problem_text_frame,
envelope => \&CATS::Messages::envelope_frame,
about => \&about_frame,
authors => \&authors_frame,
static => \&static_frame,

similarity => \&CATS::Stats::similarity_frame,
Expand Down
9 changes: 5 additions & 4 deletions tt/authors.html.tt → templates/std/docs/tt/authors.tt
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[% PROCESS 'includes/menu_begin.tti' %]
[% PROCESS header.tti title='Авторы' %]

<b>В разработке системы принимали участие:</b>

<p>
<ul>
<li>Кленин Александр -- руководитель проекта, автор версий системы с 1.1 по текущую</li>
<li>Рожков Михаил -- начальная реализация, версии системы с 0.1 по 1.0</li>
<li>Матвиенко Виктор -- модуль работы с формулами в формате TeX</li>
<li>Коновалова Дарья -- модуль распознавания плагиата</li>
<li>Матвиенко Виктор -- работа с формулами в формате TeX</li>
<li>Коновалова Дарья -- распознавание плагиата</li>
<li>Туфанов Игорь -- универсальный генератор тестов</li>
<li>Тертышный Марк -- интерграция с контролем версий</li>
<li>Обуховская Злата -- графика и дизайн</li>
</ul>
</p>

[% PROCESS 'includes/menu_end.tti' %]
[% PROCESS footer.tti %]
2 changes: 1 addition & 1 deletion templates/std/docs/tt/footer.tti
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<table width="100%" cellspacing="0" cellpadding="0">
<tr class="menu_bar">
<td><a href="." class="nav_href">&nbsp;Справочная система - CATS</a></td>
<td align="right"><a href="../main.pl?f=authors" class="nav_href">&copy; 2002-2013 Авторы</a>&nbsp;<td>
<td align="right"><a href="authors.html" class="nav_href">&copy; 2002-2014 Авторы</a>&nbsp;<td>
</tr>
<tr height="40" class="down">
<td background="../images/std/bg2.gif">&nbsp;</td>
Expand Down
4 changes: 2 additions & 2 deletions tt/includes/menu_end.tti
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
<td align="right">
<a href="https://github.com/klenin/cats-main/issues">[% issues %]</a> |
<a href="docs/">[% docs %]</a> |
<a href="[% url_authors %]">&copy; 2002-2013 [% authors %]</a>&nbsp;
<a href="docs/authors.html">&copy; 2002-2014 [% authors %]</a>&nbsp;
</td>
</tr>
<tr class="footer2">
<td class="footer_image">
&nbsp;[% PROCESS 'includes/timing.tti' %]
</td>
<td align="right">
<a href="http://imcs.dvgu.ru/works"> [% dept %] &nbsp;</a><br>
<a href="http://imcs.dvfu.ru/works"> [% dept %] &nbsp;</a><br>
<a href="http://dvfu.ru"> [% university %] &nbsp;</a>
</td>
</tr>
Expand Down

0 comments on commit e11ba13

Please sign in to comment.