mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 14:19:01 +02:00
Merge pull request #1163 from sharelatex/ja-zotero
Add support for Zotero linked files GitOrigin-RevId: 917a881254949163126746667d6debc2a3f16941
This commit is contained in:
@@ -50,6 +50,7 @@ UserSchema = new Schema
|
||||
references: { type:Boolean, default: Settings.defaultFeatures.references }
|
||||
trackChanges: { type:Boolean, default: Settings.defaultFeatures.trackChanges }
|
||||
mendeley: { type:Boolean, default: Settings.defaultFeatures.mendeley }
|
||||
zotero: { type:Boolean, default: Settings.defaultFeatures.zotero }
|
||||
referencesSearch: { type:Boolean, default: Settings.defaultFeatures.referencesSearch }
|
||||
}
|
||||
referal_id : {type:String, default:() -> uuid.v4().split("-")[0]}
|
||||
|
||||
@@ -162,7 +162,7 @@ script(type='text/ng-template', id='newFileModalTemplate')
|
||||
on-enter="create()",
|
||||
name="url"
|
||||
)
|
||||
.row-spaced.small
|
||||
.row-spaced-small
|
||||
label(for="name") File name in this project
|
||||
input.form-control(
|
||||
type="text",
|
||||
|
||||
@@ -351,7 +351,7 @@ script(type="text/ng-template", id="v1ImportModalTemplate")
|
||||
| <strong>Direct git access to your projects</strong> is not yet available, but you can migrate your project to the Overleaf v2 GitHub integration
|
||||
|
|
||||
a(href='https://www.overleaf.com/help/343-working-offline-in-overleaf-v2', target='_blank') Read More.
|
||||
li There are <strong>no Zotero and CiteULike</strong> integrations yet
|
||||
li There is no <strong>CiteULike</strong> integration
|
||||
li Some <strong>Journals and Services in the Submit menu</strong> don't support direct submissions yet
|
||||
.v1-import-cta
|
||||
p
|
||||
|
||||
@@ -17,7 +17,7 @@ services:
|
||||
PROJECT_HISTORY_ENABLED: 'true'
|
||||
ENABLED_LINKED_FILE_TYPES: 'url'
|
||||
LINKED_URL_PROXY: 'http://localhost:6543'
|
||||
ENABLED_LINKED_FILE_TYPES: 'url,project_file,project_output_file,mendeley'
|
||||
ENABLED_LINKED_FILE_TYPES: 'url,project_file,project_output_file,mendeley,zotero'
|
||||
SHARELATEX_CONFIG: /app/test/acceptance/config/settings.test.coffee
|
||||
NODE_ENV: production
|
||||
depends_on:
|
||||
|
||||
@@ -79,7 +79,8 @@ define([
|
||||
name: file.name,
|
||||
id: file._id,
|
||||
type: 'file',
|
||||
linkedFileData
|
||||
linkedFileData,
|
||||
created: file.created
|
||||
})
|
||||
return this.recalculateDocList()
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user