First Commit
0 parents
Showing
1000 changed files
with
5090 additions
and
0 deletions
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.
.env
0 → 100644
| APP_ENV=local | ||
| APP_DEBUG=true | ||
| APP_ADMIN_DEBUG=true | ||
| APP_LOG_LEVEL=error | ||
| APP_KEY=LEynnBaQoqsLncOWZwgdtfxxWU2hEyfp | ||
| APP_PROTOCOL=http:// | ||
| app_name=Flexydial | ||
| app_title=Flexydial | ||
| app_domain=localhost:8000 | ||
| web_domain=localhost:8000 | ||
| app_ip=localhost | ||
| asterisk_slaves=192.168.3.242:1001:2000:1:240 | ||
| asterisk_manager=192.168.3.242 | ||
| asterisk_extensions=31330,_X! | ||
| APP_Multiple_Logins=yes | ||
| kDialer_keeplocalconf=1 | ||
| kstych_viewportMeta=responsive:1:1 | ||
| DB_HOST=192.168.3.234 | ||
| DB_DATABASE=fullerton | ||
| DB_USERNAME=root | ||
| DB_PASSWORD=yb9738z | ||
| CACHE_DRIVER=database | ||
| SESSION_DRIVER=database | ||
| SESSION_LIFEMin=43200 | ||
| QUEUE_DRIVER=sync | ||
| #MAIL_DRIVER=smtp | ||
| #MAIL_HOST=localhost | ||
| #MAIL_PORT=587 | ||
| #MAIL_USERNAME=mail | ||
| #MAIL_PASSWORD=mail | ||
| #[email protected] | ||
| AWS_KEY= | ||
| AWS_Secret= | ||
| AWS_Region=us-east-1 | ||
| AWS_Bucket= | ||
| FS_DefaultDriver=local | ||
| FS_CloudDriver=s3 | ||
| facebook_appid= | ||
| facebook_appkey= | ||
| gcm_apikey= | ||
| extAuth= | ||
| extAuthParams= | ||
| xssGlobal=tag,hent | ||
| xssGlobalIgnoreKeys=content,pdata,courseintroductiondiv,coursecoverphoto,data,rlog,rstring | ||
| MobileTitle=Flexydial | ||
.gitattributes
0 → 100755
.gitignore
0 → 100755
.phpintel/1ca4c0a5fc28eed25bd1118facaf6196
0 → 100644
No preview for this file type
.phpintel/8e3901a9951159523fb1a2a97f9d1dac
0 → 100644
No preview for this file type
.phpintel/a6dcca86d08bf6d5faa37aa5aa5ac078
0 → 100644
No preview for this file type
.phpintel/index
0 → 100644
No preview for this file type
1
0 → 100644
1.sh
0 → 100644
ARP.sh
0 → 100755
CreateCall.php
0 → 100755
UserController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Console/Commands/ClearDiallines.php
0 → 100755
app/Console/Commands/CreateCall.php
0 → 100755
app/Console/Commands/DailyLogout.php
0 → 100755
app/Console/Commands/DeleteCrmcalls.php
0 → 100755
app/Console/Commands/HangupCall.php
0 → 100755
app/Console/Commands/InsertCrmArchive.php
0 → 100755
app/Console/Commands/InsertCrmArchive2.php
0 → 100755
app/Console/Commands/KstychARP.php
0 → 100755
app/Console/Commands/KstychDaily.php
0 → 100755
app/Console/Commands/KstychPAGI.php
0 → 100755
app/Console/Commands/KstychPAMI.php
0 → 100755
app/Console/Commands/OldbulkServerUpload.php
0 → 100755
app/Console/Commands/UpdateAvgRingSec.php
0 → 100755
app/Console/Commands/bulkServerUpload.php
0 → 100755
app/Console/Commands/bulkServerUpload_1.php
0 → 100755
app/Console/Commands/bulkServerUpload_2.php
0 → 100755
app/Console/Commands/bulkServerUpload_3.php
0 → 100755
app/Console/Commands/bulkServerUpload_4.php
0 → 100755
app/Console/Commands/smsdata_records.php
0 → 100755
app/Console/Kernel.php
0 → 100755
app/Events/Event.php
0 → 100755
app/Exceptions/Handler.php
0 → 100755
No preview for this file type
app/Http/Controllers/AdminController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/Auth/AuthController.php
0 → 100755
app/Http/Controllers/AutodialController.php
0 → 100755
app/Http/Controllers/CRMController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/CampaignController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/Controller.php
0 → 100755
app/Http/Controllers/DashboardController.php
0 → 100755
app/Http/Controllers/DataController.php
0 → 100755
app/Http/Controllers/DialerController.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers/GroupController.php
0 → 100755
app/Http/Controllers/HRController.php
0 → 100755
app/Http/Controllers/HomeController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/MessageController.php
0 → 100755
app/Http/Controllers/NotesController.php
0 → 100755
app/Http/Controllers/RecordController.php
0 → 100755
| <?php namespace App\Http\Controllers; | ||
| use Auth; | ||
| use Input; | ||
| use Response; | ||
| use App\Models\Notification; | ||
| use App\Jobs\KHRMSLib; | ||
| use App\Models\User; | ||
| use DB; | ||
| use App\Models\CRMCall; | ||
| use App\Http\Controllers; | ||
| use App\Http\Requests; | ||
| use Illuminate\Http\Request; | ||
| use Log; | ||
| class RecordController extends Controller { | ||
| public function __construct() | ||
| { | ||
| $this->middleware('auth'); | ||
| $this->middleware('module_access'); | ||
| } | ||
| public function index() | ||
| { | ||
| return view('layout.module.record.index',array()); | ||
| } | ||
| public function create() | ||
| { | ||
| // | ||
| } | ||
| public function store() | ||
| { | ||
| $data=array(); | ||
| $data['wakka'] = new KHRMSLib(); | ||
| $action=Input::get("action")!=""?Input::get("action"):$_SESSION['fapiRequest']; | ||
| $client=Input::get("client"); | ||
| $data['wakka']->HRFillNames($client); | ||
| if($action=="show") | ||
| { | ||
| return view('layout.module.record.show',$data); | ||
| } | ||
| if($action=="save") | ||
| { | ||
| return view('layout.module.record.save',$data); | ||
| } | ||
| if($action=="quicksearch") | ||
| { | ||
| return view('layout.module.record.quicksearch',$data); | ||
| } | ||
| if($action=="textsearch") | ||
| { | ||
| return view('layout.module.record.textsearch',$data); | ||
| } | ||
| if($action=="addkey") | ||
| { | ||
| $wakka = new KHRMSLib(); | ||
| $varid=Input::get("varid"); | ||
| $keys=explode(",",Input::get("keys")); | ||
| $record=$wakka->getPerson($varid); | ||
| if(!empty($keys))foreach($keys as $key) | ||
| { | ||
| $val=Input::get($key); | ||
| $record["peopledata"][$key]=$val; | ||
| } | ||
| $wakka->setPerson($varid,$record); | ||
| return Response::make(""); | ||
| } | ||
| if($action=="delaltphone") | ||
| { | ||
| $wakka = new KHRMSLib(); | ||
| $varid=Input::get("varid"); | ||
| $i=Input::get("i"); | ||
| $record=$wakka->getPerson($varid); | ||
| for($k=$i+1;$k<=10;$k++,$i++) | ||
| { | ||
| $record["peopledata"]["altphone$i"]=$record["peopledata"]["altphone$k"]; | ||
| $record["peopledata"]["altphone_lbl_$i"]=$record["peopledata"]["altphone_lbl_$k"]; | ||
| } | ||
| $record["peopledata"]["altphone10"]=""; | ||
| $record["peopledata"]["altphone_lbl_10"]=""; | ||
| $wakka->setPerson($varid,$record); | ||
| } | ||
| if($action=="bulkupload") | ||
| { | ||
| return view('layout.module.record.bulkupload',$data); | ||
| } | ||
| if($action=="Appointment") | ||
| { | ||
| $wakka = new KHRMSLib(); | ||
| $CustomerName=Input::get("CustomerName"); | ||
| $AppntLocation=Input::get("AppntLocation"); | ||
| $AppntTime=Input::get("AppntTime"); | ||
| $Address=Input::get("Address"); | ||
| $AppntDate=Input::get("AppntDate"); | ||
| $ContactPerson=Input::get("ContactPerson"); | ||
| $Phone=Input::get("Phone"); | ||
| $AppntDate=date("d-M-Y",strtotime($AppntDate)); | ||
| $h = $AppntTime; | ||
| $hm = $h * 60; | ||
| $ms = $hm * 60; | ||
| $AppntTime=gmdate("g A",$ms); | ||
| $smsapi="http://115.114.132.71/servlet/com.aclwireless.pushconnectivity.listeners.TextListener?userId=idcamps&pass=pacamps1&contenttype=1&from=HEROFC&selfid=true&alert=1&dlrreq=true"; | ||
| $MsgContent="Dear $CustomerName, Your appointment is fixed at $AppntLocation. Appointment Date - $AppntDate, Time - $AppntTime. Address: $Address Contact Person - $ContactPerson. In case of any assistence Please give a missed call. $Tollfree"; | ||
| $EnMsgContent=urlencode($MsgContent); | ||
| $smsurl=$smsapi."&to=".$Phone."&text=".$EnMsgContent; | ||
| $MessageID=$wakka->get_response($smsurl); | ||
| if($MessageID) | ||
| print $MessageID; | ||
| else | ||
| print "Failed"; | ||
| //echo $CustomerName . ' = ' . $AppntLocation . ' = ' . $AppntTime . ' = ' . $Address . ' = ' . $AppntDate . ' = ' . $ContactPerson; | ||
| } | ||
| if($action=="sendAPI") | ||
| { | ||
| $mobile=Input::get("mobile")!=""?Input::get("mobile"):$_SESSION['apiMobile']; | ||
| $custName=Input::get("custName")!=""?Input::get("custName"):$_SESSION['apiCustName']; | ||
| $lan=Input::get("lan")!=""?Input::get("lan"):$_SESSION['apiLan']; | ||
| $emi=Input::get("emi")!=""?Input::get("emi"):$_SESSION['apiEmi']; | ||
| $X_AUTH_T = 'eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczovL21vYmlsZXBheW1lbnRzLmJlbm93LmluLyIsInN1YiI6ImhpbWFuc2h1LnNoYXJtYUBmdWxsZXJ0b25pbmRpYS5jb20iLCJkYXRhIjp7Im1lcmNoYW50SWQiOiIxODU1ODMiLCJtY2NDb2RlIjoiNzMyMiIsIm1vYmlsZU51bWJlciI6Ijg0NTIwNzc1NTUiLCJkaXNwbGF5TmFtZSI6IkZVTExFUlRPTiBJTkRJQSBDUkVESVQgQ09NUEFOWSBMSU1JVEVEIiwibWVyY2hhbnRDb2RlIjoiRDRESzgiLCJwcml2YXRlSWQiOiI2OTEifSwiaWF0IjoxNTMxOTExMjU5fQ.pJupG7g5iOHgsJbUucjP_Hu8Zfd-wIVJkijkHMZ9vl0'; | ||
| $X_EMAIL_T = '[email protected]'; | ||
| $key = '[B@334418de'; // this is salt/key which would be provided by benow | ||
| $inputArray = ['merchantCode'=>'D4DK8',"amount"=>$emi,"description"=>"FULLERTON INDIA CREDIT COMPANY LIMITED","customerName"=>$custName,"mobileNumber"=>$mobile,"refNumber"=>$lan]; // payload | ||
| $input = json_encode($inputArray); | ||
| $key = openssl_digest($key,'sha256'); | ||
| $key = openssl_digest($key,'md5'); | ||
| $key = substr($key,0,16); | ||
| $iv = 'xxxxyyyyzzzzwwww'; // this will be provided by benow | ||
| $encryptedString = openssl_encrypt($input,'aes-128-cbc',$key,0,$iv); | ||
| $jsonString = $input; | ||
| $data = ['encryptedString'=>$encryptedString,'jsonString'=> $input]; | ||
| $jsonBody = $data; | ||
| $url = 'https://mobilepayments.benow.in/payments/paymentadapter/portablePaymentRequest'; | ||
| $payload = json_encode($jsonBody); | ||
| $ch = curl_init(); | ||
| curl_setopt($ch, CURLOPT_COOKIE, ""); | ||
| curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); | ||
| curl_setopt($ch, CURLOPT_URL, $url); | ||
| curl_setopt($ch, CURLOPT_POST, 1); | ||
| curl_setopt($ch, CURLOPT_POSTFIELDS, $payload); | ||
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | ||
| curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json', | ||
| 'AUTHORIZATIONKEY:' . $X_AUTH_T, | ||
| 'X-EMAIL:' . $X_EMAIL_T, 'Cache-Control:no-cache' | ||
| )); | ||
| $response = curl_exec($ch); | ||
| curl_close($ch); | ||
| Log::useFiles(storage_path().'/logs/SMS_'.date("d_m_Y").'.log'); | ||
| Log::info(date("Y-m-d H:i:s")." Mobile=".$mobile." LAN=".$lan." Response=".$response); | ||
| if(isset($_SESSION['fapiRequest'])) | ||
| { | ||
| $_SESSION['fapiRequest'] = ''; | ||
| $_SESSION['apiMobile'] = ''; | ||
| $_SESSION['apiCustName'] = ''; | ||
| $_SESSION['apiLan'] = ''; | ||
| $_SESSION['apiEmi'] = ''; | ||
| } | ||
| return $response; | ||
| } | ||
| } | ||
| public function show($id) | ||
| { | ||
| $data=array(); | ||
| $data['wakka'] = new KHRMSLib(); | ||
| if($id=="bulkupload") | ||
| { | ||
| return view('layout.module.record.bulkupload',$data); | ||
| } | ||
| if($id=="textsearch") | ||
| { | ||
| return view('layout.module.record.textsearch',$data); | ||
| } | ||
| } | ||
| public function edit($id) | ||
| { | ||
| // | ||
| } | ||
| public function update($id) | ||
| { | ||
| // | ||
| } | ||
| public function destroy($id) | ||
| { | ||
| } | ||
| public function dashboard() | ||
| { | ||
| //echo "OK"; | ||
| } | ||
| public function churnData() | ||
| { | ||
| $data=array(); | ||
| $wakka = new KHRMSLib(); | ||
| $listVal = DB::table('currentqueue_list')->get(); | ||
| $rclientlst=$wakka->clientsReadAccess(); | ||
| $data['listVal'] = $listVal; | ||
| $data['cntlistVal'] = count($listVal); | ||
| $data['rclientlst'] = $rclientlst; | ||
| return view('layout.module.record.churn',$data); | ||
| } | ||
| public function saveChurnData() | ||
| { | ||
| $user_agent=Input::get('agent'); | ||
| $data = $_POST['data']; | ||
| $exitAgent = DB::table('cq_logic')->where('user_agent','=',$user_agent)->first(); | ||
| if($exitAgent) | ||
| { | ||
| DB::update("update cq_logic set updated_at='".date("Y-m-d H:i:s")."', data='".$data."' where user_agent='".$user_agent."'"); | ||
| } | ||
| else | ||
| { | ||
| DB::statement("insert into cq_logic set created_at='".date("Y-m-d H:i:s")."', updated_at='".date("Y-m-d H:i:s")."', user_agent='".$user_agent."', data='".$data."'"); | ||
| } | ||
| return ; | ||
| } | ||
| public function supervisorUpload() | ||
| { | ||
| $data = array(); | ||
| $client = array(); | ||
| $data['wakka'] = new KHRMSLib(); | ||
| $dashboarduser=Auth::user(); | ||
| $allusers=User::where('usertype','=','Telecaller')->get(); | ||
| $client=""; | ||
| foreach($allusers as $alluser) | ||
| { | ||
| $usrData = json_decode($alluser->data); | ||
| $usrHRMSData = unserialize($usrData->hrmsdata); | ||
| //echo "----userdta---".print_r($usrHRMSData); | ||
| if($usrHRMSData['clientsownerlist']&&$usrHRMSData['clientsownerlist']!='null') | ||
| //$client[] = $usrHRMSData['clientsownerlist']; | ||
| $pbcode [] = explode(',', $usrHRMSData['clientsownerlist']); | ||
| $username[] = $alluser->username; | ||
| $userid[] = $alluser->id; | ||
| } | ||
| foreach ($pbcode as $pbarr) { | ||
| foreach($pbarr as $c){ | ||
| $client[] .= $c; | ||
| } | ||
| } | ||
| // print_r($client); | ||
| $data['client'] = $client; | ||
| $data['username'] = array_combine($userid,$username); | ||
| return view('layout.module.record.commentsUpload',$data); | ||
| } | ||
| public function rlpPbwise() | ||
| { | ||
| $data = array(); | ||
| $pbcode=Input::get('pbcode'); | ||
| $data['pbcode']=$pbcode; | ||
| return view('layout.module.record.rlppbwise',$data); | ||
| } | ||
| } |
app/Http/Controllers/RoleController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/SettingController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/SocialController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/TaskController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/UserController.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers/WebController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers/egController.php
0 → 100755
This diff is collapsed.
Click to expand it.
No preview for this file type
No preview for this file type
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/CRMController.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/Controller.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/DataController.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/HRController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/HomeController.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/RoleController.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/TaskController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/UserController.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/WebController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Controllers_back/egController.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Kernel.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Middleware/AfterFilter.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Middleware/Authenticate.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Middleware/BeforeFilter.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Middleware/EncryptCookies.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Middleware/ModuleAccess.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/Http/Middleware/VerifyCsrfToken.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/Requests/Request.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Http/routes.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/DialerLib.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/Job.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KAuthLib.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KFileLib.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KFormLib.php
0 → 100755
This diff could not be displayed because it is too large.
app/Jobs/KFormLib.php-bkp
0 → 100755
This diff could not be displayed because it is too large.
app/Jobs/KFriendLib.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KHRMSLib.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KPAGIListen.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KPAMIListen.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KPAMIListen_Old.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KPAMIListen_amol.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KPushNotify.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/KSocialLib.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Jobs/ReportLib.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Listeners/.gitkeep
0 → 100755
This diff is collapsed.
Click to expand it.
app/Listeners/Commands/.gitkeep
0 → 100755
This diff is collapsed.
Click to expand it.
app/Listeners/Events/.gitkeep
0 → 100755
This diff is collapsed.
Click to expand it.
app/Listeners/Events/QueryHandler.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Accesslog.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Address.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/AgentNumber.php
0 → 100644
This diff is collapsed.
Click to expand it.
app/Models/CRM.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/CRMCall.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/CRMCallArchive.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/CRMCampaign.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/CRMList.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Campaign.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Communitie.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Contenttag.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Cutoff.php
0 → 100644
This diff is collapsed.
Click to expand it.
app/Models/Dialline.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Educourse.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Educourserun.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/FormStatusLog.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Friend.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Group.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Kqueue.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Master.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Message.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Notification.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Post.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/QCFeedback.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Rating.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Record.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Role.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Session.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Sipid.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Task.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/Trails.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/User.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Models/UserLog.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Providers/AppServiceProvider.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Providers/AuthServiceProvider.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Providers/EventServiceProvider.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/Providers/RouteServiceProvider.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/LinkPreview/textCrawler.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/PHP_XLSXWriter-master/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
app/lib/PHP_XLSXWriter-master/LICENSE
0 → 100644
This diff is collapsed.
Click to expand it.
app/lib/PHP_XLSXWriter-master/README.md
0 → 100644
This diff is collapsed.
Click to expand it.
app/lib/PHP_XLSXWriter-master/composer.json
0 → 100644
This diff is collapsed.
Click to expand it.
app/lib/PHP_XLSXWriter-master/composer.lock
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/PHP_XLSXWriter-master/example.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
No preview for this file type
This diff is collapsed.
Click to expand it.
No preview for this file type
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
No preview for this file type
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/.gitattributes
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
No preview for this file type
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/DefinitionCache/Decorator/Template.php.in
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/htmlpurifier-4.6.0/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Autoloader.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Calculation.php
0 → 100755
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Cell.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Cell/DataType.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Cell/Hyperlink.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Chart.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Chart/Axis.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Chart/Layout.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Chart/Legend.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Chart/PlotArea.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Chart/Title.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Comment.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Exception.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/HashTable.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Helper/HTML.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/IComparable.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/IOFactory.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/NamedRange.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Reader/CSV.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Reader/Excel5.php
0 → 100755
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Reader/HTML.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Reader/IReader.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Reader/OOCalc.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Reader/SYLK.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/RichText.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/RichText/Run.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Settings.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/Date.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/Drawing.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/Escher.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/Excel5.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/File.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/Font.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/OLE.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/OLE/PPS.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/OLERead.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Shared/String.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Style.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Style/Border.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Style/Borders.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Style/Color.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Style/Fill.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Style/Font.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Worksheet.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Worksheet/Row.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Writer/CSV.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Writer/Excel5.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Writer/HTML.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Writer/IWriter.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/Writer/PDF.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/bg/config
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/cs/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/da/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/de/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/es/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/fi/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/fr/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/hu/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/it/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/nl/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/no/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/pl/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/pt/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/ru/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/sv/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel/PHPExcel/locale/tr/config
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/Cell.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/Chart.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/Comment.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/Exception.php
0 → 100755
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/HashTable.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/IOFactory.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/RichText.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/Settings.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/Style.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/lib/phpexcel_of_5/PHPExcel/Worksheet.php
0 → 100755
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment