Dominik Honnef | 3 Apr 17:10
Picon

[ANN/REQ] Ruby interface to Tellico

Heyho.
I am working on a Ruby library for accessing Tellico databases and I
was simply wondering if there's any interest from the users or the
developers in that project.

I'm not really a Tellico user myself, but I have to work with some of
those databases recently, so I wanted to write a basic set of tools for
manipulating the DB from the command line. Out of that idea a general
library is emerging, which is not yet finished but once it is it will
provide full support for all features, both readingly and writingly.

Just mail me back (prefered to the list) with feedback or whatever you
have to say :)
--

-- 
Dominik Honnef
dominikho@...
_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users
Robby Stephenson | 4 Apr 03:41
Gravatar

Re: [ANN/REQ] Ruby interface to Tellico

On Friday 03 April 2009, Dominik Honnef wrote:
> Heyho.
> I am working on a Ruby library for accessing Tellico databases and I
> was simply wondering if there's any interest from the users or the
> developers in that project.
>
> I'm not really a Tellico user myself, but I have to work with some of
> those databases recently, so I wanted to write a basic set of tools for
> manipulating the DB from the command line. Out of that idea a general
> library is emerging, which is not yet finished but once it is it will
> provide full support for all features, both readingly and writingly.

Neat! :) 
Peter Alcibiades | 8 Apr 21:20
Picon
Favicon
Gravatar

printable version of user guide


Robby, is there a printable copy of the User Guide someplace?  I haven't
found one, but have maybe not been looking in the right place.  Thanks.

Peter
--

-- 
View this message in context: http://www.nabble.com/printable-version-of-user-guide-tp22957497p22957497.html
Sent from the Tellico mailing list archive at Nabble.com.
Robby Stephenson | 9 Apr 15:50
Gravatar

Re: printable version of user guide

On Wednesday 08 April 2009, Peter Alcibiades wrote:
> Robby, is there a printable copy of the User Guide someplace?  I haven't
> found one, but have maybe not been looking in the right place.  Thanks.

I'm flattered you might want a printed copy! :)

I don't know of a printable copy that exists. There are some tools for 
converting docbook files to pdf but I've never tried them.

Actually, once I move Tellico into KDE extragear, the manual might show up 
on http://docs.kde.org as a pdf file. I'm not sure how they generate those, 
but they look pretty good.

Robby
Merv Curley | 9 Apr 22:58
Picon

Re: printable version of user guide

On April 9, 2009 9:50:47 am Robby Stephenson wrote:

>
> I don't know of a printable copy that exists. There are some tools for
> converting docbook files to pdf but I've never tried them.
>
Looking through the Debian repositories, I see  'docbook-utils' as one 
option.  Also for Latex users,  dblatex.  

Also 'docbook2odf'  gets one an Open Office document and of course the 
ooo.org word processor formats a .pdf file.

These may not be as good as Adobe,  but the price is right.  Just in case 
someone wants to take a crack at it.

Cheerio

--

-- 
Merv Curley
Toronto, Ont.Can

Linux    Sidux [Debian]
KDE    v. 3.5.10
Kmail  v. 1.9.9
Pau Garcia i Quiles | 18 Apr 02:34
Favicon

Adding a new data source

Hello,

I would like to add the Book Database from the Ministry of Culture of
Spain ( http://www.mcu.es/webISBN/tituloSimpleFilter.do?cache=init&prev_layout=busquedaisbn&layout=busquedaisbn&language=en
) as a new source. It contains more than 900,000 references by ISBN
(every book published in Spanish since 1972).

AFAIK this database does not use any standard protocol, so I would
need to make HTTP POSTS and GETS and parse HTML. I have seen fetchers
should inherit from Tellico::Fetcher::Fetch and implement a few
methods. I was wondering if there are any special rules or advices I
should follow.

--

-- 
Pau Garcia i Quiles
http://www.elpauer.org
(Due to my workload, I may need 10 days to answer)
Robby Stephenson | 18 Apr 03:19
Gravatar

Re: Adding a new data source

Hi,

On Friday 17 April 2009, Pau Garcia i Quiles wrote:
> AFAIK this database does not use any standard protocol, so I would
> need to make HTTP POSTS and GETS and parse HTML. I have seen fetchers
> should inherit from Tellico::Fetcher::Fetch and implement a few
> methods.

That's all true, however..

> I would like to add the Book Database from the Ministry of Culture of
> Spain as a new source.

You're in luck. That one is already available. If you open up the config 
dialog Data Source->New, it should be available in there.

It's not working exactly for the kde4 version yet...

Robby
Sandor Bodo-Merle | 19 Apr 18:12
Picon

overwrite current url logic

This patch (introduced in r955583) has the result that Tellico ask for confirmation after every save - and this is annoying imo.
(I cant see how the write is forced by TellicoImporter mentioned in the new comment.)

Simply reverting it requires to add back the knowledge of class Kernel, which breaks the intent of the patch.
Any opinion how to overcome this behavior? Eventually add GUI::Proxy::URL() ??

- Sanyi

336606c 2 days ago rstephenson add a simple proxy class to hold widget pointer, and decouple some classes from Kernel class
diff --git a/src/core/filehandler.cpp b/src/core/filehandler.cpp
index 38466cf..248b34b 100644
--- a/src/core/filehandler.cpp
+++ b/src/core/filehandler.cpp


-  // we always overwrite the current URL without asking
-  if(url_ != Kernel::self()->URL()) {
-    GUI::CursorSaver cs(Qt::ArrowCursor);
-    QString str = i18n("A file named \"%1\" already exists. "
-                       "Are you sure you want to overwrite it?", url_.fileName());
-    int want_continue = KMessageBox::warningContinueCancel(Kernel::self()->widget(), str,
-                                                           i18n("Overwrite File?"),
-                                                           KGuiItem(i18n("Overwrite")));
+  // no need to check if we're actually overwriting the current url
+  // the TellicoImporter forces the write
+  GUI::CursorSaver cs(Qt::ArrowCursor);
+  QString str = i18n("A file named \"%1\" already exists. "
+                     "Are you sure you want to overwrite it?", url_.fileName());
+  int want_continue = KMessageBox::warningContinueCancel(GUI::Proxy::widget(), str,
+                                                         i18n("Overwrite File?"),
+                                                         KGuiItem(i18n("Overwrite")));

-    if(want_continue == KMessageBox::Cancel) {
-      return false;
-    }
+  if(want_continue == KMessageBox::Cancel) {
+    return false;

_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users
Robby Stephenson | 20 Apr 00:11
Gravatar

Re: overwrite current url logic

On Sunday 19 April 2009, Sandor Bodo-Merle wrote:
> This patch (introduced in r955583) has the result that Tellico ask for
> confirmation after every save - and this is annoying imo.
> (I cant see how the write is forced by TellicoImporter mentioned in the
> new comment.)

Very annoying, I know. :) Should work better now...

Robby
Sandor Bodo-Merle | 22 Apr 12:30
Picon

Fix linking in debian unstable

I had to apply this one liner to be able to build tellico on debian unstable with KDE4.2.2. Without this libsolid.so is not linked.
(For some reason linkink works without this on ubuntu jaunty .....)


diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index e28bed5..8bfca38 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
<at> <at> -86,6 +86,7 <at> <at> TARGET_LINK_LIBRARIES(tellico
     ${KDE4_KIO_LIBS}
     ${KDE4_KHTML_LIBS}
     ${KDE4_KNEWSTUFF2_LIBS}
+    ${KDE4_SOLID_LIBS}
     ${QIMAGEBLITZ_LIBRARIES}
     ${LIBXML2_LIBRARIES}
     ${LIBXSLT_LIBRARIES}

_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Gmane