This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## | |
# DERIVED FIELDS | |
############################## | |
[derivedfields] | |
# These fields will be extracted from all processed events, and added as new fields in case an outlier event is found. | |
# The format for the new field will be: outlier.<field_name>, for example: outliers.initials | |
# The format to use is GROK. These fields are extracted BEFORE the analysis happens, which means that these fields can also be used as for example aggregators or targets in use cases. | |
timestamp=%{YEAR:timestamp_year}-%{MONTHNUM:timestamp_month}-%{MONTHDAY:timestamp_day}[T ]%{HOUR:timestamp_hour}:?%{MINUTE:timestamp_minute}(?::?%{SECOND:timestamp_second})?%{ISO8601_TIMEZONE:timestamp_timezone}? | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<head> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<div class="searchcontainer"> | |
<input id="search"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.mrc.uidaho.edu/mrc/people/jff/digital/MIPSir.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add the following to LocalSettings.php | |
$wgSMTP = array( | |
'host' => 'smtp.gmail.com', | |
'IDHost' => "wikibiz.vn", | |
'port' => 587, | |
'auth' => true, | |
'username' => [email protected] | |
'password' => "mypassword" | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.htaccess: | |
---------- | |
RewriteEngine On | |
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f | |
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d | |
RewriteRule ^(.*)$ %{DOCUMENT_ROOT}/index.php [L] | |
LocalSettings.php: | |
------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File: skins/Vector/VectorTemplate.php | |
<div id="p-logo" role="banner"><a style="background-image: url(<?php | |
$this->text( 'logopath' ) | |
?>);background-size:155px;" href="<?php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in $(find . -type d -maxdepth 1 | cut -c3-) | |
do | |
cd "$i" | |
if [ -d "lib" ]; then | |
# Control will enter here if $DIRECTORY exists. | |
native=`expr $native + 1` | |
else | |
nonnative=`expr $nonnative + 1` | |
fi | |
cd .. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=============INSTALL DOCTRINE IN CI============= | |
1. Copy Doctrine/ and Doctrine.php into application/libraries | |
2. Create folders Entities/ Proxies/ Mappings/ in models | |
3. Copy doctrine-cli.php into application/ | |
=============NEW ENTITIES============= | |
1. Generate entities from descritions in YAML files: | |
---------------------------------------------------- |