# implemented the sticky footer.

# changed the styles of many elements including taskbar, projectbar, and footer.
This commit is contained in:
hyung-hwan 2015-04-24 14:43:59 +00:00
parent 44c19de15d
commit d173c685ba
44 changed files with 312 additions and 173 deletions

View File

@ -470,7 +470,7 @@ class Project extends Controller
} }
} }
function catalog_json ($filter = '', $offset = '') function enjson_catalog ($filter = '', $offset = '')
{ {
$this->load->model ('ProjectModel', 'projects'); $this->load->model ('ProjectModel', 'projects');
@ -557,7 +557,7 @@ class Project extends Controller
print codepot_json_encode ($result); print codepot_json_encode ($result);
} }
function quickfind_json ($needle = '') function enjson_quickfind ($needle = '')
{ {
// this function is to serve the intermediate search // this function is to serve the intermediate search
// by the quick project finder in the task bar. // by the quick project finder in the task bar.

View File

@ -288,7 +288,11 @@ class SubversionModel extends Model
$fileinfo['created_rev'] = $info[0]['last_changed_rev']; $fileinfo['created_rev'] = $info[0]['last_changed_rev'];
else else
$fileinfo['created_rev'] = $info[0]['revision']; $fileinfo['created_rev'] = $info[0]['revision'];
$fileinfo['last_author'] = $info[0]['last_changed_author'];
if (array_key_exists('last_changed_author', $info[0]))
$fileinfo['last_author'] = $info[0]['last_changed_author'];
else
$fileinfo['last_author'] = '';
$actual_rev = $fileinfo['created_rev']; $actual_rev = $fileinfo['created_rev'];
} }

View File

@ -341,15 +341,16 @@ if (array_key_exists('properties', $file) && count($file['properties']) > 0)
</div> <!-- code_blame_mainarea --> </div> <!-- code_blame_mainarea -->
<!----------------------------------------------------------------------------> <div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- code_blame_content -->
<!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- code_blame_content -->
</body> </body>
</html> </html>

View File

@ -606,15 +606,16 @@ else
</div> <!-- code_diff_mainarea --> </div> <!-- code_diff_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- code_diff_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- code_diff_content -->
</body> </body>

View File

@ -336,6 +336,9 @@ if (array_key_exists('properties', $file) && count($file['properties']) > 0)
</div> <!-- code_file_mainarea --> </div> <!-- code_file_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- code_file_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
@ -343,7 +346,6 @@ if (array_key_exists('properties', $file) && count($file['properties']) > 0)
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- code_file_content -->
</body> </body>

View File

@ -664,14 +664,16 @@ $this->load->view (
</div> <!-- code_folder_mainarea --> </div> <!-- code_folder_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- code_folder_content -->
<!-- ================================================================== --> <!-- ================================================================== -->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!-- ================================================================== --> <!-- ================================================================== -->
</div> <!-- code_folder_content -->
</body> </body>
</html> </html>

View File

@ -206,16 +206,16 @@ $this->load->view (
</div> <!-- code_history_mainarea --> </div> <!-- code_history_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- code_history_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- code_history_content -->
</body> </body>
</html> </html>

View File

@ -560,15 +560,16 @@ $history = $file['history'];
</div> <!-- code_revision_mainarea --> </div> <!-- code_revision_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- code_revision_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- code_revision_content -->
<?php if ($can_edit): ?> <?php if ($can_edit): ?>
<div id="code_revision_tag_div"> <div id="code_revision_tag_div">
@ -643,7 +644,6 @@ $history = $file['history'];
</div> </div>
<?php endif; ?> <?php endif; ?>
</body> </body>
</html> </html>

View File

@ -350,6 +350,9 @@ search_and_show ($this, $project, $file['fullpath'], $revision, $pattern, $inver
</div> <!-- code_search_mainarea --> </div> <!-- code_search_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- code_search_content -->
<!-- ================================================================== --> <!-- ================================================================== -->
@ -357,7 +360,6 @@ search_and_show ($this, $project, $file['fullpath'], $revision, $pattern, $inver
<!-- ================================================================== --> <!-- ================================================================== -->
</div> <!-- code_search_content -->
</body> </body>

View File

@ -8,6 +8,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -56,10 +57,13 @@ $this->load->view (
<?php print htmlspecialchars($message) ?> <?php print htmlspecialchars($message) ?>
</div> </div>
<?php $this->load->view ('footer'); ?> <div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- project_error_content --> </div> <!-- project_error_content -->
<?php $this->load->view ('footer'); ?>
</body> </body>
</html> </html>

View File

@ -6,6 +6,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/file.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/file.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -72,6 +73,9 @@ $this->load->view (
</div> </div>
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- file_delete_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
@ -79,7 +83,6 @@ $this->load->view (
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- file_delete_content -->
</body> </body>

View File

@ -6,6 +6,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/file.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/file.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -137,13 +138,16 @@ $this->load->view (
</div> <!-- file_mainarea --> </div> <!-- file_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div>
</body> </body>

View File

@ -40,7 +40,7 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ("file/create/{$project->id}", $this->lang->line('New')) array ("file/create/{$project->id}", '<i class="fa fa-plus"></i> ' . $this->lang->line('New'))
) )
) )
); );
@ -146,13 +146,16 @@ else
</div> </div>
</div> <!-- file_home_mainarea --> </div> <!-- file_home_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- file_home_content -->
<!-- ============================================================ --> <!-- ============================================================ -->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!-- ============================================================ --> <!-- ============================================================ -->
</div> <!-- file_home_content -->
</body> </body>
</html> </html>

View File

@ -89,9 +89,9 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ("file/create/{$project->id}", $this->lang->line('New')), array ("file/create/{$project->id}", '<i class="fa fa-plus"></i> ' . $this->lang->line('New')),
array ("file/update/{$project->id}/{$hexname}", $this->lang->line('Edit')), array ("file/update/{$project->id}/{$hexname}", '<i class="fa fa-edit"></i> ' . $this->lang->line('Edit')),
array ("file/delete/{$project->id}/{$hexname}", $this->lang->line('Delete')) array ("file/delete/{$project->id}/{$hexname}", '<i class="fa fa-trash"></i> ' . $this->lang->line('Delete'))
) )
) )
); );
@ -144,6 +144,9 @@ $this->load->view (
</div> <!-- file_show_mainarea --> </div> <!-- file_show_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- file_show_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
@ -151,7 +154,6 @@ $this->load->view (
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- file_show_content -->
</body> </body>

View File

@ -10,6 +10,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -499,14 +501,15 @@ $this->load->view (
</div> <!-- graph_main_mainarea --> </div> <!-- graph_main_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- graph_main_content -->
<!-- /////////////////////////////////////////////////////////////////////// --> <!-- /////////////////////////////////////////////////////////////////////// -->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!-- /////////////////////////////////////////////////////////////////////// --> <!-- /////////////////////////////////////////////////////////////////////// -->
</div> <!-- graph_main_content -->
</body> </body>

View File

@ -6,6 +6,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/issue.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/issue.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -72,6 +74,9 @@ $this->load->view (
</div> <!-- mainarea --> </div> <!-- mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- project_issue_delete_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
@ -79,7 +84,6 @@ $this->load->view (
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- project_issue_delete_content -->
</body> </body>

View File

@ -6,6 +6,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/issue.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/issue.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -155,13 +157,16 @@ $this->load->view (
</div> <!-- issue_edit_mainarea --> </div> <!-- issue_edit_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div>
</body> </body>

View File

@ -8,6 +8,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/issue.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/issue.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -84,7 +85,7 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ("issue/create/{$project->id}", $this->lang->line('New'), 'issue_home_new') array ("issue/create/{$project->id}", '<i class="fa fa-plus"></i> ' . $this->lang->line('New'), 'issue_home_new')
) )
) )
); );
@ -223,6 +224,10 @@ else
</div> <!-- issue_home_mainarea --> </div> <!-- issue_home_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- issue_home_content -->
<!-- ============================================================ --> <!-- ============================================================ -->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
@ -230,7 +235,6 @@ else
<!-- ============================================================ --> <!-- ============================================================ -->
</div> <!-- issue_home_content -->
</body> </body>
</html> </html>

View File

@ -6,6 +6,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/issue.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/issue.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -188,9 +189,9 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ("issue/create/{$project->id}", $this->lang->line('New')), array ("issue/create/{$project->id}", '<i class="fa fa-plus"></i> ' . $this->lang->line('New')),
array ("issue/update/{$project->id}/{$hexid}", $this->lang->line('Edit')), array ("issue/update/{$project->id}/{$hexid}", '<i class="fa fa-edit"></i> ' . $this->lang->line('Edit')),
array ("issue/delete/{$project->id}/{$hexid}", $this->lang->line('Delete')) array ("issue/delete/{$project->id}/{$hexid}", '<i class="fa fa-trash"></i> ' . $this->lang->line('Delete'))
) )
) )
); );
@ -457,13 +458,16 @@ $this->load->view (
</div> <!-- issue_show_mainarea --> </div> <!-- issue_show_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- issue_show_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- issue_show_content -->
<?php <?php
$creole_base = site_url() . "/wiki/show/{$project->id}/"; $creole_base = site_url() . "/wiki/show/{$project->id}/";

View File

@ -6,6 +6,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/log.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/log.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -296,9 +297,12 @@ $this->load->view (
</div> <!-- log_mainarea --> </div> <!-- log_mainarea -->
<?php $this->load->view ('footer'); ?> <div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- log_content --> </div> <!-- log_content -->
<?php $this->load->view ('footer'); ?>
</body> </body>
</html> </html>

View File

@ -4,6 +4,8 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -107,6 +109,10 @@ $this->load->view (
</div> </div>
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
@ -114,7 +120,6 @@ $this->load->view (
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div>
</body> </body>
</html> </html>

View File

@ -7,6 +7,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -33,7 +34,7 @@ function prepare_page_button (i, req_size)
var filter = codepot_ascii_to_hex(last_successful_filter); var filter = codepot_ascii_to_hex(last_successful_filter);
var offset = parseInt($(this).text()); var offset = parseInt($(this).text());
$.ajax({ $.ajax({
url: codepot_merge_path("<?php print site_url(); ?>", "/project/catalog_json/" + filter + "/" + ((offset - 1) * req_size)), url: codepot_merge_path("<?php print site_url(); ?>", "/project/enjson_catalog/" + filter + "/" + ((offset - 1) * req_size)),
dataType: "json", dataType: "json",
success: function(data) { render_project_list (data); } success: function(data) { render_project_list (data); }
}); });
@ -146,7 +147,7 @@ $(function () {
var filter = codepot_ascii_to_hex(last_attempted_filter); var filter = codepot_ascii_to_hex(last_attempted_filter);
$.ajax({ $.ajax({
url: codepot_merge_path("<?php print site_url(); ?>", "/project/catalog_json/" + filter), url: codepot_merge_path("<?php print site_url(); ?>", "/project/enjson_catalog/" + filter),
dataType: "json", dataType: "json",
success: function(data) { render_project_list (data); } success: function(data) { render_project_list (data); }
}); });
@ -187,9 +188,7 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ("project/create", array ("project/create", '<i class="fa fa-plus"></i> ' . $this->lang->line('New'), 'project_catalog_new')
$this->lang->line('New'),
'project_catalog_new')
) )
) )
); );
@ -271,6 +270,10 @@ else
</div> <!-- project_catalog_mainarea --> </div> <!-- project_catalog_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- project_catalog_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
@ -278,7 +281,6 @@ else
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- project_catalog_content -->
</body> </body>
</html> </html>

View File

@ -7,6 +7,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -69,15 +71,17 @@ $this->load->view (
<?php print form_close();?> <?php print form_close();?>
</div> </div>
</div> </div> <!-- mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- project_delete_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- project_delete_content -->
</body> </body>

View File

@ -6,6 +6,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -175,13 +177,16 @@ $this->load->view (
</div> <!-- project_edit_mainarea --> </div> <!-- project_edit_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- project_edit_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- project_edit_content -->
</body> </body>

View File

@ -10,6 +10,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/project.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -91,8 +92,9 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ("project/update/{$project->id}", $this->lang->line('Edit')), array ("project/create", '<i class="fa fa-plus"></i> ' . $this->lang->line('New')),
array ("project/delete/{$project->id}", $this->lang->line('Delete')) array ("project/update/{$project->id}", '<i class="fa fa-edit"></i> ' . $this->lang->line('Edit')),
array ("project/delete/{$project->id}", '<i class="fa fa-trash"></i> ' . $this->lang->line('Delete'))
) )
) )
); );
@ -317,6 +319,9 @@ foreach ($urls as $url)
</div> <!-- project_home_mainarea --> </div> <!-- project_home_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- project_home_content -->
<!-- /////////////////////////////////////////////////////////////////////// --> <!-- /////////////////////////////////////////////////////////////////////// -->
@ -324,7 +329,6 @@ foreach ($urls as $url)
<!-- /////////////////////////////////////////////////////////////////////// --> <!-- /////////////////////////////////////////////////////////////////////// -->
</div> <!-- project_home_content -->
</body> </body>

View File

@ -1,4 +1,10 @@
<div class="projectbar"> <div id="codepot-projectbar" class="projectbar">
<script type="text/javascript">
$(function() {
$("#codepot-projectbar .button").button();
});
</script>
<?php <?php
function show_projectbar ($con, $banner, $page, $ctxmenuitems) function show_projectbar ($con, $banner, $page, $ctxmenuitems)
@ -55,6 +61,7 @@ function show_projectbar ($con, $banner, $page, $ctxmenuitems)
{ {
$menuitems = array ( $menuitems = array (
array ("project/home/{$project->id}", $con->lang->line('Overview')), array ("project/home/{$project->id}", $con->lang->line('Overview')),
//array ("project/home/{$project->id}", '<i class="fa fa-code fa-2x"></i>'),
array ("wiki/home/{$project->id}", $con->lang->line('Wiki')), array ("wiki/home/{$project->id}", $con->lang->line('Wiki')),
array ("issue/home/{$project->id}", $con->lang->line('Issues')), array ("issue/home/{$project->id}", $con->lang->line('Issues')),
array ("code/home/{$project->id}", $con->lang->line('Code')), array ("code/home/{$project->id}", $con->lang->line('Code')),
@ -65,7 +72,7 @@ function show_projectbar ($con, $banner, $page, $ctxmenuitems)
foreach ($menuitems as $item) foreach ($menuitems as $item)
{ {
$menuid = substr ($item[0], 0, strpos($item[0], '/')); $menuid = substr ($item[0], 0, strpos($item[0], '/'));
$extra = ($menuid == $id)? 'class="selected"': ''; $extra = ($menuid == $id)? 'class="selected button"': 'class="button"';
$menulink = $item[0]; $menulink = $item[0];
print anchor ($menulink, $item[1], $extra); print anchor ($menulink, $item[1], $extra);
@ -81,7 +88,7 @@ function show_projectbar ($con, $banner, $page, $ctxmenuitems)
foreach ($menuitems as $item) foreach ($menuitems as $item)
{ {
$menuid = substr ($item[0], strpos($item[0], '/') + 1); $menuid = substr ($item[0], strpos($item[0], '/') + 1);
$extra = ($menuid == $id)? 'class="selected"': ''; $extra = ($menuid == $id)? 'class="selected button"': 'class="button"';
$menulink = $item[0]; $menulink = $item[0];
print anchor ($menulink, $item[1], $extra); print anchor ($menulink, $item[1], $extra);
@ -98,7 +105,7 @@ function show_projectbar ($con, $banner, $page, $ctxmenuitems)
foreach ($menuitems as $item) foreach ($menuitems as $item)
{ {
$menuid = substr ($item[0], strpos($item[0], '/') + 1); $menuid = substr ($item[0], strpos($item[0], '/') + 1);
$extra = ($menuid == $id)? 'class="selected"': ''; $extra = ($menuid == $id)? 'class="selected button"': 'class="button"';
$menulink = $item[0]; $menulink = $item[0];
print anchor ($menulink, $item[1], $extra); print anchor ($menulink, $item[1], $extra);

View File

@ -6,6 +6,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -41,7 +42,7 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ('site/create', $this->lang->line('New')) array ('site/create', '<i class="fa fa-plus"></i> ' . $this->lang->line('New'))
) )
) )
); );
@ -67,6 +68,10 @@ foreach ($sites as $site)
</div> <!-- site_catalog_mainarea --> </div> <!-- site_catalog_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- site_catalog_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
@ -74,7 +79,6 @@ foreach ($sites as $site)
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- site_catalog_content -->
</body> </body>
</html> </html>

View File

@ -6,6 +6,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -69,7 +71,11 @@ $this->load->view (
<?php print form_close();?> <?php print form_close();?>
</div> </div>
</div> </div> <!-- mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- site_delete_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
@ -77,7 +83,6 @@ $this->load->view (
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- site_delete_content -->
</body> </body>

View File

@ -6,6 +6,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -130,13 +131,16 @@ $this->load->view (
</div> <!-- site_edit_mainarea --> </div> <!-- site_edit_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- site_edit_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- site_edit_content -->
</body> </body>

View File

@ -8,6 +8,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -352,9 +354,12 @@ foreach ($latest_projects as $project)
</div> <!-- site_home_mainarea --> </div> <!-- site_home_mainarea -->
<?php $this->load->view ('footer'); ?> <div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- site_home_content --> </div> <!-- site_home_content -->
<?php $this->load->view ('footer'); ?>
</body> </body>
</html> </html>

View File

@ -6,6 +6,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/site.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -54,26 +55,26 @@ function render_wiki()
if ($login['sysadmin?']) if ($login['sysadmin?'])
{ {
$ctxmenuitems = array ( $ctxmenuitems = array (
//array ("site/create", $this->lang->line('New')), //array ("site/create", '<i class="fa fa-plus"></i> ' . $this->lang->line('New')),
array ("site/update/{$site->id}", $this->lang->line('Edit')), array ("site/update/{$site->id}", '<i class="fa fa-edit"></i> ' . $this->lang->line('Edit')),
array ("site/delete/{$site->id}", $this->lang->line('Delete')) array ("site/delete/{$site->id}", '<i class="fa fa-trash"></i> ' . $this->lang->line('Delete'))
); );
} }
else $ctxmenuitems = array (); else $ctxmenuitems = array ();
$this->load->view ( $this->load->view (
'projectbar', 'projectbar',
array ( array (
'banner' => $this->lang->line('Administration'), 'banner' => $this->lang->line('Administration'),
'page' => array ( 'page' => array (
'type' => 'site', 'type' => 'site',
'id' => 'catalog', 'id' => 'catalog',
'site' => $site, 'site' => $site,
), ),
'ctxmenuitems' => $ctxmenuitems 'ctxmenuitems' => $ctxmenuitems
) )
); );
?> ?>
@ -95,9 +96,12 @@ $this->load->view (
</div> <!-- site_show_mainarea --> </div> <!-- site_show_mainarea -->
<?php $this->load->view ('footer'); ?> <div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- site_show_content --> </div> <!-- site_show_content -->
<?php $this->load->view ('footer'); ?>
</body> </body>
</html> </html>

View File

@ -3,6 +3,7 @@
function show_taskbar ($con, $login) function show_taskbar ($con, $login)
{ {
print '<div class="taskbar">'; print '<div class="taskbar">';
print "\n";
print '<div class="boxb">'; print '<div class="boxb">';
@ -163,7 +164,7 @@ $(function () {
var term = codepot_string_to_hex(request.term); var term = codepot_string_to_hex(request.term);
$.ajax({ $.ajax({
url: codepot_merge_path("<?php print site_url(); ?>", "/project/quickfind_json/" + term), url: codepot_merge_path("<?php print site_url(); ?>", "/project/enjson_quickfind/" + term),
dataType: "json", dataType: "json",
success: function(data) { response(data); }, success: function(data) { response(data); },
}); });

View File

@ -6,6 +6,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/user.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/user.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -114,6 +116,10 @@ $num_activities = 0;
</div> <!-- user_home_mainarea --> </div> <!-- user_home_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- user_home_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
@ -121,7 +127,6 @@ $num_activities = 0;
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- user_home_content -->
</body> </body>

View File

@ -6,6 +6,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/user.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/user.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -88,6 +90,10 @@ $this->load->view (
</div> <!-- user_settings_mainarea --> </div> <!-- user_settings_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- user_settings_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
@ -95,7 +101,5 @@ $this->load->view (
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- user_settings_content -->
</body> </body>
</html> </html>

View File

@ -6,6 +6,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/wiki.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/wiki.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -72,6 +74,9 @@ $this->load->view (
</div> <!-- mainarea --> </div> <!-- mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- wiki_delete_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
@ -79,7 +84,6 @@ $this->load->view (
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- wiki_delete_content -->
</body> </body>

View File

@ -6,6 +6,8 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/wiki.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/wiki.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -220,13 +222,16 @@ $this->load->view (
</div> <!-- wiki_edit_mainarea --> </div> <!-- wiki_edit_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div>
</body> </body>

View File

@ -8,6 +8,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/wiki.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/wiki.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery.min.js')?>"></script>
<script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/jquery-ui.min.js')?>"></script>
@ -39,7 +40,7 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ("wiki/create/{$project->id}", $this->lang->line('New')) array ("wiki/create/{$project->id}", '<i class="fa fa-plus"></i> ' . $this->lang->line('New'))
) )
) )
); );
@ -70,6 +71,10 @@ else
</div> </div>
</div> <!-- wiki_home_mainarea --> </div> <!-- wiki_home_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- wiki_home_content -->
<!-- =================================================================== --> <!-- =================================================================== -->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
@ -77,7 +82,6 @@ else
<!-- =================================================================== --> <!-- =================================================================== -->
</div> <!-- wiki_home_content -->
</body> </body>
</html> </html>

View File

@ -6,6 +6,7 @@
<script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/codepot.js')?>"></script>
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/common.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/wiki.css')?>" /> <link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/wiki.css')?>" />
<link type="text/css" rel="stylesheet" href="<?php print base_url_make('/css/font-awesome.min.css')?>" />
<script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script> <script type="text/javascript" src="<?php print base_url_make('/js/creole.js')?>"></script>
@ -104,9 +105,9 @@ $this->load->view (
), ),
'ctxmenuitems' => array ( 'ctxmenuitems' => array (
array ("wiki/create/{$project->id}", $this->lang->line('New')), array ("wiki/create/{$project->id}", '<i class="fa fa-plus"></i> ' . $this->lang->line('New')),
array ("wiki/update/{$project->id}/{$hexname}", $this->lang->line('Edit')), array ("wiki/update/{$project->id}/{$hexname}", '<i class="fa fa-edit"></i> ' .$this->lang->line('Edit')),
array ("wiki/delete/{$project->id}/{$hexname}", $this->lang->line('Delete')) array ("wiki/delete/{$project->id}/{$hexname}", '<i class="fa fa-trash"></i> ' .$this->lang->line('Delete'))
) )
) )
); );
@ -166,13 +167,16 @@ $this->load->view (
</div> <!-- wiki_show_mainarea --> </div> <!-- wiki_show_mainarea -->
<div class='footer-pusher'></div> <!-- for sticky footer -->
</div> <!-- wiki_show_content -->
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
<?php $this->load->view ('footer'); ?> <?php $this->load->view ('footer'); ?>
<!----------------------------------------------------------------------------> <!---------------------------------------------------------------------------->
</div> <!-- wiki_show_content -->
</body> </body>

View File

@ -305,16 +305,12 @@
} }
#code_diff_mainarea_result_fullview .navigator { #code_diff_mainarea_result_fullview .navigator {
background-color: #7777FF; padding: 0.5em 0.8em 0.5em 0.8em;
color: #FFFFFF;
font-weight: bold; font-weight: bold;
padding-left: 1em; text-align: left;
} color: #1C94C4;
background-color: #E5ECF9;
#code_diff_mainarea_result_fullview .navigator a { white-space: nowrap;
color: #FFFFFF;
font-weight: bold;
font-decoration: none;
} }
#code_diff_mainarea_result_fullview .diff { #code_diff_mainarea_result_fullview .diff {

View File

@ -1,17 +1,25 @@
html { html {
height: 100%; /* for sticky footer */
} }
body { body {
padding: 0; padding: 0;
margin: 4px 4px 4px 4px; /*margin: 4px 4px 4px 4px;*/
/*margin: 0;*/ margin: 0;
/* color: #333333; */
min-width: 600px; min-width: 600px;
height: 100%; /* for sticky footer */
} }
.content { .content {
font-size: 0.9em; font-size: 0.9em;
font-family: Ubuntu, "Trebuchet MS", Tahoma, Verdana, sans-serif; font-family: /*Ubuntu,*/ "Trebuchet MS", Tahoma, Verdana, sans-serif;
min-height: 100%; /* for stick footer */
height: auto !important; /* for stick footer */
height: 100%; /* for stick footer */
margin: 0 auto -40px; /* for stick footer */
} }
.content h1 { .content h1 {
@ -161,24 +169,14 @@ body {
.content .taskbar { .content .taskbar {
font-size: 1em; font-size: 1em;
/*font-weight: bold;*/
text-transform: uppercase; text-transform: uppercase;
padding: 0.5em 0.2em 0.5em 0.2em; padding: 0.5em 0.2em 0.5em 0.2em;
color: #ffffff; color: #ffffff;
background-color: #203150; background-color: #2F2F2F;
background-color: rgba(47,47,47,0.95);
line-height: 2em; line-height: 2em;
vertical-align: middle; vertical-align: middle;
/*
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
*/
/*-webkit-box-shadow: 0 8px 6px -6px #777;
-moz-box-shadow: 0 8px 6px -6px #777;
box-shadow: 0 8px 6px -6px #777;*/
} }
.content .taskbar .boxa { .content .taskbar .boxa {
@ -222,70 +220,85 @@ body {
} }
.content .projectbar { .content .projectbar {
/*margin: 0.1em 0em 0em 0em;*/ position: relative; /* required for absolute position of .ctxmenu and .fixedmenu */
color: #333333;
/*overflow: auto;*/
overflow: inherit;
vertical-align: middle;
height: 4.5em;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 100%;
background-color: #F5F5F5;
border-bottom: 1px solid #CCCCCC;
margin-bottom: 0.5em;
padding: 0.5em 0.5em 0.5em 0.5em; padding: 0.5em 0.5em 0.5em 0.5em;
color: #FFFFFF;
background-color: #4665A2;
background-image: url("images/three-d.png");
background-repeat: repeat;
} }
.content .projectbar .title { .content .projectbar .title {
font-size: 2em; font-size: 2.2em;
font-weight: bold;
text-transform: uppercase; text-transform: uppercase;
white-space: nowrap; white-space: nowrap;
/*text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
0px -5px 35px rgba(255,255,255,0.3); */
text-shadow: 1px 1px 0 #7A7A7A;
letter-spacing: 0.1em;
} }
.content .projectbar .ctxmenu { .content .projectbar .ctxmenu {
float: right; position: absolute;
bottom: 0;
right: 3px;
padding: 0.1em 0em 0.1em 0em; padding: 0.1em 0em 0.1em 0em;
line-height: 2em; line-height: 2em;
} }
.content .projectbar .fixedmenu { .content .projectbar .fixedmenu {
float: none;
padding: 0.1em 0em 0.1em 0em; padding: 0.1em 0em 0.1em 0em;
line-height: 2em; position: absolute;
top: 3px;
right: 2px;
padding: 0;
} }
.content .projectbar .fixedmenu a { /*
padding: 6px; .content .projectbar .fixedmenu a,
color: #FFFFFF; .content .projectbar .fixedmenu a:visited {
padding-left: 0.5em;
padding-right: 0.5em;
color: #AAAAAA;
} }
.content .projectbar .fixedmenu a:hover { .content .projectbar .fixedmenu a:hover {
padding: 6px; color: #333333;
background-color: #6482A9; }*/
color: #FFFFFF;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.content .projectbar .fixedmenu a.selected { .content .projectbar .fixedmenu a.selected {
padding: 6px; /*padding: 6px;*/
color: #333333; color: #EB8F00;
background-color: #FFFFFF; border-color: #EB8F00;
-moz-border-radius: 3px; /*background-color: #FFFFFF;*/
/* -moz-border-radius: 3px;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
border-radius: 3px; border-radius: 3px;*/
}
/*border-bottom: 3px solid red;*/
}
.content .projectbar .fixedmenu a.selected:hover { .content .projectbar .fixedmenu a.selected:hover {
padding: 6px; /*padding: 6px;*/
background-color: #6482A9; /*background-color: #6482A9;
color: #FFFFFF; color: #FFFFFF;*/
} }
.content .projectbar .ctxmenu a { .content .projectbar .ctxmenu a {
padding: 6px; padding: 6px;
color: #FFFFFF; /*color: #FFFFFF;*/
} }
.content .projectbar .ctxmenu a:hover { .content .projectbar .ctxmenu a:hover {
@ -361,7 +374,7 @@ body {
padding-bottom: 0.3em; padding-bottom: 0.3em;
vertical-align: middle; vertical-align: middle;
font-size: 1em; font-size: 1em;
border: 1px solid #CCDDEE; /*border: 1px solid #CCDDEE;*/
} }
.content .mainarea form { .content .mainarea form {
@ -708,6 +721,7 @@ body {
width: 22em; width: 22em;
margin-top: 0.3em; margin-top: 0.3em;
margin-left: 0.5em; margin-left: 0.5em;
margin-right: 0.5em;
} }
.content .sidebar .collapsible-box { .content .sidebar .collapsible-box {
@ -794,33 +808,6 @@ body {
padding: 0.5em 0.2em 0.5em 0.2em; padding: 0.5em 0.2em 0.5em 0.2em;
} }
.content .footer {
clear: both;
padding: 0.3em 0.5em 0.3em 0.5em;
font-size: 1em;
/*font-weight: bold;*/
/*font-style: italic;*/
text-align: right;
color: #FFFFFF;
background-color: #4665A2;
background-color: #203150;
line-height: 2em;
/*
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
*/
/*-webkit-box-shadow: 0 8px 6px -6px #777;
-moz-box-shadow: 0 8px 6px -6px #777;
box-shadow: 0 8px 6px -6px #777;*/
}
.content .footer a {
color: #FFFFFF;
}
.content .form_message { .content .form_message {
color: red; color: red;
} }
@ -860,6 +847,36 @@ body {
margin-top: -5px; margin-top: -5px;
} }
/* === footer === */
.content .footer-pusher {
clear: both;
height: 40px; /* for sticky footer */
}
.footer {
clear: both;
text-align: right;
vertical-align: middle;
padding-right: 0.5em;
padding-right: 0.5em;
color: #CCCCCC;
background-color: #2F2F2F;
background-color: rgba(47,47,47,0.95);
font-weight: bold;
font-size: 0.9em;
font-family: /*Ubuntu,*/ "Trebuchet MS", Tahoma, Verdana, sans-serif;
height: 40px; /* for sticky footer */
line-height: 40px;
}
.footer a {
color: #FFFFFF;
}
/* === signin panel === */ /* === signin panel === */
#taskbar_signinout_form fieldset { #taskbar_signinout_form fieldset {
margin: 0; margin: 0;

View File

@ -37,7 +37,6 @@ www_DATA = \
submitbg.png \ submitbg.png \
t-node.png \ t-node.png \
textbg.png \ textbg.png \
three-d.png \
toggledown.png \ toggledown.png \
toggleup.png \ toggleup.png \
ui-bg_flat_0_aaaaaa_40x100.png \ ui-bg_flat_0_aaaaaa_40x100.png \

View File

@ -236,7 +236,6 @@ www_DATA = \
submitbg.png \ submitbg.png \
t-node.png \ t-node.png \
textbg.png \ textbg.png \
three-d.png \
toggledown.png \ toggledown.png \
toggleup.png \ toggleup.png \
ui-bg_flat_0_aaaaaa_40x100.png \ ui-bg_flat_0_aaaaaa_40x100.png \

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

View File

@ -79,7 +79,7 @@
} }
#project_catalog_mainarea_search_form { #project_catalog_mainarea_search_form {
margin-top: 1em; /*margin-top: 1em;*/
} }
#project_catalog_mainarea_search_form form { #project_catalog_mainarea_search_form form {