Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Perbaikan tag html5 #129

Merged
5 commits merged into from
Oct 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
28 changes: 14 additions & 14 deletions assets/front/css/default.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

/* Global navigation */
#global-nav { float: left; }
.global-nav { float: left; }

#global-nav>li { float: left; margin-left: 15px; position: relative; }
.global-nav>li { float: left; margin-left: 15px; position: relative; }

#global-nav a {
.global-nav a {
color: #ffffef;
display: block;
height: 30px;
Expand All @@ -14,15 +14,15 @@
text-transform: capitalize;
text-shadow:1px 1px 1px #444;
}
#global-nav a.current, #global-nav a.current:hover { color: #666; }
#global-nav a:hover { color: #ffff00;}
#global-nav a:active { color: #bbb; }
.global-nav a.current, .global-nav a.current:hover { color: #666; }
.global-nav a:hover { color: #ffff00;}
.global-nav a:active { color: #bbb; }


/* Subnavigation */
#global-nav.top ul{background: #ec6216!important;}
#global-nav.main ul{background: #5494df!important;}
#global-nav ul {
.global-nav.top ul{background: #ec6216!important;}
.global-nav.main ul{background: #5494df!important;}
.global-nav ul {
z-index:99999999;
display: none;
left: -15px;
Expand All @@ -31,19 +31,19 @@
position: absolute;
width: 180px;
}
#global-nav>li:hover ul { display: block; }
#global-nav li {
.global-nav>li:hover ul { display: block; }
.global-nav li {
padding: 0 2px;
}
#global-nav ul a {
.global-nav ul a {
text-decoration: none;
font-size: 11px;
height: 25px;
line-height: 27px;
padding-left: 10px;
}
#global-nav ul a:hover { background-color: #0d365d; }
#global-nav ul a:active, #global-nav ul a.current { /* The second is for if you set a current submenu */
.global-nav ul a:hover { background-color: #0d365d; }
.global-nav ul a:active, .global-nav ul a.current { /* The second is for if you set a current submenu */
background-color: #1f2122;
position: relative;
top: 1px;
Expand Down
2 changes: 1 addition & 1 deletion assets/js/jscolor/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</head>
<body>

<script type="text/javascript" src="jscolor.js"></script>
<script src="jscolor.js"></script>

Click here: <input class="color" value="66ff00">

Expand Down
2 changes: 1 addition & 1 deletion donjo-app/errors/error_404.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<title>404 Page Not Found</title>
<style type="text/css">
<style>

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
Expand Down
2 changes: 1 addition & 1 deletion donjo-app/errors/error_db.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<title>Database Error</title>
<style type="text/css">
<style>

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
Expand Down
2 changes: 1 addition & 1 deletion donjo-app/errors/error_general.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<title>Error</title>
<style type="text/css">
<style>

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
Expand Down
2 changes: 1 addition & 1 deletion donjo-app/models/program_bantuan_model.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public function get_peserta_program($cat,$id){
$data_profil = array(
"id"=>$id,
"nama"=> $row["nama"],
"ndesc"=>"Ketua: ".$row["ketua"]." [".$row["nik"]."]<br />Alamat: RT ".strtoupper($row["rt"])." / RW ".strtoupper($row["rw"])." ".strtoupper($row["dusun"]),
"ndesc"=>"Ketua: ".$row["ketua"]." [".$row["nik"]."]<br>Alamat: RT ".strtoupper($row["rt"])." / RW ".strtoupper($row["rw"])." ".strtoupper($row["dusun"]),
"foto"=>""
);
}
Expand Down
23 changes: 12 additions & 11 deletions donjo-app/views/analisis_grafik/penduduk_excel.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
<?php
<?php
$tgl = date('d_m_Y');
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=statistik_penduduk_$tgl.xls");
header("Pragma: no-cache");
header("Expires: 0");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<!DOCTYPE html>
<html lang="id">
<head>
<title>Laporan Statistik</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="<?php echo base_url()?>assets/css/report.css" rel="stylesheet" type="text/css">
<link href="<?php echo base_url()?>assets/css/report.css" rel="stylesheet">
</head>
<body>
<div id="container">
Expand All @@ -19,7 +20,7 @@
<tbody>
<tr>
<td style="padding: 5px 20px;">

<br>
<table class="border thick data">
<thead>
Expand All @@ -43,15 +44,15 @@
<?php endforeach; ?>
</tbody>
</table>


<br>


</td>
</tr>
</tbody></table>
</tbody></table>
</div>
<label>Tanggal cetak : &nbsp; </label><?php echo tgl_indo(date("Y m d"))?>
</div>
</body></html>
</body></html>
2 changes: 1 addition & 1 deletion donjo-app/views/analisis_grafik/penduduk_pie.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
</div>
</td>
<td style="background:#fff;padding:0px;">
<script type="text/javascript">
<script>
$(function () {
var chart;

Expand Down
17 changes: 9 additions & 8 deletions donjo-app/views/analisis_grafik/penduduk_print.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<!DOCTYPE html>
<html lang="id">
<head>
<title>Laporan Statistik</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="<?php echo base_url()?>assets/css/report.css" rel="stylesheet" type="text/css">
<link href="<?php echo base_url()?>assets/css/report.css" rel="stylesheet">
</head>
<body>
<div id="container">
Expand Down Expand Up @@ -126,14 +127,14 @@
<div class="nowrap"><label>&nbsp;</label></div>
<div class="nowrap"><label><br></label></div>
</td>
<td class="top" align="center" width="30%">
<td class="top" align="center" width="30%">
<div class="nowrap"><label>&nbsp;</label></div>
<div class="nowrap"><label>Perangkat desa /<br>Kepala desa</label></div>
<div style="height: 50px;"></div>
<div class="nowrap"><strong style="text-transform: uppercase;"></strong></div>
<div class="nowrap"><label>NIP. </label></div>
</td>
</tr>
</tr>
</tbody></table>
<br>
<table class="noborder">
Expand All @@ -147,11 +148,11 @@
</td>
</tr>
</tbody></table>

</td>
</tr>
</tbody></table>
</tbody></table>
</div>
<label>Tanggal cetak : &nbsp; </label><?php echo tgl_indo(date("Y m d"))?>
</div>
</body></html>
</body></html>
2 changes: 1 addition & 1 deletion donjo-app/views/analisis_grafik/table.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="<?php echo base_url()?>assets/js/highcharts/highcharts.js"></script>
<script src="<?php echo base_url()?>assets/js/highcharts/highcharts-more.js"></script>
<script src="<?php echo base_url()?>assets/js/highcharts/exporting.js"></script>
<script type="text/javascript">
<script>
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
Expand Down
2 changes: 1 addition & 1 deletion donjo-app/views/analisis_grafik/time.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="<?php echo base_url()?>assets/js/highcharts/highcharts.js"></script>
<script src="<?php echo base_url()?>assets/js/highcharts/highcharts-more.js"></script>
<script src="<?php echo base_url()?>assets/js/highcharts/exporting.js"></script>
<script type="text/javascript">
<script>
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
Expand Down
6 changes: 3 additions & 3 deletions donjo-app/views/analisis_indikator/form.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@
</tr>
<tr>
<th>Kode Pertanyaan</th>
<td><input name="nomor" type="text" class="inputbox number" size="5" value="<?php echo $analisis_indikator['nomor']?>"/></td>
<td><input name="nomor" type="text" class="inputbox number" size="5" value="<?php echo $analisis_indikator['nomor']?>"></td>
</tr>
<tr>
<th>Pertanyaan</th>
<td><textarea name="pertanyaan" style="resize:none;width:500px;height:80px;"/><?php echo $analisis_indikator['pertanyaan']?></textarea></td>
<td><textarea name="pertanyaan" style="resize:none;width:500px;height:80px;"><?php echo $analisis_indikator['pertanyaan']?></textarea></td>
</tr>
<tr class="delik">
<th>Bobot</th>
<td>
<input name="bobot" type="text" class="inputbox number" size="10" value="<?php if($analisis_indikator['bobot']==""){echo "1";}else{echo $analisis_indikator['bobot'];}?>"/>
<input name="bobot" type="text" class="inputbox number" size="10" value="<?php if($analisis_indikator['bobot']==""){echo "1";}else{echo $analisis_indikator['bobot'];}?>">
</td>
</tr>
<tr class="delik">
Expand Down
8 changes: 4 additions & 4 deletions donjo-app/views/analisis_indikator/parameter/ajax_form.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<script type="text/javascript" src="<?php echo base_url()?>assets/js/jquery.validate.min.js"></script>
<script type="text/javascript" src="<?php echo base_url()?>assets/js/validasi.js"></script>
<script src="<?php echo base_url()?>assets/js/jquery.validate.min.js"></script>
<script src="<?php echo base_url()?>assets/js/validasi.js"></script>
<form action="<?php echo $form_action?>" method="post" id="validasi">
<table class="form">
<tr>
<th>Kode</th>
<td><input name="kode_jawaban" type="text" class="inputbox" size="5" value="<?php echo $analisis_parameter['kode_jawaban']?>"/></td>
<td><input name="kode_jawaban" type="text" class="inputbox" size="5" value="<?php echo $analisis_parameter['kode_jawaban']?>"></td>
</tr>
<tr>
<th>Jawaban</th>
<td><textarea name="jawaban" class="required" style="resize:none;width:300px;height:30px;"><?php echo $analisis_parameter['jawaban']?></textarea></td>
</tr>
<tr>
<th>Ukuran/Nilai</th>
<td><input name="nilai" type="text" class="inputbox" size="10" value="<?php echo $analisis_parameter['nilai']?>"/></td>
<td><input name="nilai" type="text" class="inputbox" size="10" value="<?php echo $analisis_parameter['nilai']?>"></td>
</tr>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions donjo-app/views/analisis_indikator/parameter/table.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<tr>
<th width="10">No</th>
<?php if($analisis_master['lock']==1){?>
<th width="10"><input type="checkbox" class="checkall"/></th>
<th width="10"><input type="checkbox" class="checkall"></th>
<th width="80">Aksi</th>
<?php }?>
<th width="80">Kode</th>
Expand All @@ -49,7 +49,7 @@
<td align="center" width="2"><?php echo $data['no']?></td>
<?php if($analisis_master['lock']==1){?>
<td align="center" width="5">
<input type="checkbox" name="id_cb[]" value="<?php echo $data['id']?>" />
<input type="checkbox" name="id_cb[]" value="<?php echo $data['id']?>">
</td>
<td><div class="uibutton-group">
<a href="<?php echo site_url("analisis_indikator/form_parameter/$analisis_indikator[id]/$data[id]")?>" class="uibutton tipsy south" title="Ubah Data" target="ajax-modal" rel="window" header="Form Data Parameter"><span class="icon-edit icon-large"> Ubah </span></a><a href="<?php echo site_url("analisis_indikator/delete_parameter/$data[id]")?>" class="uibutton tipsy south" title="Hapus Data" target="confirm" message="Apakah Anda Yakin?" header="Hapus Data"><span class="icon-trash icon-large"></span></a>
Expand Down
6 changes: 3 additions & 3 deletions donjo-app/views/analisis_indikator/table.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@
</select>
</div>
<div class="right">
<input name="cari" id="cari" type="text" class="inputbox help tipped" size="20" value="<?php echo $cari?>" title="Cari.." onkeypress="if (event.keyCode == 13) {$('#'+'mainform').attr('action','<?php echo site_url('analisis_indikator/search')?>');$('#'+'mainform').submit();}" />
<input name="cari" id="cari" type="text" class="inputbox help tipped" size="20" value="<?php echo $cari?>" title="Cari.." onkeypress="if (event.keyCode == 13) {$('#'+'mainform').attr('action','<?php echo site_url('analisis_indikator/search')?>');$('#'+'mainform').submit();}">
<button type="button" onclick="$('#'+'mainform').attr('action','<?php echo site_url('analisis_indikator/search')?>');$('#'+'mainform').submit();" class="uibutton tipsy south" title="Cari Data"><span class="icon-search icon-large">&nbsp;</span>Cari</button>
</div>
</div>
<table class="list">
<thead>
<tr>
<th width="10">No</th>
<?php if($analisis_master['lock']==1){?> <th><input type="checkbox" class="checkall"/></th>
<?php if($analisis_master['lock']==1){?> <th><input type="checkbox" class="checkall"></th>
<th width="200">Aksi</th><?php }?>
<?php if($o==2): ?>
<th align="left" width="10"><a href="<?php echo site_url("analisis_indikator/index/$p/1")?>">Kode<span class="ui-icon ui-icon-triangle-1-n">&nbsp;</span></a></th>
Expand Down Expand Up @@ -111,7 +111,7 @@
<?php if($analisis_master['lock']==1){?>

<td align="center" width="5">
<input type="checkbox" name="id_cb[]" value="<?php echo $data['id']?>" />
<input type="checkbox" name="id_cb[]" value="<?php echo $data['id']?>">
</td>
<td>
<div class="uibutton-group">
Expand Down
6 changes: 3 additions & 3 deletions donjo-app/views/analisis_kategori/ajax_form.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<script type="text/javascript" src="<?php echo base_url()?>assets/js/jquery.validate.min.js"></script>
<script type="text/javascript" src="<?php echo base_url()?>assets/js/validasi.js"></script>
<script src="<?php echo base_url()?>assets/js/jquery.validate.min.js"></script>
<script src="<?php echo base_url()?>assets/js/validasi.js"></script>
<form action="<?php echo $form_action?>" method="post" id="validasi">
<table class="form">
<tr>
<th>Nama Kategori/Variabel</th>
<td><input name="kategori" type="text" class="inputbox required" size="50" value="<?php echo $analisis_kategori['kategori']?>"/></td>
<td><input name="kategori" type="text" class="inputbox required" size="50" value="<?php echo $analisis_kategori['kategori']?>"></td>
</tr>
</table>
<div class="buttonpane" style="text-align: right; width:400px;position:absolute;bottom:0px;">
Expand Down
2 changes: 1 addition & 1 deletion donjo-app/views/analisis_kategori/form.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<table class="form">
<tr>
<th>Nama Kategori/Variabel</th>
<td><input name="kategori" type="text" class="inputbox" size="100" value="<?php echo $analisis_kategori['kategori']?>"/></td>
<td><input name="kategori" type="text" class="inputbox" size="100" value="<?php echo $analisis_kategori['kategori']?>"></td>
</tr>
</table>
</div>
Expand Down
6 changes: 3 additions & 3 deletions donjo-app/views/analisis_kategori/table.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
<div class="left">
</div>
<div class="right">
<input name="cari" id="cari" type="text" class="inputbox help tipped" size="20" value="<?php echo $cari?>" title="Cari.." onkeypress="if (event.keyCode == 13) {$('#'+'mainform').attr('action','<?php echo site_url('analisis_kategori/search')?>');$('#'+'mainform').submit();}" />
<input name="cari" id="cari" type="text" class="inputbox help tipped" size="20" value="<?php echo $cari?>" title="Cari.." onkeypress="if (event.keyCode == 13) {$('#'+'mainform').attr('action','<?php echo site_url('analisis_kategori/search')?>');$('#'+'mainform').submit();}">
<button type="button" onclick="$('#'+'mainform').attr('action','<?php echo site_url('analisis_kategori/search')?>');$('#'+'mainform').submit();" class="uibutton tipsy south" title="Cari Data"><span class="icon-search icon-large">&nbsp;</span>Cari</button>
</div>
</div>
<table class="list">
<thead>
<tr>
<th width="10">No</th>
<th><input type="checkbox" class="checkall"/></th>
<th><input type="checkbox" class="checkall"></th>
<th width="100">Aksi</th>

<?php if($o==4): ?>
Expand All @@ -53,7 +53,7 @@
<tr>
<td align="center" width="2"><?php echo $data['no']?></td>
<td align="center" width="5">
<input type="checkbox" name="id_cb[]" value="<?php echo $data['id']?>" />
<input type="checkbox" name="id_cb[]" value="<?php echo $data['id']?>">
</td>
<td><div class="uibutton-group">
<a href="<?php echo site_url("analisis_kategori/form/$p/$o/$data[id]")?>" class="uibutton tipsy south" title="Ubah Data" target="ajax-modal" rel="window" header="Form Data Kategori Indikator" ><span class="icon-edit icon-large"> Ubah </span></a><a href="<?php echo site_url("analisis_kategori/delete/$p/$o/$data[id]")?>" class="uibutton tipsy south" title="Hapus Data" target="confirm" message="Apakah Anda Yakin?" header="Hapus Data"><span class="icon-trash icon-large"></span></a>
Expand Down
10 changes: 5 additions & 5 deletions donjo-app/views/analisis_klasifikasi/ajax_form.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<script type="text/javascript" src="<?php echo base_url()?>assets/js/jquery.validate.min.js"></script>
<script type="text/javascript" src="<?php echo base_url()?>assets/js/validasi.js"></script>
<script src="<?php echo base_url()?>assets/js/jquery.validate.min.js"></script>
<script src="<?php echo base_url()?>assets/js/validasi.js"></script>
<form action="<?php echo $form_action?>" method="post" id="validasi">
<table class="form">
<tr>
<th>Klasifikasi</th>
<td><input name="nama" type="text" class="inputbox" size="40" value="<?php echo $analisis_klasifikasi['nama']?>"/></td>
<td><input name="nama" type="text" class="inputbox" size="40" value="<?php echo $analisis_klasifikasi['nama']?>"></td>
</tr>
<tr>
<th>Nilai Minimal</th>
<td><input name="minval" type="text" class="inputbox" size="10" value="<?php echo $analisis_klasifikasi['minval']?>"/></td>
<td><input name="minval" type="text" class="inputbox" size="10" value="<?php echo $analisis_klasifikasi['minval']?>"></td>
</tr>
<tr>
<th>Nilai Maksimal</th>
<td><input name="maxval" type="text" class="inputbox" size="10" value="<?php echo $analisis_klasifikasi['maxval']?>"/></td>
<td><input name="maxval" type="text" class="inputbox" size="10" value="<?php echo $analisis_klasifikasi['maxval']?>"></td>
</tr>
</table>
<div class="buttonpane" style="text-align: right; width:420px;position:absolute;bottom:0px;">
Expand Down
Loading