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
11a56096
Kaydet (Commit)
11a56096
authored
Haz 09, 2013
tarafından
Xisco Fauli
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
pyweb: Handle Keyerror exception
Change-Id: I16ea149917b911ba074415511d1f5053439c33bb
üst
65711936
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
WWD_Events.py
wizards/com/sun/star/wizards/web/WWD_Events.py
+0
-1
WebConfigSet.py
wizards/com/sun/star/wizards/web/WebConfigSet.py
+4
-1
WebWizard.py
wizards/com/sun/star/wizards/web/WebWizard.py
+1
-0
No files found.
wizards/com/sun/star/wizards/web/WWD_Events.py
Dosyayı görüntüle @
11a56096
...
@@ -19,7 +19,6 @@ import traceback
...
@@ -19,7 +19,6 @@ import traceback
import
uno
import
uno
import
time
import
time
#from common.Desktop import Desktop
from
.WWD_Startup
import
WWD_Startup
from
.WWD_Startup
import
WWD_Startup
from
.WWD_General
import
WWD_General
from
.WWD_General
import
WWD_General
from
.WebWizardConst
import
*
from
.WebWizardConst
import
*
...
...
wizards/com/sun/star/wizards/web/WebConfigSet.py
Dosyayı görüntüle @
11a56096
...
@@ -147,7 +147,10 @@ class WebConfigSet(ConfigGroup):
...
@@ -147,7 +147,10 @@ class WebConfigSet(ConfigGroup):
return
self
.
childrenList
[
i
]
return
self
.
childrenList
[
i
]
def
getElement
(
self
,
o
):
def
getElement
(
self
,
o
):
return
self
.
childrenMap
[
o
]
try
:
return
self
.
childrenMap
[
o
]
except
KeyError
:
return
None
def
getSize
(
self
):
def
getSize
(
self
):
return
len
(
self
.
childrenList
)
return
len
(
self
.
childrenList
)
...
...
wizards/com/sun/star/wizards/web/WebWizard.py
Dosyayı görüntüle @
11a56096
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
#
#
import
traceback
import
traceback
from
..common.Desktop
import
Desktop
from
.WWD_Events
import
WWD_Events
from
.WWD_Events
import
WWD_Events
# The last class in the WebWizard Dialog class hirarchy.
# The last class in the WebWizard Dialog class hirarchy.
...
...
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