├── .gitignore ├── docs ├── CNAME ├── .DS_Store ├── img │ ├── aws.png │ ├── azure.png │ ├── login.png │ ├── panel.png │ ├── rimauwaf.jpeg │ ├── rimauwaf.png │ └── rimauwaf2.jpeg ├── images │ ├── .DS_Store │ ├── logo.jpg │ ├── logo.png │ ├── team1.jpg │ ├── team2.jpg │ ├── team3.jpg │ ├── rimauwaf.png │ ├── ico │ │ ├── favicon.ico │ │ ├── apple-touch-icon-114-precomposed.png │ │ ├── apple-touch-icon-144-precomposed.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ └── apple-touch-icon-72-precomposed.png │ ├── slider-bg.jpg │ ├── tunnelbiz.png │ ├── shapebootstrap.png │ ├── portfolio │ │ ├── full │ │ │ ├── item1.jpg │ │ │ ├── item2.jpg │ │ │ ├── item3.jpg │ │ │ ├── item4.jpg │ │ │ ├── item5.jpg │ │ │ ├── item6.jpg │ │ │ └── item7.jpg │ │ └── thumb │ │ │ ├── item1.jpg │ │ │ ├── item2.jpg │ │ │ ├── item3.jpg │ │ │ ├── item4.jpg │ │ │ ├── item5.jpg │ │ │ ├── item6.jpg │ │ │ └── item7.jpg │ └── prettyPhoto │ │ ├── default │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── sprite_x.png │ │ ├── sprite_y.png │ │ ├── sprite_next.png │ │ ├── sprite_prev.png │ │ └── default_thumb.png │ │ ├── facebook │ │ ├── btnNext.png │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── btnPrevious.png │ │ ├── contentPatternTop.png │ │ ├── default_thumbnail.gif │ │ ├── contentPatternBottom.png │ │ ├── contentPatternLeft.png │ │ └── contentPatternRight.png │ │ ├── dark_rounded │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPattern.png │ │ └── default_thumbnail.gif │ │ ├── dark_square │ │ ├── btnNext.png │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── btnPrevious.png │ │ ├── contentPattern.png │ │ └── default_thumbnail.gif │ │ ├── light_square │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ └── default_thumbnail.gif │ │ └── light_rounded │ │ ├── btnNext.png │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── btnPrevious.png │ │ └── default_thumbnail.gif └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── source ├── rules │ ├── file.txt │ └── rules.conf ├── test.php ├── asset │ ├── crules │ │ ├── bootstrap-switch-master │ │ │ ├── CNAME │ │ │ ├── src │ │ │ │ └── less │ │ │ │ │ ├── bootstrap2 │ │ │ │ │ └── build.less │ │ │ │ │ └── bootstrap3 │ │ │ │ │ ├── build.less │ │ │ │ │ └── mixins │ │ │ │ │ ├── center-block.less │ │ │ │ │ ├── size.less │ │ │ │ │ ├── opacity.less │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ ├── background-variant.less │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ ├── resize.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── border-radius.less │ │ │ │ │ ├── reset-text.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── hide-text.less │ │ │ │ │ ├── clearfix.less │ │ │ │ │ └── table-row.less │ │ │ ├── docs │ │ │ │ └── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── CONTRIBUTING.md │ │ │ ├── karma.json │ │ │ ├── bower.json │ │ │ └── composer.json │ │ ├── datatables-plugins │ │ │ ├── features │ │ │ │ ├── lengthLinks │ │ │ │ │ ├── dataTables.lengthLinks.css │ │ │ │ │ └── dataTables.lengthLinks.min.js │ │ │ │ ├── searchHighlight │ │ │ │ │ ├── dataTables.searchHighlight.css │ │ │ │ │ └── dataTables.searchHighlight.min.js │ │ │ │ └── alphabetSearch │ │ │ │ │ └── dataTables.alphabetSearch.css │ │ │ ├── integration │ │ │ │ ├── bootstrap │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── dataTables.bootstrap.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ └── foundation │ │ │ │ │ └── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── type-detection │ │ │ │ ├── ip-address.js │ │ │ │ ├── date-uk.js │ │ │ │ └── formatted-num.js │ │ │ ├── i18n │ │ │ │ ├── Japanese.lang │ │ │ │ ├── Thai.lang │ │ │ │ ├── Arabic.lang │ │ │ │ ├── Turkish.lang │ │ │ │ ├── Persian.lang │ │ │ │ ├── Catalan.lang │ │ │ │ ├── Chinese-traditional.lang │ │ │ │ ├── Vietnamese.lang │ │ │ │ ├── Latvian.lang │ │ │ │ ├── Finnish.lang │ │ │ │ ├── Greek.lang │ │ │ │ ├── Hebrew.lang │ │ │ │ ├── Norwegian.lang │ │ │ │ ├── Urdu.lang │ │ │ │ ├── Czech.lang │ │ │ │ ├── Indonesian.lang │ │ │ │ ├── Danish.lang │ │ │ │ ├── Georgian.lang │ │ │ │ ├── Portuguese.lang │ │ │ │ ├── Lithuanian.lang │ │ │ │ ├── Filipino.lang │ │ │ │ ├── Hindi.lang │ │ │ │ ├── Irish.lang │ │ │ │ ├── Bulgarian.lang │ │ │ │ ├── Indonesian-Alternative.lang │ │ │ │ ├── Romanian.lang │ │ │ │ ├── Macedonian.lang │ │ │ │ ├── Korean.lang │ │ │ │ ├── Chinese.lang │ │ │ │ ├── Bangla.lang │ │ │ │ ├── Estonian.lang │ │ │ │ ├── Belarusian.lang │ │ │ │ ├── Ukranian.lang │ │ │ │ ├── Serbian.lang │ │ │ │ ├── Dutch.lang │ │ │ │ ├── Slovenian.lang │ │ │ │ ├── Russian.lang │ │ │ │ ├── Icelandic.lang │ │ │ │ ├── Uzbek.lang │ │ │ │ ├── Azerbaijan.lang │ │ │ │ ├── Tamil.lang │ │ │ │ ├── German.lang │ │ │ │ ├── Gujarati.lang │ │ │ │ ├── Polish.lang │ │ │ │ ├── Malay.lang │ │ │ │ ├── Afrikaans.lang │ │ │ │ ├── English.lang │ │ │ │ └── Swedish.lang │ │ │ ├── sorting │ │ │ │ ├── custom-data-source │ │ │ │ │ ├── dom-checkbox.js │ │ │ │ │ ├── dom-select.js │ │ │ │ │ └── dom-text.js │ │ │ │ ├── scientific.js │ │ │ │ ├── alt-string.js │ │ │ │ ├── signed-num.js │ │ │ │ └── anti-the.js │ │ │ ├── api │ │ │ │ ├── column().title().js │ │ │ │ ├── fnDisplayStart.js │ │ │ │ └── fnProcessingIndicator.js │ │ │ └── README.md │ │ └── datatables │ │ │ ├── media │ │ │ └── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── bower.json │ ├── favicon.ico │ ├── image │ │ ├── ntop.png │ │ ├── logwaf.jpg │ │ ├── offwaf.jpg │ │ ├── onwaf.jpg │ │ ├── owsap.png │ │ ├── mvchome.jpg │ │ ├── no-thumb.jpg │ │ ├── rimauwaf.jpg │ │ └── Mod-Security.png │ ├── assets │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ ├── avatars │ │ │ ├── user.jpg │ │ │ ├── avatar.png │ │ │ ├── avatar1.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar4.png │ │ │ ├── avatar5.png │ │ │ └── profile-pic.jpg │ │ ├── css │ │ │ ├── img │ │ │ │ ├── alpha.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ │ ├── select2.png │ │ │ ├── select2x2.png │ │ │ ├── chosen-sprite.png │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── loading.gif │ │ │ │ ├── overlay.png │ │ │ │ ├── pattern.jpg │ │ │ │ ├── controls.png │ │ │ │ ├── meteorshower2.jpg │ │ │ │ └── loading_background.png │ │ │ ├── chosen-sprite@2x.png │ │ │ ├── select2-spinner.gif │ │ │ └── prettify.min.css │ │ ├── images │ │ │ ├── email1.png │ │ │ ├── email2.png │ │ │ ├── email3.png │ │ │ ├── email4.png │ │ │ ├── spritemap.png │ │ │ ├── spritemap@2x.png │ │ │ └── gallery │ │ │ │ ├── image-1.jpg │ │ │ │ ├── image-2.jpg │ │ │ │ ├── image-3.jpg │ │ │ │ ├── image-4.jpg │ │ │ │ ├── image-5.jpg │ │ │ │ ├── image-6.jpg │ │ │ │ ├── thumb-1.jpg │ │ │ │ ├── thumb-2.jpg │ │ │ │ ├── thumb-3.jpg │ │ │ │ ├── thumb-4.jpg │ │ │ │ ├── thumb-5.jpg │ │ │ │ └── thumb-6.jpg │ │ ├── swf │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── fonts.googleapis.com.css │ │ └── font-awesome │ │ │ ├── 4.1.0 │ │ │ └── fonts │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ └── 4.2.0 │ │ │ └── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── table │ │ ├── media │ │ │ └── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ └── sort_desc_disabled.png │ │ ├── extensions │ │ │ ├── Buttons │ │ │ │ ├── swf │ │ │ │ │ └── flashExport.swf │ │ │ │ ├── css │ │ │ │ │ └── common.scss │ │ │ │ └── js │ │ │ │ │ ├── buttons.semanticui.min.js │ │ │ │ │ ├── buttons.bootstrap4.min.js │ │ │ │ │ ├── buttons.bootstrap.min.js │ │ │ │ │ └── buttons.jqueryui.min.js │ │ │ ├── KeyTable │ │ │ │ └── css │ │ │ │ │ ├── keyTable.semanticui.min.css │ │ │ │ │ ├── keyTable.bootstrap.min.css │ │ │ │ │ ├── keyTable.bootstrap4.min.css │ │ │ │ │ ├── keyTable.dataTables.min.css │ │ │ │ │ ├── keyTable.foundation.min.css │ │ │ │ │ ├── keyTable.jqueryui.min.css │ │ │ │ │ ├── keyTable.jqueryui.css │ │ │ │ │ ├── keyTable.semanticui.css │ │ │ │ │ ├── keyTable.bootstrap.css │ │ │ │ │ ├── keyTable.bootstrap4.css │ │ │ │ │ ├── keyTable.dataTables.css │ │ │ │ │ └── keyTable.foundation.css │ │ │ ├── RowReorder │ │ │ │ └── css │ │ │ │ │ ├── semanticui.scss │ │ │ │ │ ├── rowReorder.dataTables.min.css │ │ │ │ │ ├── rowReorder.jqueryui.min.css │ │ │ │ │ ├── rowReorder.bootstrap.min.css │ │ │ │ │ ├── rowReorder.bootstrap4.min.css │ │ │ │ │ ├── rowReorder.foundation.min.css │ │ │ │ │ ├── rowReorder.semanticui.min.css │ │ │ │ │ ├── rowReorder.dataTables.css │ │ │ │ │ ├── rowReorder.jqueryui.css │ │ │ │ │ ├── rowReorder.bootstrap.css │ │ │ │ │ ├── rowReorder.bootstrap4.css │ │ │ │ │ ├── rowReorder.foundation.css │ │ │ │ │ └── rowReorder.semanticui.css │ │ │ ├── ColReorder │ │ │ │ └── css │ │ │ │ │ ├── colReorder.semanticui.min.css │ │ │ │ │ ├── colReorder.bootstrap.min.css │ │ │ │ │ ├── colReorder.bootstrap4.min.css │ │ │ │ │ ├── colReorder.dataTables.min.css │ │ │ │ │ ├── colReorder.foundation.min.css │ │ │ │ │ ├── colReorder.jqueryui.min.css │ │ │ │ │ ├── colReorder.bootstrap.css │ │ │ │ │ ├── colReorder.jqueryui.css │ │ │ │ │ ├── colReorder.semanticui.css │ │ │ │ │ ├── colReorder.bootstrap4.css │ │ │ │ │ ├── colReorder.dataTables.css │ │ │ │ │ └── colReorder.foundation.css │ │ │ ├── FixedHeader │ │ │ │ └── css │ │ │ │ │ ├── fixedHeader.semanticui.min.css │ │ │ │ │ ├── fixedHeader.jqueryui.min.css │ │ │ │ │ ├── fixedHeader.dataTables.min.css │ │ │ │ │ ├── fixedHeader.semanticui.css │ │ │ │ │ ├── fixedHeader.jqueryui.css │ │ │ │ │ ├── fixedHeader.bootstrap.min.css │ │ │ │ │ ├── fixedHeader.bootstrap4.min.css │ │ │ │ │ ├── fixedHeader.foundation.min.css │ │ │ │ │ ├── fixedHeader.dataTables.css │ │ │ │ │ ├── fixedHeader.bootstrap.css │ │ │ │ │ ├── fixedHeader.bootstrap4.css │ │ │ │ │ └── fixedHeader.foundation.css │ │ │ ├── FixedColumns │ │ │ │ └── css │ │ │ │ │ ├── fixedColumns.jqueryui.min.css │ │ │ │ │ ├── fixedColumns.jqueryui.css │ │ │ │ │ ├── fixedColumns.semanticui.min.css │ │ │ │ │ ├── fixedColumns.dataTables.min.css │ │ │ │ │ ├── fixedColumns.semanticui.css │ │ │ │ │ ├── fixedColumns.dataTables.css │ │ │ │ │ ├── fixedColumns.foundation.min.css │ │ │ │ │ └── fixedColumns.foundation.css │ │ │ ├── Scroller │ │ │ │ └── css │ │ │ │ │ ├── scroller.foundation.min.css │ │ │ │ │ ├── scroller.dataTables.min.css │ │ │ │ │ ├── scroller.jqueryui.min.css │ │ │ │ │ ├── scroller.semanticui.min.css │ │ │ │ │ ├── scroller.bootstrap.min.css │ │ │ │ │ ├── scroller.bootstrap4.min.css │ │ │ │ │ ├── scroller.foundation.css │ │ │ │ │ ├── scroller.dataTables.css │ │ │ │ │ ├── scroller.jqueryui.css │ │ │ │ │ ├── scroller.semanticui.css │ │ │ │ │ ├── scroller.bootstrap.css │ │ │ │ │ └── scroller.bootstrap4.css │ │ │ ├── AutoFill │ │ │ │ └── js │ │ │ │ │ ├── autoFill.semanticui.min.js │ │ │ │ │ ├── autoFill.bootstrap.min.js │ │ │ │ │ ├── autoFill.foundation.min.js │ │ │ │ │ ├── autoFill.bootstrap4.min.js │ │ │ │ │ └── autoFill.jqueryui.min.js │ │ │ └── Responsive │ │ │ │ └── js │ │ │ │ ├── responsive.jqueryui.min.js │ │ │ │ └── responsive.foundation.min.js │ │ └── ISSUE_TEMPLATE.md │ ├── LICENSE.md │ └── README.md ├── mrtg │ ├── mrtg-l.png │ ├── mrtg-m.png │ ├── mrtg-r.png │ ├── localhost_ens18-day.png │ ├── localhost_ens18-month.png │ ├── localhost_ens18-week.png │ └── localhost_ens18-year.png ├── system │ ├── fonts │ │ ├── texb.ttf │ │ └── index.html │ ├── .htaccess │ ├── index.html │ ├── core │ │ ├── index.html │ │ └── compat │ │ │ └── index.html │ ├── database │ │ ├── index.html │ │ └── drivers │ │ │ ├── index.html │ │ │ ├── oci8 │ │ │ └── index.html │ │ │ ├── odbc │ │ │ └── index.html │ │ │ ├── pdo │ │ │ ├── index.html │ │ │ └── subdrivers │ │ │ │ └── index.html │ │ │ ├── cubrid │ │ │ └── index.html │ │ │ ├── ibase │ │ │ └── index.html │ │ │ ├── mssql │ │ │ └── index.html │ │ │ ├── mysql │ │ │ └── index.html │ │ │ ├── mysqli │ │ │ └── index.html │ │ │ ├── postgre │ │ │ └── index.html │ │ │ ├── sqlite │ │ │ └── index.html │ │ │ ├── sqlite3 │ │ │ └── index.html │ │ │ └── sqlsrv │ │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── language │ │ ├── index.html │ │ └── english │ │ │ └── index.html │ └── libraries │ │ ├── index.html │ │ ├── Cache │ │ ├── index.html │ │ └── drivers │ │ │ └── index.html │ │ ├── Javascript │ │ └── index.html │ │ └── Session │ │ ├── index.html │ │ └── drivers │ │ └── index.html ├── user_guide │ ├── objects.inv │ ├── _static │ │ ├── up.png │ │ ├── down.png │ │ ├── file.png │ │ ├── plus.png │ │ ├── ci-icon.ico │ │ ├── comment.png │ │ ├── minus.png │ │ ├── ajax-loader.gif │ │ ├── down-pressed.png │ │ ├── up-pressed.png │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── images │ │ │ └── ci-icon.ico │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── _images │ │ ├── smile.gif │ │ └── appflowchart.gif │ ├── _downloads │ │ └── ELDocs.tmbundle.zip │ └── .buildinfo ├── .htaccess ├── application │ ├── .htaccess │ ├── cache │ │ ├── .htaccess │ │ └── index.html │ ├── views │ │ ├── panel │ │ │ └── model │ │ │ │ ├── exclude.php │ │ │ │ ├── edit_rules_black.php │ │ │ │ ├── edit_rules_disable.php │ │ │ │ ├── edit_rules_white.php │ │ │ │ ├── edit_rules_own.php │ │ │ │ ├── log.php │ │ │ │ └── attack.php │ │ ├── errors │ │ │ ├── cli │ │ │ │ ├── error_404.php │ │ │ │ ├── error_db.php │ │ │ │ ├── error_general.php │ │ │ │ ├── index.html │ │ │ │ ├── error_php.php │ │ │ │ └── error_exception.php │ │ │ ├── index.html │ │ │ └── html │ │ │ │ ├── index.html │ │ │ │ ├── error_php.php │ │ │ │ └── error_exception.php │ │ └── index.html │ ├── index.html │ ├── config │ │ ├── index.html │ │ ├── hooks.php │ │ ├── profiler.php │ │ └── memcached.php │ ├── core │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── models │ │ └── index.html │ ├── controllers │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── language │ │ ├── index.html │ │ └── english │ │ │ └── index.html │ ├── libraries │ │ └── index.html │ └── third_party │ │ └── index.html ├── enjinlog │ ├── persistent │ │ └── MSALDBException.php │ └── classes │ │ ├── MSALParserException.php │ │ ├── AlertResolution.php │ │ ├── AlertStatus.php │ │ ├── HttpProtocol.php │ │ ├── AlertSeverity.php │ │ └── AlertCategory.php ├── install.sh └── composer.json ├── .DS_Store └── db └── waf.mampu /.gitignore: -------------------------------------------------------------------------------- 1 | web 2 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | rimauwaf.tunnelbiz.com -------------------------------------------------------------------------------- /source/rules/file.txt: -------------------------------------------------------------------------------- 1 | My Text here -------------------------------------------------------------------------------- /source/rules/rules.conf: -------------------------------------------------------------------------------- 1 | My Text here -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/.DS_Store -------------------------------------------------------------------------------- /source/test.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /db/waf.mampu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/db/waf.mampu -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/CNAME: -------------------------------------------------------------------------------- 1 | www.bootstrap-switch.org 2 | -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/img/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/img/aws.png -------------------------------------------------------------------------------- /docs/img/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/img/azure.png -------------------------------------------------------------------------------- /docs/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/img/login.png -------------------------------------------------------------------------------- /docs/img/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/img/panel.png -------------------------------------------------------------------------------- /docs/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/.DS_Store -------------------------------------------------------------------------------- /docs/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/logo.jpg -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/team1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/team1.jpg -------------------------------------------------------------------------------- /docs/images/team2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/team2.jpg -------------------------------------------------------------------------------- /docs/images/team3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/team3.jpg -------------------------------------------------------------------------------- /docs/img/rimauwaf.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/img/rimauwaf.jpeg -------------------------------------------------------------------------------- /docs/img/rimauwaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/img/rimauwaf.png -------------------------------------------------------------------------------- /source/mrtg/mrtg-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/mrtg/mrtg-l.png -------------------------------------------------------------------------------- /source/mrtg/mrtg-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/mrtg/mrtg-m.png -------------------------------------------------------------------------------- /source/mrtg/mrtg-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/mrtg/mrtg-r.png -------------------------------------------------------------------------------- /docs/images/rimauwaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/rimauwaf.png -------------------------------------------------------------------------------- /docs/img/rimauwaf2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/img/rimauwaf2.jpeg -------------------------------------------------------------------------------- /source/asset/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/images/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/ico/favicon.ico -------------------------------------------------------------------------------- /docs/images/slider-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/slider-bg.jpg -------------------------------------------------------------------------------- /docs/images/tunnelbiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/tunnelbiz.png -------------------------------------------------------------------------------- /source/asset/image/ntop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/ntop.png -------------------------------------------------------------------------------- /source/asset/image/logwaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/logwaf.jpg -------------------------------------------------------------------------------- /source/asset/image/offwaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/offwaf.jpg -------------------------------------------------------------------------------- /source/asset/image/onwaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/onwaf.jpg -------------------------------------------------------------------------------- /source/asset/image/owsap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/owsap.png -------------------------------------------------------------------------------- /source/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/system/fonts/texb.ttf -------------------------------------------------------------------------------- /source/user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/objects.inv -------------------------------------------------------------------------------- /docs/images/shapebootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/shapebootstrap.png -------------------------------------------------------------------------------- /source/asset/image/mvchome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/mvchome.jpg -------------------------------------------------------------------------------- /source/asset/image/no-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/no-thumb.jpg -------------------------------------------------------------------------------- /source/asset/image/rimauwaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/rimauwaf.jpg -------------------------------------------------------------------------------- /source/user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/up.png -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/asset/assets/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/img/clear.png -------------------------------------------------------------------------------- /source/user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/down.png -------------------------------------------------------------------------------- /source/user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/file.png -------------------------------------------------------------------------------- /source/user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/plus.png -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/images/portfolio/full/item1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/full/item1.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/full/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/full/item2.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/full/item3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/full/item3.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/full/item4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/full/item4.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/full/item5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/full/item5.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/full/item6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/full/item6.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/full/item7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/full/item7.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/thumb/item1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/thumb/item1.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/thumb/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/thumb/item2.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/thumb/item3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/thumb/item3.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/thumb/item4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/thumb/item4.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/thumb/item5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/thumb/item5.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/thumb/item6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/thumb/item6.jpg -------------------------------------------------------------------------------- /docs/images/portfolio/thumb/item7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/portfolio/thumb/item7.jpg -------------------------------------------------------------------------------- /source/asset/assets/avatars/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/avatars/user.jpg -------------------------------------------------------------------------------- /source/asset/assets/css/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/img/alpha.png -------------------------------------------------------------------------------- /source/asset/assets/css/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/img/hue.png -------------------------------------------------------------------------------- /source/asset/assets/css/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/select2.png -------------------------------------------------------------------------------- /source/asset/assets/css/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/select2x2.png -------------------------------------------------------------------------------- /source/asset/assets/images/email1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/email1.png -------------------------------------------------------------------------------- /source/asset/assets/images/email2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/email2.png -------------------------------------------------------------------------------- /source/asset/assets/images/email3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/email3.png -------------------------------------------------------------------------------- /source/asset/assets/images/email4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/email4.png -------------------------------------------------------------------------------- /source/asset/assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/img/loading.gif -------------------------------------------------------------------------------- /source/asset/image/Mod-Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/image/Mod-Security.png -------------------------------------------------------------------------------- /source/mrtg/localhost_ens18-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/mrtg/localhost_ens18-day.png -------------------------------------------------------------------------------- /source/mrtg/localhost_ens18-month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/mrtg/localhost_ens18-month.png -------------------------------------------------------------------------------- /source/mrtg/localhost_ens18-week.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/mrtg/localhost_ens18-week.png -------------------------------------------------------------------------------- /source/mrtg/localhost_ens18-year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/mrtg/localhost_ens18-year.png -------------------------------------------------------------------------------- /source/user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /source/user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /source/user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/comment.png -------------------------------------------------------------------------------- /source/user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/minus.png -------------------------------------------------------------------------------- /source/asset/assets/avatars/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/avatars/avatar.png -------------------------------------------------------------------------------- /source/asset/assets/avatars/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/avatars/avatar1.png -------------------------------------------------------------------------------- /source/asset/assets/avatars/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/avatars/avatar2.png -------------------------------------------------------------------------------- /source/asset/assets/avatars/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/avatars/avatar3.png -------------------------------------------------------------------------------- /source/asset/assets/avatars/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/avatars/avatar4.png -------------------------------------------------------------------------------- /source/asset/assets/avatars/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/avatars/avatar5.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/default/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/default/loader.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/default/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/default/sprite.png -------------------------------------------------------------------------------- /source/asset/assets/css/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/chosen-sprite.png -------------------------------------------------------------------------------- /source/asset/assets/css/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/images/border.png -------------------------------------------------------------------------------- /source/asset/assets/css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/images/loading.gif -------------------------------------------------------------------------------- /source/asset/assets/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/images/overlay.png -------------------------------------------------------------------------------- /source/asset/assets/css/images/pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/images/pattern.jpg -------------------------------------------------------------------------------- /source/asset/assets/css/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/img/saturation.png -------------------------------------------------------------------------------- /source/asset/assets/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/spritemap.png -------------------------------------------------------------------------------- /source/user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /source/user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /source/user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /source/user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/images/prettyPhoto/default/sprite_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/default/sprite_x.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/default/sprite_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/default/sprite_y.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/btnNext.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/loader.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/sprite.png -------------------------------------------------------------------------------- /source/asset/assets/avatars/profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/avatars/profile-pic.jpg -------------------------------------------------------------------------------- /source/asset/assets/css/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/chosen-sprite@2x.png -------------------------------------------------------------------------------- /source/asset/assets/css/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/images/controls.png -------------------------------------------------------------------------------- /source/asset/assets/css/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/select2-spinner.gif -------------------------------------------------------------------------------- /source/asset/assets/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/spritemap@2x.png -------------------------------------------------------------------------------- /source/asset/assets/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /source/asset/table/media/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/table/media/images/favicon.ico -------------------------------------------------------------------------------- /source/asset/table/media/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/table/media/images/sort_asc.png -------------------------------------------------------------------------------- /source/user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /source/user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /source/user_guide/_static/images/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/images/ci-icon.ico -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_rounded/loader.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_rounded/sprite.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_square/btnNext.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_square/loader.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_square/sprite.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/default/sprite_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/default/sprite_next.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/default/sprite_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/default/sprite_prev.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_square/loader.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_square/sprite.png -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/image-1.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/image-2.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/image-3.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/image-4.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/image-5.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/image-6.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/thumb-1.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/thumb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/thumb-2.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/thumb-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/thumb-3.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/thumb-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/thumb-4.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/thumb-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/thumb-5.jpg -------------------------------------------------------------------------------- /source/asset/assets/images/gallery/thumb-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/images/gallery/thumb-6.jpg -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap2/build.less: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "mixins"; 3 | @import "bootstrap-switch"; -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/build.less: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "mixins"; 3 | @import "bootstrap-switch"; -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/features/lengthLinks/dataTables.lengthLinks.css: -------------------------------------------------------------------------------- 1 | 2 | div.dataTables_length a.active { 3 | color: black; 4 | } -------------------------------------------------------------------------------- /source/asset/table/media/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/table/media/images/sort_both.png -------------------------------------------------------------------------------- /source/asset/table/media/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/table/media/images/sort_desc.png -------------------------------------------------------------------------------- /source/user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_rounded/btnNext.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/default/default_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/default/default_thumb.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/btnPrevious.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_rounded/btnNext.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_rounded/loader.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_rounded/sprite.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_square/btnNext.png -------------------------------------------------------------------------------- /source/asset/assets/css/images/meteorshower2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/images/meteorshower2.jpg -------------------------------------------------------------------------------- /source/asset/table/media/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/table/media/images/Sorting icons.psd -------------------------------------------------------------------------------- /source/user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /docs/images/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /docs/images/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /docs/images/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /docs/images/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_rounded/btnPrevious.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_square/btnPrevious.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_square/btnPrevious.png -------------------------------------------------------------------------------- /source/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule .* index.php/$0 [PT,L] 5 | -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_square/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_square/contentPattern.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/contentPatternTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/contentPatternTop.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/default_thumbnail.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_rounded/btnPrevious.png -------------------------------------------------------------------------------- /source/asset/assets/css/images/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/css/images/loading_background.png -------------------------------------------------------------------------------- /source/asset/table/media/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/table/media/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /source/asset/table/media/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/table/media/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /source/system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_rounded/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_rounded/contentPattern.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_square/default_thumbnail.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/contentPatternBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/contentPatternBottom.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/contentPatternLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/contentPatternLeft.png -------------------------------------------------------------------------------- /docs/images/prettyPhoto/facebook/contentPatternRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/facebook/contentPatternRight.png -------------------------------------------------------------------------------- /source/asset/crules/datatables/media/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables/media/images/favicon.ico -------------------------------------------------------------------------------- /source/asset/crules/datatables/media/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables/media/images/sort_asc.png -------------------------------------------------------------------------------- /source/asset/crules/datatables/media/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables/media/images/sort_both.png -------------------------------------------------------------------------------- /source/asset/crules/datatables/media/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables/media/images/sort_desc.png -------------------------------------------------------------------------------- /source/asset/table/extensions/Buttons/swf/flashExport.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/table/extensions/Buttons/swf/flashExport.swf -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.semanticui.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus,table.dataTable td.focus{outline:3px solid #888;outline-offset:-1px} 2 | -------------------------------------------------------------------------------- /source/user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/images/prettyPhoto/dark_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/dark_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /docs/images/prettyPhoto/light_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/docs/images/prettyPhoto/light_square/default_thumbnail.gif -------------------------------------------------------------------------------- /source/application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /source/asset/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /source/asset/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /source/asset/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus,table.dataTable td.focus{outline:3px solid #337ab7;outline-offset:-1px} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus,table.dataTable td.focus{outline:3px solid #0275d8;outline-offset:-1px} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus,table.dataTable td.focus{outline:3px solid #3366FF;outline-offset:-1px} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.foundation.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus,table.dataTable td.focus{outline:3px solid #008CBA;outline-offset:-1px} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus,table.dataTable td.focus{outline:3px solid #3366FF;outline-offset:-1px} 2 | -------------------------------------------------------------------------------- /source/application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /source/asset/crules/datatables/media/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables/media/images/Sorting icons.psd -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/features/searchHighlight/dataTables.searchHighlight.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.dataTable span.highlight { 4 | background-color: #FFFF88; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /source/asset/crules/datatables/media/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables/media/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /source/asset/crules/datatables/media/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables/media/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /source/application/views/panel/model/exclude.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /source/asset/assets/font-awesome/4.1.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/font-awesome/4.1.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/asset/assets/font-awesome/4.1.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/font-awesome/4.1.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/asset/assets/font-awesome/4.1.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/font-awesome/4.1.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/asset/assets/font-awesome/4.2.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/font-awesome/4.2.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/asset/assets/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/asset/assets/font-awesome/4.2.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/assets/font-awesome/4.2.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.jqueryui.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus, 2 | table.dataTable td.focus { 3 | outline: 3px solid #3366FF; 4 | outline-offset: -1px; 5 | } 6 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.semanticui.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus, 2 | table.dataTable td.focus { 3 | outline: 3px solid #888; 4 | outline-offset: -1px; 5 | } 6 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.bootstrap.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus, 2 | table.dataTable td.focus { 3 | outline: 3px solid #337ab7; 4 | outline-offset: -1px; 5 | } 6 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus, 2 | table.dataTable td.focus { 3 | outline: 3px solid #0275d8; 4 | outline-offset: -1px; 5 | } 6 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.dataTables.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus, 2 | table.dataTable td.focus { 3 | outline: 3px solid #3366FF; 4 | outline-offset: -1px; 5 | } 6 | -------------------------------------------------------------------------------- /source/asset/table/extensions/KeyTable/css/keyTable.foundation.css: -------------------------------------------------------------------------------- 1 | table.dataTable th.focus, 2 | table.dataTable td.focus { 3 | outline: 3px solid #008CBA; 4 | outline-offset: -1px; 5 | } 6 | -------------------------------------------------------------------------------- /source/application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /source/application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /source/system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_asc.png -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_both.png -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_desc.png -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/foundation/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/foundation/images/sort_asc.png -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/foundation/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/foundation/images/sort_both.png -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/foundation/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/foundation/images/sort_desc.png -------------------------------------------------------------------------------- /source/system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/bootstrap-switch-master/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/bootstrap-switch-master/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /source/system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/bootstrap-switch-master/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /source/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/bootstrap/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/foundation/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/foundation/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/integration/foundation/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asklinux/rimau-waf/HEAD/source/asset/crules/datatables-plugins/integration/foundation/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /source/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.semanticui.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#888;z-index:201} 2 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#337ab7;z-index:201} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0275d8;z-index:201} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.foundation.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#008CBA;z-index:201} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.semanticui.min.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating{position:fixed !important;border-bottom-width:0 !important}table.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /source/user_guide/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 43685eda64ea41d34fed1173bd73a655 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedColumns/css/fixedColumns.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating{position:fixed !important;background-color:white}table.fixedHeader-locked{position:absolute !important;background-color:white}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /source/application/views/panel/model/edit_rules_black.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | 7 | -------------------------------------------------------------------------------- /source/application/views/panel/model/edit_rules_disable.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | 7 | -------------------------------------------------------------------------------- /source/application/views/panel/model/edit_rules_white.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | 7 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedColumns/css/fixedColumns.jqueryui.css: -------------------------------------------------------------------------------- 1 | div.DTFC_LeftWrapper table.dataTable, 2 | div.DTFC_RightWrapper table.dataTable { 3 | z-index: 2; 4 | } 5 | div.DTFC_LeftWrapper table.dataTable.no-footer, 6 | div.DTFC_RightWrapper table.dataTable.no-footer { 7 | border-bottom: none; 8 | } 9 | -------------------------------------------------------------------------------- /source/asset/LICENSE.md: -------------------------------------------------------------------------------- 1 | Warning! It`s only copy of ace demo-template from wrapbootstrap. 2 | Repo contains minified ace js/css files. 3 | You can read more about the license here. -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.bootstrap.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #337ab7; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.jqueryui.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0259C4; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.semanticui.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #888; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedColumns/css/fixedColumns.semanticui.min.css: -------------------------------------------------------------------------------- 1 | div.DTFC_LeftWrapper table.ui.table.dataTable{border-right:none}div.DTFC_RightWrapper table.ui.table.dataTable{border-left:none}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{z-index:2} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0275d8; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.dataTables.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0259C4; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /source/asset/table/extensions/ColReorder/css/colReorder.foundation.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #008CBA; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating{position:fixed !important;background-color:white}table.fixedHeader-floating.no-footer{border-bottom-width:0}table.fixedHeader-locked{position:absolute !important;background-color:white}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.semanticui.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating { 2 | position: fixed !important; 3 | border-bottom-width: 0 !important; 4 | } 5 | 6 | table.fixedHeader-locked { 7 | position: absolute !important; 8 | } 9 | 10 | @media print { 11 | table.fixedHeader-floating { 12 | display: none; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /source/asset/table/extensions/RowReorder/css/rowReorder.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #888;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #555;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/RowReorder/css/rowReorder.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #888;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #555;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.jqueryui.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating { 2 | position: fixed !important; 3 | background-color: white; 4 | } 5 | 6 | table.fixedHeader-locked { 7 | position: absolute !important; 8 | background-color: white; 9 | } 10 | 11 | @media print { 12 | table.fixedHeader-floating { 13 | display: none; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /source/asset/table/extensions/RowReorder/css/rowReorder.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #337ab7;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/RowReorder/css/rowReorder.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #0275d8;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/RowReorder/css/rowReorder.foundation.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #337ab7;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.foundation.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/RowReorder/css/rowReorder.semanticui.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid rgba(0,0,0,0.05);outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /source/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Projek waf sektor awam , bash script pemasangan server 4 | 5 | echo 'Pilih Web Server :' 6 | SERVER="apache nginx" 7 | 8 | select opt in $SERVER; do 9 | if ["$opt" = "nginx"]; then 10 | echo apache 11 | exit 12 | elif ["$opt" = "apache"]; then 13 | echo nginx 14 | else 15 | clear 16 | echo tiada 17 | exit 18 | fi 19 | done 20 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedColumns/css/fixedColumns.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Scroller/css/scroller.foundation.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none} 2 | -------------------------------------------------------------------------------- /source/asset/table/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please post support requests and questions in the DataTables forums at https://datatables.net/forums. Support requests posted here will be closed. This allows all questions to be located in a single, searchable, location. 2 | 3 | When you post your question in the DataTables forums, please ensure that you include a link to the page showing the issue so it can be debugged. 4 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Scroller/css/scroller.dataTables.min.css: -------------------------------------------------------------------------------- 1 | div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Scroller/css/scroller.jqueryui.min.css: -------------------------------------------------------------------------------- 1 | div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Scroller/css/scroller.semanticui.min.css: -------------------------------------------------------------------------------- 1 | div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none} 2 | -------------------------------------------------------------------------------- /source/application/views/panel/model/edit_rules_own.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedColumns/css/fixedColumns.semanticui.css: -------------------------------------------------------------------------------- 1 | div.DTFC_LeftWrapper table.ui.table.dataTable { 2 | border-right: none; 3 | } 4 | 5 | div.DTFC_RightWrapper table.ui.table.dataTable { 6 | border-left: none; 7 | } 8 | 9 | div.DTFC_Blocker { 10 | background-color: white; 11 | } 12 | 13 | div.DTFC_LeftWrapper table.dataTable, 14 | div.DTFC_RightWrapper table.dataTable { 15 | z-index: 2; 16 | } 17 | -------------------------------------------------------------------------------- /source/enjinlog/classes/AlertResolution.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/enjinlog/classes/AlertStatus.php: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedHeader/css/fixedHeader.dataTables.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating { 2 | position: fixed !important; 3 | background-color: white; 4 | } 5 | 6 | table.fixedHeader-floating.no-footer { 7 | border-bottom-width: 0; 8 | } 9 | 10 | table.fixedHeader-locked { 11 | position: absolute !important; 12 | background-color: white; 13 | } 14 | 15 | @media print { 16 | table.fixedHeader-floating { 17 | display: none; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Scroller/css/scroller.bootstrap.min.css: -------------------------------------------------------------------------------- 1 | div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none}div.DTS tbody tr.even{background-color:white} 2 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Scroller/css/scroller.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none}div.DTS tbody tr.even{background-color:white} 2 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /source/enjinlog/classes/HttpProtocol.php: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /source/application/config/hooks.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/application/config/profiler.php: -------------------------------------------------------------------------------- 1 | div { 25 | padding: 1em; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /source/application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /source/enjinlog/classes/AlertCategory.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | } 10 | &:first-child { 11 | > a, 12 | > span { 13 | .border-left-radius(@border-radius); 14 | } 15 | } 16 | &:last-child { 17 | > a, 18 | > span { 19 | .border-right-radius(@border-radius); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Scroller/css/scroller.bootstrap.css: -------------------------------------------------------------------------------- 1 | div.DTS { 2 | display: block !important; 3 | } 4 | div.DTS tbody th, 5 | div.DTS tbody td { 6 | white-space: nowrap; 7 | } 8 | div.DTS div.DTS_Loading { 9 | z-index: 1; 10 | } 11 | div.DTS div.dataTables_scrollBody { 12 | background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px); 13 | } 14 | div.DTS div.dataTables_scrollBody table { 15 | z-index: 2; 16 | } 17 | div.DTS div.dataTables_paginate, 18 | div.DTS div.dataTables_length { 19 | display: none; 20 | } 21 | 22 | div.DTS tbody tr.even { 23 | background-color: white; 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Scroller/css/scroller.bootstrap4.css: -------------------------------------------------------------------------------- 1 | div.DTS { 2 | display: block !important; 3 | } 4 | div.DTS tbody th, 5 | div.DTS tbody td { 6 | white-space: nowrap; 7 | } 8 | div.DTS div.DTS_Loading { 9 | z-index: 1; 10 | } 11 | div.DTS div.dataTables_scrollBody { 12 | background: repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, white 10px, white 20px); 13 | } 14 | div.DTS div.dataTables_scrollBody table { 15 | z-index: 2; 16 | } 17 | div.DTS div.dataTables_paginate, 18 | div.DTS div.dataTables_length { 19 | display: none; 20 | } 21 | 22 | div.DTS tbody tr.even { 23 | background-color: white; 24 | } 25 | -------------------------------------------------------------------------------- /source/application/views/panel/model/log.php: -------------------------------------------------------------------------------- 1 |
 2 | 
 3 | 
4 | 5 | 6 | 7 | 8 | 20 | 21 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Japanese.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation 3 | * @name Japanese 4 | * @anchor Japanese 5 | * @author yusuke 6 | */ 7 | 8 | { 9 | "sProcessing": "処理中...", 10 | "sLengthMenu": "_MENU_ 件表示", 11 | "sZeroRecords": "データはありません。", 12 | "sInfo": " _TOTAL_ 件中 _START_ から _END_ まで表示", 13 | "sInfoEmpty": " 0 件中 0 から 0 まで表示", 14 | "sInfoFiltered": "(全 _MAX_ 件より抽出)", 15 | "sInfoPostFix": "", 16 | "sSearch": "検索:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "先頭", 20 | "sPrevious": "前", 21 | "sNext": "次", 22 | "sLast": "最終" 23 | } 24 | } -------------------------------------------------------------------------------- /source/asset/table/extensions/AutoFill/js/autoFill.semanticui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' AutoFill 3 | ©2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(a){"function"===typeof define&&define.amd?define(["jquery","datatables.net-se","datatables.net-autofill"],function(b){return a(b,window,document)}):"object"===typeof exports?module.exports=function(b,c){b||(b=window);if(!c||!c.fn.dataTable)c=require("datatables.net-se")(b,c).$;c.fn.dataTable.AutoFill||require("datatables.net-autofill")(b,c);return a(c,b,b.document)}:a(jQuery,window,document)})(function(a){a=a.fn.dataTable;a.AutoFill.classes.btn="ui button";return a}); 6 | -------------------------------------------------------------------------------- /source/asset/table/extensions/AutoFill/js/autoFill.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' AutoFill 3 | ©2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(a){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs","datatables.net-autofill"],function(b){return a(b,window,document)}):"object"===typeof exports?module.exports=function(b,c){b||(b=window);if(!c||!c.fn.dataTable)c=require("datatables.net-bs")(b,c).$;c.fn.dataTable.AutoFill||require("datatables.net-autofill")(b,c);return a(c,b,b.document)}:a(jQuery,window,document)})(function(a){a=a.fn.dataTable;a.AutoFill.classes.btn="btn btn-primary";return a}); 6 | -------------------------------------------------------------------------------- /source/asset/table/extensions/AutoFill/js/autoFill.foundation.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Foundation integration for DataTables' AutoFill 3 | ©2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(a){"function"===typeof define&&define.amd?define(["jquery","datatables.net-zf","datatables.net-autofill"],function(b){return a(b,window,document)}):"object"===typeof exports?module.exports=function(b,c){b||(b=window);if(!c||!c.fn.dataTable)c=require("datatables.net-zf")(b,c).$;c.fn.dataTable.AutoFill||require("datatables.net-autofill")(b,c);return a(c,b,b.document)}:a(jQuery,window,document)})(function(a){a=a.fn.dataTable;a.AutoFill.classes.btn="button tiny";return a}); 6 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/features/searchHighlight/dataTables.searchHighlight.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | SearchHighlight for DataTables v1.0.1 3 | 2014 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(f,c,b){b(c).on("init.dt.dth",function(c,d){var a=new b.fn.dataTable.Api(d),e=b(a.table().body());if(b(a.table().node()).hasClass("searchHighlight")||d.oInit.searchHighlight||b.fn.dataTable.defaults.searchHighlight)a.on("draw.dt.dth column-visibility.dt.dth",function(){e.unhighlight();a.rows({filter:"applied"}).data().length&&e.highlight(a.search().split(" "))}).on("destroy",function(){a.off("draw.dt.dth column-visibility.dt.dth")})})})(window,document,jQuery); 6 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/sorting/custom-data-source/dom-checkbox.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Read information from a column of checkboxes (input elements with type 3 | * checkbox) and return an array to use as a basis for sorting. 4 | * 5 | * @summary Sort based on the checked state of checkboxes in a column 6 | * @name Checkbox data source 7 | * @author [Allan Jardine](http://sprymedia.co.uk) 8 | */ 9 | 10 | $.fn.dataTable.ext.order['dom-checkbox'] = function ( settings, col ) 11 | { 12 | return this.api().column( col, {order:'index'} ).nodes().map( function ( td, i ) { 13 | return $('input', td).prop('checked') ? '1' : '0'; 14 | } ); 15 | }; 16 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/sorting/custom-data-source/dom-select.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Read information from a column of select (drop down) menus and return an 3 | * array to use as a basis for sorting. 4 | * 5 | * @summary Sort based on the value of the `dt-tag select` options in a column 6 | * @name Select menu data source 7 | * @requires DataTables 1.10+ 8 | * @author [Allan Jardine](http://sprymedia.co.uk) 9 | */ 10 | 11 | $.fn.dataTable.ext.order['dom-select'] = function ( settings, col ) 12 | { 13 | return this.api().column( col, {order:'index'} ).nodes().map( function ( td, i ) { 14 | return $('select', td).val(); 15 | } ); 16 | }; 17 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/sorting/custom-data-source/dom-text.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Read information from a column of input (type text) elements and return an 3 | * array to use as a basis for sorting. 4 | * 5 | * @summary Sorting based on the values of `dt-tag input` elements in a column. 6 | * @name Input element data source 7 | * @requires DataTables 1.10+ 8 | * @author [Allan Jardine](http://sprymedia.co.uk) 9 | */ 10 | 11 | $.fn.dataTable.ext.order['dom-text'] = function ( settings, col ) 12 | { 13 | return this.api().column( col, {order:'index'} ).nodes().map( function ( td, i ) { 14 | return $('input', td).val(); 15 | } ); 16 | }; 17 | -------------------------------------------------------------------------------- /source/asset/table/extensions/AutoFill/js/autoFill.bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' AutoFill 3 | ©2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(a){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-autofill"],function(b){return a(b,window,document)}):"object"===typeof exports?module.exports=function(b,c){b||(b=window);if(!c||!c.fn.dataTable)c=require("datatables.net-bs4")(b,c).$;c.fn.dataTable.AutoFill||require("datatables.net-autofill")(b,c);return a(c,b,b.document)}:a(jQuery,window,document)})(function(a){a=a.fn.dataTable;a.AutoFill.classes.btn="btn btn-primary";return a}); 6 | -------------------------------------------------------------------------------- /source/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The CodeIgniter framework", 3 | "name": "codeigniter/framework", 4 | "type": "project", 5 | "homepage": "https://codeigniter.com", 6 | "license": "MIT", 7 | "support": { 8 | "forum": "http://forum.codeigniter.com/", 9 | "wiki": "https://github.com/bcit-ci/CodeIgniter/wiki", 10 | "irc": "irc://irc.freenode.net/codeigniter", 11 | "source": "https://github.com/bcit-ci/CodeIgniter" 12 | }, 13 | "require": { 14 | "php": ">=5.2.4" 15 | }, 16 | "suggest": { 17 | "paragonie/random_compat": "Provides better randomness in PHP 5.x" 18 | }, 19 | "require-dev": { 20 | "mikey179/vfsStream": "1.1.*" 21 | } 22 | } -------------------------------------------------------------------------------- /source/asset/table/extensions/AutoFill/js/autoFill.jqueryui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | jQuery UI integration for DataTables' AutoFill 3 | ©2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(a){"function"===typeof define&&define.amd?define(["jquery","datatables.net-jqui","datatables.net-autofill"],function(b){return a(b,window,document)}):"object"===typeof exports?module.exports=function(b,c){b||(b=window);if(!c||!c.fn.dataTable)c=require("datatables.net-jqui")(b,c).$;c.fn.dataTable.AutoFill||require("datatables.net-autofill")(b,c);return a(c,b,b.document)}:a(jQuery,window,document)})(function(a){a=a.fn.dataTable;a.AutoFill.classes.btn="ui-button ui-state-default ui-corner-all"; 6 | return a}); 7 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/api/column().title().js: -------------------------------------------------------------------------------- 1 | /** 2 | * This plug-in will read the text from the header cell of a column, returning 3 | * that value. 4 | * 5 | * @name column().title() 6 | * @summary Get the title of a column 7 | * @author Alejandro Navarro 8 | * @requires DataTables 1.10+ 9 | * 10 | * @returns {String} Column title 11 | * 12 | * @example 13 | * // Read the title text of column index 3 14 | * var table = $('#example').DataTable(); 15 | * table.column( 3 ).title(); 16 | */ 17 | 18 | $.fn.dataTable.Api.register( 'column().title()', function () { 19 | var colheader = this.header(); 20 | return $(colheader).text().trim(); 21 | } ); -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Thai.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation 3 | * @name Thai 4 | * @anchor Thai 5 | * @author Thanva Thonglor 6 | */ 7 | 8 | { 9 | "sProcessing": "กำลังดำเนินการ...", 10 | "sLengthMenu": "แสดง_MENU_ แถว", 11 | "sZeroRecords": "ไม่พบข้อมูล", 12 | "sInfo": "แสดง _START_ ถึง _END_ จาก _TOTAL_ แถว", 13 | "sInfoEmpty": "แสดง 0 ถึง 0 จาก 0 แถว", 14 | "sInfoFiltered": "(กรองข้อมูล _MAX_ ทุกแถว)", 15 | "sInfoPostFix": "", 16 | "sSearch": "ค้นหา:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "เิริ่มต้น", 20 | "sPrevious": "ก่อนหน้า", 21 | "sNext": "ถัดไป", 22 | "sLast": "สุดท้าย" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Arabic.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic translation 3 | * @name Arabic 4 | * @anchor Arabic 5 | * @author Ossama Khayat 6 | */ 7 | 8 | { 9 | "sProcessing": "جاري التحميل...", 10 | "sLengthMenu": "أظهر مُدخلات _MENU_", 11 | "sZeroRecords": "لم يُعثر على أية سجلات", 12 | "sInfo": "إظهار _START_ إلى _END_ من أصل _TOTAL_ مُدخل", 13 | "sInfoEmpty": "يعرض 0 إلى 0 من أصل 0 سجلّ", 14 | "sInfoFiltered": "(منتقاة من مجموع _MAX_ مُدخل)", 15 | "sInfoPostFix": "", 16 | "sSearch": "ابحث:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "الأول", 20 | "sPrevious": "السابق", 21 | "sNext": "التالي", 22 | "sLast": "الأخير" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Turkish.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation 3 | * @name Turkish 4 | * @anchor Turkish 5 | * @author Umit Gorkem 6 | */ 7 | 8 | { 9 | "sProcessing": "İşleniyor...", 10 | "sLengthMenu": "Sayfada _MENU_ Kayıt Göster", 11 | "sZeroRecords": "Eşleşen Kayıt Bulunmadı", 12 | "sInfo": " _TOTAL_ Kayıttan _START_ - _END_ Arası Kayıtlar", 13 | "sInfoEmpty": "Kayıt Yok", 14 | "sInfoFiltered": "( _MAX_ Kayıt İçerisinden Bulunan)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Bul:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "İlk", 20 | "sPrevious": "Önceki", 21 | "sNext": "Sonraki", 22 | "sLast": "Son" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Persian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation 3 | * @name Persian 4 | * @anchor Persian 5 | * @author Ehsan Chavoshi 6 | */ 7 | 8 | { 9 | "sProcessing": "درحال پردازش...", 10 | "sLengthMenu": "نمایش محتویات _MENU_", 11 | "sZeroRecords": "موردی یافت نشد", 12 | "sInfo": "نمایش _START_ تا _END_ از مجموع _TOTAL_ مورد", 13 | "sInfoEmpty": "تهی", 14 | "sInfoFiltered": "(فیلتر شده از مجموع _MAX_ مورد)", 15 | "sInfoPostFix": "", 16 | "sSearch": "جستجو:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "ابتدا", 20 | "sPrevious": "قبلی", 21 | "sNext": "بعدی", 22 | "sLast": "انتها" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a& { 9 | color: @color; 10 | 11 | .list-group-item-heading { 12 | color: inherit; 13 | } 14 | 15 | &:hover, 16 | &:focus { 17 | color: @color; 18 | background-color: darken(@background, 5%); 19 | } 20 | &.active, 21 | &.active:hover, 22 | &.active:focus { 23 | color: #fff; 24 | background-color: @color; 25 | border-color: @color; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Catalan.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation 3 | * @name Catalan 4 | * @anchor Catalan 5 | * @author Sergi 6 | */ 7 | 8 | { 9 | "sProcessing": "Processant...", 10 | "sLengthMenu": "Mostra _MENU_ registres", 11 | "sZeroRecords": "No s'han trobat registres.", 12 | "sInfo": "Mostrant de _START_ a _END_ de _TOTAL_ registres", 13 | "sInfoEmpty": "Mostrant de 0 a 0 de 0 registres", 14 | "sInfoFiltered": "(filtrat de _MAX_ total registres)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Filtrar:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Primer", 20 | "sPrevious": "Anterior", 21 | "sNext": "Següent", 22 | "sLast": "Últim" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Chinese-traditional.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Chinese (traditional) translation 3 | * @name Chinese (traditional) 4 | * @anchor Chinese (traditional) 5 | * @author GimmeRank Affiliate 6 | */ 7 | 8 | { 9 | "sProcessing":   "處理中...", 10 | "sLengthMenu":   "顯示 _MENU_ 項結果", 11 | "sZeroRecords":  "沒有匹配結果", 12 | "sInfo":         "顯示第 _START_ 至 _END_ 項結果,共 _TOTAL_ 項", 13 | "sInfoEmpty":    "顯示第 0 至 0 項結果,共 0 項", 14 | "sInfoFiltered": "(從 _MAX_ 項結果過濾)", 15 | "sInfoPostFix":  "", 16 | "sSearch":       "搜索:", 17 | "sUrl":          "", 18 | "oPaginate": { 19 | "sFirst":    "首頁", 20 | "sPrevious": "上頁", 21 | "sNext":     "下頁", 22 | "sLast":     "尾頁" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Vietnamese.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Vietnamese translation 3 | * @name Vietnamese 4 | * @anchor Vietnamese 5 | * @author Trinh Phuoc Thai 6 | */ 7 | 8 | { 9 | "sProcessing": "Đang xử lý...", 10 | "sLengthMenu": "Xem _MENU_ mục", 11 | "sZeroRecords": "Không tìm thấy dòng nào phù hợp", 12 | "sInfo": "Đang xem _START_ đến _END_ trong tổng số _TOTAL_ mục", 13 | "sInfoEmpty": "Đang xem 0 đến 0 trong tổng số 0 mục", 14 | "sInfoFiltered": "(được lọc từ _MAX_ mục)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Tìm:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Đầu", 20 | "sPrevious": "Trước", 21 | "sNext": "Tiếp", 22 | "sLast": "Cuối" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/table/extensions/FixedColumns/css/fixedColumns.foundation.css: -------------------------------------------------------------------------------- 1 | div.DTFC_LeftHeadWrapper table, 2 | div.DTFC_LeftBodyWrapper table, 3 | div.DTFC_LeftFootWrapper table { 4 | border-right-width: 0; 5 | } 6 | 7 | div.DTFC_RightHeadWrapper table, 8 | div.DTFC_RightBodyWrapper table, 9 | div.DTFC_RightFootWrapper table { 10 | border-left-width: 0; 11 | } 12 | 13 | div.DTFC_LeftHeadWrapper table, 14 | div.DTFC_RightHeadWrapper table { 15 | margin-bottom: 0 !important; 16 | } 17 | 18 | div.DTFC_LeftBodyWrapper table, 19 | div.DTFC_RightBodyWrapper table { 20 | border-top: none; 21 | margin: 0 !important; 22 | } 23 | 24 | div.DTFC_LeftFootWrapper table, 25 | div.DTFC_RightFootWrapper table { 26 | margin-top: 0 !important; 27 | } 28 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Latvian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Latvian translation 3 | * @name Latvian 4 | * @anchor Latvian 5 | * @author Oskars Podans 6 | */ 7 | 8 | { 9 | "sProcessing": "Uzgaidiet...", 10 | "sLengthMenu": "Rādīt _MENU_ ierakstus", 11 | "sZeroRecords": "Nav atrasti vaicājumam atbilstoši ieraksti", 12 | "sInfo": "Parādīti _START_. līdz _END_. no _TOTAL_ ierakstiem", 13 | "sInfoEmpty": "Nav ierakstu", 14 | "sInfoFiltered": "(atlasīts no pavisam _MAX_ ierakstiem)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Meklēt:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Pirmā", 20 | "sPrevious": "Iepriekšējā", 21 | "sNext": "Nākošā", 22 | "sLast": "Pēdējā" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-switch", 3 | "description": "Turn checkboxes and radio buttons into toggle switches.", 4 | "version": "3.3.2", 5 | "main": [ 6 | "./dist/js/bootstrap-switch.js", 7 | "./dist/css/bootstrap3/bootstrap-switch.css" 8 | ], 9 | "ignore": [ 10 | "docs", 11 | "test", 12 | "CNAME", 13 | "coffeelint.json", 14 | "composer.json", 15 | "CONTRIBUTING.md", 16 | "gulpfile.coffee", 17 | "gulpfile.js", 18 | "index.html", 19 | "package.json" 20 | ], 21 | "dependencies": { 22 | "bootstrap": ">=2.3.2", 23 | "jquery": ">=1.9.0" 24 | }, 25 | "devDependencies": { 26 | "jquery": "~2.1", 27 | "bootstrap": "~3.3" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Finnish.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Finnish translation 3 | * @name Finnish 4 | * @anchor Finnish 5 | * @author Seppo Äyräväinen 6 | */ 7 | 8 | { 9 | "sProcessing": "Hetkinen...", 10 | "sLengthMenu": "Näytä kerralla _MENU_ riviä", 11 | "sZeroRecords": "Tietoja ei löytynyt", 12 | "sInfo": "Näytetään rivit _START_ - _END_ (yhteensä _TOTAL_ )", 13 | "sInfoEmpty": "Näytetään 0 - 0 (yhteensä 0)", 14 | "sInfoFiltered": "(suodatettu _MAX_ tuloksen joukosta)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Etsi:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Ensimmäinen", 20 | "sPrevious": "Edellinen", 21 | "sNext": "Seuraava", 22 | "sLast": "Viimeinen" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datatables", 3 | "version": "1.10.10", 4 | "main": [ 5 | "media/js/jquery.dataTables.js", 6 | "media/css/jquery.dataTables.css", 7 | "media/images/sort_asc.png", 8 | "media/images/sort_asc_disabled.png", 9 | "media/images/sort_both.png", 10 | "media/images/sort_desc.png", 11 | "media/images/sort_desc_disabled.png" 12 | ], 13 | "dependencies": { 14 | "jquery": ">=1.7.0" 15 | }, 16 | "license": "MIT", 17 | "keywords": [ 18 | "jquery", 19 | "datatables", 20 | "table", 21 | "javascript", 22 | "library" 23 | ], 24 | "ignore": [ 25 | "/.*", 26 | "examples", 27 | "media/unit_testing", 28 | "composer.json", 29 | "dataTables.jquery.json", 30 | "package.json" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Greek.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation 3 | * @name Greek 4 | * @anchor Greek 5 | * @author Abraam Ziogas 6 | */ 7 | 8 | { 9 | "sProcessing": "Επεξεργασία...", 10 | "sLengthMenu": "Δείξε _MENU_ εγγραφές", 11 | "sZeroRecords": "Δεν βρέθηκαν εγγραφές που να ταιριάζουν", 12 | "sInfo": "Δείχνοντας _START_ εως _END_ από _TOTAL_ εγγραφές", 13 | "sInfoEmpty": "Δείχνοντας 0 εως 0 από 0 εγγραφές", 14 | "sInfoFiltered": "(φιλτραρισμένες από _MAX_ συνολικά εγγραφές)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Αναζήτηση:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Πρώτη", 20 | "sPrevious": "Προηγούμενη", 21 | "sNext": "Επόμενη", 22 | "sLast": "Τελευταία" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Hebrew.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation 3 | * @name Hebrew 4 | * @anchor Hebrew 5 | * @author Neil Osman (WW3) 6 | */ 7 | 8 | { 9 | "sProcessing": "מעבד...", 10 | "sLengthMenu": "הצג _MENU_ פריטים", 11 | "sZeroRecords": "לא נמצאו רשומות מתאימות", 12 | "sInfo": "_START_ עד _END_ מתוך _TOTAL_ רשומות" , 13 | "sInfoEmpty": "0 עד 0 מתוך 0 רשומות", 14 | "sInfoFiltered": "(מסונן מסך _MAX_ רשומות)", 15 | "sInfoPostFix": "", 16 | "sSearch": "חפש:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "ראשון", 20 | "sPrevious": "קודם", 21 | "sNext": "הבא", 22 | "sLast": "אחרון" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Norwegian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation 3 | * @name Norwegian 4 | * @anchor Norwegian 5 | * @author Petter Ekrann 6 | */ 7 | 8 | { 9 | "sProcessing": "Laster...", 10 | "sLengthMenu": "Vis _MENU_ linjer", 11 | "sZeroRecords": "Ingen linjer matcher søket", 12 | "sInfo": "Viser _START_ til _END_ av _TOTAL_ linjer", 13 | "sInfoEmpty": "Viser 0 til 0 av 0 linjer", 14 | "sInfoFiltered": "(filtrert fra _MAX_ totalt antall linjer)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Søk:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Første", 20 | "sPrevious": "Forrige", 21 | "sNext": "Neste", 22 | "sLast": "Siste" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Urdu.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Urdu translation 3 | * @name Urdu 4 | * @anchor Urdu 5 | * @author Zafar Subzwari 6 | */ 7 | 8 | { 9 | "sProcessing": "ہے جاري عملدرامد...", 10 | "sLengthMenu": "دکہائين شقيں کي (_MENU_) فہرست", 11 | "sZeroRecords": "ملے نہيں مفروضات جلتے ملتے کوئ", 12 | "sInfo": "فہرست کي تک _END_ سے _START_ سے ميں _TOTAL_ فہرست پوري ہے نظر پيش", 13 | "sInfoEmpty": "فہرست کي تک 0 سے 0 سے ميں 0 قل ہے نظر پيشّ", 14 | "sInfoFiltered": "(فہرست ہوئ چھني سے ميں _MAX_ قل)", 15 | "sInfoPostFix": "", 16 | "sSearch": "کرو تلاش:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "پہلا", 20 | "sPrevious": "پچہلا", 21 | "sNext": "اگلا", 22 | "sLast": "آخري" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Czech.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Czech translation 3 | * @name Czech 4 | * @anchor Czech 5 | * @author Magerio 6 | */ 7 | 8 | { 9 | "sProcessing": "Provádím...", 10 | "sLengthMenu": "Zobraz záznamů _MENU_", 11 | "sZeroRecords": "Žádné záznamy nebyly nalezeny", 12 | "sInfo": "Zobrazuji _START_ až _END_ z celkem _TOTAL_ záznamů", 13 | "sInfoEmpty": "Zobrazuji 0 až 0 z 0 záznamů", 14 | "sInfoFiltered": "(filtrováno z celkem _MAX_ záznamů)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Hledat:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "První", 20 | "sPrevious": "Předchozí", 21 | "sNext": "Další", 22 | "sLast": "Poslední" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Indonesian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Indonesian translation 3 | * @name Indonesian 4 | * @anchor Indonesian 5 | * @author Cipto Hadi 6 | */ 7 | 8 | { 9 | "sProcessing": "Sedang memproses...", 10 | "sLengthMenu": "Tampilkan _MENU_ entri", 11 | "sZeroRecords": "Tidak ditemukan data yang sesuai", 12 | "sInfo": "Menampilkan _START_ sampai _END_ dari _TOTAL_ entri", 13 | "sInfoEmpty": "Menampilkan 0 sampai 0 dari 0 entri", 14 | "sInfoFiltered": "(disaring dari _MAX_ entri keseluruhan)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Cari:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Pertama", 20 | "sPrevious": "Sebelumnya", 21 | "sNext": "Selanjutnya", 22 | "sLast": "Terakhir" 23 | } 24 | } -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Danish.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation 3 | * @name Danish 4 | * @anchor Danish 5 | * @author Werner Knudsen 6 | */ 7 | 8 | { 9 | "sProcessing": "Henter...", 10 | "sLengthMenu": "Vis _MENU_ linjer", 11 | "sZeroRecords": "Ingen linjer matcher søgningen", 12 | "sInfo": "Viser _START_ til _END_ af _TOTAL_ linjer", 13 | "sInfoEmpty": "Viser 0 til 0 af 0 linjer", 14 | "sInfoFiltered": "(filtreret fra _MAX_ linjer)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Søg:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Første", 20 | "sPrevious": "Forrige", 21 | "sNext": "Næste", 22 | "sLast": "Sidste" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Georgian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Georgian translation 3 | * @name Georgian 4 | * @anchor Georgian 5 | * @author Mikheil Nadareishvili 6 | */ 7 | 8 | { 9 | "sProcessing": "მიმდინარეობს დამუშავება...", 10 | "sLengthMenu": "აჩვენე _MENU_ ჩანაწერი", 11 | "sZeroRecords": "არაფერი მოიძებნა", 12 | "sInfo": "ნაჩვენებია ჩანაწერები _START_–დან _END_–მდე, სულ _TOTAL_ ჩანაწერია", 13 | "sInfoEmpty": "ნაჩვენებია ჩანაწერები 0–დან 0–მდე, სულ 0 ჩანაწერია", 14 | "sInfoFiltered": "(გაფილტრული შედეგი _MAX_ ჩანაწერიდან)", 15 | "sInfoPostFix": "", 16 | "sSearch": "ძიება:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "პირველი", 20 | "sPrevious": "წინა", 21 | "sNext": "შემდეგი", 22 | "sLast": "ბოლო" 23 | } 24 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Portuguese.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Portuguese translation 3 | * @name Portuguese 4 | * @anchor Portuguese 5 | * @author Nuno Felicio 6 | */ 7 | 8 | { 9 | "sProcessing": "A processar...", 10 | "sLengthMenu": "Mostrar _MENU_ registos", 11 | "sZeroRecords": "Não foram encontrados resultados", 12 | "sInfo": "Mostrando de _START_ até _END_ de _TOTAL_ registos", 13 | "sInfoEmpty": "Mostrando de 0 até 0 de 0 registos", 14 | "sInfoFiltered": "(filtrado de _MAX_ registos no total)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Procurar:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Primeiro", 20 | "sPrevious": "Anterior", 21 | "sNext": "Seguinte", 22 | "sLast": "Último" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Lithuanian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Lithuanian translation 3 | * @name Lithuanian 4 | * @anchor Lithuanian 5 | * @author Kęstutis Morkūnas 6 | */ 7 | 8 | { 9 | "sProcessing": "Apdorojama...", 10 | "sLengthMenu": "Rodyti _MENU_ įrašus", 11 | "sZeroRecords": "Įrašų nerasta", 12 | "sInfo": "Rodomi įrašai nuo _START_ iki _END_ iš _TOTAL_ įrašų", 13 | "sInfoEmpty": "Rodomi įrašai nuo 0 iki 0 iš 0", 14 | "sInfoFiltered": "(atrinkta iš _MAX_ įrašų)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Ieškoti:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Pirmas", 20 | "sPrevious": "Ankstesnis", 21 | "sNext": "Tolimesnis", 22 | "sLast": "Paskutinis" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Filipino.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Filipino translation 3 | * @name Filipino 4 | * @anchor Filipino 5 | * @author Citi360 6 | */ 7 | 8 | { 9 | "sProcessing": "Pagproseso...", 10 | "sLengthMenu": "Ipakita _MENU_ entries", 11 | "sZeroRecords": "Walang katugmang mga talaan na natagpuan", 12 | "sInfo": "Ipinapakita ang _START_ sa _END_ ng _TOTAL_ entries", 13 | "sInfoEmpty": "Ipinapakita ang 0-0 ng 0 entries", 14 | "sInfoFiltered": "(na-filter mula _MAX_ kabuuang entries)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Paghahanap:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Unang", 20 | "sPrevious": "Nakaraan", 21 | "sNext": "Susunod", 22 | "sLast": "Huli" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Hindi.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Hindi translation 3 | * @name Hindi 4 | * @anchor Hindi 5 | * @author Outshine Solutions 6 | */ 7 | 8 | { 9 | "sProcessing": "प्रगति पे हैं ...", 10 | "sLengthMenu": " _MENU_ प्रविष्टियां दिखाएं ", 11 | "sZeroRecords": "रिकॉर्ड्स का मेल नहीं मिला", 12 | "sInfo": "_START_ to _END_ of _TOTAL_ प्रविष्टियां दिखा रहे हैं", 13 | "sInfoEmpty": "0 में से 0 से 0 प्रविष्टियां दिखा रहे हैं", 14 | "sInfoFiltered": "(_MAX_ कुल प्रविष्टियों में से छठा हुआ)", 15 | "sInfoPostFix": "", 16 | "sSearch": "खोजें:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "प्रथम", 20 | "sPrevious": "पिछला", 21 | "sNext": "अगला", 22 | "sLast": "अंतिम" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/features/alphabetSearch/dataTables.alphabetSearch.css: -------------------------------------------------------------------------------- 1 | div.alphabet { 2 | position: relative; 3 | display: table; 4 | width: 100%; 5 | margin-bottom: 1em; 6 | } 7 | 8 | div.alphabet span { 9 | display: table-cell; 10 | color: #3174c7; 11 | cursor: pointer; 12 | text-align: center; 13 | width: 3.5% 14 | } 15 | 16 | div.alphabet span:hover { 17 | text-decoration: underline; 18 | } 19 | 20 | div.alphabet span.active { 21 | color: black; 22 | } 23 | 24 | div.alphabet span.empty { 25 | color: red; 26 | } 27 | 28 | div.alphabetInfo { 29 | display: block; 30 | position: absolute; 31 | background-color: #111; 32 | border-radius: 3px; 33 | color: white; 34 | top: 2em; 35 | height: 1.8em; 36 | padding-top: 0.4em; 37 | text-align: center; 38 | z-index: 1; 39 | } 40 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Irish.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Irish translation 3 | * @name Irish 4 | * @anchor Irish 5 | * @author Lets Be Famous Journal 6 | */ 7 | 8 | { 9 | "sProcessing": "Próiseáil...", 10 | "sLengthMenu": "Taispeáin iontrálacha _MENU_", 11 | "sZeroRecords": "Gan aon taifead meaitseáil aimsithe", 12 | "sInfo": "_START_ Showing a _END_ na n-iontrálacha _TOTAL_", 13 | "sInfoEmpty": "Showing 0-0 na n-iontrálacha 0", 14 | "sInfoFiltered": "(scagtha ó _MAX_ iontrálacha iomlán)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Cuardaigh:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "An Chéad", 20 | "sPrevious": "Roimhe Seo", 21 | "sNext": "Ar Aghaidh", 22 | "sLast": "Last" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Bulgarian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation 3 | * @name Bulgarian 4 | * @anchor Bulgarian 5 | * @author Rostislav Stoyanov 6 | */ 7 | 8 | { 9 | "sProcessing": "Обработка на резултатите...", 10 | "sLengthMenu": "Показване на _MENU_ резултата", 11 | "sZeroRecords": "Няма намерени резултати", 12 | "sInfo": "Показване на резултати от _START_ до _END_ от общо _TOTAL_", 13 | "sInfoEmpty": "Показване на резултати от 0 до 0 от общо 0", 14 | "sInfoFiltered": "(филтрирани от общо _MAX_ резултата)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Търсене във всички колони:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Първа", 20 | "sPrevious": "Предишна", 21 | "sNext": "Следваща", 22 | "sLast": "Последна" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Indonesian-Alternative.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Indonesian translation 3 | * @name Indonesian 4 | * @anchor Indonesian 5 | * @author Landung Wahana 6 | */ 7 | 8 | { 9 | "sProcessing": "Sedang proses...", 10 | "sLengthMenu": "Tampilan _MENU_ entri", 11 | "sZeroRecords": "Tidak ditemukan data yang sesuai", 12 | "sInfo": "Tampilan _START_ sampai _END_ dari _TOTAL_ entri", 13 | "sInfoEmpty": "Tampilan 0 hingga 0 dari 0 entri", 14 | "sInfoFiltered": "(disaring dari _MAX_ entri keseluruhan)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Cari:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Awal", 20 | "sPrevious": "Balik", 21 | "sNext": "Lanjut", 22 | "sLast": "Akhir" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Buttons/js/buttons.semanticui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' Buttons 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-se","datatables.net-buttons"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-se")(a,b).$;b.fn.dataTable.Buttons||require("datatables.net-buttons")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable;c.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons ui basic buttons"}, 6 | button:{tag:"button",className:"ui button"},collection:{tag:"div",className:"dt-button-collection ui basic vertical buttons"}}});return a.Buttons}); 7 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Romanian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Romanian translation 3 | * @name Romanian 4 | * @anchor Romanian 5 | * @author Alexandru Jurubita 6 | */ 7 | 8 | { 9 | "sProcessing": "Proceseaza...", 10 | "sLengthMenu": "Afiseaza _MENU_ inregistrari pe pagina", 11 | "sZeroRecords": "Nu am gasit nimic - ne pare rau", 12 | "sInfo": "Afisate de la _START_ la _END_ din _TOTAL_ inregistrari", 13 | "sInfoEmpty": "Afisate de la 0 la 0 din 0 inregistrari", 14 | "sInfoFiltered": "(filtrate dintr-un total de _MAX_ inregistrari)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Cauta:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Prima", 20 | "sPrevious": "Precedenta", 21 | "sNext": "Urmatoarea", 22 | "sLast": "Ultima" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Macedonian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Macedonian translation 3 | * @name Macedonian 4 | * @anchor Macedonian 5 | * @author Bojan Petkovski 6 | */ 7 | 8 | { 9 | "sProcessing": "Процесирање...", 10 | "sLengthMenu": "Прикажи _MENU_ записи", 11 | "sZeroRecords": "Не се пронајдени записи", 12 | "sEmptyTable": "Нема податоци во табелата", 13 | "sLoadingRecords": "Вчитување...", 14 | "sInfo": "Прикажани _START_ до _END_ од _TOTAL_ записи", 15 | "sInfoEmpty": "Прикажани 0 до 0 од 0 записи", 16 | "sInfoFiltered": "(филтрирано од вкупно _MAX_ записи)", 17 | "sInfoPostFix": "", 18 | "sSearch": "Барај", 19 | "sUrl": "", 20 | "oPaginate": { 21 | "sFirst": "Почетна", 22 | "sPrevious": "Претходна", 23 | "sNext": "Следна", 24 | "sLast": "Последна" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Responsive/js/responsive.jqueryui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | jQuery UI integration for DataTables' Responsive 3 | ©2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-jqui","datatables.net-responsive"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-jqui")(a,b).$;b.fn.dataTable.Responsive||require("datatables.net-responsive")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable,b=a.Responsive.display,f=b.modal;b.modal=function(a){return function(b, 6 | d,e){c.fn.dialog?d||c("
").append(e()).appendTo("body").dialog(c.extend(!0,{title:a&&a.header?a.header(b):"",width:500},a.dialog)):f(b,d,e)}};return a.Responsive}); 7 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Korean.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation 3 | * @name Korean 4 | * @anchor Korean 5 | * @author WonGoo Lee 6 | */ 7 | 8 | { 9 | "sEmptyTable": "데이터가 없습니다", 10 | "sInfo": "_START_ - _END_ / _TOTAL_", 11 | "sInfoEmpty": "0 - 0 / 0", 12 | "sInfoFiltered": "(총 _MAX_ 개)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ",", 15 | "sLengthMenu": "페이지당 줄수 _MENU_", 16 | "sLoadingRecords": "읽는중...", 17 | "sProcessing": "처리중...", 18 | "sSearch": "검색:", 19 | "sZeroRecords": "검색 결과가 없습니다", 20 | "oPaginate": { 21 | "sFirst": "처음", 22 | "sLast": "마지막", 23 | "sNext": "다음", 24 | "sPrevious": "이전" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": 오름차순 정렬", 28 | "sSortDescending": ": 내림차순 정렬" 29 | } 30 | } -------------------------------------------------------------------------------- /source/application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Chinese.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Chinese translation 3 | * @name Chinese 4 | * @anchor Chinese 5 | * @author Chi Cheng 6 | */ 7 | 8 | { 9 | "sProcessing": "处理中...", 10 | "sLengthMenu": "显示 _MENU_ 项结果", 11 | "sZeroRecords": "没有匹配结果", 12 | "sInfo": "显示第 _START_ 至 _END_ 项结果,共 _TOTAL_ 项", 13 | "sInfoEmpty": "显示第 0 至 0 项结果,共 0 项", 14 | "sInfoFiltered": "(由 _MAX_ 项结果过滤)", 15 | "sInfoPostFix": "", 16 | "sSearch": "搜索:", 17 | "sUrl": "", 18 | "sEmptyTable": "表中数据为空", 19 | "sLoadingRecords": "载入中...", 20 | "sInfoThousands": ",", 21 | "oPaginate": { 22 | "sFirst": "首页", 23 | "sPrevious": "上页", 24 | "sNext": "下页", 25 | "sLast": "末页" 26 | }, 27 | "oAria": { 28 | "sSortAscending": ": 以升序排列此列", 29 | "sSortDescending": ": 以降序排列此列" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Bangla.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Bangla translation 3 | * @name Bangla 4 | * @anchor Bangla 5 | * @author Md. Khaled Ben Islam 6 | */ 7 | 8 | { 9 | "sProcessing": "প্রসেসিং হচ্ছে...", 10 | "sLengthMenu": "_MENU_ টা এন্ট্রি দেখাও", 11 | "sZeroRecords": "আপনি যা অনুসন্ধান করেছেন তার সাথে মিলে যাওয়া কোন রেকর্ড খুঁজে পাওয়া যায় নাই", 12 | "sInfo": "_TOTAL_ টা এন্ট্রির মধ্যে _START_ থেকে _END_ পর্যন্ত দেখানো হচ্ছে", 13 | "sInfoEmpty": "কোন এন্ট্রি খুঁজে পাওয়া যায় নাই", 14 | "sInfoFiltered": "(মোট _MAX_ টা এন্ট্রির মধ্যে থেকে বাছাইকৃত)", 15 | "sInfoPostFix": "", 16 | "sSearch": "অনুসন্ধান:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "প্রথমটা", 20 | "sPrevious": "আগেরটা", 21 | "sNext": "পরবর্তীটা", 22 | "sLast": "শেষেরটা" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/README.md: -------------------------------------------------------------------------------- 1 | Warning! It`s only copy of ace demo-template from wrapbootstrap. 2 | Repo contains minified ace js/css files. 3 | You can read more about the license here. 4 | 5 | I`m not developer of this theme. 6 | 7 |

Twitter bootstrap 3 admin template

8 | 9 | see example http://ace.jeka.by/ 10 | 11 | 12 | Try: 13 | - git clone git@github.com:bopoda/ace.git 14 | - open ace/index.html in your desktop or mobile browser 15 | 16 | 17 | Простой и многофункциональный Twitter bootstrap 3 шаблон для админки. Responsive дизайн. 18 | 19 | Browsers: 20 | - Internet Explorer 10 21 | - Internet Explorer 11 22 | - Internet Explorer 8 23 | - Internet Explorer 9 24 | - Latest Chrome 25 | - Latest Firefox 26 | - Latest Opera 27 | - Latest Safari -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Estonian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Estonian translation 3 | * @name Estonian 4 | * @anchor Estonian 5 | * @author Janek Todoruk 6 | */ 7 | 8 | { 9 | "sProcessing": "Palun oodake, koostan kuvamiseks nimekirja!", 10 | "sLengthMenu": "Näita kirjeid _MENU_ kaupa", 11 | "sZeroRecords": "Otsitavat vastet ei leitud.", 12 | "sInfo": "Kuvatud: _TOTAL_ kirjet (_START_-_END_)", 13 | "sInfoEmpty": "Otsinguvasteid ei leitud", 14 | "sInfoFiltered": " - filteeritud _MAX_ kirje seast.", 15 | "sInfoPostFix": "Kõik kuvatud kirjed põhinevad reaalsetel tulemustel.", 16 | "sSearch": "Otsi kõikide tulemuste seast:", 17 | "oPaginate": { 18 | "sFirst": "Algus", 19 | "sPrevious": "Eelmine", 20 | "sNext": "Järgmine", 21 | "sLast": "Viimane" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/src/less/bootstrap3/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Belarusian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Belarusian translation 3 | * @name Belarusian 4 | * @anchor Belarusian 5 | * @author vkachurka 6 | */ 7 | { 8 | "sProcessing": "Пачакайце...", 9 | "sLengthMenu": "Паказваць _MENU_ запісаў", 10 | "sZeroRecords": "Запісы адсутнічаюць.", 11 | "sInfo": "Запісы з _START_ па _END_ з _TOTAL_ запісаў", 12 | "sInfoEmpty": "Запісы з 0 па 0 з 0 запісаў", 13 | "sInfoFiltered": "(адфільтравана з _MAX_ запісаў)", 14 | "sInfoPostFix": "", 15 | "sSearch": "Пошук:", 16 | "sUrl": "", 17 | "oPaginate": { 18 | "sFirst": "Першая", 19 | "sPrevious": "Папярэдняя", 20 | "sNext": "Наступная", 21 | "sLast": "Апошняя" 22 | }, 23 | "oAria": { 24 | "sSortAscending": ": актываваць для сартавання слупка па ўзрастанні", 25 | "sSortDescending": ": актываваць для сартавання слупка па змяншэнні" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Ukranian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukranian translation 3 | * @name Ukranian 4 | * @anchor Ukranian 5 | * @author antyrat 6 | */ 7 | 8 | { 9 | "sProcessing": "Зачекайте...", 10 | "sLengthMenu": "Показати _MENU_ записів", 11 | "sZeroRecords": "Записи відсутні.", 12 | "sInfo": "Записи з _START_ по _END_ із _TOTAL_ записів", 13 | "sInfoEmpty": "Записи з 0 по 0 із 0 записів", 14 | "sInfoFiltered": "(відфільтровано з _MAX_ записів)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Пошук:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Перша", 20 | "sPrevious": "Попередня", 21 | "sNext": "Наступна", 22 | "sLast": "Остання" 23 | }, 24 | "oAria": { 25 | "sSortAscending": ": активувати для сортування стовпців за зростанням", 26 | "sSortDescending": ": активувати для сортування стовпців за спаданням" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Serbian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian translation (Latin alphabet) 3 | * @name Serbian (Latin) 4 | * @anchor Serbian (Latin) 5 | * @author Marko Novakovic 6 | */ 7 | 8 | { 9 | "sProcessing": "Procesiranje u toku...", 10 | "sLengthMenu": "Prikaži _MENU_ elemenata", 11 | "sZeroRecords": "Nije pronađen nijedan rezultat", 12 | "sInfo": "Prikaz _START_ do _END_ od ukupno _TOTAL_ elemenata", 13 | "sInfoEmpty": "Prikaz 0 do 0 od ukupno 0 elemenata", 14 | "sInfoFiltered": "(filtrirano od ukupno _MAX_ elemenata)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Pretraga:", 17 | "sUrl": "", 18 | "oPaginate": { 19 | "sFirst": "Početna", 20 | "sPrevious": "Prethodna", 21 | "sNext": "Sledeća", 22 | "sLast": "Poslednja" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Buttons/js/buttons.bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' Buttons 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-buttons"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-bs4")(a,b).$;b.fn.dataTable.Buttons||require("datatables.net-buttons")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable;c.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons btn-group"}, 6 | button:{className:"btn btn-secondary"},collection:{tag:"div",className:"dt-button-collection dropdown-menu",button:{tag:"a",className:"dt-button dropdown-item"}}}});a.ext.buttons.collection.className+=" dropdown-toggle";return a.Buttons}); 7 | -------------------------------------------------------------------------------- /source/asset/crules/bootstrap-switch-master/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "components/bootstrap-switch", 3 | "description": "Turn checkboxes and radio buttons into toggle switches.", 4 | "version": "3.3.2", 5 | "type": "component", 6 | "keywords": [ 7 | "bootstrap", 8 | "switch", 9 | "javascript", 10 | "js" 11 | ], 12 | "homepage": "http://www.bootstrap-switch.org", 13 | "license": "Apache License Version 2.0", 14 | "authors": [ 15 | { 16 | "name": "Mattia Larentis", 17 | "homepage": "http://www.larentis.eu" 18 | } 19 | ], 20 | "ignore": [ 21 | "docs" 22 | ], 23 | "extra": { 24 | "component": { 25 | "name": "bootstrap-switch", 26 | "files": [ 27 | "dist/**" 28 | ], 29 | "scripts": [ 30 | "dist/js/bootstrap-switch.js" 31 | ], 32 | "shim": { 33 | "exports": "BootstrapSwitch" 34 | } 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/sorting/scientific.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This plug-in will treat numbers which are in scientific notation (for 3 | * example `1E-10`, `1.2E6` etc) and sort them numerically. 4 | * 5 | * @name Scientific notation sorting 6 | * @summary Sort data which is written in exponential notation. 7 | * @author [Nick Schurch](http://datatables.net/forums/profile/21757/nickschurch) 8 | * 9 | * @example 10 | * $('#example').dataTable( { 11 | * columnDefs: [ 12 | * { type: 'scientific', targets: 0 } 13 | * ] 14 | * } ); 15 | */ 16 | 17 | jQuery.extend( jQuery.fn.dataTableExt.oSort, { 18 | "scientific-pre": function ( a ) { 19 | return parseFloat(a); 20 | }, 21 | 22 | "scientific-asc": function ( a, b ) { 23 | return ((a < b) ? -1 : ((a > b) ? 1 : 0)); 24 | }, 25 | 26 | "scientific-desc": function ( a, b ) { 27 | return ((a < b) ? 1 : ((a > b) ? -1 : 0)); 28 | } 29 | } ); 30 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Dutch.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation 3 | * @name Dutch 4 | * @anchor Dutch 5 | * @author Erwin Kerk and ashwin 6 | */ 7 | 8 | { 9 | "sProcessing": "Bezig...", 10 | "sLengthMenu": "_MENU_ resultaten weergeven", 11 | "sZeroRecords": "Geen resultaten gevonden", 12 | "sInfo": "_START_ tot _END_ van _TOTAL_ resultaten", 13 | "sInfoEmpty": "Geen resultaten om weer te geven", 14 | "sInfoFiltered": " (gefilterd uit _MAX_ resultaten)", 15 | "sInfoPostFix": "", 16 | "sSearch": "Zoeken:", 17 | "sEmptyTable": "Geen resultaten aanwezig in de tabel", 18 | "sInfoThousands": ".", 19 | "sLoadingRecords": "Een moment geduld aub - bezig met laden...", 20 | "oPaginate": { 21 | "sFirst": "Eerste", 22 | "sLast": "Laatste", 23 | "sNext": "Volgende", 24 | "sPrevious": "Vorige" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /source/application/views/panel/model/attack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
"; 37 | * 38 | */ 39 | } 40 | 41 | ?> 42 | 43 |
DateTimeSourceDestMessage
44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/sorting/alt-string.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sort on the 'alt' tag of images in a column. This is particularly useful if 3 | * you have a column of images (ticks and crosses for example) and you want to 4 | * control the sorting using the alt tag. 5 | * 6 | * @name Alt string 7 | * @summary Use the `alt` attribute of an image tag as the data to sort upon. 8 | * @author _Jumpy_ 9 | * 10 | * @example 11 | * $('#example').dataTable( { 12 | * columnDefs: [ 13 | * { type: 'alt-string', targets: 0 } 14 | * ] 15 | * } ); 16 | */ 17 | 18 | jQuery.extend( jQuery.fn.dataTableExt.oSort, { 19 | "alt-string-pre": function ( a ) { 20 | return a.match(/alt="(.*?)"/)[1].toLowerCase(); 21 | }, 22 | 23 | "alt-string-asc": function( a, b ) { 24 | return ((a < b) ? -1 : ((a > b) ? 1 : 0)); 25 | }, 26 | 27 | "alt-string-desc": function(a,b) { 28 | return ((a < b) ? 1 : ((a > b) ? -1 : 0)); 29 | } 30 | } ); 31 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Slovenian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovenian translation 3 | * @name Slovenian 4 | * @anchor Slovenian 5 | * @author Marko Kroflic, Blaž Brenčič and Andrej Florjančič 6 | */ 7 | 8 | { 9 | "sEmptyTable": "Nobenih podatkov ni na voljo", 10 | "sInfo": "Prikazujem _START_ do _END_ od _TOTAL_ zapisov", 11 | "sInfoEmpty": "Prikazujem 0 do 0 od 0 zapisov", 12 | "sInfoFiltered": "(filtrirano od _MAX_ vseh zapisov)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ",", 15 | "sLengthMenu": "Prikaži _MENU_ zapisov", 16 | "sLoadingRecords": "Nalagam...", 17 | "sProcessing": "Obdelujem...", 18 | "sSearch": "Išči:", 19 | "sZeroRecords": "Nobeden zapis ne ustreza", 20 | "oPaginate": { 21 | "sFirst": "Prvi", 22 | "sLast": "Zadnji", 23 | "sNext": "Nasl.", 24 | "sPrevious": "Pred." 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": vključite za naraščujoči sort", 28 | "sSortDescending": ": vključite za padajoči sort" 29 | } 30 | } -------------------------------------------------------------------------------- /source/asset/table/extensions/Responsive/js/responsive.foundation.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Foundation integration for DataTables' Responsive 3 | ©2015 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-zf","datatables.net-responsive"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-zf")(a,b).$;b.fn.dataTable.Responsive||require("datatables.net-responsive")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable,b=a.Responsive.display,f=b.modal;b.modal=function(a){return function(b, 6 | d,e){c.fn.foundation?d||c('
').append('×').append(a&&a.header?"

"+a.header(b)+"

":null).append(e()).appendTo("body").foundation("reveal","open"):f(b,d,e)}};return a.Responsive}); 7 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Russian.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation 3 | * @name Russian 4 | * @anchor Russian 5 | * @author Tjoma 6 | * @autor aspyatkin 7 | */ 8 | 9 | { 10 | "processing": "Подождите...", 11 | "search": "Поиск:", 12 | "lengthMenu": "Показать _MENU_ записей", 13 | "info": "Записи с _START_ до _END_ из _TOTAL_ записей", 14 | "infoEmpty": "Записи с 0 до 0 из 0 записей", 15 | "infoFiltered": "(отфильтровано из _MAX_ записей)", 16 | "infoPostFix": "", 17 | "loadingRecords": "Загрузка записей...", 18 | "zeroRecords": "Записи отсутствуют.", 19 | "emptyTable:": "В таблице отсутствуют данные", 20 | "paginate": { 21 | "first": "Первая", 22 | "previous": "Предыдущая", 23 | "next": "Следующая", 24 | "last": "Последняя" 25 | }, 26 | "aria": { 27 | "sortAscending": ": активировать для сортировки столбца по возрастанию", 28 | "sortDescending": ": активировать для сортировки столбца по убыванию" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Buttons/js/buttons.bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' Buttons 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs","datatables.net-buttons"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-bs")(a,b).$;b.fn.dataTable.Buttons||require("datatables.net-buttons")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable;c.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons btn-group"}, 6 | button:{className:"btn btn-default"},collection:{tag:"ul",className:"dt-button-collection dropdown-menu",button:{tag:"li",className:"dt-button"},buttonLiner:{tag:"a",className:""}}}});a.ext.buttons.collection.text=function(a){return a.i18n("buttons.collection",'Collection ')};return a.Buttons}); 7 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Icelandic.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation 3 | * @name Icelandic 4 | * @anchor Icelandic 5 | * @author Finnur Kolbeinsson 6 | */ 7 | 8 | { 9 | "sEmptyTable": "Engin gögn eru í þessari töflu", 10 | "sInfo": "Sýni _START_ til _END_ af _TOTAL_ færslum", 11 | "sInfoEmpty": "Sýni 0 til 0 af 0 færslum", 12 | "sInfoFiltered": "(síað út frá _MAX_ færslum)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ".", 15 | "sLengthMenu": "Sýna _MENU_ færslur", 16 | "sLoadingRecords": "Hleð...", 17 | "sProcessing": "Úrvinnsla...", 18 | "sSearch": "Leita:", 19 | "sZeroRecords": "Engar færslur fundust", 20 | "oPaginate": { 21 | "sFirst": "Fyrsta", 22 | "sLast": "Síðasta", 23 | "sNext": "Næsta", 24 | "sPrevious": "Fyrri" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": virkja til að raða dálki í hækkandi röð", 28 | "sSortDescending": ": virkja til að raða dálki lækkandi í röð" 29 | } 30 | } -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Uzbek.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Uzbek translation 3 | * @name Uzbek 4 | * @anchor Uzbek 5 | * @author Farkhod Dadajanov 6 | */ 7 | 8 | { 9 | "sEmptyTable": "Ma'lumot yo'q", 10 | "sInfo": "Umumiy _TOTAL_ yozuvlarlardan _START_ dan _END_ gachasi ko'rsatilmoqda", 11 | "sInfoEmpty": "Umumiy 0 yozuvlardan 0 dan 0 gachasi ko'rsatilmoqda", 12 | "sInfoFiltered": "(_MAX_ yozuvlardan filtrlandi)", 13 | "sInfoPostFix": "", 14 | "sLengthMenu": "_MENU_ ta yozuvlarni ko'rsat", 15 | "sLoadingRecords": "Yozuvlar yuklanmoqda...", 16 | "sProcessing": "Ishlayapman...", 17 | "sSearch": "Izlash:", 18 | "sZeroRecords": "Ma'lumot yo'q.", 19 | "oPaginate": { 20 | "sFirst": "Birinchi", 21 | "sPrevious": "Avvalgi", 22 | "sNext": "Keyingi", 23 | "sLast": "Son'ggi" 24 | }, 25 | "oAria": { 26 | "sSortAscending": ": to'g'ri tartiblash", 27 | "sSortDescending": ": teskari tartiblash" 28 | } 29 | } -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Azerbaijan.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Azerbaijan translation 3 | * @name Azerbaijan 4 | * @anchor Azerbaijan 5 | * @author H.Huseyn 6 | */ 7 | 8 | { 9 | "sEmptyTable": "Cədvəldə heç bir məlumat yoxdur", 10 | "sInfo": " _TOTAL_ Nəticədən _START_ - _END_ Arası Nəticələr", 11 | "sInfoEmpty": "Nəticə Yoxdur", 12 | "sInfoFiltered": "( _MAX_ Nəticə İçindən Tapılanlar)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ",", 15 | "sLengthMenu": "Səhifədə _MENU_ Nəticə Göstər", 16 | "sLoadingRecords": "Yüklənir...", 17 | "sProcessing": "Gözləyin...", 18 | "sSearch": "Axtarış:", 19 | "sZeroRecords": "Nəticə Tapılmadı.", 20 | "oPaginate": { 21 | "sFirst": "İlk", 22 | "sLast": "Axırıncı", 23 | "sNext": "Sonraki", 24 | "sPrevious": "Öncəki" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": sütunu artma sırası üzərə aktiv etmək", 28 | "sSortDescending": ": sütunu azalma sırası üzərə aktiv etmək" 29 | } 30 | } -------------------------------------------------------------------------------- /source/application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Tamil.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Tamil translation 3 | * @name Tamil 4 | * @anchor Tamil 5 | * @author Sam Arul Raj 6 | */ 7 | 8 | { 9 | "sEmptyTable": "அட்டவணையில் தரவு கிடைக்கவில்லை", 10 | "sInfo": "உள்ளீடுகளை் _START_ முதல _END_ உள்ள _TOTAL_ காட்டும்", 11 | "sInfoEmpty": "0 உள்ளீடுகளை 0 0 காட்டும்", 12 | "sInfoFiltered": "(_MAX_ மொத்த உள்ளீடுகளை இருந்து வடிகட்டி)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ",", 15 | "sLengthMenu": "_MENU_ காண்பி", 16 | "sLoadingRecords": "ஏற்றுகிறது ...", 17 | "sProcessing": "செயலாக்க ...", 18 | "sSearch": "தேடல்:", 19 | "sZeroRecords": "பொருத்தமான பதிவுகள் இல்லை", 20 | "oPaginate": { 21 | "sFirst": "முதல்", 22 | "sLast": "இறுதி", 23 | "sNext": "அடுத்து", 24 | "sPrevious": "முந்தைய" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": நிரலை ஏறுவரிசையில் வரிசைப்படுத்த செயல்படுத்த", 28 | "sSortDescending": ": நிரலை இறங்கு வரிசைப்படுத்த செயல்படுத்த" 29 | } 30 | } -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/sorting/signed-num.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Although DataTables' internal numeric sorting works no problem on negative 3 | * numbers, it does not accept positively signed numbers. This plug-in will 4 | * sort just such data numerically. 5 | * 6 | * @name Fully signed numbers sorting 7 | * @summary Sort data numerically with a leading `+` symbol (as well as `-`). 8 | * @author [Allan Jardine](http://sprymedia.co.uk) 9 | * 10 | * @example 11 | * $('#example').dataTable( { 12 | * columnDefs: [ 13 | * { type: 'signed-num', targets: 0 } 14 | * ] 15 | * } ); 16 | */ 17 | 18 | jQuery.extend( jQuery.fn.dataTableExt.oSort, { 19 | "signed-num-pre": function ( a ) { 20 | return (a=="-" || a==="") ? 0 : a.replace('+','')*1; 21 | }, 22 | 23 | "signed-num-asc": function ( a, b ) { 24 | return ((a < b) ? -1 : ((a > b) ? 1 : 0)); 25 | }, 26 | 27 | "signed-num-desc": function ( a, b ) { 28 | return ((a < b) ? 1 : ((a > b) ? -1 : 0)); 29 | } 30 | } ); 31 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/German.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * German translation 3 | * @name German 4 | * @anchor German 5 | * @author Joerg Holz 6 | */ 7 | 8 | { 9 | "sEmptyTable": "Keine Daten in der Tabelle vorhanden", 10 | "sInfo": "_START_ bis _END_ von _TOTAL_ Einträgen", 11 | "sInfoEmpty": "0 bis 0 von 0 Einträgen", 12 | "sInfoFiltered": "(gefiltert von _MAX_ Einträgen)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ".", 15 | "sLengthMenu": "_MENU_ Einträge anzeigen", 16 | "sLoadingRecords": "Wird geladen...", 17 | "sProcessing": "Bitte warten...", 18 | "sSearch": "Suchen", 19 | "sZeroRecords": "Keine Einträge vorhanden.", 20 | "oPaginate": { 21 | "sFirst": "Erste", 22 | "sPrevious": "Zurück", 23 | "sNext": "Nächste", 24 | "sLast": "Letzte" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": aktivieren, um Spalte aufsteigend zu sortieren", 28 | "sSortDescending": ": aktivieren, um Spalte absteigend zu sortieren" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Gujarati.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Gujarati translation 3 | * @name Gujarati 4 | * @anchor Gujarati 5 | * @author Apoto 6 | */ 7 | 8 | { 9 | "sEmptyTable": "કોષ્ટકમાં કોઈ ડેટા ઉપલબ્ધ નથી", 10 | "sInfo": "કુલ_પ્રવેશો_અંત_પ્રારંભ_દર્શાવે_છે", 11 | "sInfoEmpty": "0 પ્રવેશો 0 0 બતાવી રહ્યું છે", 12 | "sInfoFiltered": "(_MAX_ કુલ પ્રવેશો માંથી ફિલ્ટર)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ",", 15 | "sLengthMenu": "બતાવો _MENU_ પ્રવેશો", 16 | "sLoadingRecords": "લોડ કરી રહ્યું છે ...", 17 | "sProcessing": "પ્રક્રિયા ...", 18 | "sSearch": "શોધો:", 19 | "sZeroRecords": "કોઈ મેળ ખાતા રેકોર્ડ મળી", 20 | "oPaginate": { 21 | "sFirst": "પ્રથમ", 22 | "sLast": "અંતિમ", 23 | "sNext": "આગામી", 24 | "sPrevious": "ગત" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": સ્તંભ ચડતા ક્રમમાં ગોઠવવા માટે સક્રિય", 28 | "sSortDescending": ": કૉલમ ઉતરતા ક્રમમાં ગોઠવવા માટે સક્રિય" 29 | } 30 | } -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Polish.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Polish translation 3 | * @name Polish 4 | * @anchor Polish 5 | * @author Tomasz Kowalski 6 | */ 7 | 8 | { 9 | "sProcessing": "Przetwarzanie...", 10 | "sLengthMenu": "Pokaż _MENU_ pozycji", 11 | "sZeroRecords": "Nie znaleziono pasujących pozycji", 12 | "sInfoThousands": " ", 13 | "sInfo": "Pozycje od _START_ do _END_ z _TOTAL_ łącznie", 14 | "sInfoEmpty": "Pozycji 0 z 0 dostępnych", 15 | "sInfoFiltered": "(filtrowanie spośród _MAX_ dostępnych pozycji)", 16 | "sInfoPostFix": "", 17 | "sSearch": "Szukaj:", 18 | "sUrl": "", 19 | "oPaginate": { 20 | "sFirst": "Pierwsza", 21 | "sPrevious": "Poprzednia", 22 | "sNext": "Następna", 23 | "sLast": "Ostatnia" 24 | }, 25 | "sEmptyTable": "Brak danych", 26 | "sLoadingRecords": "Wczytywanie...", 27 | "oAria": { 28 | "sSortAscending": ": aktywuj, by posortować kolumnę rosnąco", 29 | "sSortDescending": ": aktywuj, by posortować kolumnę malejąco" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/api/fnDisplayStart.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Set the point at which DataTables will start it's display of data in the 3 | * table. 4 | * 5 | * @name fnDisplayStart 6 | * @summary Change the table's paging display start. 7 | * @author [Allan Jardine](http://sprymedia.co.uk) 8 | * @deprecated 9 | * 10 | * @param {integer} iStart Display start index. 11 | * @param {boolean} [bRedraw=false] Indicate if the table should do a redraw or not. 12 | * 13 | * @example 14 | * var table = $('#example').dataTable(); 15 | * table.fnDisplayStart( 21 ); 16 | */ 17 | 18 | jQuery.fn.dataTableExt.oApi.fnDisplayStart = function ( oSettings, iStart, bRedraw ) 19 | { 20 | if ( typeof bRedraw == 'undefined' ) { 21 | bRedraw = true; 22 | } 23 | 24 | oSettings._iDisplayStart = iStart; 25 | if ( oSettings.oApi._fnCalculateEnd ) { 26 | oSettings.oApi._fnCalculateEnd( oSettings ); 27 | } 28 | 29 | if ( bRedraw ) { 30 | oSettings.oApi._fnDraw( oSettings ); 31 | } 32 | }; 33 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Malay.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation 3 | * @name Malay 4 | * @anchor Malay 5 | * @author Mohamad Zharif 6 | */ 7 | 8 | { 9 | "sEmptyTable": "Tiada data", 10 | "sInfo": "Paparan dari _START_ hingga _END_ dari _TOTAL_ rekod", 11 | "sInfoEmpty": "Paparan 0 hingga 0 dari 0 rekod", 12 | "sInfoFiltered": "(Ditapis dari jumlah _MAX_ rekod)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ",", 15 | "sLengthMenu": "Papar _MENU_ rekod", 16 | "sLoadingRecords": "Diproses...", 17 | "sProcessing": "Sedang diproses...", 18 | "sSearch": "Carian:", 19 | "sZeroRecords": "Tiada padanan rekod yang dijumpai.", 20 | "oPaginate": { 21 | "sFirst": "Pertama", 22 | "sPrevious": "Sebelum", 23 | "sNext": "Kemudian", 24 | "sLast": "Akhir" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": diaktifkan kepada susunan lajur menaik", 28 | "sSortDescending": ": diaktifkan kepada susunan lajur menurun" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /source/asset/table/extensions/Buttons/js/buttons.jqueryui.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | jQuery UI integration for DataTables' Buttons 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-jqui","datatables.net-buttons"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-jqui")(a,b).$;b.fn.dataTable.Buttons||require("datatables.net-buttons")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable;c.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons ui-buttonset"}, 6 | button:{className:"dt-button ui-button ui-state-default ui-button-text-only",disabled:"ui-state-disabled",active:"ui-state-active"},buttonLiner:{tag:"span",className:"ui-button-text"}}});a.ext.buttons.collection.text=function(a){return a.i18n("buttons.collection",'Collection ')};return a.Buttons}); 7 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/api/fnProcessingIndicator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * When doing some heavy processing of your own (for example using fnOpen with 3 | * data loading from the server) it can be useful to make use of the 4 | * 'processing' indicator built-into DataTables. This plug-in function exposes 5 | * the internal DataTables function so it can be used for exactly this. 6 | * 7 | * @name fnProcessingIndicator 8 | * @summary Show and hide the DataTables processing element through the API. 9 | * @author Allan Chappell 10 | * 11 | * @param {boolean} [onoff=true] Show (`true`) or hide (`false`) the processing 12 | * element. 13 | * 14 | * @example 15 | * var table = $('#example').dataTable(); 16 | * table.fnProcessingIndicator(); // On 17 | * table.fnProcessingIndicator(false); // Off 18 | */ 19 | 20 | jQuery.fn.dataTableExt.oApi.fnProcessingIndicator = function ( oSettings, onoff ) 21 | { 22 | if ( onoff === undefined ) { 23 | onoff = true; 24 | } 25 | this.oApi._fnProcessingDisplay( oSettings, onoff ); 26 | }; 27 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Afrikaans.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Afrikaans translation 3 | * @name Afrikaans 4 | * @anchor Afrikaans 5 | * @author Ajoft Software 6 | */ 7 | 8 | { 9 | "sEmptyTable": "Geen data beskikbaar in tabel", 10 | "sInfo": "uitstalling _START_ to _END_ of _TOTAL_ inskrywings", 11 | "sInfoEmpty": "uitstalling 0 to 0 of 0 inskrywings", 12 | "sInfoFiltered": "(gefiltreer uit _MAX_ totaal inskrywings)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ",", 15 | "sLengthMenu": "uitstal _MENU_ inskrywings", 16 | "sLoadingRecords": "laai...", 17 | "sProcessing": "verwerking...", 18 | "sSearch": "soektog:", 19 | "sZeroRecords": "Geen treffers gevind", 20 | "oPaginate": { 21 | "sFirst": "eerste", 22 | "sLast": "laaste", 23 | "sNext": "volgende", 24 | "sPrevious": "vorige" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": aktiveer kolom stygende te sorteer", 28 | "sSortDescending": ": aktiveer kolom orde te sorteer" 29 | } 30 | } -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/English.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * English - this is the default DataTables ships with 3 | * @name English 4 | * @anchor English 5 | * @author Allan Jardine 6 | */ 7 | 8 | { 9 | "sEmptyTable": "No data available in table", 10 | "sInfo": "Showing _START_ to _END_ of _TOTAL_ entries", 11 | "sInfoEmpty": "Showing 0 to 0 of 0 entries", 12 | "sInfoFiltered": "(filtered from _MAX_ total entries)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": ",", 15 | "sLengthMenu": "Show _MENU_ entries", 16 | "sLoadingRecords": "Loading...", 17 | "sProcessing": "Processing...", 18 | "sSearch": "Search:", 19 | "sZeroRecords": "No matching records found", 20 | "oPaginate": { 21 | "sFirst": "First", 22 | "sLast": "Last", 23 | "sNext": "Next", 24 | "sPrevious": "Previous" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": activate to sort column ascending", 28 | "sSortDescending": ": activate to sort column descending" 29 | } 30 | } -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/i18n/Swedish.lang: -------------------------------------------------------------------------------- 1 | /** 2 | * Swedish translation 3 | * @name Swedish 4 | * @anchor Swedish 5 | * @author Kristoffer Karlström 6 | */ 7 | 8 | { 9 | "sEmptyTable": "Tabellen innehåller ingen data", 10 | "sInfo": "Visar _START_ till _END_ av totalt _TOTAL_ rader", 11 | "sInfoEmpty": "Visar 0 till 0 av totalt 0 rader", 12 | "sInfoFiltered": "(filtrerade från totalt _MAX_ rader)", 13 | "sInfoPostFix": "", 14 | "sInfoThousands": " ", 15 | "sLengthMenu": "Visa _MENU_ rader", 16 | "sLoadingRecords": "Laddar...", 17 | "sProcessing": "Bearbetar...", 18 | "sSearch": "Sök:", 19 | "sZeroRecords": "Hittade inga matchande resultat", 20 | "oPaginate": { 21 | "sFirst": "Första", 22 | "sLast": "Sista", 23 | "sNext": "Nästa", 24 | "sPrevious": "Föregående" 25 | }, 26 | "oAria": { 27 | "sSortAscending": ": aktivera för att sortera kolumnen i stigande ordning", 28 | "sSortDescending": ": aktivera för att sortera kolumnen i fallande ordning" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /source/application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/README.md: -------------------------------------------------------------------------------- 1 | DataTables Plugins 2 | ================== 3 | 4 | This repository contains a collection of plug-ins for the jQuery [DataTables](http://datatables.net) table enhancer. These plug-ins are feature enhancing for the DataTables library, adding extra options to core functionality such as additional sort algorithms, API methods and pagination controls. The plug-ins should not be confused with DataTables "extras" which are more significant software libraries which add additional features to DataTables. 5 | 6 | This repository holds the following plug-in types for DataTables: 7 | 8 | * Sorting 9 | * Type based 10 | * Custom data source based 11 | * API 12 | * Filtering 13 | * Type based 14 | * Row based 15 | * Internationalisation translations 16 | * Type detection 17 | * Pagination 18 | * Integration scripts 19 | * Twitter Bootstrap 20 | 21 | Each directory has an index.html file which is used to generate the plug-ins documentation on [DataTables.net](http://datatables.net/plug-ins) and describes how plug-ins can be used. -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/sorting/anti-the.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Often a list of data which has titles in it (books, albums etc) will have 3 | * the word "the" at the start of some individual titles, which you don't want 4 | * to include in your sorting order. This plug-in will strip the word "the" 5 | * from the start of a string and sort on what is left. 6 | * 7 | * @name Anti-"the" 8 | * @summary Sort with the prefixed word `dt-string The` removed, if present 9 | * @author [Allan Jardine](http://sprymedia.co.uk) 10 | * 11 | * @example 12 | * $('#example').dataTable( { 13 | * columnDefs: [ 14 | * { type: 'anti-the', targets: 0 } 15 | * ] 16 | * } ); 17 | */ 18 | 19 | jQuery.extend( jQuery.fn.dataTableExt.oSort, { 20 | "anti-the-pre": function ( a ) { 21 | return a.replace(/^the /i, ""); 22 | }, 23 | 24 | "anti-the-asc": function ( a, b ) { 25 | return ((a < b) ? -1 : ((a > b) ? 1 : 0)); 26 | }, 27 | 28 | "anti-the-desc": function ( a, b ) { 29 | return ((a < b) ? 1 : ((a > b) ? -1 : 0)); 30 | } 31 | } ); 32 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/features/lengthLinks/dataTables.lengthLinks.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Page length control via links for DataTables 3 | 2014 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(i,j,a){a.fn.dataTable.LengthLinks=function(d){var c=new a.fn.dataTable.Api(d),f=c.settings()[0],e=a("
").addClass(f.oClasses.sLength),h=-1;this.container=function(){return e[0]};e.on("click.dtll","a",function(b){b.preventDefault();c.page.len(1*a(this).data("length")).draw(!1)});c.on("draw",function(){if(c.page.len()!==h){var b=f.aLengthMenu,d=2===b.length&&a.isArray(b[0])?b[1]:b,g=2===b.length&&a.isArray(b[0])?b[0]:b,b=a.map(g,function(b,a){return b==c.page.len()?''+d[a]+"":''+d[a]+""});e.html(f.oLanguage.sLengthMenu.replace("_MENU_",b.join(" | ")));h=c.page.len()}});c.on("destroy",function(){e.off("click.dtll","a")})};a.fn.dataTable.ext.feature.push({fnInit:function(d){return(new a.fn.dataTable.LengthLinks(d)).container()},cFeature:"L",sFeature:"LengthLinks"})})(window,document,jQuery); 7 | -------------------------------------------------------------------------------- /source/asset/crules/datatables-plugins/type-detection/formatted-num.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This plug-in will strip out non-numeric formatting characters such that a 3 | * formatted number (for example 1,000,000) can be detected automatically and 4 | * sorted numerically. Note that characters a-z are not automatically removed, 5 | * otherwise there is a risk of detecting columns as numeric which should not 6 | * be. 7 | * 8 | * DataTables 1.10+ has formatted number type detection and sorting abilities 9 | * built-in. As such this plug-in is marked as deprecated, but might be useful 10 | * when working with old versions of DataTables. 11 | * 12 | * @name Formatted numbers 13 | * @summary formatted_numbers 14 | * @deprecated 15 | * @author [Allan Jardine](http://sprymedia.co.uk) 16 | */ 17 | 18 | jQuery.fn.dataTableExt.aTypes.unshift( 19 | function ( sData ) 20 | { 21 | var deformatted = sData.replace(/[^\d\-\.\/a-zA-Z]/g,''); 22 | if ( $.isNumeric( deformatted ) || deformatted === "-" ) { 23 | return 'formatted-num'; 24 | } 25 | return null; 26 | } 27 | ); 28 | --------------------------------------------------------------------------------