Skip to content

Commit a130a6d

Browse files
**10.01.2017**
* Updates * CodeIgniter 3.1.3 * System * Interfaces removed * Vagrant removed
1 parent ff86b11 commit a130a6d

File tree

194 files changed

+1044
-1896
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+1044
-1896
lines changed

.gitattributes

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
# Auto detect text files and perform LF normalization
22
* text=lf
33

4-
# Custom for Visual Studio
5-
*.cs diff=csharp
6-
74
# Standard to msysgit
85
*.doc diff=astextplain
96
*.DOC diff=astextplain
10-
*.docx diff=astextplain
11-
*.DOCX diff=astextplain
12-
*.dot diff=astextplain
13-
*.DOT diff=astextplain
14-
*.pdf diff=astextplain
7+
*.DOCX diff=astextplain
8+
*.DOCX diff=astextplain
9+
*.dot diff=astextplain
10+
*.DOT diff=astextplain
11+
*.pdf diff=astextplain
1512
*.PDF diff=astextplain
1613
*.rtf diff=astextplain
1714
*.RTF diff=astextplain
18-
19-
# Vagrant
20-
*.sh text eol=lf

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
**10.01.2017**
4+
* Updates
5+
* CodeIgniter 3.1.3
6+
7+
* System
8+
* Interfaces removed
9+
* Vagrant removed
10+
311
**09.01.2017**
412
* Search
513
* Marking of searched text more flexible

README.md

-16
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,6 @@ produrl=http://lukida.domain.tld
6464

6565
Try the URL in your browser.
6666

67-
###Vagrant virtual machine
68-
For a local developer system, you can use a virtual machine with Virtualbox and Vagrant. These are the installation steps:
69-
70-
1. Be sure to have [Virtualbox](https://www.virtualbox.org/wiki/Downloads) installed.
71-
2. You need a POSIX compatible shell - on MS Windows [GIT Bash](https://git-for-windows.github.io/) is verified to work.
72-
3. Install [Vagrant](https://www.vagrantup.com/downloads.html) (if not present) with Virtualbox guest additions plugin (execute ```vagrant plugin install vagrant-vbguest``` in a shell after the installation of Vagrant).
73-
4. Navigate to the projects root folder in your shell (e.g. the folder with the [Vagrantfile](Vagrantfile)).
74-
5. Run `vagrant up` to automatically download, start and initially provision the virtual machine.
75-
76-
Usage hints:
77-
- Lukida can be accessed via http://192.168.33.12; the db admin via http://192.168.33.12/phpmyadmin/ (user: newlibrary, password: newlibrary)
78-
- you can develop on your host system without immediate impact
79-
- a connection into the virtual machine running Lukida can be done with ```vagrant ssh```
80-
- to apply changes made in the code, run ```lukida_sync``` from inside the virtual machine
81-
- read more about Vagrant on https://www.vagrantup.com/
82-
8367
###Customization
8468

8569
In order to get it running you need to customize your library (.../lukida/libraries/lukida_newlibrary/...) to your needs:

Vagrantfile

-74
This file was deleted.

kernel/application/config/autoload.php

+1-12
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
| 5. Custom config files
2828
| 6. Language files
2929
| 7. Models
30-
| 8. Interfaces
3130
|
3231
*/
3332

@@ -98,7 +97,7 @@
9897
| config files. Otherwise, leave it blank.
9998
|
10099
*/
101-
$autoload['config'] = array('general');
100+
$autoload['config'] = array();
102101

103102
/*
104103
| -------------------------------------------------------------------
@@ -128,13 +127,3 @@
128127
| $autoload['model'] = array('first_model' => 'first');
129128
*/
130129
$autoload['model'] = array();
131-
132-
/*
133-
| -------------------------------------------------------------------
134-
| Auto-load Interfaces
135-
| -------------------------------------------------------------------
136-
| Prototype:
137-
|
138-
| $autoload['interface'] = array('first_interface', 'second_interface');
139-
*/
140-
$autoload['interface'] = array('ILSService', 'SearchService');

kernel/application/config/general.php

-4
This file was deleted.

0 commit comments

Comments
 (0)