Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
49df6e0d
Kaydet (Commit)
49df6e0d
authored
Şub 09, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adapt file URL hackery to Windows
Change-Id: Icee10aae97e9bcef7a3db7e966c1c4ef6780fc1d
üst
4bcfde41
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
fdo84315.odb.lck
dbaccess/qa/extras/testdocuments/fdo84315.odb.lck
+0
-0
fdo84315.py
dbaccess/qa/python/fdo84315.py
+1
-1
unotest.py
unotest/source/python/org/libreoffice/unotest.py
+4
-1
No files found.
dbaccess/qa/extras/testdocuments/fdo84315.odb.lck
0 → 100644
Dosyayı görüntüle @
49df6e0d
File added
dbaccess/qa/python/fdo84315.py
Dosyayı görüntüle @
49df6e0d
...
...
@@ -22,7 +22,7 @@ class Fdo84315(unittest.TestCase):
cls
.
_uno
=
UnoInProcess
()
cls
.
_uno
.
setUp
()
workdir
=
os
.
environ
[
"WORKDIR_FOR_BUILD"
]
cls
.
_xDoc
=
cls
.
_uno
.
openDoc
(
os
.
path
.
join
(
workdir
,
"CppunitTest/fdo84315.odb"
)
)
cls
.
_xDoc
=
cls
.
_uno
.
openDoc
(
workdir
+
"/CppunitTest/fdo84315.odb"
)
@classmethod
def
tearDownClass
(
cls
):
...
...
unotest/source/python/org/libreoffice/unotest.py
Dosyayı görüntüle @
49df6e0d
...
...
@@ -224,7 +224,10 @@ class UnoInProcess:
desktop
=
smgr
.
createInstanceWithContext
(
"com.sun.star.frame.Desktop"
,
self
.
getContext
())
props
=
[(
"Hidden"
,
True
),
(
"ReadOnly"
,
False
),
(
"AsTemplate"
,
False
)]
loadProps
=
tuple
([
mkPropertyValue
(
name
,
value
)
for
(
name
,
value
)
in
props
])
url
=
"file://"
+
file
if
os
.
name
==
"nt"
:
url
=
"file:///"
+
file
else
:
url
=
"file://"
+
file
self
.
xDoc
=
desktop
.
loadComponentFromURL
(
url
,
"_blank"
,
0
,
loadProps
)
assert
(
self
.
xDoc
)
return
self
.
xDoc
...
...
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