Added a few more files to the project

This commit is contained in:
Giulio Cesare Solaroli 2015-03-10 22:54:46 +01:00
parent 07c852294a
commit 3d809a71db
2 changed files with 46 additions and 0 deletions

View File

@ -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',
}
}

View File

@ -131,6 +131,7 @@
"Clipperz/PM/DataModel/DirectLoginBinding.js", "Clipperz/PM/DataModel/DirectLoginBinding.js",
"Clipperz/PM/DataModel/DirectLoginFormValue.js", "Clipperz/PM/DataModel/DirectLoginFormValue.js",
"Clipperz/PM/DataModel/OneTimePassword.js", "Clipperz/PM/DataModel/OneTimePassword.js",
"Clipperz/PM/DataModel/Feature.js",
"Clipperz/PM/DataModel/DevicePreferences.js", "Clipperz/PM/DataModel/DevicePreferences.js",
@ -162,9 +163,11 @@
"Clipperz/PM/UI/Components/Panels/MainPanel.js", "Clipperz/PM/UI/Components/Panels/MainPanel.js",
"Clipperz/PM/UI/Components/Panels/ExtraFeaturesPanel.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/List.js",
"Clipperz/PM/UI/Components/Cards/Detail.js", "Clipperz/PM/UI/Components/Cards/Detail.js",
"Clipperz/PM/UI/Components/Cards/View.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/Edit.js",
"Clipperz/PM/UI/Components/Cards/CommandToolbar.js", "Clipperz/PM/UI/Components/Cards/CommandToolbar.js",
"Clipperz/PM/UI/Components/Cards/EditToolbar.js", "Clipperz/PM/UI/Components/Cards/EditToolbar.js",