cancel
Showing results for 
Search instead for 
Did you mean: 

Oracle Connector für OpenOffice........

szumbusch_2262
Champ in-the-making
Champ in-the-making
Hallöle…..

Bin jetzt etwas mehr drin in Alfresco und beginne mit den 'Netzwerkfeatures' zu experimentieren.

Im Moment versuche ich über OpenOffice eine Verbindung hinzubekommen und damit zu arbeiten, was mir mißlingt.

Den connect bekomme ich hin, ich bin authentifiziert, die App geht auf und zeigt: nix.
Ich bin laus Info in 'null'.

Ich sehe keine Spaces, kann keine anlegen, es passiert einfach nichts.

Als URL habe ich <website>:8080/, <website>:8080/share, <website>:8080/explorer und einiges andere probiert.

Hat jemand eine Ahnung, was ich falsch machen könnte?

OpenOffice 3.3.0, OS X, 10.6.8, Alfresco Lab 3.4.x auf Ubuntu 10.04 64bit

Tia,

Sascha
4 REPLIES 4

jpfi_4454
Champ in-the-making
Champ in-the-making
Hi,
hast du <website>:8080/alfresco probiert?
VG, jan

szumbusch_2262
Champ in-the-making
Champ in-the-making
Ja, habe ich.

(Habs grade nochmal nachvollzogen, nur um sicher zu gehen….)

jpfi_4454
Champ in-the-making
Champ in-the-making
Hi,
naja, sieht so aus als wärst du nicht der einzige: http://extensions.services.openoffice.org/project/alfrescoconnector
jan

szumbusch_2262
Champ in-the-making
Champ in-the-making
Danke!

Habe den Code in 'navigation.get.js' geändert und jetzt geht es.

Hier nochmal der Code:

——————–Schnipp-Schnapp———————
When I installed this connector I couldn't navigate in alfresco spaces. Search worked fine but navigation didn't.
Alfresco 3.2 - openoffice 3.1.1 or openoffice 3.2 RC5

I've made some changes to the alfresco script "navigation.get.js" in the components directory of the extension.

With these changes now the default workspace is "Company Home" and one can navigate properly.

If you want you may replace the code of "navigation.get.js" with the code bellow to get it worked as described.
My changes to the script are in bold.

Note: if you allready have this file in alfresco server, replace it or do the changes there. Don't forget to restart tomcat.
————————————————–8<———————————————————————-

if ((args.n) && (args.n != ""))
{
model.node = search.findNode("workspace://SpacesStore/" + args.n);
model.path = args.p;
}

// Check here in case invalid nodeRef passed-in
if (model.node == null)
{
if ((args.p) && (args.p != ""))
{
var path = args.p;
if (path == "/" + companyhome.name)
{
model.node = companyhome;
}
else
{
var node = companyhome.childByNamePath(path.substring(companyhome.name.length));
if (node != null)
{
model.node = node;
}
else
{
model.node = userhome;
}
}
}
}

// Last chance - default to userhome
if (model.node == null)
{
//model.node = userhome;
model.node = companyhome;
model.path = companyhome.name;

}

——————————-8<—————————————————–
Best regards,
Paulo Tavares

—————————Schnipp-Schnapp—————–

Dank an Paulo Tavares!!

Und jpfi für den Hinweis.

Sascha