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
391193b6
Kaydet (Commit)
391193b6
authored
Agu 12, 2011
tarafından
Lionel Elie Mamane
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
pgsql-sdbc: ++version, auto-fill version in description.xml, long description
üst
fc03666c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
8 deletions
+19
-8
description.xml
connectivity/source/drivers/postgresql/description.xml
+4
-1
description_en-US.txt
...urce/drivers/postgresql/description/description_en-US.txt
+1
-0
makefile.mk
connectivity/source/drivers/postgresql/makefile.mk
+13
-6
postgresql.xcu
connectivity/source/drivers/postgresql/postgresql.xcu
+1
-1
No files found.
connectivity/source/drivers/postgresql/description.xml
Dosyayı görüntüle @
391193b6
<?xml version="1.0" encoding="UTF-8"?>
<description
xmlns=
"http://openoffice.org/extensions/description/2006"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
xmlns:dep=
"http://openoffice.org/extensions/description/2006"
>
<version
value=
"
0.8.0
"
/>
<version
value=
"
@EXTENSION_VERSION@
"
/>
<identifier
value=
"postgresql-sdbc"
/>
<display-name>
<name
lang=
"en-US"
>
PostgreSQL-SDBC Driver
</name>
...
...
@@ -11,4 +11,7 @@
<publisher>
<name
xlink:href=
"http://www.mamane.lu/"
lang=
"en"
>
Lionel Elie Mamane
</name>
</publisher>
<extension-description>
<src
lang=
"en-US"
xlink:href=
"description/description_en-US.txt"
/>
</extension-description>
</description>
connectivity/source/drivers/postgresql/description/description_en-US.txt
0 → 100644
Dosyayı görüntüle @
391193b6
A native PostgreSQL database driver for LibreOffice. It is faster, seamlessly integrated and there is no need to install and setup a JDBC or ODBC driver separately.
connectivity/source/drivers/postgresql/makefile.mk
Dosyayı görüntüle @
391193b6
...
...
@@ -80,8 +80,9 @@ NO_DEFAULT_STL=TRUE
DLLPRE
=
PQ_SDBC_MAJOR
=
0
PQ_SDBC_MINOR
=
7
PQ_SDBC_MICRO
=
7
PQ_SDBC_MINOR
=
8
PQ_SDBC_MICRO
=
0
PQ_SDBC_VERSION
=
$(PQ_SDBC_MAJOR)
.
$(PQ_SDBC_MINOR)
.
$(PQ_SDBC_MICRO)
.IF
"$(SYSTEM_POSTGRESQL)"
==
"YES"
POSTGRESQL_MAJOR
=
`
pg_config
--version
|
awk
'{ print $$2 }'
|
cut
-d
.
-f1
`
POSTGRESQL_MINOR
=
`
pg_config
--version
|
awk
'{ print $$2 }'
|
cut
-d
.
-f2
`
...
...
@@ -176,7 +177,7 @@ SHL2VERSIONMAP=$(SOLARENV)$/src$/reg-component.map
SLOFILES
=
$(LIB1OBJFILES)
$(LIB2OBJFILES)
DRIVERNAME
=
postgresql-sdbc-
$(PQ_SDBC_
MAJOR)
.
$(PQ_SDBC_MINOR)
.
$(PQ_SDBC_MICRO
)
.oxt
DRIVERNAME
=
postgresql-sdbc-
$(PQ_SDBC_
VERSION
)
.oxt
ALLTAR
:
$(DLLDEST)$/$(DRIVERNAME)
# --- Targets ------------------------------------------------------
...
...
@@ -194,6 +195,7 @@ $(DLLDEST)$/$(SHL1TARGET)$(INI_EXT): $(SHL1TARGET)
$(DLLDEST)$/$(DRIVERNAME)
:
\
$(DLLDEST)$/META-INF$/manifest.xml
\
$(DLLDEST)$/description.xml
\
$(DLLDEST)$/description/description_en-US.txt
\
$(DLLDEST)$/postgresql.xcu
\
$(DLLDEST)$/$(SHL1TARGET)$(DLLPOST)
\
$(DLLDEST)$/$(SHL2TARGET)$(DLLPOST)
\
...
...
@@ -205,17 +207,22 @@ $(DLLDEST)$/$(DRIVERNAME): \
$(SHL2TARGET)$(DLLPOST)
\
$(SHL1TARGET)$(INI_EXT)
\
description.xml
\
description/description_en-US.txt
\
postgresql.xcu
$(DLLDEST)$/description/%
:
description/%
mkdir
-p
$(DLLDEST)$/description
+cp
$?
$@
$(DLLDEST)$/META-INF$/manifest.xml
:
manifest.xml
-
mkdir
-p
$(DLLDEST)$/META-INF
mkdir
-p
$(DLLDEST)$/META-INF
+cp
$?
$@
$(DLLDEST)$/description.xml
:
description.xml
+
cp
$?
$@
+
sed
-s
-e
's/@EXTENSION_VERSION@/$(PQ_SDBC_VERSION)/'
<
$?
>
$@
$(DLLDEST)$/postgresql.xcu
:
postgresql.xcu
-
rm
-f
$@
rm
-f
$@
cat
postgresql.xcu
>
$@
strip
:
...
...
connectivity/source/drivers/postgresql/postgresql.xcu
Dosyayı görüntüle @
391193b6
...
...
@@ -32,7 +32,7 @@
<value>
org.openoffice.comp.connectivity.pq.Driver
</value>
</prop>
<prop
oor:name=
"DriverTypeDisplayName"
oor:type=
"xs:string"
>
<value
xml:lang=
"en-US"
>
postgresql
</value>
<value
xml:lang=
"en-US"
>
PostgreSQL
</value>
</prop>
<node
oor:name=
"Properties"
>
</node>
...
...
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