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
cdea8177
Kaydet (Commit)
cdea8177
authored
Kas 08, 2012
tarafından
László Németh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
LibreLogo fixes (default properties file, help, tooltip)
Change-Id: Id9f878c0cf59e75fbd5e2f056e48f0d6a7da108c
üst
67f899e1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
15 deletions
+5
-15
LibreLogo.py
librelogo/source/LibreLogo/LibreLogo.py
+1
-1
LibreLogo.xhp
librelogo/source/help/en-US/LibreLogo.xhp
+3
-3
Addons.xcu
...ogo/source/registry/data/org/openoffice/Office/Addons.xcu
+1
-11
No files found.
librelogo/source/LibreLogo/LibreLogo.py
Dosyayı görüntüle @
cdea8177
...
...
@@ -1262,7 +1262,7 @@ def __compil__(s):
__loadlang__
(
_
.
lng
,
__l12n__
(
_
.
lng
))
except
:
__trace__
()
_
.
lng
=
'en'
_
.
lng
=
'en
_US
'
if
not
_
.
lng
in
__comp__
:
__loadlang__
(
_
.
lng
,
__l12n__
(
_
.
lng
))
...
...
librelogo/source/help/en-US/LibreLogo.xhp
Dosyayı görüntüle @
cdea8177
...
...
@@ -74,12 +74,12 @@
<paragraph
role=
"heading"
level=
"2"
xml-lang=
"en-US"
id=
"hd_530"
>
Other features of LibreLogo
</paragraph>
<list
type=
"unordered"
>
<listitem>
<paragraph
role=
"listitem"
xml-lang=
"en-US"
id=
"par_540"
>
The colon is optional before the variable
s (like in the Berkeley Logo)
</paragraph>
<paragraph
role=
"listitem"
xml-lang=
"en-US"
id=
"par_540"
>
The colon is optional before the variable
names.
</paragraph>
<paragraph
role=
"code"
xml-lang=
"en-US"
id=
"par_550"
>
 
TO
 
triangle
 
size
<br/>
   
REPEAT
 
3
 
[
 
FORWARD
 
size
 
LEFT
 
120
 
]
<br/>
 
END
<br/></paragraph>
</listitem>
<listitem>
<paragraph
role=
"paragraph"
xml-lang=
"en-US"
id=
"par_560"
>
String notation supports also orthographical and Python syntax
:
</paragraph>
<paragraph
role=
"code"
xml-lang=
"en-US"
id=
"par_570"
>
 
PRINT
 
"word
"
;
 
original
 
Logo
 
syntax
<br/>
 
PRINT
 
“Arbitrary
 
text.” ;
 
orthography,
 
Writer
<br/>
 
PRINT
 
'Arbitrary
 
text.' ;
 
Python
 
syntax
<br/></paragraph>
<paragraph
role=
"paragraph"
xml-lang=
"en-US"
id=
"par_560"
>
String notation supports also orthographical and Python syntax
.
</paragraph>
<paragraph
role=
"code"
xml-lang=
"en-US"
id=
"par_570"
>
 
PRINT
 
"word ;
 
original
 
Logo
 
syntax
<br/>
 
PRINT
 
“Arbitrary
 
text.” ;
 
orthography,
 
Writer
<br/>
 
PRINT
 
'Arbitrary
 
text.' ;
 
Python
 
syntax
<br/></paragraph>
</listitem>
<listitem>
<paragraph
role=
"paragraph"
xml-lang=
"en-US"
id=
"par_580"
>
Python list and string handling
</paragraph>
...
...
librelogo/source/registry/data/org/openoffice/Office/Addons.xcu
Dosyayı görüntüle @
cdea8177
...
...
@@ -130,17 +130,7 @@
<value>
vnd.sun.star.script:librelogo.oxt|LibreLogo|LibreLogo.py$commandline?language=Python
&
location=user:uno_packages
</value>
</prop>
<prop
oor:name=
"Title"
oor:type=
"xs:string"
>
<value
xml:lang=
"en-US"
>
FORWARD (fd), BACK (bk), LEFT (lt), RIGHT (rt) • fd 72, bk 1cm + 1in + 1", lt 90, rt 1.5h
REPEAT num [ commands ], REPCOUNT • repeat 100 [ fd repcount lt 91 ]
PENUP (pu), PENDOWN (pd), FILL, CLOSE, HOME, CLEARSCREEN (cs), PENSIZE (ps 5)
PENCOLOR (pc), FILLCOLOR (fc) • pc “red”, pc 0xff0000, fc [255, 0, 0], fc any
POSITION (pos), HEADING (seth) • pos [0, 0], pos pagesize, seth 60, seth [0, 0]
CIRCLE, ELLIPSE, BOX, RECTANGLE • circle 10 ellipse [5, 9] box 10 rectangle [5, 2]
LABEL, TEXT, PRINT • label “Some text”, circle 200 text “center of the actual shape”
FONTFAMILY “Font” FONTSIZE 9 FONTCOLOR “red” FONTWEIGHT “bold”
TO name arguments ... END, TO name arguments, OUTPUT return_value, END
RANDOM, SQRT, INT, COUNT, ABS, SIN, COS, INPUT • ps random 100, print count “string”
PICTURE (pic) [ ... ] • group different shapes: pic [ fd 100 circle 50 ]
</value>
<value
xml:lang=
"en-US"
>
Logo command line (press F1 here for help)
</value>
</prop>
<prop
oor:name=
"Target"
oor:type=
"xs:string"
>
<value>
_self
</value>
...
...
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