diff --git a/.travis.yml b/.travis.yml old mode 100644 new mode 100755 diff --git a/CHANGELOG.md b/CHANGELOG.md old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/app/config/local/.gitignore b/app/config/local/.gitignore old mode 100644 new mode 100755 diff --git a/app/config/local/app.example.php b/app/config/local/app.example.php old mode 100644 new mode 100755 diff --git a/app/config/production/.gitignore b/app/config/production/.gitignore old mode 100644 new mode 100755 diff --git a/app/config/production/app.example.php b/app/config/production/app.example.php deleted file mode 100644 index f3f39f6b46..0000000000 --- a/app/config/production/app.example.php +++ /dev/null @@ -1,45 +0,0 @@ - false, - - /* - |-------------------------------------------------------------------------- - | Application URL - |-------------------------------------------------------------------------- - | - | This URL is used by the console to properly generate URLs when using - | the Artisan command line tool. You should set this to the root of - | your application so that it is used when running Artisan tasks. - | - */ - - 'url' => 'http://www.yourserver.com', - - /* - |-------------------------------------------------------------------------- - | Encryption Key - |-------------------------------------------------------------------------- - | - | This key is used by the Illuminate encrypter service and should be set - | to a random, 32 character string, otherwise these encrypted strings - | will not be safe. Please do this before deploying an application! - | - | Run a php artisand key:generate --env=staging to create a random one - */ - - 'key' => 'Change_this_key_or_snipe_will_get_ya', - -); diff --git a/app/config/production/database.example.php b/app/config/production/database.example.php deleted file mode 100755 index ad0cd1161b..0000000000 --- a/app/config/production/database.example.php +++ /dev/null @@ -1,124 +0,0 @@ - PDO::FETCH_CLASS, - - /* - |-------------------------------------------------------------------------- - | Default Database Connection Name - |-------------------------------------------------------------------------- - | - | Here you may specify which of the database connections below you wish - | to use as your default connection for all database work. Of course - | you may use many connections at once using the Database library. - | - */ - - 'default' => 'mysql', - - /* - |-------------------------------------------------------------------------- - | Database Connections - |-------------------------------------------------------------------------- - | - | Here are each of the database connections setup for your application. - | Of course, examples of configuring each database platform that is - | supported by Laravel is shown below to make development simple. - | - | - | All database work in Laravel is done through the PHP PDO facilities - | so make sure you have the driver for your particular database of - | choice installed on your machine before you begin development. - | - */ - - 'connections' => array( - - 'sqlite' => array( - 'driver' => 'sqlite', - 'database' => __DIR__.'/../database/production.sqlite', - 'prefix' => '', - ), - - 'mysql' => array( - 'driver' => 'mysql', - 'host' => 'localhost', - 'database' => 'snipeit_laravel', - 'username' => 'travis', - 'password' => '', - 'charset' => 'utf8', - 'collation' => 'utf8_unicode_ci', - 'prefix' => '', - ), - - 'pgsql' => array( - 'driver' => 'pgsql', - 'host' => 'localhost', - 'database' => 'database', - 'username' => 'root', - 'password' => '', - 'charset' => 'utf8', - 'prefix' => '', - 'schema' => 'public', - ), - - 'sqlsrv' => array( - 'driver' => 'sqlsrv', - 'host' => 'localhost', - 'database' => 'database', - 'username' => 'root', - 'password' => '', - 'prefix' => '', - ), - - ), - - /* - |-------------------------------------------------------------------------- - | Migration Repository Table - |-------------------------------------------------------------------------- - | - | This table keeps track of all the migrations that have already run for - | your application. Using this information, we can determine which of - | the migrations on disk have not actually be run in the databases. - | - */ - - 'migrations' => 'migrations', - - /* - |-------------------------------------------------------------------------- - | Redis Databases - |-------------------------------------------------------------------------- - | - | Redis is an open source, fast, and advanced key-value store that also - | provides a richer set of commands than a typical key-value systems - | such as APC or Memcached. Laravel makes it easy to dig right in. - | - */ - - 'redis' => array( - - 'cluster' => true, - - 'default' => array( - 'host' => '127.0.0.1', - 'port' => 6379, - 'database' => 0, - ), - - ), - -); diff --git a/app/config/production/mail.example.php b/app/config/production/mail.example.php deleted file mode 100755 index 8d882a11e0..0000000000 --- a/app/config/production/mail.example.php +++ /dev/null @@ -1,124 +0,0 @@ - 'smtp', - - /* - |-------------------------------------------------------------------------- - | SMTP Host Address - |-------------------------------------------------------------------------- - | - | Here you may provide the host address of the SMTP server used by your - | applications. A default option is provided that is compatible with - | the Postmark mail service, which will provide reliable delivery. - | - */ - - 'host' => 'smtp.mailgun.org', - - /* - |-------------------------------------------------------------------------- - | SMTP Host Port - |-------------------------------------------------------------------------- - | - | This is the SMTP port used by your application to delivery e-mails to - | users of your application. Like the host we have set this value to - | stay compatible with the Postmark e-mail application by default. - | - */ - - 'port' => 587, - - /* - |-------------------------------------------------------------------------- - | Global "From" Address - |-------------------------------------------------------------------------- - | - | You may wish for all e-mails sent by your application to be sent from - | the same address. Here, you may specify a name and address that is - | used globally for all e-mails that are sent by your application. - | - */ - - 'from' => array('address' => null, 'name' => null), - - /* - |-------------------------------------------------------------------------- - | E-Mail Encryption Protocol - |-------------------------------------------------------------------------- - | - | Here you may specify the encryption protocol that should be used when - | the application send e-mail messages. A sensible default using the - | transport layer security protocol should provide great security. - | - */ - - 'encryption' => 'tls', - - /* - |-------------------------------------------------------------------------- - | SMTP Server Username - |-------------------------------------------------------------------------- - | - | If your SMTP server requires a username for authentication, you should - | set it here. This will get used to authenticate with your server on - | connection. You may also set the "password" value below this one. - | - */ - - 'username' => null, - - /* - |-------------------------------------------------------------------------- - | SMTP Server Password - |-------------------------------------------------------------------------- - | - | Here you may set the password required by your SMTP server to send out - | messages from your application. This will be given to the server on - | connection so that the application will be able to send messages. - | - */ - - 'password' => null, - - /* - |-------------------------------------------------------------------------- - | Sendmail System Path - |-------------------------------------------------------------------------- - | - | When using the "sendmail" driver to send e-mails, we will need to know - | the path to where Sendmail lives on this server. A default path has - | been provided here, which will work well on most of your systems. - | - */ - - 'sendmail' => '/usr/sbin/sendmail -bs', - - /* - |-------------------------------------------------------------------------- - | Mail "Pretend" - |-------------------------------------------------------------------------- - | - | When this option is enabled, e-mail will not actually be sent over the - | web and will instead be written to your application's logs files so - | you may inspect the message. This is great for local development. - | - */ - - 'pretend' => false, - -); diff --git a/app/config/remote.php b/app/config/remote.php old mode 100644 new mode 100755 diff --git a/app/config/staging/.gitignore b/app/config/staging/.gitignore old mode 100644 new mode 100755 diff --git a/app/config/staging/app.example.php b/app/config/staging/app.example.php old mode 100644 new mode 100755 diff --git a/app/config/testing/app.example.php b/app/config/testing/app.example.php old mode 100644 new mode 100755 diff --git a/app/controllers/account/ViewAssetsController.php b/app/controllers/account/ViewAssetsController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/AssetsController.php b/app/controllers/admin/AssetsController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/CategoriesController.php b/app/controllers/admin/CategoriesController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/DepreciationsController.php b/app/controllers/admin/DepreciationsController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/LicensesController.php b/app/controllers/admin/LicensesController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/LocationsController.php b/app/controllers/admin/LocationsController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/ManufacturersController.php b/app/controllers/admin/ManufacturersController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/ModelsController.php b/app/controllers/admin/ModelsController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/SettingsController.php b/app/controllers/admin/SettingsController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/StatuslabelsController.php b/app/controllers/admin/StatuslabelsController.php old mode 100644 new mode 100755 diff --git a/app/controllers/admin/SuppliersController.php b/app/controllers/admin/SuppliersController.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_13_075318_create_models_table.php b/app/database/migrations/2013_11_13_075318_create_models_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_13_075335_create_categories_table.php b/app/database/migrations/2013_11_13_075335_create_categories_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_13_075347_create_manufacturers_table.php b/app/database/migrations/2013_11_13_075347_create_manufacturers_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_15_015858_add_user_id_to_categories.php b/app/database/migrations/2013_11_15_015858_add_user_id_to_categories.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_15_112701_add_user_id_to_manufacturers.php b/app/database/migrations/2013_11_15_112701_add_user_id_to_manufacturers.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_15_190327_create_assets_table.php b/app/database/migrations/2013_11_15_190327_create_assets_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_15_190357_create_licenses_table.php b/app/database/migrations/2013_11_15_190357_create_licenses_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_15_201848_add_license_name_to_licenses.php b/app/database/migrations/2013_11_15_201848_add_license_name_to_licenses.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_16_040323_create_depreciations_table.php b/app/database/migrations/2013_11_16_040323_create_depreciations_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_16_042851_add_depreciation_id_to_models.php b/app/database/migrations/2013_11_16_042851_add_depreciation_id_to_models.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_16_084923_add_user_id_to_models.php b/app/database/migrations/2013_11_16_084923_add_user_id_to_models.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_16_103258_create_locations_table.php b/app/database/migrations/2013_11_16_103258_create_locations_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_16_103336_add_location_id_to_assets.php b/app/database/migrations/2013_11_16_103336_add_location_id_to_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_16_103407_add_checkedout_to_to_assets.php b/app/database/migrations/2013_11_16_103407_add_checkedout_to_to_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_16_103425_create_history_table.php b/app/database/migrations/2013_11_16_103425_create_history_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_17_054359_drop_licenses_table.php b/app/database/migrations/2013_11_17_054359_drop_licenses_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_17_054526_add_physical_to_assets.php b/app/database/migrations/2013_11_17_054526_add_physical_to_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_17_055126_create_settings_table.php b/app/database/migrations/2013_11_17_055126_create_settings_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_17_062634_add_license_to_assets.php b/app/database/migrations/2013_11_17_062634_add_license_to_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_18_134332_add_contacts_to_users.php b/app/database/migrations/2013_11_18_134332_add_contacts_to_users.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_18_142847_add_info_to_locations.php b/app/database/migrations/2013_11_18_142847_add_info_to_locations.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_18_152942_remove_location_id_from_asset.php b/app/database/migrations/2013_11_18_152942_remove_location_id_from_asset.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_18_164423_set_nullvalues_for_user.php b/app/database/migrations/2013_11_18_164423_set_nullvalues_for_user.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_19_013337_create_asset_logs_table.php b/app/database/migrations/2013_11_19_013337_create_asset_logs_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_19_061409_edit_added_on_asset_logs_table.php b/app/database/migrations/2013_11_19_061409_edit_added_on_asset_logs_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_19_062250_edit_location_id_asset_logs_table.php b/app/database/migrations/2013_11_19_062250_edit_location_id_asset_logs_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_20_055822_add_soft_delete_on_assets.php b/app/database/migrations/2013_11_20_055822_add_soft_delete_on_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_20_121404_add_soft_delete_on_locations.php b/app/database/migrations/2013_11_20_121404_add_soft_delete_on_locations.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_20_123137_add_soft_delete_on_manufacturers.php b/app/database/migrations/2013_11_20_123137_add_soft_delete_on_manufacturers.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_20_123725_add_soft_delete_on_categories.php b/app/database/migrations/2013_11_20_123725_add_soft_delete_on_categories.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_20_130248_create_status_labels.php b/app/database/migrations/2013_11_20_130248_create_status_labels.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_20_130830_add_status_id_on_assets_table.php b/app/database/migrations/2013_11_20_130830_add_status_id_on_assets_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_20_131544_add_status_type_on_status_labels.php b/app/database/migrations/2013_11_20_131544_add_status_type_on_status_labels.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_20_134103_add_archived_to_assets.php b/app/database/migrations/2013_11_20_134103_add_archived_to_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_21_002321_add_uploads_table.php b/app/database/migrations/2013_11_21_002321_add_uploads_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_21_024531_remove_deployable_boolean_from_status_labels.php b/app/database/migrations/2013_11_21_024531_remove_deployable_boolean_from_status_labels.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_22_075308_add_option_label_to_settings_table.php b/app/database/migrations/2013_11_22_075308_add_option_label_to_settings_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_22_213400_edits_to_settings_table.php b/app/database/migrations/2013_11_22_213400_edits_to_settings_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_013244_create_licenses_table.php b/app/database/migrations/2013_11_25_013244_create_licenses_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_031458_create_license_seats_table.php b/app/database/migrations/2013_11_25_031458_create_license_seats_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_032022_add_type_to_actionlog_table.php b/app/database/migrations/2013_11_25_032022_add_type_to_actionlog_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_033008_delete_bad_licenses_table.php b/app/database/migrations/2013_11_25_033008_delete_bad_licenses_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_033131_create_new_licenses_table.php b/app/database/migrations/2013_11_25_033131_create_new_licenses_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_033534_add_licensed_to_licenses_table.php b/app/database/migrations/2013_11_25_033534_add_licensed_to_licenses_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_101308_add_warrantee_to_assets_table.php b/app/database/migrations/2013_11_25_101308_add_warrantee_to_assets_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_104343_alter_warranty_column_on_assets.php b/app/database/migrations/2013_11_25_104343_alter_warranty_column_on_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_150450_drop_parent_from_categories.php b/app/database/migrations/2013_11_25_150450_drop_parent_from_categories.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_151920_add_depreciate_to_assets.php b/app/database/migrations/2013_11_25_151920_add_depreciate_to_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_25_152903_add_depreciate_to_licenses_table.php b/app/database/migrations/2013_11_25_152903_add_depreciate_to_licenses_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_26_211820_drop_license_from_assets_table.php b/app/database/migrations/2013_11_26_211820_drop_license_from_assets_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_11_27_062510_add_note_to_asset_logs_table.php b/app/database/migrations/2013_11_27_062510_add_note_to_asset_logs_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_12_01_113426_add_filename_to_asset_log.php b/app/database/migrations/2013_12_01_113426_add_filename_to_asset_log.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_12_06_094618_add_nullable_to_licenses_table.php b/app/database/migrations/2013_12_06_094618_add_nullable_to_licenses_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_12_10_084038_add_eol_on_models_table.php b/app/database/migrations/2013_12_10_084038_add_eol_on_models_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2013_12_12_055218_add_manager_to_users_table.php b/app/database/migrations/2013_12_12_055218_add_manager_to_users_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_01_28_031200_add_qr_code_to_settings_table.php b/app/database/migrations/2014_01_28_031200_add_qr_code_to_settings_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_02_13_183016_add_qr_text_to_settings_table.php b/app/database/migrations/2014_02_13_183016_add_qr_text_to_settings_table.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_05_24_093839_alter_default_license_depreciation_id.php b/app/database/migrations/2014_05_24_093839_alter_default_license_depreciation_id.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_05_27_231658_alter_default_values_licenses.php b/app/database/migrations/2014_05_27_231658_alter_default_values_licenses.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_06_19_191508_add_asset_name_to_settings.php b/app/database/migrations/2014_06_19_191508_add_asset_name_to_settings.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_06_20_004847_make_asset_log_checkedout_to_nullable.php b/app/database/migrations/2014_06_20_004847_make_asset_log_checkedout_to_nullable.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_06_20_005050_make_asset_log_purchasedate_to_nullable.php b/app/database/migrations/2014_06_20_005050_make_asset_log_purchasedate_to_nullable.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_06_24_003011_add_suppliers.php b/app/database/migrations/2014_06_24_003011_add_suppliers.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_06_24_010742_add_supplier_id_to_asset.php b/app/database/migrations/2014_06_24_010742_add_supplier_id_to_asset.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_06_24_012839_add_zip_to_supplier.php b/app/database/migrations/2014_06_24_012839_add_zip_to_supplier.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_06_24_033908_add_url_to_supplier.php b/app/database/migrations/2014_06_24_033908_add_url_to_supplier.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_07_08_054116_add_employee_id_to_users.php b/app/database/migrations/2014_07_08_054116_add_employee_id_to_users.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_07_09_134316_add_requestable_to_assets.php b/app/database/migrations/2014_07_09_134316_add_requestable_to_assets.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_07_17_085822_add_asset_to_software.php b/app/database/migrations/2014_07_17_085822_add_asset_to_software.php old mode 100644 new mode 100755 diff --git a/app/database/migrations/2014_07_17_161625_make_asset_id_in_logs_nullable.php b/app/database/migrations/2014_07_17_161625_make_asset_id_in_logs_nullable.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/ActionlogSeeder.php b/app/database/seeds/ActionlogSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/AssetsSeeder.php b/app/database/seeds/AssetsSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/CategoriesSeeder.php b/app/database/seeds/CategoriesSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/DepreciationsSeeder.php b/app/database/seeds/DepreciationsSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/LicenseSeatsSeeder.php b/app/database/seeds/LicenseSeatsSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/LicensesSeeder.php b/app/database/seeds/LicensesSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/LocationsSeeder.php b/app/database/seeds/LocationsSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/ManufacturersSeeder.php b/app/database/seeds/ManufacturersSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/ModelsSeeder.php b/app/database/seeds/ModelsSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/SettingsSeeder.php b/app/database/seeds/SettingsSeeder.php old mode 100644 new mode 100755 diff --git a/app/database/seeds/StatuslabelsSeeder.php b/app/database/seeds/StatuslabelsSeeder.php old mode 100644 new mode 100755 diff --git a/app/lang/en/admin/categories/general.php b/app/lang/en/admin/categories/general.php old mode 100644 new mode 100755 diff --git a/app/lang/en/admin/depreciations/general.php b/app/lang/en/admin/depreciations/general.php old mode 100644 new mode 100755 diff --git a/app/lang/en/admin/groups/titles.php b/app/lang/en/admin/groups/titles.php old mode 100644 new mode 100755 diff --git a/app/lang/en/admin/hardware/form.php b/app/lang/en/admin/hardware/form.php old mode 100644 new mode 100755 diff --git a/app/lang/en/admin/hardware/general.php b/app/lang/en/admin/hardware/general.php old mode 100644 new mode 100755 diff --git a/app/lang/en/admin/licenses/form.php b/app/lang/en/admin/licenses/form.php old mode 100644 new mode 100755 diff --git a/app/lang/en/admin/licenses/general.php b/app/lang/en/admin/licenses/general.php old mode 100644 new mode 100755 diff --git a/app/lang/en/admin/settings/general.php b/app/lang/en/admin/settings/general.php old mode 100644 new mode 100755 diff --git a/app/macros.php b/app/macros.php old mode 100644 new mode 100755 diff --git a/app/models/Actionlog.php b/app/models/Actionlog.php old mode 100644 new mode 100755 diff --git a/app/models/Asset.php b/app/models/Asset.php old mode 100644 new mode 100755 diff --git a/app/models/Category.php b/app/models/Category.php old mode 100644 new mode 100755 diff --git a/app/models/Depreciation.php b/app/models/Depreciation.php old mode 100644 new mode 100755 diff --git a/app/models/Elegant.php b/app/models/Elegant.php old mode 100644 new mode 100755 diff --git a/app/models/License.php b/app/models/License.php old mode 100644 new mode 100755 diff --git a/app/models/LicenseSeat.php b/app/models/LicenseSeat.php old mode 100644 new mode 100755 diff --git a/app/models/Location.php b/app/models/Location.php old mode 100644 new mode 100755 diff --git a/app/models/Manufacturer.php b/app/models/Manufacturer.php old mode 100644 new mode 100755 diff --git a/app/models/Model.php b/app/models/Model.php old mode 100644 new mode 100755 diff --git a/app/models/Setting.php b/app/models/Setting.php old mode 100644 new mode 100755 diff --git a/app/models/Statuslabel.php b/app/models/Statuslabel.php old mode 100644 new mode 100755 diff --git a/app/models/Supplier.php b/app/models/Supplier.php old mode 100644 new mode 100755 diff --git a/app/storage/logs/.gitkeep b/app/storage/logs/.gitkeep old mode 100644 new mode 100755 diff --git a/app/storage/views/.gitkeep b/app/storage/views/.gitkeep old mode 100644 new mode 100755 diff --git a/app/validators.php b/app/validators.php old mode 100644 new mode 100755 diff --git a/app/views/backend/hardware/checkin.blade.php b/app/views/backend/hardware/checkin.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/hardware/checkout.blade.php b/app/views/backend/hardware/checkout.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/hardware/clone.blade.php b/app/views/backend/hardware/clone.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/hardware/view.blade.php b/app/views/backend/hardware/view.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/licenses/checkin.blade.php b/app/views/backend/licenses/checkin.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/licenses/checkout.blade.php b/app/views/backend/licenses/checkout.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/licenses/view.blade.php b/app/views/backend/licenses/view.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/models/view.blade.php b/app/views/backend/models/view.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/reports/index.blade.php b/app/views/backend/reports/index.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/suppliers/view.blade.php b/app/views/backend/suppliers/view.blade.php old mode 100644 new mode 100755 diff --git a/app/views/backend/users/view.blade.php b/app/views/backend/users/view.blade.php old mode 100644 new mode 100755 diff --git a/app/views/frontend/account/view-assets.blade.php b/app/views/frontend/account/view-assets.blade.php old mode 100644 new mode 100755 diff --git a/composer.lock b/composer.lock old mode 100644 new mode 100755 diff --git a/public/assets/css/bootstrap/bootstrap-overrides.css b/public/assets/css/bootstrap/bootstrap-overrides.css old mode 100644 new mode 100755 diff --git a/public/assets/css/bootstrap/bootstrap-responsive.css b/public/assets/css/bootstrap/bootstrap-responsive.css old mode 100644 new mode 100755 diff --git a/public/assets/css/bootstrap/bootstrap-responsive.min.css b/public/assets/css/bootstrap/bootstrap-responsive.min.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/calendar.css b/public/assets/css/compiled/calendar.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/chart-showcase.css b/public/assets/css/compiled/chart-showcase.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/code-editor.css b/public/assets/css/compiled/code-editor.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/datatables.css b/public/assets/css/compiled/datatables.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/elements.css b/public/assets/css/compiled/elements.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/form-showcase.css b/public/assets/css/compiled/form-showcase.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/form-wizard.css b/public/assets/css/compiled/form-wizard.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/gallery.css b/public/assets/css/compiled/gallery.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/grids.css b/public/assets/css/compiled/grids.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/icons.css b/public/assets/css/compiled/icons.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/index.css b/public/assets/css/compiled/index.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/layout.css b/public/assets/css/compiled/layout.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/new-user.css b/public/assets/css/compiled/new-user.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/personal-info.css b/public/assets/css/compiled/personal-info.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/signin.css b/public/assets/css/compiled/signin.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/signup.css b/public/assets/css/compiled/signup.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/tables.css b/public/assets/css/compiled/tables.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/ui-elements.css b/public/assets/css/compiled/ui-elements.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/user-list.css b/public/assets/css/compiled/user-list.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/user-profile.css b/public/assets/css/compiled/user-profile.css old mode 100644 new mode 100755 diff --git a/public/assets/css/compiled/web-app-icons.css b/public/assets/css/compiled/web-app-icons.css old mode 100644 new mode 100755 diff --git a/public/assets/css/lib/bootstrap-wysihtml5.css b/public/assets/css/lib/bootstrap-wysihtml5.css old mode 100644 new mode 100755 diff --git a/public/assets/css/lib/bootstrap.datepicker.css b/public/assets/css/lib/bootstrap.datepicker.css old mode 100644 new mode 100755 diff --git a/public/assets/css/lib/font-awesome.css b/public/assets/css/lib/font-awesome.css old mode 100644 new mode 100755 diff --git a/public/assets/css/lib/fullcalendar.css b/public/assets/css/lib/fullcalendar.css old mode 100644 new mode 100755 diff --git a/public/assets/css/lib/fullcalendar.print.css b/public/assets/css/lib/fullcalendar.print.css old mode 100644 new mode 100755 diff --git a/public/assets/css/lib/jquery.dataTables.css b/public/assets/css/lib/jquery.dataTables.css old mode 100644 new mode 100755 diff --git a/public/assets/css/lib/uniform.default.css b/public/assets/css/lib/uniform.default.css old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/calendar.scss b/public/assets/css/scss/calendar.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/chart-showcase.scss b/public/assets/css/scss/chart-showcase.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/code-editor.scss b/public/assets/css/scss/code-editor.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/datatables.scss b/public/assets/css/scss/datatables.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/elements.scss b/public/assets/css/scss/elements.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/form-showcase.scss b/public/assets/css/scss/form-showcase.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/form-wizard.scss b/public/assets/css/scss/form-wizard.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/gallery.scss b/public/assets/css/scss/gallery.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/grids.scss b/public/assets/css/scss/grids.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/icons.scss b/public/assets/css/scss/icons.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/index.scss b/public/assets/css/scss/index.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/layout.scss b/public/assets/css/scss/layout.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/new-user.scss b/public/assets/css/scss/new-user.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/personal-info.scss b/public/assets/css/scss/personal-info.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/signin.scss b/public/assets/css/scss/signin.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/signup.scss b/public/assets/css/scss/signup.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/tables.scss b/public/assets/css/scss/tables.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/ui-elements.scss b/public/assets/css/scss/ui-elements.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/user-list.scss b/public/assets/css/scss/user-list.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/user-profile.scss b/public/assets/css/scss/user-profile.scss old mode 100644 new mode 100755 diff --git a/public/assets/css/scss/web-app-icons.scss b/public/assets/css/scss/web-app-icons.scss old mode 100644 new mode 100755 diff --git a/public/assets/font/FontAwesome.otf b/public/assets/font/FontAwesome.otf old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/back_disabled.png b/public/assets/img/datatables/back_disabled.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/back_enabled.png b/public/assets/img/datatables/back_enabled.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/back_enabled_hover.png b/public/assets/img/datatables/back_enabled_hover.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/forward_disabled.png b/public/assets/img/datatables/forward_disabled.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/forward_enabled.png b/public/assets/img/datatables/forward_enabled.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/forward_enabled_hover.png b/public/assets/img/datatables/forward_enabled_hover.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/sort_asc.png b/public/assets/img/datatables/sort_asc.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/sort_asc_disabled.png b/public/assets/img/datatables/sort_asc_disabled.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/sort_both.png b/public/assets/img/datatables/sort_both.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/sort_desc.png b/public/assets/img/datatables/sort_desc.png old mode 100644 new mode 100755 diff --git a/public/assets/img/datatables/sort_desc_disabled.png b/public/assets/img/datatables/sort_desc_disabled.png old mode 100644 new mode 100755 diff --git a/public/assets/img/lens.png b/public/assets/img/lens.png old mode 100644 new mode 100755 diff --git a/public/assets/js/ace/ace.js b/public/assets/js/ace/ace.js old mode 100644 new mode 100755 diff --git a/public/assets/js/ace/mode-javascript.js b/public/assets/js/ace/mode-javascript.js old mode 100644 new mode 100755 diff --git a/public/assets/js/bootstrap.datepicker.js b/public/assets/js/bootstrap.datepicker.js old mode 100644 new mode 100755 diff --git a/public/assets/js/fullcalendar.min.js b/public/assets/js/fullcalendar.min.js old mode 100644 new mode 100755 diff --git a/public/assets/js/gcal.js b/public/assets/js/gcal.js old mode 100644 new mode 100755 diff --git a/public/assets/js/jquery.dataTables.js b/public/assets/js/jquery.dataTables.js old mode 100644 new mode 100755 diff --git a/public/assets/js/jquery.flot.js b/public/assets/js/jquery.flot.js old mode 100644 new mode 100755 diff --git a/public/assets/js/jquery.flot.resize.js b/public/assets/js/jquery.flot.resize.js old mode 100644 new mode 100755 diff --git a/public/assets/js/jquery.flot.stack.js b/public/assets/js/jquery.flot.stack.js old mode 100644 new mode 100755 diff --git a/public/assets/js/jquery.knob.js b/public/assets/js/jquery.knob.js old mode 100644 new mode 100755 diff --git a/public/assets/js/jquery.tmpl.min.js b/public/assets/js/jquery.tmpl.min.js old mode 100644 new mode 100755 diff --git a/public/assets/js/snipeit.js b/public/assets/js/snipeit.js old mode 100644 new mode 100755 diff --git a/public/assets/js/theme.js b/public/assets/js/theme.js old mode 100644 new mode 100755 diff --git a/public/assets/js/wysihtml5-0.3.0.js b/public/assets/js/wysihtml5-0.3.0.js old mode 100644 new mode 100755 diff --git a/public/img/btn-attach.png b/public/img/btn-attach.png old mode 100644 new mode 100755 diff --git a/public/img/btn-setting.png b/public/img/btn-setting.png old mode 100644 new mode 100755 diff --git a/public/img/btn-shuffle.png b/public/img/btn-shuffle.png old mode 100644 new mode 100755 diff --git a/public/img/btn-tool.png b/public/img/btn-tool.png old mode 100644 new mode 100755 diff --git a/public/img/glyphicons-halflings-white.png b/public/img/glyphicons-halflings-white.png old mode 100644 new mode 100755 diff --git a/public/img/glyphicons-halflings.png b/public/img/glyphicons-halflings.png old mode 100644 new mode 100755 diff --git a/public/img/ico-arrow-black.png b/public/img/ico-arrow-black.png old mode 100644 new mode 100755 diff --git a/public/img/ico-gallery-edit.png b/public/img/ico-gallery-edit.png old mode 100644 new mode 100755 diff --git a/public/img/ico-gallery-trash.png b/public/img/ico-gallery-trash.png old mode 100644 new mode 100755 diff --git a/public/img/ico-mail.png b/public/img/ico-mail.png old mode 100644 new mode 100755 diff --git a/public/img/ico-phone.png b/public/img/ico-phone.png old mode 100644 new mode 100755 diff --git a/public/img/ico-table-delete.png b/public/img/ico-table-delete.png old mode 100644 new mode 100755 diff --git a/public/img/ico-table-edit.png b/public/img/ico-table-edit.png old mode 100644 new mode 100755 diff --git a/public/img/ico-table-new.png b/public/img/ico-table-new.png old mode 100644 new mode 100755 diff --git a/public/img/jquery-ui/slider-handler.png b/public/img/jquery-ui/slider-handler.png old mode 100644 new mode 100755 diff --git a/public/img/jquery-ui/slider-handler2.png b/public/img/jquery-ui/slider-handler2.png old mode 100644 new mode 100755 diff --git a/public/img/lens.png b/public/img/lens.png old mode 100644 new mode 100755 diff --git a/public/img/personal-info.png b/public/img/personal-info.png old mode 100644 new mode 100755 diff --git a/public/img/select-bg.png b/public/img/select-bg.png old mode 100644 new mode 100755 diff --git a/public/img/skin-nav-bullets.png b/public/img/skin-nav-bullets.png old mode 100644 new mode 100755 diff --git a/public/img/table-icons.png b/public/img/table-icons.png old mode 100644 new mode 100755 diff --git a/public/img/table-img.png b/public/img/table-img.png old mode 100644 new mode 100755 diff --git a/public/img/uniform/bg-input-focus.png b/public/img/uniform/bg-input-focus.png old mode 100644 new mode 100755 diff --git a/public/img/uniform/bg-input.png b/public/img/uniform/bg-input.png old mode 100644 new mode 100755 diff --git a/public/img/uniform/sprite.png b/public/img/uniform/sprite.png old mode 100644 new mode 100755