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
3f62165f
Kaydet (Commit)
3f62165f
authored
Eyl 07, 2011
tarafından
Andras Timar
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
replace api.openoffice.org to api.libreoffice.org
üst
15cbe38e
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
14 additions
and
14 deletions
+14
-14
ServicesHandler.java
extensions/qa/integration/extensions/ServicesHandler.java
+1
-1
UnoNode.java
odk/examples/java/Inspector/UnoNode.java
+1
-1
CalcAddins.java
odk/examples/java/Spreadsheet/CalcAddins.java
+1
-1
slidetransition.hxx
oox/inc/oox/ppt/slidetransition.hxx
+1
-1
OfficePrint.java
qadevOOo/runner/convwatch/OfficePrint.java
+1
-1
OpenOfficePostscriptCreator.java
qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java
+1
-1
JobProgressIndicator.java
...uilder/java/com/sun/star/report/JobProgressIndicator.java
+1
-1
template.bsh
...sun/star/script/framework/provider/beanshell/template.bsh
+2
-2
template.js
...sun/star/script/framework/provider/javascript/template.js
+2
-2
document.hxx
unoxml/source/dom/document.hxx
+2
-2
XMergeBridge.java
xmerge/source/bridge/java/XMergeBridge.java
+1
-1
No files found.
extensions/qa/integration/extensions/ServicesHandler.java
Dosyayı görüntüle @
3f62165f
...
...
@@ -66,7 +66,7 @@ public class ServicesHandler implements XPropertyHandler
try
{
// translate the service name into a URL to dispatch
String
documentationURL
=
"http://api.
open
office.org/docs/common/ref/"
+
m_serviceName
.
replace
(
'.'
,
'/'
)
+
".html"
;
String
documentationURL
=
"http://api.
libre
office.org/docs/common/ref/"
+
m_serviceName
.
replace
(
'.'
,
'/'
)
+
".html"
;
System
.
out
.
println
(
documentationURL
);
// the OpenHyperlink command, to be dispatched to the Desktop
...
...
odk/examples/java/Inspector/UnoNode.java
Dosyayı görüntüle @
3f62165f
...
...
@@ -139,7 +139,7 @@ public class UnoNode{
String
sAnchor
=
""
;
// TODO find out how the Anchor may be set at the html file; //_sAnchor;
boolean
bExists
=
Introspector
.
getIntrospector
().
getXSimpleFileAccess
().
exists
(
sIDLUrl
);
if
(
sIDLUrl
.
equals
(
""
)
||
(!
bExists
)){
sIDLUrl
=
"http://api.
open
office.org/"
+
Inspector
.
sIDLDOCUMENTSUBFOLDER
;
sIDLUrl
=
"http://api.
libre
office.org/"
+
Inspector
.
sIDLDOCUMENTSUBFOLDER
;
}
if
(!
sIDLUrl
.
endsWith
(
"/"
)){
sIDLUrl
+=
"/"
;
...
...
odk/examples/java/Spreadsheet/CalcAddins.java
Dosyayı görüntüle @
3f62165f
...
...
@@ -36,7 +36,7 @@
/** You can find more
* information on the following web page:
* http://api.
openoffice.org/common/ref/com/sun/star/inde
x.html
* http://api.
libreoffice.org/docs/common/ref/com/sun/star/module-i
x.html
*/
import
com.sun.star.comp.loader.FactoryHelper
;
import
com.sun.star.lang.XMultiServiceFactory
;
...
...
oox/inc/oox/ppt/slidetransition.hxx
Dosyayı görüntüle @
3f62165f
...
...
@@ -70,7 +70,7 @@ namespace oox { namespace ppt {
::
sal_Bool
mbTransitionDirectionNormal
;
::
sal_Int16
mnAnimationSpeed
;
::
sal_Int32
mnFadeColor
;
::
sal_Bool
mbMode
;
/**< http://api.
open
office.org/docs/common/ref/com/sun/star/animations/XTransitionFilter.html Mode property */
::
sal_Bool
mbMode
;
/**< http://api.
libre
office.org/docs/common/ref/com/sun/star/animations/XTransitionFilter.html Mode property */
::
sal_Int32
mnAdvanceTime
;
};
...
...
qadevOOo/runner/convwatch/OfficePrint.java
Dosyayı görüntüle @
3f62165f
...
...
@@ -615,7 +615,7 @@ public class OfficePrint {
}
// set property values for XPrintable.print()
// more can be found at "http://api.
open
office.org/docs/common/ref/com/sun/star/view/PrintOptions.html"
// more can be found at "http://api.
libre
office.org/docs/common/ref/com/sun/star/view/PrintOptions.html"
// int nProperties = 1; // default for 'FileName' property
// if (_aGTA.printAllPages() == false)
...
...
qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java
Dosyayı görüntüle @
3f62165f
...
...
@@ -583,7 +583,7 @@ public class OpenOfficePostscriptCreator implements IOffice
}
// set property values for XPrintable.print()
// more can be found at "http://api.
open
office.org/docs/common/ref/com/sun/star/view/PrintOptions.html"
// more can be found at "http://api.
libre
office.org/docs/common/ref/com/sun/star/view/PrintOptions.html"
// int nProperties = 1; // default for 'FileName' property
// if (_aGTA.printAllPages() == false)
...
...
reportbuilder/java/com/sun/star/report/JobProgressIndicator.java
Dosyayı görüntüle @
3f62165f
...
...
@@ -28,7 +28,7 @@ package com.sun.star.report;
/**
* Based on
* http://api.
open
office.org/docs/common/ref/com/sun/star/task/XStatusIndicator.html
* http://api.
libre
office.org/docs/common/ref/com/sun/star/task/XStatusIndicator.html
*
* @author Thomas Morgner
*/
...
...
scripting/java/com/sun/star/script/framework/provider/beanshell/template.bsh
Dosyayı görüntüle @
3f62165f
...
...
@@ -3,7 +3,7 @@
these classes and the OpenOffice.org API, see the OpenOffice.org
Developers Guide at:
http://api.
open
office.org/
http://api.
libre
office.org/
*/
import com.sun.star.uno.UnoRuntime;
...
...
@@ -27,7 +27,7 @@ import com.sun.star.frame.XModel;
For more information on using this class see the scripting
developer guides at:
http://api.
open
office.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml
http://api.
libre
office.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml
*/
// Hello World in BeanShell
...
...
scripting/java/com/sun/star/script/framework/provider/javascript/template.js
Dosyayı görüntüle @
3f62165f
...
...
@@ -2,7 +2,7 @@
// Import standard OpenOffice.org API classes. For more information on
// these classes and the OpenOffice.org API, see the OpenOffice.org
// Developers Guide at:
// http://api.
open
office.org/
// http://api.
libre
office.org/
importClass
(
Packages
.
com
.
sun
.
star
.
uno
.
UnoRuntime
);
importClass
(
Packages
.
com
.
sun
.
star
.
text
.
XTextDocument
);
...
...
@@ -25,7 +25,7 @@ importClass(Packages.com.sun.star.frame.XModel);
// For more information on using this class see the scripting
// developer guides at:
//
// http://api.
open
office.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml
// http://api.
libre
office.org/docs/DevelopersGuide/ScriptingFramework/ScriptingFramework.xhtml
//
oDoc
=
UnoRuntime
.
queryInterface
(
XModel
,
XSCRIPTCONTEXT
.
getInvocationContext
());
...
...
unoxml/source/dom/document.hxx
Dosyayı görüntüle @
3f62165f
...
...
@@ -248,14 +248,14 @@ namespace DOM
virtual
Reference
<
XEvent
>
SAL_CALL
createEvent
(
const
OUString
&
eventType
)
throw
(
RuntimeException
);
// XActiveDataControl,
// see http://api.
open
office.org/docs/common/ref/com/sun/star/io/XActiveDataControl.html
// see http://api.
libre
office.org/docs/common/ref/com/sun/star/io/XActiveDataControl.html
virtual
void
SAL_CALL
addListener
(
const
Reference
<
XStreamListener
>&
aListener
)
throw
(
RuntimeException
);
virtual
void
SAL_CALL
removeListener
(
const
Reference
<
XStreamListener
>&
aListener
)
throw
(
RuntimeException
);
virtual
void
SAL_CALL
start
()
throw
(
RuntimeException
);
virtual
void
SAL_CALL
terminate
()
throw
(
RuntimeException
);
// XActiveDataSource
// see http://api.
open
office.org/docs/common/ref/com/sun/star/io/XActiveDataSource.html
// see http://api.
libre
office.org/docs/common/ref/com/sun/star/io/XActiveDataSource.html
virtual
void
SAL_CALL
setOutputStream
(
const
Reference
<
XOutputStream
>&
aStream
)
throw
(
RuntimeException
);
virtual
Reference
<
XOutputStream
>
SAL_CALL
getOutputStream
()
throw
(
RuntimeException
);
...
...
xmerge/source/bridge/java/XMergeBridge.java
Dosyayı görüntüle @
3f62165f
...
...
@@ -27,7 +27,7 @@
/** You can find more
* information on the following web page:
* http://api.
openoffice.org/common/ref/com/sun/star/inde
x.html
* http://api.
libreoffice.org/docs/common/ref/com/sun/star/module-i
x.html
*/
...
...
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