App-Cinema

 view release on metacpan or  search on metacpan

root/src/comment/view.tt2  view on Meta::CPAN

[% META title = "VIEW NEWS" %]
<p>
<table >
	<tr align="left">
		<th>ID</th><th>USERID</th><th>DATE</th>
	</tr>
	[% WHILE (new = news.next) %]
	<tr style="background-color: rgb(51, 153, 153); color: white;">
		<td>[% new.id%]</td>
		<td>[% new.uid %]</a></td>
		<td>[% new.e_time%]</td>
	</tr>
	<tr>
		<td colspan=3>[% new.content %]</td>
	</tr>
	[% END %]
</table>

root/src/news/view.tt2  view on Meta::CPAN

[% META title = "VIEW NEWS" %]
<p>
<table >
	<!--<tr align="left">
		<th>ID</th><th>TITLE</th> <th>RELEASE DATE</th>
	</tr>-->
	[% WHILE (new = news.next) %]
	<tr style="background-color: rgb(51, 153, 153); color: white;">
		<td>[% new.id%]</td>
		<td>[% new.title %]</td>
		<td>[% new.release_date%]</td>		
	</tr>
	<tr>
		<td colspan=3>[% new.content %]</td>
	</tr>
	[% END %]
</table>
</p>

root/src/ttsite.css  view on Meta::CPAN


html {
    height: 100%;
}

body { 
    background-color: [% site.col.page %];
    color: [% site.col.text %];
    font-family: [% site.font.family %];
    /*font-size: 12px;*/
    margin: 0px;
    padding: 0px;
}

a {
	color: [% site.col.link %];
	text-decoration: none;
}

a:hover {
      text-decoration: underline;
}

#header {
    background-color: [% site.col.head %];
    /*border-bottom: 1px solid [% site.col.line %];*/
    /*border-bottom: 1px solid #c6c9cc;*/
    color: #FFFFFF;
    margin: 0 auto;
    /*height: 100px;*/
    width: 940px;    
}

#header a{
	color: #FFFFFF;
}

#header table,th,td
{
	border:0px;
}

#footer {
	color: #FFFFFF;
    background-color: [% site.col.head %];
    text-align: left;
    /*border-top: 1px solid [% site.col.line %];*/
    /*padding: 4px;*/
    width: 940px;
    /*height: 50px;*/
    margin: 0 auto;
	bottom:0px; 
}

#content {

root/src/ttsite.css  view on Meta::CPAN

    color: red;
}

/* Menu */

#menu {
	  color: white;
      width: 940px;
      height: 50px;
      margin: 0 auto;
      background: #000000;      
}

#menu ul {
      margin: 0;
      padding: 16px 0px;
      list-style: none;
      line-height: normal;
}

#menu li {
      float: left;
}

#menu a {
      padding: 0 10px;
      background: none;
      text-transform: uppercase;
      text-decoration: none;      
      color: [% site.col.link %];
      font-weight:bold;
}

#menu a:hover, #menu .current_page_item a {
      color: #FFFFFF;
}

script/app_cinema_server.pl  view on Meta::CPAN

   -rd --restart_delay  delay between file checks
                        (ignored if you have Linux::Inotify2 installed)
   -rr --restart_regex  regex match files that trigger
                        a restart when modified
                        (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
   --restart_directory  the directory to search for
                        modified files, can be set mulitple times
                        (defaults to '[SCRIPT_DIR]/..')
   --follow_symlinks    follow symlinks in search directories
                        (defaults to false. this is a no-op on Win32)
   --background         run the process in the background
   --pidfile            specify filename for pid file

 See also:
   perldoc Catalyst::Manual
   perldoc Catalyst::Manual::Intro

=head1 DESCRIPTION

Run a Catalyst Testserver for this application.



( run in 1.079 second using v1.01-cache-2.11-cpan-d8267643d1d )