Weld CDI, PostContruct Annotated Method Called Before Objects Are Injected

2022-11-21 Thread Roger Wegmann
the servlet. Is there a way to configure tomcat or weld so that the order of the called method is correct according to the CDI 2.0 specification in chapter 19.3.2. Kind regards, Roger Wegmann - To unsubscribe, e-mail: users-unsubscr

Re: [meteorite-list] SALE: BUR-ABOR, AN INCOMPARABLE METEORITE SPECIMEN – MAIN MASS

2021-05-22 Thread Bruce Wegmann via Meteorite-list
Oh, come on...they're just trying to be "inclusive". "Woke" idiocy now invades the hard sciences. We're doomed... On 5/22/21, John Lutzon via Meteorite-list wrote: > > And let's not forget the - could be, possible, maybe, perhaps witnessed fall > category. > Not too ambiguous for any commitee

Re: [Ur] Any interest in bringing up a platform for virtual conferences?

2020-03-30 Thread Urs Wegmann
Hi Adam I like the Idea of using Ur to help with the current crisis. However, I don't think that I am fluent enough with the language yet to be of much help. I tried to install the demo and failed so far. Is there any advice on how to install libraries? Do I need to build them first or can I

Re: [Ur] Result monad

2020-02-06 Thread Urs Wegmann
ments to result. On 2/6/20 1:34 PM, Urs Wegmann wrote: I try to create a monad: datatype result a x = Ok of a | Err of x fun mreturn [a] [x] (r : a) : result a x = Ok r fun mbind [a] [b] [x] (r : result a x) (f : a -> result b x) : result b x = case r of Ok r => f r |

[Ur] Result monad

2020-02-06 Thread Urs Wegmann
I try to create a monad: datatype result a x = Ok of a | Err of x fun mreturn [a] [x] (r : a) : result a x = Ok r fun mbind [a] [b] [x] (r : result a x) (f : a -> result b x) : result b x = case r of Ok r => f r | Err x => Err x val result_monad = mkMonad {

[Ur] Empty transaction

2020-01-23 Thread Urs Wegmann
Found the solution myself: return () Sorry for the silly question, but I am a bit unfamiliar with this stuff (but slowly getting behind it). However; thanks for this great language! I think it can speed up developing for the web quite a bit.

AW: Evergrowing __consumer_offsets topic

2019-07-05 Thread Claudia Wegmann
, May 14, 2019 at 4:44 AM Claudia Wegmann wrote: > Dear kafka users, > > I run a kafka cluster (version 2.1.1) with 6 brokers to process ~100 > messages per second with a number of kafka streams apps. There are > currently 53 topics with 30 partitions each. I have exactly onc

Evergrowing __consumer_offsets topic

2019-05-14 Thread Claudia Wegmann
Dear kafka users, I run a kafka cluster (version 2.1.1) with 6 brokers to process ~100 messages per second with a number of kafka streams apps. There are currently 53 topics with 30 partitions each. I have exactly once processing enabled. My problem is that the __consumer_offsets topic is

AW: Offsets of deleted consumer groups do not get deleted correctly

2019-04-01 Thread Claudia Wegmann
on rolled out segments * deletion of tombstone only occurs if the delete.retention.ms delay is expired Best regards On Fri, Mar 29, 2019 at 2:16 PM Claudia Wegmann wrote: > Hey there, > > I've got the problem that the "__consumer_offsets" topic grows pretty > big over ti

Offsets of deleted consumer groups do not get deleted correctly

2019-03-29 Thread Claudia Wegmann
Hey there, I've got the problem that the "__consumer_offsets" topic grows pretty big over time. After some digging, I found offsets for consumer groups that were deleted a long time ago still being present in the topic. Many of them are offsets for console consumers, that have been deleted

No checkpoint found

2019-03-20 Thread Claudia Wegmann
Hi kafka users, since upgrading to kafka 2.1.1 version I get the following log message at every startup of streaming services: "No checkpoint found for task 0_16 state store TestStore changelog test-service-TestStore-changelog-16 with EOS turned on. Reinitializing the task and restore its

Instable Kafka Cluster

2019-03-07 Thread Claudia Wegmann
Dear kafka experts, I've got a kafka cluster with 3 brokers running in docker-containers on different hosts in version 2.1.1 of kafka. The cluster is serving some kafka streams apps. The topics are configured with replication.factor 3 and min.insync.replicas 2. The cluster works fine most of

AW: Configuration of log compaction

2019-02-28 Thread Claudia Wegmann
n up small segments but many? Up until now I use the default configurations for log segment size. Should I reduce it? Anyone any other ideas? Best, Claudia -Ursprüngliche Nachricht- Von: Claudia Wegmann Gesendet: Mittwoch, 19. Dezember 2018 08:50 An: users@kafka.apache.org B

AW: Configuration of log compaction

2018-12-18 Thread Claudia Wegmann
e've found that rolling broker restarts with 0.11 are rather easy and not to be feared. Kind regards, Liam Clarke On Tue, Dec 18, 2018 at 10:43 PM Claudia Wegmann wrote: > Hi Liam, > > thanks for the pointer. I found out, that the log cleaner on all kafka > brokers died with the f

AW: Configuration of log compaction

2018-12-18 Thread Claudia Wegmann
: Re: Configuration of log compaction Hi Claudia, Anything useful in the log cleaner log files? Cheers, Liam Clarke On Tue, 18 Dec. 2018, 3:18 am Claudia Wegmann Hi, > > thanks for the quick response. > > My problem is not, that no new segments are created, but that segments >

AW: Configuration of log compaction

2018-12-17 Thread Claudia Wegmann
full to ensure that retention can delete or compact old data. long 60480 [1,...] log.roll.ms medium On Mon, Dec 17, 2018 at 12:28 PM Claudia Wegmann wrote: > Dear kafka users, > > I've got a problem on one of my kafka clusters. I use this cluster > with kafka streams applic

Configuration of log compaction

2018-12-17 Thread Claudia Wegmann
Dear kafka users, I've got a problem on one of my kafka clusters. I use this cluster with kafka streams applications. Some of this stream apps use a kafka state store. Therefore a changelog topic is created for those stores with cleanup policy "compact". One of these topics is running wild for

AW: Problems with broker upgrade from 1.1.0 to 2.0.0

2018-10-11 Thread Claudia Wegmann
not, unless it was caused by an unclean shutdown, in which case shutdown cleanly. :) 2) probably not, since the indexes are rebuilt. FWIW i've done a bunch of 1.1.0 -> 2.0 upgrades and haven't had this issue. For sure have seen it in the past though. On Tue, Oct 9, 2018 at 2:09 AM Claudia Wegm

Problems with broker upgrade from 1.1.0 to 2.0.0

2018-10-08 Thread Claudia Wegmann
Dear community, I updated my kafka cluster from version 1.1.0 to 2.0.0 according to the upgrade guide for rolling upgrades today. I encountered a problem after starting the new broker version. The log is full of "Found a corrupted index file corresponding to log file

[issue30545] Enum equality across modules: comparing objects instead of values

2018-08-12 Thread Markus Wegmann
Markus Wegmann added the comment: Hi Ethan > Your Enum example in flawless is not an IntEnum, so the error (unable to add > an integer to None) seems entirely unrelated. The TypeError is just a consequence of the faulty Enum identity comparison some lines before. I mentioned the Typ

[issue30545] Enum equality across modules: comparing objects instead of values

2018-08-11 Thread Markus Wegmann
Markus Wegmann added the comment: Hi there! I came as well in contact with this kind of bug. Sadly, I could not replicate it with a simplified toy example. You can experience the bug, if checkout https://github.com/Atokulus/flora_tools/tree/56bb17ea33c910915875214e916ab73f567b3b0c and run

AW: Exception stopps data processing (Kafka Streams)

2018-05-16 Thread Claudia Wegmann
etries. -Matthias On 5/15/18 6:30 AM, Claudia Wegmann wrote: > Hey there, > > I've got a few Kafka Streams services which run smoothly most of the time. > Sometimes, however, some of them get an exception "Abort sending since an > error caught with a previous record"

Exception stopps data processing (Kafka Streams)

2018-05-15 Thread Claudia Wegmann
Hey there, I've got a few Kafka Streams services which run smoothly most of the time. Sometimes, however, some of them get an exception "Abort sending since an error caught with a previous record" (see below for a full example). The Stream Service having this exception just stops its work

[ECOLOG-L] AniMove: animal movement and remote sensing summer school

2018-02-09 Thread Martin Wegmann
AniMove summerschool on analysing animal movement and combine them with remote sensing environmental data for ecology and conservation application. Sept 10th - 21th, 2018, Max-Planck-Institute Radolfzell, Lake Constance, Germany, www.animove.org AniMove offers 2 intensive weeks of animal

[Bug 446350] Re: no bash completion for sv (from runit)

2017-09-22 Thread Mathias Wegmann
Had the same problem, so I wrote one myself.: https://gist.github.com/WoodenDoors/6083e0a9d6927e22214493680c1f3a1c First time writing something like that, so I don't know if it's any good, but maybe it's still useful to someone. -- You received this bug notification because you are a member of

Re: [TYPO3-german] [pt_exlist / YAG] Problem nach update

2017-08-29 Thread Reinhard Wegmann
Hallo Renzo, Du hast recht, sowohl was die Diagnose betrifft, als auch Deine Vermutung das ich keine Ahnung von PHP besitze. Nach fast einem Jahr hab ich mich noch mal auf die Suche gemacht. Erstens gibt es unter github ein deutlich überarbeitete pt_extbase, pt_extlist und yag. Die habe ich

Re: [xwiki-users] Navigation Panel

2017-05-16 Thread Timo Dachs-Wegmann
but neither in the first few tries :(. Thank you for your answer and I hope that Marius will find a way to add a Blacklist feature :) Kind regards, Timo Hi Timo, > On 10 May 2017, at 14:50, Timo Dachs-Wegmann <t.wegm...@procitec.de> wrote: > > Hello all, > > I install

[xwiki-users] Navigation Panel

2017-05-10 Thread Timo Dachs-Wegmann
ng like this: http://test.xwiki.org/xwiki/bin/view/Panels%20Tests/Navigation%20Panel#Attachments Link to the JIRA ticket: https://jira.xwiki.org/browse/XWIKI-12895 Mit freundlichen Grüßen Timo Dachs-Wegmann -EDV- - PROCITEC GmbH Rastatter Strasse 41 D-75

Re: [xwiki-users] Installation from .deb packages

2017-05-02 Thread Timo Dachs-Wegmann
the right > package. > >On Tue, May 2, 2017 at 12:32 PM, Timo Dachs-Wegmann <t.wegm...@procitec.de> >wrote: >> >> On Tue, May 2, 2017 at 11:42 AM, Timo Dachs-Wegmann <t.wegm...@procitec.de> >> wrote: >>> Hello all, >>> >>>I hav

Re: [xwiki-users] Installation from .deb packages

2017-05-02 Thread Timo Dachs-Wegmann
On Tue, May 2, 2017 at 11:42 AM, Timo Dachs-Wegmann <t.wegm...@procitec.de> wrote: > Hello all, > > I have an issue installing the .deb packages from the maven repositories. > > The installation of xwiki-enterprise-tomcat8-mysql (and all other mysql > installations) has

[xwiki-users] Installation from .deb packages

2017-05-02 Thread Timo Dachs-Wegmann
in debian Jessie. It would be great if you could fix the dependency so the automatic installation works as it should. :) Kind regards, Timo Dachs-Wegmann -IT-

Re: [xwiki-users] Empty Pages after reimport

2017-04-26 Thread Timo Dachs-Wegmann
Still no progress on my side. Has someone an idea? Kind regards, Timo Dachs-Wegmann -IT- -Ursprüngliche Nachricht- Von: users [mailto:users-boun...@xwiki.org] Im Auftrag von Timo Dachs-Wegmann Gesendet: Mittwoch, 12. April 2017 10:15 An: XWiki Users Betreff: Re: [xwiki-users] Empty

Re: [xwiki-users] Empty Pages after reimport

2017-04-12 Thread Timo Dachs-Wegmann
Has anybody an idea? :) Mit freundlichen Grüßen Timo Dachs-Wegmann -EDV- - PROCITEC GmbH Rastatter Strasse 41 D-75179 Pforzheim Fon: +49 7231 15561-29 Fax: +49 7231 15561-11 Mailto: t.wegm...@procitec.de Mannheim HRB 504702 Geschäftsführer: Dipl.-Ing

[xwiki-users] Empty Pages after reimport

2017-04-05 Thread Timo Dachs-Wegmann
Timo Dachs-Wegmann -IT- LOG: 2017-04-05 11:49:02,383 [XWiki initialization] INFO .HibernateDataMigrationManager - Storage schema updates and data migrations are enabled 2017-04-05 11:49:02,613 [XWiki initialization] INFO .HibernateDataMigrationManager - No data migration to apply for wiki

Re: [xwiki-users] PlantUML

2017-02-27 Thread Timo Dachs-Wegmann
; wrote: > > Hi Timo, > >> On 22 Feb 2017, at 14:19, Timo Dachs-Wegmann <t.wegm...@procitec.de> wrote: >> >> Hello, >> >> I want to draw a UML Diagram with the XWiki Plugin "PlantUML". As I tested >> it, I found a problem with the fe

Re: [xwiki-users] PlantUML

2017-02-27 Thread Timo Dachs-Wegmann
ww.google.com]] @enduml The problem with this is, that you can't click on "Bob" as a link because the link is not passed through to the XWiki page. Maybe you have an idea how to solve it or could tell me if there is a way to work around this. Thank you in advance Kind regards, Timo Dachs-Wegmann -IT-

[xwiki-users] Upgrading xwiki

2017-02-24 Thread Timo Dachs-Wegmann
-Wegmann -IT-

[xwiki-users] PlantUML

2017-02-22 Thread Timo Dachs-Wegmann
u can't click on "Bob" as a link because the link is not passed through to the XWiki page. Maybe you have an idea how to solve it or could tell me if there is a way to work around this. Thank you in advance Kind regards, Timo Dachs-Wegmann -IT-

[xwiki-users] export to pdf with intern links

2017-01-18 Thread Timo Dachs-Wegmann
in advance. Kind regards Timo Dachs-Wegmann -IT- --

[TYPO3-german] Re: [pt_exlist / YAG] Problem nach update

2016-11-19 Thread Reinhard Wegmann
t aber begleitet von schleichender Verarbeitung und Problemhinweise. Also, wer weiss was mit der obigen Fehlermeldung anzufangen? Mehr kann man unter wegmann-frankfurt.net/index.php?id=17 sehen. Muss man sich entschuldigen, dass man auf 1und1 hostet? Nachdem ich auf strato erfolgreich ernst-may-gesellschaft

[TYPO3-german] YAG Gallery Theme Gmaps zeigt keine Lightbox

2016-10-21 Thread Reinhard Wegmann
Ich benutze Typo3 7.6.11 mit YAG Gallery (4.1. ) und yag_themepack_jquery (1.3.2) Aus dem themepack habe ich Isotope installiert und es läuft wunderbar. Daneben interessiert mich ganz besonders das Theme Gmaps. Es läuft auch, aber klickt man auf das Infobild, wird das blanke große Bild auf

[korganizer] [Bug 143522] timezone wrong on import and export

2016-10-18 Thread Rebekka Wegmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=143522 Rebekka Wegmann <reb...@gmx.ch> changed: What|Removed |Added CC||reb...@gmx.ch --- Comm

AW: What is the best way to load/add patterns dynamically (at runtime) with Flink?

2016-10-12 Thread Claudia Wegmann
Hey, I face the same problem and decided to go with your third solution. I use Groovy as the scripting language, which has access to Java classes and therefore also to Flink constructs like Time.seconds(10). See below for an example of a pattern definition with Groovy: private static Binding

[TYPO3-german] makeInstance mit TypoScriptParser

2016-09-11 Thread Reinhard Wegmann
Hallo, ich versuch gerade einige alte (6.2.x) Extensions für 7.6.x zum Leben zu erwecken. Bei der ersten (ttnews_teasertext) ist es gelungen. Grundlage ist typo3-6.2.17\sysext\core\Migrations\Code\LegacyClassesForIde.php. Bei der Extension cag_tables gibt es folgende Zeilen: function

Re: [basex-talk] REST API performance, massive disk IO

2016-08-29 Thread Benedikt Wegmann
not verified whether BTRFS' autodefrag option improves this. This is not a Docker issue, but one with the file systems (databases need tuning for those kinds of file systems in general). Regards, Jens -- Benedikt Wegmann benedikt.wegm...@gwdg.de Jabber/XMPP: bwegm...@jabber.gwdg.de

AW: partial savepoints/combining savepoints

2016-08-17 Thread Claudia Wegmann
when using docker images, for example. I could imagine that this could be helpful for your use case as well. Cheers, Till On Mon, Aug 1, 2016 at 10:40 PM, Claudia Wegmann <c.wegm...@kasasi.de<mailto:c.wegm...@kasasi.de>> wrote: Hi Till, thanks for the quick reply. Too bad,

AW: max aggregator dosen't work as expected

2016-08-08 Thread Claudia Wegmann
he max value at the specified position, the other fields of the tuple/pojo are undefined - maxBy() returns a tuple with the max value at the specified position (the other fields are retained) On Mon, Aug 8, 2016 at 2:55 PM, Claudia Wegmann <c.wegm...@kasasi.de<mailto:c.wegm...@kasasi.de

AW: max aggregator dosen't work as expected

2016-08-08 Thread Claudia Wegmann
OK, found my mistake reagarding question 2.). I key by the id value and gave all the data sets different values there. So of course all 4 data sets are printed. Sorry :) But question 1.) still remains. Von: Claudia Wegmann [mailto:c.wegm...@kasasi.de] Gesendet: Montag, 8. August 2016 14:27

max aggregator dosen't work as expected

2016-08-08 Thread Claudia Wegmann
Hey, I have some questions to aggregate functions such as max or min. Take the following example: //create Stream with event time where Data contains an ID, a timestamp and a temperature value DataStream oneStream = env.fromElements( new Data(123, new Date(116, 8,8,11,11,11), 5),

AW: partial savepoints/combining savepoints

2016-08-01 Thread Claudia Wegmann
. However, you would only be able to scale within a single Flink job and not across Flink jobs. Cheers, Till On Mon, Aug 1, 2016 at 9:49 PM, Claudia Wegmann <c.wegm...@kasasi.de<mailto:c.wegm...@kasasi.de>> wrote: Hey everyone, I’ve got some questions regarding savepoints in F

partial savepoints/combining savepoints

2016-08-01 Thread Claudia Wegmann
Hey everyone, I've got some questions regarding savepoints in Flink. I have the following situation: There is a microservice that reads data from Kafka topics, creates Flink streams from this data and does different computations/pattern matching workloads. If the overall workload for this

WG: dynamic streams and patterns

2016-07-25 Thread Claudia Wegmann
to be recompiled? Do I overlook something important? Thx for some input. Best, Claudia Von: Claudia Wegmann Gesendet: Freitag, 15. Juli 2016 12:58 An: 'user@flink.apache.org' <user@flink.apache.org> Betreff: AW: dynamic streams and patterns Hey Robert, thanks for the valuable input.

AW: dynamic streams and patterns

2016-07-15 Thread Claudia Wegmann
to deploy, and a simple testing job is implemented in a few hours, I would suggest to do some experiments to see how Flink behaves in the given environment. Regards, Robert On Mon, Jul 11, 2016 at 9:39 AM, Claudia Wegmann <c.wegm...@kasasi.de<mailto:c.wegm...@kasasi.de>> wrote: Hey ev

dynamic streams and patterns

2016-07-11 Thread Claudia Wegmann
Hey everyone, I'm quite new to Apache Flink. I'm trying to build a system with Flink and wanted to hear your opinion and whether the proposed architecture is even possible with Flink. The environment for the system will be a microservice architecture handling messaging via async events. I

[ECOLOG-L] new applied remote sensing MSc

2016-05-25 Thread Martin Wegmann
Dear all, we launched a new international MSc program: EAGLE: “applied EArth Observation and Geoanalysis for the Living Environment” http://eagle-science.org EAGLE is an international English language M.Sc. program offered at the University of Würzburg, Germany. It is focusing on Applied

[ECOLOG-L] questionnaire of remote sensing training for ecology

2016-04-04 Thread Martin Wegmann
Dear all, if you are working or are planning to work with remote sensing data in ecology, please consider to spend a minute on a quick (9 questions) survey on the use of remote sensing in ecology especially focusing on the software used: https://surveyplanet.com/56e930bc493d480c1bf12b78

[ECOLOG-L] upcoming event: remote sensing for biodiversity monitoring

2016-03-31 Thread Martin Wegmann
Nathalie Pettorelli, Institute of Zoology, ZSL Duccio Rocchini, Duccio Rocchini, Fondazione Edmund Mach Shovonlol Roy, Reading University Emma Tebbs, Kings College London Martin Wegmann, Würzburg University Best wishes Nathalie [cid:image001.jpg@01D18B3C.B61B0DE0] Dr Nathalie Pettorelli

[TYPO3-german] tt_news category sorting in BE

2016-02-17 Thread Reinhard Wegmann
Ich habe ein Problem mit tt_news im BE. Im Modul Nachrichten erfolgt bei Auswahl der Kategorie zum Filtern der Nachrichtenliste die Fehlermeldung: "NetworkError: 404 Not Found - ./typo3/ajax.php?ajaxID=txttnewsM1::loadList=6=41=web_txttnewsM1" Diese Fehlermeldung erfolgt

[ECOLOG-L] AniMove summerschool

2016-02-12 Thread Martin Wegmann
Dear all, we are happy to announce the AniMove summerschool 2016. AniMove will take place in September 2016 in Germany at the Lake Konstanz. Animal movement is critical for maintenance of ecosystem services and biodiversity. The study of complex movement patterns and of the factors that

[ECOLOG-L] book "Remote Sensing and GIS for Ecologists - using OpenSource software" now available

2016-02-12 Thread Martin Wegmann
Dear all, the book “Remote Sensing and GIS for Ecologists – Using Open Source software” is now available. This book is a valuable resource for students and scientists in the fields of conservation and ecology interested in learning how to get started in applying remote sensing in ecological

Re: [DISCUSS] Samza 0.9.1 release

2015-06-16 Thread Percy Wegmann
Thank you! Sent using CloudMagichttps://cloudmagic.com/k/d/mailapp?ct=picv=6.0.64pv=8.2 On Tue, Jun 16, 2015 at 8:11 PM, Chris Riccomini criccom...@apache.org wrote: +1 Here. On Tue, Jun 16, 2015 at 12:01 PM, Guozhang Wang wangg...@gmail.com wrote: Cool. I will start a voting process soon.

[ossec-list] plugin

2015-05-22 Thread Brent Wegmann
Does anyone have a netmotion mobility plugin Brent -- --- You received this message because you are subscribed to the Google Groups ossec-list group. To unsubscribe from this group and stop receiving emails from it, send an email to ossec-list+unsubscr...@googlegroups.com. For more options,

Re: Quick question regarding deserialization

2015-05-11 Thread Percy Wegmann
Do you have control over the binary JSON? If so, perhaps you could include a discriminator in the JSON itself that allows the deserializer to target the right output type? Percy Wegmann Director, Application Platform Engineering cell: 512.710.6991 www.evariant.com http://www.evariant.com

Looking for Samza Support/Consulting

2015-05-02 Thread Percy Wegmann
Hello, Apologies if this isn’t the right list, but I’m looking for support and consulting for Samza and am wondering if anyone can point me in the right direction. Thanks! [http://www.myhealthconnect.com/sig/dots.gif] Percy Wegmann Director, Application Platform Engineering cell

Re: [ECOLOG-L] AniMove course: learning animal movement and remote sensing analysis

2015-02-10 Thread Martin Wegmann
://animove.org/courses/2015-scbi/ regards, Martin On Wednesday, January 21, 2015 09:49:16 AM Martin Wegmann wrote: Dear all, the AniMove course will take place this April at SCBI (US, VA) - this 2 weeks science school covers animal movement analysis and remote sensing for ecology and conservation

[ECOLOG-L] AniMove course: learning animal movement and remote sensing analysis

2015-01-21 Thread Martin Wegmann
/ -- Dr. Martin Wegmann CEOS Biodiversity http://www.remote-sensing-biodiversity.org/ceos German Aerospace Center (DLR) German Remote Sensing Data Center (DFD) -- Department of Remote Sensing Remote Sensing and Biodiversity Research University of Wuerzburg, Germany Phone: +49-(0)931-31-83446 http

RE: [docbook-apps] Fwd: Thanks!

2014-09-09 Thread Wegmann, Frank
Thanks, Róbert. I get the feeling that I should have joined this list a long time ago and not just now... f. -Original Message- From: Fekete, Róbert [mailto:robert.fek...@balabit.com] Sent: Dienstag, 9. September 2014 11:42 To: Wegmann, Frank Cc: docbook-apps@lists.oasis-open.org

RE: [docbook-apps] Fwd: Thanks!

2014-09-08 Thread Wegmann, Frank
not only for me, if you could tell us about it. Thanks, Frank -Original Message- From: Mary Tabasko [mailto:taba...@telerama.com] Sent: Samstag, 6. September 2014 01:42 To: docbook-apps@lists.oasis-open.org Subject: RE: [docbook-apps] Fwd: Thanks! Frank Wegmann said: our documentation sets

RE: [docbook-apps] Fwd: Thanks!

2014-09-05 Thread Wegmann, Frank
Yes, we want to generate one WebHelp from several DocBook books. Frank -Original Message- From: Jirka Kosek [mailto:ji...@kosek.cz] Sent: Freitag, 5. September 2014 11:14 To: Wegmann, Frank; docbook-apps@lists.oasis-open.org Subject: Re: [docbook-apps] Fwd: Thanks! On 5.9.2014 10:58

[Qgis-user] create new vector layer - bug or feature

2013-12-12 Thread Martin Wegmann
Dear QGIS users, I updated to the new Version of QGIS 2.0.1 and encountered a bug (or feature) when creating a new vector layer. When you load a raster (with projection) and you want to digitize certain areas of this raster, then the vector file used to have the same projection as the old one

[users@httpd] Security using alias directive in a https vhost

2013-05-17 Thread Roland Wegmann
Dear apache2 experts I run three name-based apache2 vhosts on an Ubuntu 12.04 LTS server. I can reach all three vhosts from the internet using https and FQDN. My CA is CACert and I adapted the original default-ssl (in sites-available) config file for my three vhosts. So lets the three

Bug#673437: virtualbox-guest-x11: 3d acceleration broken

2012-05-21 Thread Mathias Wegmann
Package: virtualbox-guest-x11 Version: 4.1.14-dfsg-1 I would like to confirm that after the Xorg update to 2:1.12.1-2 Debian Wheezy's Gnome 3D did not work anymore in Virtualbox. Fallback mode is activated since. Going back to the snapshot taken BEFORE the update took place showed the Gnome 3

PCL output compliance

2012-03-02 Thread Wegmann Frank
Hi @all, I've got a problem migrationg my application from 0.20.5 to 1.0. I'm processing a fop-document to PCL with the old version and the printer of my customer is able to handle the output. Unfortunately I don't have any direct access to this printer. If I try the new fop version it fails. I

Re: [GRASS-user] bug in r.pi.nlm add-on module

2012-02-06 Thread Martin Wegmann
On Wednesday, February 01, 2012 14:06:49 Hamish wrote: Martin Wegmann wrote: I encountered a bug in an add-on module, r.pi.nlm ... (gdb) r.pi.nlm input=landclass96 keyval=5 output=test --o Starting program: ... Program received signal SIGSEGV, Segmentation fault

[GRASS-user] bug in r.pi.nlm add-on module

2012-02-01 Thread Martin Wegmann
Hello, I encountered a bug in an add-on module, r.pi.nlm (on several Ubuntu 11.10. systems) and Markus could replicate the bug and also found the part where the error occurs. I tested it with regions 10x10 pixel up to 1000x1000 px - the error messages are the same but time until they occured

Re: Yaboot install problem - IBM 911-285

2012-01-17 Thread Benedikt Wegmann
and flagged as Bootable (B). The Apple partition error is erroneous as IBM use a PReP partition instead so I don't understand the issue. Can anyone help? -- Mark Benson http://markbenson.org/blog http://twitter.com/MDBenson -- Benedikt Wegmann benedikt.wegm...@gwdg.de +49 (0

Re: Yaboot install problem - IBM 911-285

2012-01-17 Thread Benedikt Wegmann
Hello Mark, Am Dienstag, den 17.01.2012, 14:52 + schrieb Mark Benson: On 17 Jan 2012, at 14:24, Benedikt Wegmann benedikt.wegm...@gwdg.de wrote: a while ago I succeeded in installing Debian 6.0.3 (ppc64) on an IBM Power740 via the netinstall image. During the setup process

Re: monit compilation on AIX 6.1 fails (libperfstat.h)

2011-11-18 Thread Benedikt Wegmann
1 After that make runs fine without errors. :) Sincerely, Benedikt Am Montag, den 14.11.2011, 15:54 +0100 schrieb Benedikt Wegmann: Hello! An attempt to compile monit on AIX 6.1 fails with reference to libperfstat.h: checking libperfstat.h usability... no checking libperfstat.h

Re: Debian on Power 740: yaboot can't open device

2011-09-21 Thread Benedikt Wegmann
maintainer? And how tests should be performed? I found some limited information in debian related pages, but not sufficient. Gasha On 09/16/2011 12:54 PM, Benedikt Wegmann wrote: Thanks a lot!!! That was the missing piece of the puzzle. I have Debian 6 now running on a Power 740 LPAR

Bug#642296: base-installer: on IBM Power 740 installer selects 32bit ppc kernel despite booting with install64

2011-09-21 Thread Benedikt Wegmann
Package: base-installer Severity: important On a Debian 6.0.2 netinstall on an IBM Power 740 the installer installs a 32bit kernel despite starting the installation by booting the install64 option in yaboot. When setting compatibility mode to Power 6 for that LPAR the correct 64bit kernel gets

Bug#642296: base-installer: on IBM Power 740 installer selects 32bit ppc kernel despite booting with install64

2011-09-21 Thread Benedikt Wegmann
Package: base-installer Severity: important On a Debian 6.0.2 netinstall on an IBM Power 740 the installer installs a 32bit kernel despite starting the installation by booting the install64 option in yaboot. When setting compatibility mode to Power 6 for that LPAR the correct 64bit kernel gets

Bug#641852: installation on IBM Power 740

2011-09-20 Thread Benedikt Wegmann
details see http://lists.debian.org/debian-powerpc/2011/09/msg00039.html and http://lists.debian.org/debian-powerpc/2011/09/msg00050.html Updating yaboot to version 1.3.16-4 and changing the yaboot configuration boot= to a real device path of /dev/sda1 in my case fixed this. -- Benedikt Wegmann

Re: Debian on Power 740: yaboot can't open device

2011-09-16 Thread Benedikt Wegmann
this. After installation, you can revert back to Power7 mode. Gasha On 09/12/2011 04:25 PM, Benedikt Wegmann wrote: Thanks everybody for you quick replies. I think I understand the problem better now. I followed the guids and instructions on how to update yaboot from within

Re: Debian on Power 740: yaboot can't open device

2011-09-12 Thread Benedikt Wegmann
latest/unstable) long: see e-mail from 24.08.2011 in list archives subject: Debian 6.0.2 on Power7 LPAR - it work - little howto Gasha On 09/07/2011 03:56 PM, Benedikt Wegmann wrote: Hello everybody! I'm in the process of installing Debian Stable on a Power 740 system. I'm familiar

Debian on Power 740: yaboot can't open device

2011-09-07 Thread Benedikt Wegmann
of multipath. I use a plain old scsi disk and only have one VIOS in the machine. Any suggestions would be much appreciated. Thanks! -- Benedikt Wegmann benedikt.wegm...@gwdg.de +49 (0)551 201-1870 bwegm...@jabber.gwdg.de . Gesellschaft für wissenschaftliche

[Firebird-net-provider] [FB-Tracker] Created: (DNET-391) DDEX Provider fails to import relations of attached DB

2011-08-31 Thread dirk wegmann (JIRA)
: DDEX Provider Affects Versions: 2.6.5 Environment: Win 7 pro 64Bit german, Visual Studio 2010 pro german Reporter: dirk wegmann Assignee: Jiri Cincura Attachments: SCHULE.FDB Hi! trying to generate a DataSet in VS2010pro via DDEX Provider with our DB

[meteorite-list] AD: Meteorites and Book Collection for sale

2011-04-22 Thread Bruce Wegmann
Doing the final switch-over from meteorites to rare watches...can't afford to do both. Available now: Allende CV3, outstanding, pristine specimen purchased 25 years ago, from the Frederick Pough material collected immediately after the fall. 231.75 grams Comes with custom rosewood

[WikiEN-l] Wikipedia proofing its bias again

2011-02-14 Thread Raphael Wegmann
://www.alghad.com/images_comic/1000/1079.jpg while keeping the 12 Muhammad cartoons under the very same Non-free use rationale? http://en.wikipedia.org/wiki/Wikipedia:Deletion_review/Log/2011_February_12 Best Regards -- Raphael Wegmann User:Raphael1 ___ WikiEN-l

[WikiEN-l] Wikipedia proofing its bias again (PS)

2011-02-14 Thread Raphael Wegmann
Hi, here is a cartoon illustrating Wikipedias bias: http://i.imgur.com/5rxgE.png best regards -- Raphael Wegmann User:Raphael1 ___ WikiEN-l mailing list WikiEN-l@lists.wikimedia.org To unsubscribe from this mailing list, visit: https

Re: [GRASS-user] square buffer from points

2010-09-05 Thread Martin Wegmann
hello, have a look at r.pi.rectangle in the svn add-ons in the r.pi folder: https://svn.osgeo.org/grass/grass-addons/raster/r.pi/r.pi.rectangle/ Martin On Saturday, September 04, 2010 10:31:59 am Simone Tenan wrote: Hello, I am looking for a way to create a square buffer for some points

Re: [GRASS-user] Calculate raster statistics for each polygon

2010-08-06 Thread Martin Wegmann
not found ERROR: Cannot continue (problem adding columns). Why am I getting this? Or, what I have to do before I run v.rast.stat? Thanks Kat 2010/8/5 Martin Wegmann martin.wegm...@uni-wuerzburg.de Hello, I think v.rast.stats is what you are looking for http://grass.itc.it/gdp

Re: [GRASS-user] Calculate raster statistics for each polygon

2010-08-05 Thread Martin Wegmann
Hello, I think v.rast.stats is what you are looking for http://grass.itc.it/gdp/html_grass64/v.rast.stats.html regards, Martin On Donnerstag, 5. August 2010 18:25:37 katrin eggert wrote: Hello I have polygon layer which divides my image into several areas all contiguous. With the same

[swinog] www.eda.admin.ch down?

2010-06-15 Thread Linus Wegmann
hi all since a while this evening i can't access www.eda.admin.ch anymore. (dmzwg1-003.eda.admin.ch) no reply of dmzwg1-003.eda.admin.ch (162.23.6.139) does anyone know about this issue? greets, Linus ___ swinog mailing list

Re: [swinog] www.eda.admin.ch down?

2010-06-15 Thread Linus Wegmann
arn...@nipper.de To: Linus Wegmann linus.wegm...@gmx.ch Date: 16.06.2010 00:08 On 15.06.2010 23:41 Linus Wegmann wrote since a while this evening i can't access www.eda.admin.ch anymore. (dmzwg1-003.eda.admin.ch) no reply of dmzwg1-003.eda.admin.ch (162.23.6.139) does anyone know about

Re: [swinog] www.eda.admin.ch down?

2010-06-15 Thread Linus Wegmann
Thanks Gregory but why is there no reply for an ICMP request? it sounds to me like no service is running on that server good night to all! Linus Original Message Subject: Re: [swinog] www.eda.admin.ch down? From: Gregory Agerba gregory.age...@gmail.com To: Linus Wegmann

Re: [swinog] www.eda.admin.ch down?

2010-06-15 Thread Linus Wegmann
Subject: Re: [swinog] www.eda.admin.ch down? From: Gregory Agerba gregory.age...@gmail.com To: Linus Wegmann linus.wegm...@gmx.ch Date: 16.06.2010 01:22 Linus, It is not because ICMP does not reply that the server is down or having an issue :-) Often it is blocked to avoid security risks

Re: [swinog] www.eda.admin.ch down?

2010-06-15 Thread Linus Wegmann
to wake up late in the morning :)) Linus Original Message Subject: Re: [swinog] www.eda.admin.ch down? From: Q-X GmbH - Pascal Wagenhofer wagenho...@q-x.ch To: Linus Wegmann linus.wegm...@gmx.ch Date: 16.06.2010 01:19 Hi Linus Wenn Du damit einverstanden bist, schreibe ich

Re: [GRASS-user] Temporal Analysis

2010-06-07 Thread Martin Wegmann
of doing this statistical- analysis for all pixels in an image, I have to do this analysis for each image-pixel along its temporal series. Is there any function to do this? Or as anyone tried ? Thanks Nikos -- Dr. Martin Wegmann University of Wuerzburg Institute of Geography Department

Re: [GRASS-user] Temporal Analysis

2010-06-07 Thread Martin Wegmann
you know, or do you have any suggestion, how to perform this? Thanks Best regards Nikos On Mon, Jun 7, 2010 at 1:12 PM, Martin Wegmann martin.wegm...@uni-wuerzburg.de wrote: Hello Nikos, just give r.series a try. regards, Martin On Montag, 7. Juni 2010 14:06:17 Nikos

Re: [GRASS-user] sum one raster map conditional on another raster map

2010-03-18 Thread Martin Wegmann
in 1 2 3 4 5 ... 22 ; do r.mapcalc new = if(watershed == $i,1,null()) r.statistics ; done -- Dr. Martin Wegmann University of Wuerzburg Institute of Geography Department of Remote Sensing Remote Sensing and Ecosystem Research Am Hubland 97074 Wuerzburg, Germany @ German Aerospace Center

  1   2   3   4   5   6   >