Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
a0df928e
Commit
a0df928e
authored
Mar 30, 2016
by
Sergey Luzyanin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://github.com/ONLYOFFICE/sdkjs
into develop
parents
ac7f2e81
98578893
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
19 additions
and
34 deletions
+19
-34
Makefile
Makefile
+2
-2
build/Gruntfile.js
build/Gruntfile.js
+4
-4
build/build-desktop.bat
build/build-desktop.bat
+6
-0
build/build-mobile.bat
build/build-mobile.bat
+5
-0
build/build.bat
build/build.bat
+0
-5
build/configs/webexcel.json
build/configs/webexcel.json
+0
-1
build/configs/webpowerpoint.json
build/configs/webpowerpoint.json
+0
-1
build/configs/webword.json
build/configs/webword.json
+0
-1
build/installtools.bat
build/installtools.bat
+0
-6
build/update_and_build.bat
build/update_and_build.bat
+0
-7
common/wordcopypaste.js
common/wordcopypaste.js
+2
-7
No files found.
Makefile
View file @
a0df928e
...
...
@@ -6,7 +6,7 @@ OUTPUT = $(OUTPUT_DIR)
WEBAPPS_DIR
=
web-apps
WEBAPPS
=
$(OUTPUT)
/
$(WEBAPPS_DIR)
GRUNT_FILES
=
build/
deploy/
Gruntfile.js.out ../web-apps/build/Gruntfile.js.out
GRUNT_FILES
=
build/Gruntfile.js.out ../web-apps/build/Gruntfile.js.out
all
:
$(WEBAPPS)
...
...
@@ -21,4 +21,4 @@ $(GRUNT_FILES):
echo
"Done"
>
$@
clean
:
rm
-f
$(GRUNT_FILES)
\ No newline at end of file
rm
-f
$(GRUNT_FILES)
build/Gruntfile.js
View file @
a0df928e
...
...
@@ -173,15 +173,15 @@ module.exports = function(grunt) {
});
var
mobileFiles
=
packageFile
[
'
compile
'
][
'
sdk
'
][
'
mobile
'
];
if
(
mobileFiles
){
srcFiles
=
mobileFiles
.
concat
(
src
Files
);
srcFiles
=
srcFiles
.
concat
(
mobile
Files
);
}
}
if
(
grunt
.
option
(
'
private
'
))
{
srcFiles
.
concat
(
packageFile
[
'
compile
'
][
'
sdk
'
][
'
private
'
]);
srcFiles
=
srcFiles
.
concat
(
packageFile
[
'
compile
'
][
'
sdk
'
][
'
private
'
]);
}
if
(
grunt
.
option
(
'
desktop
'
))
{
srcFiles
.
concat
(
packageFile
[
'
compile
'
][
'
sdk
'
][
'
desktop
'
]);
srcFiles
=
srcFiles
.
concat
(
packageFile
[
'
compile
'
][
'
sdk
'
][
'
desktop
'
]);
}
...
...
@@ -216,7 +216,7 @@ module.exports = function(grunt) {
variables
:
{
Version
:
packageFile
[
'
info
'
][
'
version
'
],
Build
:
packageFile
[
'
info
'
][
'
build
'
].
toString
(),
Rev
:
packageFile
[
'
info
'
][
'
rev
'
]
.
toString
()
Rev
:
(
packageFile
[
'
info
'
][
'
rev
'
]
||
1
)
.
toString
()
}
},
files
:
{
...
...
build/build-desktop.bat
0 → 100644
View file @
a0df928e
CD
/D
%~dp0
call
npm
install
-g
grunt
-cli
call
npm
install
call
grunt
-
-level
=
WHITESPACE_ONLY
-
-nomap
=
true
-
-private
=
true
-
-desktop
=
true
-
-formatting
=
PRETTY_PRINT
rem call grunt --level=ADVANCED --nomap=true --private=true --desktop=true
pause
\ No newline at end of file
build/build
_slide_
mobile.bat
→
build/build
-
mobile.bat
View file @
a0df928e
CD
/D
%~dp0
call
npm
install
-g
grunt
-cli
call
npm
install
call
grunt
-
-level
=
WHITESPACE_ONLY
-
-nomap
=
true
-
-
formatting
=
PRETTY_PRINT
-
-mobile
=
true
call
grunt
-
-level
=
WHITESPACE_ONLY
-
-nomap
=
true
-
-
private
=
true
-
-mobile
=
true
-
-formatting
=
PRETTY_PRINT
pause
\ No newline at end of file
build/build.bat
deleted
100644 → 0
View file @
ac7f2e81
@echo
off
cd
/D
%~dp0
@echo
on
call
grunt
-
-no-color
\ No newline at end of file
build/configs/webexcel.json
View file @
a0df928e
...
...
@@ -201,7 +201,6 @@
},
"tasks"
:
{
"build"
:
[
"increment_build"
,
"compile_sdk"
]
}
...
...
build/configs/webpowerpoint.json
View file @
a0df928e
...
...
@@ -204,7 +204,6 @@
},
"tasks"
:
{
"build"
:
[
"increment_build"
,
"compile_sdk"
]
}
...
...
build/configs/webword.json
View file @
a0df928e
...
...
@@ -187,7 +187,6 @@
},
"tasks"
:
{
"build"
:
[
"increment_build"
,
"compile_sdk"
]
}
...
...
build/installtools.bat
deleted
100644 → 0
View file @
ac7f2e81
@echo
off
cd
/D
%~dp0
echo
Installation
call
npm
install
-g
grunt
-cli
call
npm
install
build/update_and_build.bat
deleted
100644 → 0
View file @
ac7f2e81
@echo
off
cd
/D
%~dp0
@echo
on
call
grunt
pause
\ No newline at end of file
common/wordcopypaste.js
View file @
a0df928e
...
...
@@ -380,9 +380,6 @@ function Editor_Copy(api, bCut)
__oncut
=
null
;
if
(
false
===
api
.
WordControl
.
m_oLogicDocument
.
Document_Is_SelectionLocked
(
changestype_Paragraph_Content
))
{
ElemToSelect
.
innerHTML
=
""
;
Editor_Copy_Event
(
e
,
ElemToSelect
);
api
.
WordControl
.
m_oLogicDocument
.
Create_NewHistoryPoint
(
historydescription_Document_CutHotKey
);
api
.
WordControl
.
m_oLogicDocument
.
Remove
(
1
,
true
,
true
);
api
.
WordControl
.
m_oLogicDocument
.
Document_UpdateSelectionState
();
...
...
@@ -399,14 +396,12 @@ function Editor_Copy(api, bCut)
ElemToSelect
.
oncopy
=
__oncopy
;
__oncopy
=
null
;
ElemToSelect
.
innerHTML
=
""
;
Editor_Copy_Event
(
e
,
ElemToSelect
);
}
window
[
"
AscDesktopEditor
"
][
"
Copy
"
]();
}
ElemToSelect
.
innerHTML
=
""
;
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment