/[Frey]/trunk/lib/Frey/Introspect.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Frey/Introspect.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 197 by dpavlin, Tue Oct 28 20:46:35 2008 UTC revision 212 by dpavlin, Fri Oct 31 17:58:45 2008 UTC
# Line 147  sub html { Line 147  sub html {
147                  my $package = $self->package;                  my $package = $self->package;
148    
149                  my @methods;                  my @methods;
150                  @methods = map { qq|<td><a href="/~/$package/$_">$_</a></td>| } $self->methods;                  @methods = map { qq|<td class="m"><tt>$_</tt></td>| } $self->methods;
151    
152                  my @attributes;                  my @attributes;
153                  if ( $meta->get_attribute_list ) {                  if ( $meta->get_attribute_list ) {
# Line 155  sub html { Line 155  sub html {
155                                  my $attr = $meta->get_attribute($_);                                  my $attr = $meta->get_attribute($_);
156                                  my ( $before, $title, $after ) = ( '', '', '' );                                  my ( $before, $title, $after ) = ( '', '', '' );
157                                  ( $before, $title, $after ) = ( '<b>', ' title="required"', '</b>' ) if $attr->is_required;                                  ( $before, $title, $after ) = ( '<b>', ' title="required"', '</b>' ) if $attr->is_required;
158  warn $attr->dump;  warn $attr->dump(3);
159                                  foreach my $check ( qw/has_type_constraint has_handles is_weak_ref is_required is_lazy should_coerce should_auto_deref has_trigger has_documentation has_applied_traits/ ) {                                  foreach my $check ( qw/has_type_constraint has_handles is_weak_ref is_required is_lazy should_coerce should_auto_deref has_trigger has_documentation has_applied_traits/ ) {
160                                          my $getter;                                          my $getter;
161                                                                                    
# Line 164  warn $attr->dump; Line 164  warn $attr->dump;
164                                                                                    
165                                          if ( $attr->$check ) {                                          if ( $attr->$check ) {
166                                                  if ( $getter eq $check ) {                                                  if ( $getter eq $check ) {
167                                                          $after .= "$check ";                                                          $after .= "$check";
168                                                  } else {                                                  } else {
169                                                          $after .= qq{<span class="frey-popup">$check};                                                          $after .= qq{<span class="frey-popdown">$check};
170                                                          $after .= '<span>' . $attr->$getter->dump . '</span>' if $getter ne $check;                                                          $after .= '<code>' . $attr->$getter->dump . '</code>' if $getter ne $check;
171                                                          $after .= ' </span>';                                                          $after .= '</span>';
172                                                  }                                                  }
173                                          }                                          }
174                                            $after .= ' ';
175                                  }                                  }
176                                  qq|<td>$before<a href="/~/$package/?$_">$_</a></td><td>$after</td>|                                  qq|<td class="a">$before<tt>$_</tt></td><td>$after</td>|
177                          } sort $meta->get_attribute_list                          } sort $meta->get_attribute_list
178                  }                  }
179    
180                  my $table = qq|<table><tr><th>Methods</th><th>Attributes</th><th>Properties</th></tr>|;                  my $table = qq|<table class="frey-object-browser"><tr><th class="m">Methods</th><th class="a">Attributes</th><th class="p">Properties</th></tr>|;
181                  while ( @methods || @attributes ) {                  while ( @methods || @attributes ) {
182                          my ($m,$a) = ( shift @methods, shift @attributes );                          my ($m,$a) = ( shift @methods, shift @attributes );
183                          $m ||= '<td></td>';                          $m ||= '<td></td>';
# Line 185  warn $attr->dump; Line 186  warn $attr->dump;
186                  }                  }
187                  $table .= qq|</table>|;                  $table .= qq|</table>|;
188    
                 my $classes =  
                         qq|<div class="classes">| .  
                         Frey::ClassBrowser->new->markup .  
                         qq|</div>|;  
   
189                  my ( $superclasses, $roles ) = ( '<b>Role</b>', '' );                  my ( $superclasses, $roles ) = ( '<b>Role</b>', '' );
190                  if ( ! $is_role ) {                  if ( ! $is_role ) {
191                          if ( $meta->superclasses ) {                          if ( $meta->superclasses ) {
192                                  $superclasses = 'Superclasses: ' .                                  $superclasses = 'Superclasses: ' .
193                                          join(', ',                                          join(', ',
194                                                  map { my $s = $_->meta->name; qq|<a href="/~/$s">$s</a>| }                                                  map {
195                                                            my $name = $_->meta->name;
196                                                            qq|<a class="frey-popdown" href="/~/$name">$name<code>| . $_->meta->dump(2) . qq|</code></a>|;
197                                                    }
198                                                  #grep { $_ ne 'Moose::Object' }                                                  #grep { $_ ne 'Moose::Object' }
199                                                  $meta->superclasses                                                  $meta->superclasses
200                                          );                                          );
# Line 205  warn $attr->dump; Line 204  warn $attr->dump;
204                  if ( $meta->can('roles') ) {                  if ( $meta->can('roles') ) {
205                          $roles = join(', ',                          $roles = join(', ',
206                                  grep { ! m/\Q$package\E/ }      # skip me                                  grep { ! m/\Q$package\E/ }      # skip me
207                                  map { my $r = $_->name; qq|<a href="/~/$r">$r</a>| }                                  map {
208                                            my $name = $_->name;
209                                            qq|<a class="frey-popdown" href="/~/$name">$name<code>| . $name->meta->dump(2) . qq|</code></a>|;
210                                    }
211                                  $meta->calculate_all_roles                                  $meta->calculate_all_roles
212                          );                          );
213                          $roles = " with roles: $roles" if $roles;                          $roles = " with roles: $roles" if $roles;
# Line 218  warn $attr->dump; Line 220  warn $attr->dump;
220                          body => qq|<h1>$package</h1>|                          body => qq|<h1>$package</h1>|
221                                  . qq|$superclasses\n$roles\n|                                  . qq|$superclasses\n$roles\n|
222                                  . ( $pod ? qq|<a href="#___top" title="Skip to POD" style="font-size: 80%; color: #aaa;">&darr;pod&darr</a>| : '' )                                  . ( $pod ? qq|<a href="#___top" title="Skip to POD" style="font-size: 80%; color: #aaa;">&darr;pod&darr</a>| : '' )
223                                  . qq|$table\n$pod\n$classes|,                                  . qq|$table\n$pod|,
224    
225                  );                  );
226    

Legend:
Removed from v.197  
changed lines
  Added in v.212

  ViewVC Help
Powered by ViewVC 1.1.26