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
ba915185
Kaydet (Commit)
ba915185
authored
Mar 04, 2003
tarafından
Tomas O'Connor
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
IssueZilla 11240 - Ensure unoil.jar is mounted before executing commands.
üst
3876e9ec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
6 deletions
+17
-6
BuildParcelAction.java
...ce/netbeans/modules/office/actions/BuildParcelAction.java
+6
-2
CompileParcelAction.java
.../netbeans/modules/office/actions/CompileParcelAction.java
+5
-2
ConfigureParcelAction.java
...etbeans/modules/office/actions/ConfigureParcelAction.java
+6
-2
No files found.
scripting/java/org/openoffice/netbeans/modules/office/actions/BuildParcelAction.java
Dosyayı görüntüle @
ba915185
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: BuildParcelAction.java,v $
* $RCSfile: BuildParcelAction.java,v $
*
*
* $Revision: 1.
3
$
* $Revision: 1.
4
$
*
*
* last change: $Author: toconnor $ $Date: 2003-0
2-20 11:59:21
$
* last change: $Author: toconnor $ $Date: 2003-0
3-04 12:11:14
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -73,12 +73,16 @@ import org.openide.compiler.Compiler;
...
@@ -73,12 +73,16 @@ import org.openide.compiler.Compiler;
import
org.openide.compiler.CompilerJob
;
import
org.openide.compiler.CompilerJob
;
import
org.openide.compiler.CompilerTask
;
import
org.openide.compiler.CompilerTask
;
import
org.openoffice.netbeans.modules.office.utils.FrameworkJarChecker
;
public
class
BuildParcelAction
extends
BuildAllAction
{
public
class
BuildParcelAction
extends
BuildAllAction
{
public
String
getName
()
{
public
String
getName
()
{
return
"Build"
;
return
"Build"
;
}
}
protected
void
performAction
(
Node
[]
activatedNodes
)
{
protected
void
performAction
(
Node
[]
activatedNodes
)
{
FrameworkJarChecker
.
mountDependencies
();
for
(
int
i
=
0
;
i
<
activatedNodes
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
activatedNodes
.
length
;
i
++)
{
Vector
v
=
new
Vector
(
1
);
Vector
v
=
new
Vector
(
1
);
v
.
addElement
(
activatedNodes
[
i
]);
v
.
addElement
(
activatedNodes
[
i
]);
...
...
scripting/java/org/openoffice/netbeans/modules/office/actions/CompileParcelAction.java
Dosyayı görüntüle @
ba915185
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: CompileParcelAction.java,v $
* $RCSfile: CompileParcelAction.java,v $
*
*
* $Revision: 1.
3
$
* $Revision: 1.
4
$
*
*
* last change: $Author: toconnor $ $Date: 2003-0
2-20 11:59:21
$
* last change: $Author: toconnor $ $Date: 2003-0
3-04 12:11:15
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -64,12 +64,15 @@ package org.openoffice.netbeans.modules.office.actions;
...
@@ -64,12 +64,15 @@ package org.openoffice.netbeans.modules.office.actions;
import
org.openide.nodes.Node
;
import
org.openide.nodes.Node
;
import
org.openide.actions.CompileAllAction
;
import
org.openide.actions.CompileAllAction
;
import
org.openoffice.netbeans.modules.office.utils.FrameworkJarChecker
;
public
class
CompileParcelAction
extends
CompileAllAction
{
public
class
CompileParcelAction
extends
CompileAllAction
{
public
String
getName
()
{
public
String
getName
()
{
return
"Compile"
;
return
"Compile"
;
}
}
protected
void
performAction
(
Node
[]
activatedNodes
)
{
protected
void
performAction
(
Node
[]
activatedNodes
)
{
FrameworkJarChecker
.
mountDependencies
();
super
.
performAction
(
activatedNodes
);
super
.
performAction
(
activatedNodes
);
}
}
}
}
scripting/java/org/openoffice/netbeans/modules/office/actions/ConfigureParcelAction.java
Dosyayı görüntüle @
ba915185
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: ConfigureParcelAction.java,v $
* $RCSfile: ConfigureParcelAction.java,v $
*
*
* $Revision: 1.
3
$
* $Revision: 1.
4
$
*
*
* last change: $Author: toconnor $ $Date: 2003-0
2-20 11:59:21
$
* last change: $Author: toconnor $ $Date: 2003-0
3-04 12:11:15
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -66,6 +66,8 @@ import org.openide.util.HelpCtx;
...
@@ -66,6 +66,8 @@ import org.openide.util.HelpCtx;
import
org.openide.util.RequestProcessor
;
import
org.openide.util.RequestProcessor
;
import
org.openide.util.actions.CookieAction
;
import
org.openide.util.actions.CookieAction
;
import
org.openoffice.netbeans.modules.office.utils.FrameworkJarChecker
;
public
class
ConfigureParcelAction
extends
CookieAction
{
public
class
ConfigureParcelAction
extends
CookieAction
{
public
java
.
lang
.
String
getName
()
{
public
java
.
lang
.
String
getName
()
{
...
@@ -86,6 +88,8 @@ public class ConfigureParcelAction extends CookieAction {
...
@@ -86,6 +88,8 @@ public class ConfigureParcelAction extends CookieAction {
protected
void
performAction
(
final
Node
[]
activatedNodes
)
protected
void
performAction
(
final
Node
[]
activatedNodes
)
{
{
FrameworkJarChecker
.
mountDependencies
();
RequestProcessor
.
getDefault
().
post
(
new
Runnable
()
{
RequestProcessor
.
getDefault
().
post
(
new
Runnable
()
{
public
void
run
()
{
public
void
run
()
{
for
(
int
i
=
0
;
i
<
activatedNodes
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
activatedNodes
.
length
;
i
++)
{
...
...
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