diff --git a/frontend/delta/js/Clipperz/PM/DataModel/Feature.js b/frontend/delta/js/Clipperz/PM/DataModel/Feature.js new file mode 100644 index 0000000..a7c5427 --- /dev/null +++ b/frontend/delta/js/Clipperz/PM/DataModel/Feature.js @@ -0,0 +1,43 @@ +/* + +Copyright 2008-2015 Clipperz Srl + +This file is part of Clipperz, the online password manager. +For further information about its features and functionalities please +refer to http://www.clipperz.com. + +* Clipperz is free software: you can redistribute it and/or modify it + under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + +* Clipperz is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU Affero General Public License for more details. + +* You should have received a copy of the GNU Affero General Public + License along with Clipperz. If not, see http://www.gnu.org/licenses/. + +*/ + +"use strict"; +Clipperz.Base.module('Clipperz.PM.DataModel'); + +Clipperz.PM.DataModel.Feature = { + 'featureSets': { + 'TRIAL': 'Trial', + 'FULL': 'All features', + 'EXPIRED': 'Expired' + }, + 'features': { + 'OFFLINE_COPY': 'Offline copy', + 'LIST_CARDS': 'List cards', + 'CARD_DETAILS': 'Card details', + 'EDIT_CARD': 'Edit card', + 'ADD_CARD': 'Add card', + 'DELETE_CARD': 'Delete card', + 'UPDATE_CREDENTIALS': 'Update credentials', + } +} + diff --git a/frontend/delta/properties/delta.properties.json b/frontend/delta/properties/delta.properties.json index 8a0aa64..fb6aac3 100644 --- a/frontend/delta/properties/delta.properties.json +++ b/frontend/delta/properties/delta.properties.json @@ -131,6 +131,7 @@ "Clipperz/PM/DataModel/DirectLoginBinding.js", "Clipperz/PM/DataModel/DirectLoginFormValue.js", "Clipperz/PM/DataModel/OneTimePassword.js", + "Clipperz/PM/DataModel/Feature.js", "Clipperz/PM/DataModel/DevicePreferences.js", @@ -162,9 +163,11 @@ "Clipperz/PM/UI/Components/Panels/MainPanel.js", "Clipperz/PM/UI/Components/Panels/ExtraFeaturesPanel.js", + "Clipperz/PM/UI/Components/Cards/FavIcon.js", "Clipperz/PM/UI/Components/Cards/List.js", "Clipperz/PM/UI/Components/Cards/Detail.js", "Clipperz/PM/UI/Components/Cards/View.js", + "Clipperz/PM/UI/Components/Cards/TextArea.js", "Clipperz/PM/UI/Components/Cards/Edit.js", "Clipperz/PM/UI/Components/Cards/CommandToolbar.js", "Clipperz/PM/UI/Components/Cards/EditToolbar.js",