Re: sed et travail sur un bloc contenant un motif

2017-10-11 Thread Migrec
proxyAddresses: MS:ORG/ORGEXCH/JOHNSMITH sAMAccountName: smith Merci, je vais tester ça pour voir si ça va bien mais ça semble pas mal. J'ai un fichier texte de 150Mo à parser donc je choisirai l'option la plus rapide ! J'ai eu ceci également ($1 motif, $2 fichier ldif à parser: #!/bin/bash # Recherche

Re: sed et travail sur un bloc contenant un motif

2017-10-10 Thread Dominique Dumont
On Monday, 9 October 2017 22:11:31 CEST Alexandre Hoïde wrote: > sed, peut-être… perso je ne vois pas, mais peut-être. Par contre, gawk ? Pas d'idée pour sed non plus. L'exemple avec awk m'a fait penser à une option peu connue de perl qui permet de séparer un fichier en paragraphes ( -000) .

Re: sed et travail sur un bloc contenant un motif

2017-10-09 Thread Alexandre Hoïde
et qui contient MOTIF sur l'une >des lignes ? > >Je veux en gros afficher une entrée d'un fichier LDIF pour une personne en >particulier. Donc les lignes avant et les lignes après jusqu'à la nouvelle >ligne suivante. > >J'ai la fin avec ça : > >

sed et travail sur un bloc contenant un motif

2017-10-08 Thread Migrec
Bonjour, J'ai un petit soucis de script et je pensais utiliser sed pour le régler mais mes connaissances sont rudimentaires... Est-ce possible d'afficher le bloc compris entre MOTIFDEBUT et MOTIFFIN et qui contient MOTIF sur l'une des lignes ? Je veux en gros

Re: [HS] sed : garder le motif

2009-01-28 Thread Pierre Meurisse
On Wed, Jan 28, 2009 at 08:55:48AM +0100, steve wrote: sed -e 's/^[A-Z][A-Z][A-Z]//' input_file et ça me sort (fort logiquement d'ailleurs) les caractères de rang 4 et plus, donc exactement le contraire de ce que je veux. Comment lui dire de ne m'afficher *que* le motif

Re: [HS] sed : garder le motif

2009-01-28 Thread Jean-Luc Villoué
Allez, à mon tour ;) 2009/1/27 steve dl...@bluewin.ch: Bonjour et pardon pour ce HS. J'ai un long fichier de la forme ABC(du texte) MSD(un autre texte) etc... J'aimerai traiter ce fichier de tel manière qu'à la sortie je n'ai que les 3 premiers caractères : ABC MSD etc... on peut

Re: [HS] sed : garder le motif

2009-01-28 Thread steve
sed -e 's/^[A-Z][A-Z][A-Z]//' input_file et ça me sort (fort logiquement d'ailleurs) les caractères de rang 4 et plus, donc exactement le contraire de ce que je veux. Comment lui dire de ne m'afficher *que* le motif cherché ? S'il s'agit bien d'un seul fichier, il

Re: [HS] sed : garder le motif

2009-01-28 Thread Pierre Meurisse
Merci pour ton explication. De rien. Cela m'a permis de découvrir cut, que je n'ai pas l'habitude d'utiliser. Il faut dire que le man de cut n'est pas des plus clairs : -c, --characters=LIST select only these characters La solution de Jean-Luc est nettement meilleure :

Re: [HS] sed : garder le motif

2009-01-28 Thread Jean-Luc Villoué
2009/1/28 steve dl...@bluewin.ch: c'est quand même plus long que les solutions basées sur sed, j'ai encore du mal avec sed, mais promis, je vais m'y mettre ;) Merci à lui. Oui merci Jean-Luc ! de rien, après tout, je me suis contenté de reprendre des solutions déjà dnnées... jluc -- Lisez

Re: [HS] sed : garder le motif

2009-01-28 Thread steve
Merci pour ton explication. De rien. Cela m'a permis de découvrir cut, que je n'ai pas l'habitude d'utiliser. Il faut dire que le man de cut n'est pas des plus clairs : J'avais aussi pensé à cut mais comme toi j'ai trouvé le man pour le moins lacunaire, ce qui m'a finalement orienté vers

Re: [HS] sed : garder le motif

2009-01-28 Thread steve
c'est quand même plus long que les solutions basées sur sed, j'ai encore du mal avec sed, mais promis, je vais m'y mettre ;) Moi aussi je me dis ça à chaque fois que j'en ai besoin ; malheureusement c'est très rare ce qui fait que j'oublie les 3/4 de ce que j'avais appris.. Merci à lui.

Re: [HS] sed : garder le motif

2009-01-28 Thread Jacques L'helgoualc'h
steve a écrit, mercredi 28 janvier 2009, à 11:24 : [...] grep -E ^[A-Z][A-Z][A-Z] fich.txt | cut -c 1-3 fichmodif.txt c'est quand même plus long que les solutions basées sur sed, m'enfin on s'en tape de savoir qui a la plus courte hein ;-) sed -nre '# quand la ligne commence bien,

[HS] sed : garder le motif

2009-01-27 Thread steve
/^[A-Z][A-Z][A-Z]//' input_file et ça me sort (fort logiquement d'ailleurs) les caractères de rang 4 et plus, donc exactement le contraire de ce que je veux. Comment lui dire de ne m'afficher *que* le motif cherché ? Merci d'avance, Steve -- Lisez la FAQ de la liste avant de poser une question

Re: [HS] sed : garder le motif

2009-01-27 Thread Kevin Hinault
devrait faire l'affaire non ? J'ai essayé (entre autres) sed -e 's/^[A-Z][A-Z][A-Z]//' input_file et ça me sort (fort logiquement d'ailleurs) les caractères de rang 4 et plus, donc exactement le contraire de ce que je veux. Comment lui dire de ne m'afficher *que* le motif cherché ? sed

Re: [HS] sed : garder le motif

2009-01-27 Thread Yannick Fouquet
with sed J'ai essayé (entre autres) sed -e 's/^[A-Z][A-Z][A-Z]//' input_file et ça me sort (fort logiquement d'ailleurs) les caractères de rang 4 et plus, donc exactement le contraire de ce que je veux. Comment lui dire de ne m'afficher *que* le motif cherché ? La formule que j'écrirais est plutôt

Re: [HS] sed : garder le motif

2009-01-27 Thread Daniel Caillibaud
steve a écrit : Bonjour et pardon pour ce HS. Tu peux essayer la liste shellscript pour ça ;-) (http://debianworld.org/shellscript-fr) J'ai un long fichier de la forme ABC(du texte) MSD(un autre texte) etc... J'aimerai traiter ce fichier de tel manière qu'à la sortie je n'ai que les 3

Re: [HS] sed : garder le motif

2009-01-27 Thread steve
Salut et merci pour vos réponses. steve a écrit : Bonjour et pardon pour ce HS. Tu peux essayer la liste shellscript pour ça ;-) (http://debianworld.org/shellscript-fr) Oui, et en plus j'y suis inscrit ... J'ai un long fichier de la forme ABC(du texte) MSD(un autre texte) etc...

Re: [HS] sed : garder le motif

2009-01-27 Thread Gilles Mocellin
On Tue, Jan 27, 2009 at 03:26:03PM +0100, steve wrote: Bonjour et pardon pour ce HS. J'ai un long fichier de la forme ABC(du texte) MSD(un autre texte) etc... J'aimerai traiter ce fichier de tel manière qu'à la sortie je n'ai que les 3 premiers caractères : ABC MSD etc...

Re: [HS] sed : garder le motif

2009-01-27 Thread Kevin Hinault
2009/1/27 Gilles Mocellin gilles.mocel...@free.fr: J'ai vu le autres propositions en sed, mais il y a une commande bien plus simple pour ça : cut. gil...@eeepc:~$ cut -c 1-3 essai ABC DEF AZE Troll Tu ne respectes pas sa demande qui était de garder seulement les 3 premiers caractères dans

Re: [HS] sed : garder le motif

2009-01-27 Thread Gilles Mocellin
Le Tuesday 27 January 2009 23:21:12 Kevin Hinault, vous avez écrit : 2009/1/27 Gilles Mocellin gilles.mocel...@free.fr: J'ai vu le autres propositions en sed, mais il y a une commande bien plus simple pour ça : cut. gil...@eeepc:~$ cut -c 1-3 essai ABC DEF AZE Troll Tu ne respectes

Re: [HS] sed : garder le motif

2009-01-27 Thread Kevin Hinault
Le 28 janvier 2009 00:26, Gilles Mocellin gilles.mocel...@free.fr a écrit : Mais euh ! M'aurais-je gouré ? Je re-cite : Bonjour et pardon pour ce HS. J'ai un long fichier de la forme ABC(du texte) MSD(un autre texte) etc... J'aimerai traiter ce fichier de tel manière qu'à la sortie

Re: [HS] sed : garder le motif

2009-01-27 Thread Pierre Meurisse
... Sed devrait faire l'affaire non ? J'ai essayé (entre autres) sed -e 's/^[A-Z][A-Z][A-Z]//' input_file et ça me sort (fort logiquement d'ailleurs) les caractères de rang 4 et plus, donc exactement le contraire de ce que je veux. Comment lui dire de ne m'afficher *que* le motif cherché

Re: [HS] sed : garder le motif

2009-01-27 Thread steve
M'aurais-je gouré ? Je re-cite : Bonjour et pardon pour ce HS. J'ai un long fichier de la forme ABC(du texte) MSD(un autre texte) etc... J'aimerai traiter ce fichier de tel manière qu'à la sortie je n'ai que les 3 premiers caractères : ABC MSD etc...

Re: [HS] sed : garder le motif

2009-01-27 Thread steve
sed -e 's/^[A-Z][A-Z][A-Z]//' input_file et ça me sort (fort logiquement d'ailleurs) les caractères de rang 4 et plus, donc exactement le contraire de ce que je veux. Comment lui dire de ne m'afficher *que* le motif cherché ? S'il s'agit bien d'un seul fichier, il y a une méthode

faire un lien symbolique de tous les fichier contenant un motif

2007-02-05 Thread Thierry B
Bonjour, Est-il possible de faire un lien symbolique d'un certain nombre de fichiers d'un repertoire qui ont un certain motif? Histoire de ne pas devoir faire 10.000 ln -sf lol, et puis je n'ai pas spécialement envie de faire un lien symbolique de tout le répertoire. Merci :-) -- Lisez la

Re: faire un lien symbolique de tous les fichier contenant un motif

2007-02-05 Thread Eric DECORNOD
Le lundi 5 février 2007 11:43, Thierry B a écrit : Bonjour, Est-il possible de faire un lien symbolique d'un certain nombre de fichiers d'un repertoire qui ont un certain motif? Histoire de ne pas devoir faire 10.000 ln -sf lol, et puis je n'ai pas spécialement envie de faire un lien

Re: faire un lien symbolique de tous les fichier contenant un motif

2007-02-05 Thread Thierry B
Eric DECORNOD a écrit : Le lundi 5 février 2007 11:43, Thierry B a écrit : Bonjour, Est-il possible de faire un lien symbolique d'un certain nombre de fichiers d'un repertoire qui ont un certain motif? Histoire de ne pas devoir faire 10.000 ln -sf lol, et puis je n'ai pas spécialement envie

Re: faire un lien symbolique de tous les fichier contenant un motif

2007-02-05 Thread franck joncourt
Thierry B [EMAIL PROTECTED] wrote: Bonjour, Est-il possible de faire un lien symbolique d'un certain nombre de fichiers d'un repertoire qui ont un certain motif? Histoire de ne pas devoir faire 10.000 ln -sf lol, et puis je n'ai pas spécialement envie de faire un lien symbolique de tout le

firefox und motif

2005-01-17 Thread B. Venthur
Hi Liste, irgendwie ärgere ich mich schon seit Ewigkeiten darüber, dass firefox bestimmte Elemente, wie zum Beispiel Buttons nach einem motif-ähnlichem Aussehen rendert. Ich meine hierbei nicht die GUI des Browsers selbst, sondern so dinge, wie zum beispiel den suche-Button bei google. Unter

Re: firefox und motif

2005-01-17 Thread Richard Mittendorfer
Am Mon, 17 Jan 2005 17:53:06 +0100 sprach B. Venthur [EMAIL PROTECTED]: Hi Liste, hi. Unter XP sieht alles (beim firefox) einheitlich aus, ich glaube selbst der konqueror rendert diese Elemente nach dem aktuellen KDE-style, nur der firefox unter linux will nicht. AFAIK gib's beim firefox

Re: firefox und motif

2005-01-17 Thread Richard Mittendorfer
Am Mon, 17 Jan 2005 17:53:06 +0100 sprach B. Venthur [EMAIL PROTECTED]: Aussehen rendert. Ich meine hierbei nicht die GUI des Browsers selbst, sondern so dinge, wie zum beispiel den suche-Button bei google. oder meinst du html?

Re: firefox und motif

2005-01-17 Thread B. Venthur
Richard Mittendorfer wrote: Am Mon, 17 Jan 2005 17:53:06 +0100 sprach B. Venthur [EMAIL PROTECTED]: Aussehen rendert. Ich meine hierbei nicht die GUI des Browsers selbst, sondern so dinge, wie zum beispiel den suche-Button bei google.

Re: firefox und motif

2005-01-17 Thread Martin Schmitz
B. Venthur wrote: Also der firefox an sich hat ein Theme (bzw. ab und an nehm ich auch einfach gtk-qt). Was ich meine sind die Elemente direkt in den Seiten. Also der Suchenbutton, direkt auf der Google-Seite. Du kannst im Gnome-Kontrollzentrum einen neues GKT2-Theme auswählen, das verwendet

Re: firefox und motif

2005-01-17 Thread B. Venthur
Martin Schmitz wrote: B. Venthur wrote: Also der firefox an sich hat ein Theme (bzw. ab und an nehm ich auch einfach gtk-qt). Was ich meine sind die Elemente direkt in den Seiten. Also der Suchenbutton, direkt auf der Google-Seite. Du kannst im Gnome-Kontrollzentrum einen neues GKT2-Theme

Re: firefox und motif

2005-01-17 Thread Richard Mittendorfer
Am Mon, 17 Jan 2005 20:25:37 +0100 sprach B. Venthur [EMAIL PROTECTED]: hilft mir das als KDE-Nutzer kaum. Ich habe zwar als GTK2-Theme die gtk-tq-engine, die alles nach qt umwandelt, aber beim firefox zieht das offenbar nur bei der GUI. Nach meinem Geschmack ein wenig eigenwillig

Re: firefox und motif

2005-01-17 Thread Andreas Pakulat
On 17.Jan 2005 - 19:58:59, Martin Schmitz wrote: B. Venthur wrote: Also der firefox an sich hat ein Theme (bzw. ab und an nehm ich auch einfach gtk-qt). Was ich meine sind die Elemente direkt in den Seiten. Also der Suchenbutton, direkt auf der Google-Seite. Du kannst im

Re: firefox und motif

2005-01-17 Thread Andreas Pakulat
On 17.Jan 2005 - 21:03:22, Richard Mittendorfer wrote: Am Mon, 17 Jan 2005 20:25:37 +0100 sprach B. Venthur [EMAIL PROTECTED]: hilft mir das als KDE-Nutzer kaum. Ich habe zwar als GTK2-Theme die gtk-tq-engine, die alles nach qt umwandelt, aber beim firefox zieht das offenbar nur bei der

Re: firefox und motif

2005-01-17 Thread Martin Schmitz
Andreas Pakulat wrote: On 17.Jan 2005 - 21:03:22, Richard Mittendorfer wrote: Am Mon, 17 Jan 2005 20:25:37 +0100 sprach B. Venthur [EMAIL PROTECTED]: hilft mir das als KDE-Nutzer kaum. Ich habe zwar als GTK2-Theme die gtk-tq-engine, die alles nach qt umwandelt, aber beim firefox zieht

Re: firefox und motif

2005-01-17 Thread Andreas Pakulat
On 17.Jan 2005 - 22:19:55, Martin Schmitz wrote: Andreas Pakulat wrote: On 17.Jan 2005 - 21:03:22, Richard Mittendorfer wrote: Am Mon, 17 Jan 2005 20:25:37 +0100 sprach B. Venthur vielleicht hilft es, eine ~/.gtkrc oder ~/.gtkrc-2.0 mit diesem inhalt anzulegen: gtkrc-2.0 mit include

Re: Motif

2003-11-25 Thread Leandro Guimarães Faria Corsetti Dutra
Em Tue, 11 Nov 2003 14:17:22 -0200, Adriano Brand escreveu: oq eu instalo? lesstif? -- Leandro Guimarães Faria Corsetti Dutra [EMAIL PROTECTED] +55 (11) 5685 2219 +55 (11) 5686 9607 +55 (11) 9406 7191

Instalar Motif

2003-11-13 Thread Adriano Brand
Preciso muito instalar o Motif, alguém sabe como faço? -- att -- Adriano Brand Técnico em eletronica CREA-SC 567563

Re: Instalar Motif

2003-11-13 Thread José Oliveira
Em Qui, 2003-11-13 às 15:54, Adriano Brand escreveu: Preciso muito instalar o Motif, alguém sabe como faço? apt-cache search motif (sai muitos resultados) ...ou... apt-cache search motif --names-only E vê quais pacotes te interessam e tami apt-get install neles. :) -- José Oliveira [EMAIL

Re: Instalar Motif

2003-11-13 Thread Thadeu Penna
# apt-cache search lesstif lesstif2 - OSF/Motif 2.1 implementation released under LGPL. lesstif2-dev - Development library and header files for LessTif 2.1. # apt-get install lesstif2 lesstif2-dev On Thu, 13 Nov 2003, Adriano Brand wrote: Preciso muito instalar o Motif, alguém sabe como

Motif

2003-11-11 Thread Adriano Brand
to tentando compilar o xpdf, (pois estou mudando algumas coisas nele) e no ./configure e le me pede o Motif dando um apt-cache search Motif vem uma lista de coisas oq eu instalo? -- att -- Adriano Brand Técnico em eletronica CREA-SC 567563

probleme avec (open)motif

2002-09-19 Thread Francois Maltey
Je me réponds, je suis preneur des pistes pouvant m'aider à cerner le problème. J'ai installé une version en cours de développement du système de calcul formel mupad. Le programme de visualisation des courbes est basé sur openmotif et utilise libXm.so.2. Je l'ai su en lisant les messages

Re: probleme avec (open)motif

2002-09-19 Thread Patrice Karatchentzeff
root sur cette machine... Bon, je ne suis pas sûr que cela t'aidera mais à mon avis, sur ce coup-là, motif digère mal ce genre de truc. PK -- Patrice KARATCHENTZEFF STMicroelectronics Tel: 04-76-92-63-81 850, rue Jean Monnet 38926 CROLLES Cedex, France Courriel: [EMAIL PROTECTED]

Wrong fonts in Motif

2002-04-15 Thread Troy Telford
For some reason, I get the wrong (read: boxes) fonts on the motif widgets on some programs. Specifically: Netscape 4.x: The browser text is fine, but the button widgets (back, fwd, config, etc) are all boxes rather than characters. Acrobat Reader: The navigation wodgets at the bottom

Re: Open Motif

2001-07-02 Thread Faro
... y entonces Pablo Giménez escribió: Sabe alguien en que paquete se encuantran las librerias Open Motif??' No lo tengo muy claro, pero tal vez te ayude un: apt-cache search motif -- Yo uso software libre. ¿y tú? faro at escomposlinux . org Debian GNU/Linux Usuario

Open Motif

2001-06-30 Thread Pablo Giménez
Saludos de nuevo. Sabe alguien en que paquete se encuantran las librerias Open Motif??' Gracias Pablo

Installing StarOffice 3.1.4 from rpms (libc = 5.4.4; Motif 2.0)

2001-01-16 Thread Andre Berger
I'd like to try StarOffice 3.1.4 on a 486 (need just StarWriter and not the Desktop). I have the following components (CD-ROM, BTW for german readers: from Kofler 3rd. ed.): Star-Office-common-3.1.4.i386.rpm Star-Office-german-3.1.4.i386.rpm Star-Office-statbin-3.1.4.i386.rpm # no Motif Star

Re: Motif and GTK menu font sizes?

2000-10-10 Thread Bjoern Brill
having is that the font sizes for Motif menu bars (like in netscape) and GTK interfaces (like in gnome-apt) are too huge. xterm and other really simple X clients are fine. Is there a way to tell Motif or GTK to be smaller, or is there a global setting that they use? i tried playing with the -dpi

Motif and GTK menu font sizes?

2000-10-09 Thread Samuel Hathaway
Hello, I'm trying to run a bare-bones twm X desktop without dealing with gnome or kde, but i'm not too familiar with how to tweak my settings. I'm running the SVGA server at 1024x768 on a 15 monitor. the problem that i'm currently having is that the font sizes for Motif menu bars (like

Motif now Open source (fwd)

2000-05-17 Thread Bruce Sass
This seems appropriate to the KDE in Debain question, and the OpenMotif license thing is bound to come up... -- Forwarded message -- Date: Tue, 16 May 2000 15:21:26 -0600 (MDT) From: Anthony Fok [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Motif

Colour changes in Netscape/Motif

2000-02-02 Thread Alisdair McDiarmid
I'm struggling to make Netscape look similar to the rest of my most often used applications. I want the windows to be gray80, with a white 3D highlight and a gray55 3D shadow. I can set the background to gray80 (using the Netscape*background X resource), but I can't see any way to set Motif's 3D

Re: Colour changes in Netscape/Motif

2000-02-02 Thread Bart Szyszka
I can set the background to gray80 (using the Netscape*background X resource), but I can't see any way to set Motif's 3D colours. Is there documentation on this anywhere? Has anyone managed it? Do you mean the background of the application window or the background in the frame where web sites

Re: Colour changes in Netscape/Motif

2000-02-02 Thread Alisdair McDiarmid
On Tue, Feb 01, 2000 at 07:52:38PM -0500, Bart Szyszka wrote: I can set the background to gray80 (using the Netscape*background X resource), but I can't see any way to set Motif's 3D colours. Is there documentation on this anywhere? Has anyone managed it? Do you mean the background of the

Re: motif qt and gtk

1999-10-19 Thread Bryan Scaringe
I haven't used them myself, but they exist, according to www.gtk.org. On 18-Oct-99 zhaoway wrote: Bryan Scaringe wrote: Just to clarify: GTK is C based, but language bindings/wrappers exist for several languages (check http://www.gnome.org) , including C++. The C++ wrapper is called

Re: motif qt and gtk

1999-10-18 Thread zhaoway
Bryan Scaringe wrote: Just to clarify: GTK is C based, but language bindings/wrappers exist for several languages (check http://www.gnome.org) , including C++. The C++ wrapper is called GTK--. What 'bout the Perl/Python Gtk/Tk/Qt/KDE bindings? Just curious. I use Perl/Tk to develope small

motif qt and gtk

1999-10-17 Thread Micha Feigin
I am looking to start some graphic programing and the folowing toolkits are those that look most apropraite for serious user interfaces and graphics. I was wondering how apropriate each of them is for writing serious programs, and if anyone can give me a comparison, or point me to information

Re: motif qt and gtk

1999-10-17 Thread Bryan Scaringe
to information concerning the abeality of MF each of them. Any recomendations of where to start? Thanx MF [EMAIL PROTECTED] This is kinda off-topic, but I would recommend either Qt or Gtk. Motif is IMO an old toolkit now. Qt and Gtk offer more features than Motif does. Development tools (GUI

Motif Software

1999-10-05 Thread Rik Burt
Where can I find the Motif software. I am aware that it is a commercial product but I don't know where to look for it. I am interested because the Netscape pkg that dselect has requires it for certain versions of netscape.

RE: Motif Software

1999-10-05 Thread Sean 'Shaleh' Perry
On 05-Oct-99 Rik Burt wrote: Where can I find the Motif software. I am aware that it is a commercial product but I don't know where to look for it. I am interested because the Netscape pkg that dselect has requires it for certain versions of netscape. It is not in Debian. You must go

Re: Motif Software

1999-10-05 Thread lexchive
On Tue, Oct 05, 1999 at 01:58:36PM -0700, Rik Burt wrote: Where can I find the Motif software. I am aware that it is a commercial product but I don't know where to look for it. I am interested because the Netscape pkg that dselect has requires it for certain versions of netscape. You

Learning motif programing using lesstif?

1999-08-29 Thread Micha Feigin
Is it possible to learn mottif programing using lesstif instead of motif? and if so, is can anyone recommand any good documentation? Thanx [EMAIL PROTECTED]

Re: Learning motif programing using lesstif?

1999-08-29 Thread Noah L. Meyerhans
-BEGIN PGP SIGNED MESSAGE- On Sun, 29 Aug 1999, Micha Feigin wrote: Is it possible to learn mottif programing using lesstif instead of motif? and if so, is can anyone recommand any good documentation? Yes, the goal of Lesstif is 100% source compatibility with Motif. From what I've

Can I change the menu font size in a statically linked Motif app?

1999-08-05 Thread Syrus Nemat-Nasser
Hello everyone. I'm using Xmgr 4.1.2 statically linked against Motif. I use it because it is more stable than Grace AFAIK. The problem is that the menu and dialog font size is too big to insure that windows will fit on my 800x600 laptop display. Does anyone have a solution to this problem? Can I

Re: Motif headers?

1999-05-08 Thread J.H.M. Dassen
On Fri, May 07, 1999 at 18:01:39 +0200, Stefano Stabilini wrote: Is there something like a free runtime version of Motif around? No. For commercial Motif versions, you need to pay money for using the shared lib. Would Lesstif just do fine? That depends on the Motif version the code expects

Motif headers?

1999-05-07 Thread Stefano Stabilini
Hello world! I friend of mine wrote a small C program and compiled it for a Silicon Graphics machine. He passed me the binaries (useless) and the C source code. I'd like to run it on my Linux system, but it needs a number of Motif header files to be compiled. Is there something like a free

Re: advice installing motif

1998-11-11 Thread Paul Serice
I am about to install motif (2.1.10) from metrolink and I am wondering about the best way to do it. I can use either tar.gz or .rpm files. If I use the rpm's I can run them through alien to get debs. My concern, if all of this gets installed in /usr (instead of /usr/local), is how to manage

advice installing motif

1998-11-10 Thread Stuart Marshall
Hi, I am about to install motif (2.1.10) from metrolink and I am wondering about the best way to do it. I can use either tar.gz or .rpm files. If I use the rpm's I can run them through alien to get debs. My concern, if all of this gets installed in /usr (instead of /usr/local), is how

Motif?

1998-11-01 Thread D'jinnie
Ok, I'm going to thoroughly expose my ignorance of all things X Motif... I'm taking a class on Motif programming and thought I could use my Linux machine at home to compile the code...no go, obviously. So I guess I'm wondering - is Motif thoroughly un-free? I attempted to go to their website (why

Re: Motif?

1998-11-01 Thread aqy6633
Ok, I'm going to thoroughly expose my ignorance of all things X Motif... I'm taking a class on Motif programming and thought I could use my Linux machine at home to compile the code...no go, obviously. So I guess I'm wondering - is Motif thoroughly un-free? I attempted to go to their website

Nescape 4.5 for SWim Motif 2.1?

1998-10-20 Thread Alexander Kushnirenko
Hi, Is there a package of Netscape 4.5 compiled for SWiM Motif 2.1 ? Thanks, Sasha.

Re: Nescape 4.5 for SWim Motif 2.1?

1998-10-20 Thread aqy6633
Is there a package of Netscape 4.5 compiled for SWiM Motif 2.1 ? Most probably not. Netscape always used Motif 1.2 for linking. May be glibc2 version uses Morif 2.1 - but unlikely. Alex Y. -- _ _( )_ ( (o___ +---+ | _ 7

Re: Nescape 4.5 for SWim Motif 2.1?

1998-10-20 Thread Sudhakar Chandrasekharan
AlexY wrote - Is there a package of Netscape 4.5 compiled for SWiM Motif 2.1 ? Most probably not. Netscape always used Motif 1.2 for linking. May be glibc2 version uses Morif 2.1 - but unlikely. You are right. Navigator / Communicator 4.5 glibc dynmotif is linked against 1.2. $ ldd /usr

Re: motif debian

1998-10-14 Thread Alex Romosan
which motif do you have? i converted metrolink motif 2.1 into a deb package. i converted the rpm to deb using alien -d -g -c -g creates a directory to unpack the rpm, -c tries to convert the installation scripts. i then moved the files around to have them conform as much as possible

Re: motif debian

1998-10-14 Thread HAMDOUNI
i have motif2.01, and i used alien --deb , and installed the .deb result. After i tried to lounch mwm and get a segmantation fault!!! i tried again with an other file from the motif package and got the same thing!! the motif package was first in rpm format, after converting it, i uninstalled

Re: motif debian

1998-10-14 Thread aqy6633
i have motif2.01, and i used alien --deb , and installed the .deb result. After i tried to lounch mwm and get a segmantation fault!!! i tried again with an other file from the motif package and got the same thing!! the motif package was first in rpm format, after converting it, i

motif debian

1998-10-09 Thread HAMDOUNI El bachir
hi, did any body tried to install motif 2 ( thoses who had the opportunity to have it ! ) rpm format in a Debian machine , i guess one have first to use Alien ... but did any body succeed ? NB:please don't respond by telling me that i'm damned by daring speak about such an no- freesoftware

Motif on Hamm??

1998-09-22 Thread Wayne Cuddy
What are people using for Motif on glibc systems? Wayne Cuddy CRB-WEB (C H Consulting) http://www.crb-web.com [EMAIL PROTECTED]

Re: Motif on Hamm??

1998-09-22 Thread aqy6633
What are people using for Motif on glibc systems? Motif Complete! from Metro Link Inc. (www.metrolink.com) is an EXCELLENT product. Great documentation, possibility for multi-version development environments, latest versions, customized winow manager, etc. Alex Y

Motif

1998-08-21 Thread randall_ramsey
What versions of MOTIF will work with Debian 2.0? Thanks

Motif

1998-08-21 Thread randall_ramsey
What versions of MOTIF will work with Debian 2.0? Thanks

Re: Motif

1998-08-21 Thread Ossama Othman
Hi, What versions of MOTIF will work with Debian 2.0? Can't help you with Motif. Have you considered the LessTif package? I believe that it aims for Motif 1.2 compliance. It may still be a little buggy, however. -Ossama

Motif

1998-08-21 Thread randall_ramsey
What versions of MOTIF will work with Debian 2.0? Thanks

toolkits look and feel (Qt, GTK, Motif)

1998-06-22 Thread AJT60
the three (GTK, Qt, and Motif), and they don't look *that* much different to the Windows toolkit either. Am I missing something here? Andrew Tarr If you're not part of the solution, you're part of the precipitate |___ http://multinet.co.nz/personalhomepages/locusmeus/antechamber.html

Re: toolkits look and feel (Qt, GTK, Motif)

1998-06-22 Thread Ole J. Tetlie
much difference | between the three (GTK, Qt, and Motif), and they don't look *that* much | different to the Windows toolkit either. Am I missing something here? You're quite right. There is fortunately no big differences in how GTK, Qt and Motif applications look. Qt is deliberately very similar

Motif - SWiM 2.1 Installation.

1998-05-19 Thread Alexander Kushnirenko
Hi, Our university kindly bought us Motif for Linux (SWim 2.1) from Linux System Labs (http://www.lsl.com). On the CD they send there is an installation for redhat, but nothing for debian. Generally they recommend to copy a big directory tree to /usr. As it's quite big I am a little bit

Re: Motif

1998-04-10 Thread Carroll Kong
Motif is not freeware. Lesstif is.. but you need Motif to run XMCD. There is a statically compiled version somewhere... Carroll Kong On Thu, 9 Apr 1998, Helmut Leinfellner wrote: Hi ! I was trying to install XMCD and I think what I'm lacking is ... Motif. Where do I get

Re: Motif

1998-04-10 Thread jdassen
On Thu, Apr 09, 1998 at 08:00:05PM -0400, Carroll Kong wrote: Motif is not freeware. Lesstif is.. but you need Motif to run XMCD. No you don't. The xmcd package in frozen uses LessTif, not Motif. Ray -- Obsig: developing a new sig -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject

Re: Motif

1998-04-10 Thread Helmut Leinfellner
At 16:24 09.04.98 -0500, you wrote: On 9 Apr, Helmut Leinfellner wrote: Hi ! I was trying to install XMCD and I think what I'm lacking is ... Motif. Where do I get it ? Well since Motif libs cost about $100US you could go to your local sunsite mirror and go to the ../apps/sound/cdrom/X

-I- Re: lesstif not motif

1998-04-10 Thread Carroll Kong
Oh yes, sorry, I stand corrected. Carroll Kong On Fri, 10 Apr 1998 [EMAIL PROTECTED] wrote: On Thu, Apr 09, 1998 at 08:00:05PM -0400, Carroll Kong wrote: Motif is not freeware. Lesstif is.. but you need Motif to run XMCD. No you don't. The xmcd package in frozen uses LessTif

Motif

1998-04-09 Thread Helmut Leinfellner
Hi ! I was trying to install XMCD and I think what I'm lacking is ... Motif. Where do I get it ? Thanks, Helmut --- Accept the challenge! http://fbma.tuwien.ac.at/~e8426331/ ... and write to me

Re: Motif

1998-04-09 Thread servis
On 9 Apr, Helmut Leinfellner wrote: Hi ! I was trying to install XMCD and I think what I'm lacking is ... Motif. Where do I get it ? Well since Motif libs cost about $100US you could go to your local sunsite mirror and go to the ../apps/sound/cdrom/X/ directory where there is a pre

xmgr statically linked against motif?

1998-04-03 Thread Jens Lisner
Hi folks! I noticed that some packages like xmgr are dynamical linked against lesstif. Work isn't very easy with xmgr and lesstif, it's not much stable and it's buggy i think. So is it possible to make such packages statically linked against motif (like ddd-static). I would recompile it, but i do

RE: xmgr statically linked against motif?

1998-04-03 Thread Cesar Talon
On 03-Apr-98 Jens Lisner wrote: Hi folks! I noticed that some packages like xmgr are dynamical linked against lesstif. Work isn't very easy with xmgr and lesstif, it's not much stable and it's buggy i think. So is it possible to make such packages statically linked against motif (like ddd

Re: xmgr statically linked against motif?

1998-04-03 Thread Christopher Judd
On 03-Apr-98 Jens Lisner wrote: Hi folks! I noticed that some packages like xmgr are dynamical linked against lesstif. Work isn't very easy with xmgr and lesstif, it's not much stable and it's buggy i think. So is it possible to make such packages statically linked against motif

Re: xmgr statically linked against motif?

1998-04-03 Thread Alex Romosan
stable and it's buggy i think. So is it possible to make such packages statically linked against motif (like ddd-static). I would recompile it, but i do not have motif. Thanks, Jens i've made the xmotif-static package. you can get it by anonymous ftp from caliban.lbl.gov in /pub/debian. i don't

Re: xmgr statically linked against motif?

1998-04-03 Thread Alex Romosan
i've made the xmotif-static package. you can get it by anonymous ftp ^^ sorry to follow up on my own post. what i meant to say is that i made the xmgr-smotif package. and one more thing, it depends on libc6, as i have a hamm system. i just saw that the message was posted to

[Motif] RH Motif 2.1 versus lesstif

1998-03-20 Thread Sudhakar Chandrasekharan
I've used alien to convert the RPM for RH Motif 2.1 to .deb Looking at the listing for files for lesstif and RH Motif 2.1 I see that if I install RH over lesstif it will overwrite some of the files that lesstif provides. Should I just remove lesstif and go with RH Motif? Would apps like

  1   2   >