Revision 493

Date:
2015/05/13 14:40:08
Author:
ahitrov
Revision Log:
Comments from 'rem' field parameter willnow draw for ANY component if described

Files:

Legend:

 
Added
 
Removed
 
Modified
  • utf8/core/comps/contenido/components/inputs/integer.msn

     
    6 6 <td style="padding-left: 3px; vertical-align: top;"><a href="#" onclick="return <% $name %>_undo();" title="Отменить изменения"><img src="/contenido/i/undo-19x19.gif" width="19" height="19" class="bb gb"></a></td>
    7 7 </tr>
    8 8 </table>
    9 % if ( exists $prop->{rem} && $prop->{rem} ) {
    10 <div style="color:gray; font-size:85%; padding:4px">&raquo; <% $prop->{rem} %></div>
    11 % }
    12 9 <textarea id="<% $name %>_prev_value" style="display: none;"><% $check %></textarea>
    13 10
    14 11 <script type="text/javascript">
  • utf8/core/comps/contenido/components/inputs/json.msn

     
    11 11 <td style="padding-left: 3px; vertical-align: top;"><a href="#" onclick="return <% $name %>_undo();" title="Отменить изменения"><img src="/contenido/i/undo-19x19.gif" width="19" height="19" class="bb gb"></a></td>
    12 12 </tr>
    13 13 </table>
    14 % if ( exists $prop->{rem} && $prop->{rem} ) {
    15 <div style="color:gray; font-size:85%; padding:4px">&raquo; <% $prop->{rem} %></div>
    16 % }
    17 14 <textarea id="<% $name %>_prev_value" style="display: none;"><% $check %></textarea>
    18 15
    19 16 <script type="text/javascript">
  • utf8/core/comps/contenido/components/inputs/string.msn

     
    6 6 <td style="padding-left: 3px; vertical-align: top;"><a href="#" onclick="return <% $name %>_undo();" title="Отменить изменения"><img src="/contenido/i/undo-19x19.gif" width="19" height="19" class="bb gb"></a></td>
    7 7 </tr>
    8 8 </table>
    9 % if ( exists $prop->{rem} && $prop->{rem} ) {
    10 <div style="color:gray; font-size:85%; padding:4px">&raquo; <% $prop->{rem} %></div>
    11 % }
    12 9 <input id="<% $name %>_prev_value" style="display: none;" value="<% html_escape($check) || $prop->{default} %>">
    13 10
    14 11 <script type="text/javascript">
  • utf8/core/comps/contenido/components/inputs/text.msn

     
    15 15 <td style="padding-left: 3px; vertical-align: top;"><a href="#" onclick="return <% $name %>_undo();" title="Отменить изменения"><img src="/contenido/i/undo-19x19.gif" width="19" height="19" class="bb gb"></a></td>
    16 16 </tr>
    17 17 </table>
    18 % if ( exists $prop->{rem} && $prop->{rem} ) {
    19 <div style="color:gray; font-size:85%; padding:4px">&raquo; <% $prop->{rem} %></div>
    20 % }
    21 18 <textarea id="<% $name %>_prev_value" style="display: none;"><% $check %></textarea>
    22 19
    23 20 <script type="text/javascript">
  • utf8/core/comps/contenido/components/inputs/url.msn

     
    9 9 <td style="padding-left: 3px; vertical-align: top;"><a href="#" onclick="return <% $name %>_undo();" title="Отменить изменения"><img src="/contenido/i/undo-19x19.gif" width="19" height="19" class="bb gb"></a></td>
    10 10 </tr>
    11 11 </table>
    12 % if ( exists $prop->{rem} && $prop->{rem} ) {
    13 <div style="color:gray; font-size:85%; padding:4px">&raquo; <% $prop->{rem} %></div>
    14 % }
    15 12 <textarea id="<% $name %>_prev_value" style="display: none;"><% $check %></textarea>
    16 13
    17 14 <script type="text/javascript">
  • utf8/core/comps/contenido/components/object_form.msn

     
    52 52 <tr><td nowrap>
    53 53 <table cellpadding="0" cellspacing="0" border="0">
    54 54 <tr>
    55 % if( ( $prop->{type} eq 'flag' ) || ($prop->{type} eq 'checkbox') )
    56 % {
    55 % if ( $prop->{type} eq 'flag' || $prop->{type} eq 'checkbox' ) {
    57 56 <td><& "/contenido/components/inputs/checkbox.msn", prop => $prop, object=>$object, options=>$options, name => $name, check => ($object->$name || $object->{$name}), id => $object->id() &></td>
    58 57 % }
    59 58 <td nowrap><b><% $prop->{rusname} %></b>&nbsp;/</td>
    60 59 <td align="right" nowrap><font color="#888888" size="-1">&nbsp;name="<% $prop->{attr} %>"</font></td>
    61 % if( $prop->{readonly} )
    62 % {
    60 % if ( $prop->{readonly} ) {
    63 61 <td align="right" nowrap>&nbsp;/&nbsp;<font color="#CC0000" size="-1">Значение нельзя изменить</font></td>
    64 62 % }
    65 63 </tr>
     
    74 72 <tr><td style="color:red">Попытка вызвать компоненту неизвестного типа (<% Dumper $prop %>)</td></tr>
    75 73 % }
    76 74 % }
    75 % if ( exists $prop->{rem} && $prop->{rem} ) {
    76 <tr><td><div style="color:gray; font-size:85%; padding:4px">&raquo; <% $prop->{rem} %></div></td></tr>
    77 % }
    77 78 % }
    78 79 <tr>
    79 80 <td><br>
  • utf8/core/ports/all/ExtUtils-MakeMaker/GNUmakefile

     
    1 1 ##############################################################################
    2 # $HeadURL: http://svn.dev.rambler.ru/Contenido/branches/utf8/ports/all/DateTime/GNUmakefile $
    3 # $Id: GNUmakefile 1243 2008-06-17 11:05:36Z abavykin $
    2 #
    4 3 ###############################################################################
    5 4
    6 5 PORTVERSION = 6.62
  • utf8/core/ports/all/Net-Subnet/GNUmakefile

     
    1 1 ##############################################################################
    2 # $HeadURL: svn+ssh://svn@kaa5/Contenido/trunk/ports/all/Date-Calc/GNUmakefile $
    3 # $Id: GNUmakefile 175 2006-06-16 12:50:03Z lonerr $
    2 #
    4 3 ###############################################################################
    5 4
    6 5 PORTVERSION = 1.03
  • utf8/core/ports/all/Socket6/GNUmakefile

     
    1 1 ##############################################################################
    2 # $HeadURL: svn://cvs1.rambler.ru/Contenido/trunk/ports/all/Time-Local/GNUmakefile $
    3 # $Id: GNUmakefile 821 2007-04-23 15:04:53Z res $
    2 #
    4 3 ###############################################################################
    5 4
    6 5 PORTVERSION = 0.25