- mcamara/laravel-localization update

- download files with correct file extension
- data type of value of abstratct is now "text"
- geopackage seeder is now application/x-sqlite3
- style improvements for search
This commit is contained in:
Arno Kaimbacher 2019-09-23 17:44:42 +02:00
parent 7bf0337faf
commit 024002eded
6 changed files with 18 additions and 11 deletions

View File

@ -13,6 +13,8 @@ class FileController extends Controller
//$report = $this->report->find($id);
$file = File::findOrFail($id);
$file_path = public_path('storage/' . $file->path_name);
return response()->download($file_path, $file->label, ['Content-Type:' . $file->mime_type]);
$ext = \Illuminate\Support\Facades\File::extension($file_path);
return response()->download($file_path, $file->label . "." . $ext, ['Content-Type:' . $file->mime_type]);
// return response()->download($file_path, $file->label, ['Content-Type:' . $file->mime_type]);
}
}

10
composer.lock generated
View File

@ -1089,16 +1089,16 @@
},
{
"name": "mcamara/laravel-localization",
"version": "1.4.1",
"version": "1.4.2",
"source": {
"type": "git",
"url": "https://github.com/mcamara/laravel-localization.git",
"reference": "82d06c66cdf1e3ed17783842886d87cbd5aadd43"
"reference": "d228a61afd8cfe9eb7f8f7450acfa0371382407d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/mcamara/laravel-localization/zipball/82d06c66cdf1e3ed17783842886d87cbd5aadd43",
"reference": "82d06c66cdf1e3ed17783842886d87cbd5aadd43",
"url": "https://api.github.com/repos/mcamara/laravel-localization/zipball/d228a61afd8cfe9eb7f8f7450acfa0371382407d",
"reference": "d228a61afd8cfe9eb7f8f7450acfa0371382407d",
"shasum": ""
},
"require": {
@ -1147,7 +1147,7 @@
"localization",
"php"
],
"time": "2019-09-08T13:56:19+00:00"
"time": "2019-09-20T15:24:04+00:00"
},
{
"name": "monolog/monolog",

View File

@ -24,7 +24,7 @@ class CreateDatasetAbstractsTable extends Migration
'type',
['abstract' => 'Abstract', 'methods' => 'Methods', 'series_information' => 'Series_information', 'technical_info' => 'Technical_info', 'translated' => 'Translated', 'other' => 'Other']
);
$table->string('value', 255);
$table->text('value');
$table->string('language', 3);
});
}

View File

@ -12,7 +12,7 @@ class MimetypeTableSeeder extends Seeder
DB::table('mime_types')->insert([
[
'name' => 'application/geopackage+sqlite3',
'name' => 'application/x-sqlite3',
'file_extension' => 'gpkg',
'enabled' =>true,
'created_at' => Carbon::now(),

View File

@ -86,6 +86,8 @@
@endsection
@section('head')
<style>
.sidebar-simplesearch {
position: relative;
@ -106,4 +108,7 @@
right: 0.25em;
color: #666;
}
</style>
</style>
@endsection

View File

@ -68,8 +68,8 @@
href="{{ route('frontend.home.intro') }}">Intro</a>
</li>
<li>
<a class="pure-menu-item {{ Route::currentRouteName() == 'frontend.search.index' ? 'current' : '' }}"
href="{{ route('frontend.search.index') }}"> SEARCH</a>
<a class="{{ Route::currentRouteName() == 'frontend.search.index' ? 'current' : '' }}"
href="{{ route('frontend.search.index') }}">Search</a>
</li>
<!-- <li><a href="#work">Work</a></li> -->