blob: c40c35bca2e977faab808a5869d47eeeb001e9f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
<?php
$force_full_html = true;
include(FCPATH."application/views/header.php"); ?>
</div>
<script type="text/javascript">
/* <![CDATA[ */
window.lexers = <?php echo json_encode($lexers); ?>;
window.paste_base = '<?php echo site_url($id) ?>';
/* ]]> */
</script>
<?php if (isset($error_message)) { ?>
<div class="alert alert-block alert-error" style="text-align: center">
<?php echo $error_message; ?>
</div>
<?php } ?>
<div class="container paste-container">
<div style="border:1px solid #ccc;">
<div class="navbar navbar-static-top">
<div class="navbar-inner" style="box-shadow: none;">
<ul class="nav">
<li><a href="#file-info" class="brand" data-toggle="modal"><?php echo $title ?></a></li>
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" id="language-toggle">
Language: <?php echo htmlspecialchars($current_highlight); ?>
<b class="caret"></b>
</a>
<div class="dropdown-menu" style="padding: 15px; padding-bottom: 0px;">
<form>
<input type="text" id="language" placeholder="Language" class="input-medium">
</form>
</div>
</li>
<li class="divider-vertical"></li>
<li>
<a href="#file-info" role="button" data-toggle="modal">Info</a>
<div id="file-info" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Paste Information</h3>
</div>
<div class="modal-body">
<table class="table">
<tr>
<td style="border:0;">Filename:</td>
<td style="border:0;"><?php echo htmlspecialchars($filedata["filename"]) ?></td>
</tr>
<tr>
<td>Size:</td>
<td><?php echo format_bytes($filedata["filesize"]) ?></td>
</tr>
<tr>
<td>Mimetype:</td>
<td><?php echo $filedata["mimetype"] ?></td>
</tr>
<tr>
<td>Uploaded:</td>
<td><?php echo date("r", $filedata["date"]) ?></td>
</tr>
<tr>
<td>Removal:</td>
<td><?php echo $timeout ?></td>
</tr>
</table>
</div>
<div class="modal-footer">
<?php echo form_open("file/do_delete/", array("style" => "display: inline")); ?>
<input type="hidden" name="ids[<?php echo $id; ?>]" value="<?php echo $id; ?>">
<button class="btn btn-danger pull-left" aria-hidden="true">Delete</button>
</form>
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
</li>
<li class="divider-vertical"></li>
<li><a href="<?php echo site_url('file/index?repaste='.$id); ?>" role="button">Repaste</a></li>
</ul>
<div class="btn-group pull-right" style="margin-top: 7px; margin-right:-10px;">
<a id="linewrap" class="btn btn-small" rel="tooltip" title="Toggle wrapping of long lines">Linewrap</a>
<a href="<?php echo site_url($id."/plain") ?>" class="btn btn-small" rel="tooltip" title="View as plain text">Plain</a>
<a href="<?php echo site_url($id) ?>" class="btn btn-small" rel="tooltip" title="View as raw file (org. mime type)">Raw</a>
<?php if ($current_highlight === 'rmd') { ?>
<a href="<?php echo site_url($id)."/" ?>" class="btn btn-small" rel="tooltip" title="Render as Code">Code</a>
<?php } else { ?>
<a href="<?php echo site_url($id."/rmd") ?>" class="btn btn-small" rel="tooltip" title="Render as Markdown">Markdown</a>
<?php } ?>
</div>
</div>
</div>
<div>
|