Re: Use class template as a type

2016-11-30 Thread dm via Digitalmars-d-learn
On Tuesday, 29 November 2016 at 15:56:23 UTC, Jerry wrote: To avoid having to use the Object class directly you can make an base class of the class template. Like: ``` abstract class MyClass {} abstract class MyClassImpl(T) { public: @property const(T) value(){return _value;} @property

Re: Use class template as a type

2016-11-28 Thread dm via Digitalmars-d-learn
We have a handy dandy syntax for this: if (MyClassInt subclass = cast(MyClassInt)value) { writeln(subclass.value); } If it doesn't cast to said type (it will be null) that branch won't execute. Hell yeah! It's works! Thank you!

Re: Use class template as a type

2016-11-28 Thread dm via Digitalmars-d-learn
Thats because MyClass is a template class. Templates are note types, instansiations of templates can be types. e.g. Myclass!float[] arr; // note this is not MyClass!(float[]); will work. As Rikki suggested using Object[] instead will allow use to store classes of different types. Maybe

Re: Use class template as a type

2016-11-28 Thread dm via Digitalmars-d-learn
On Monday, 28 November 2016 at 11:30:23 UTC, rikki cattermole wrote: In your case I'd just swap out ``MyClass[] someArray;`` to ``Object[] someArray;``. But only because there are no members added without the extra typing in MyClass. Remember types in meta-programming in D are not erased,

Use class template as a type

2016-11-28 Thread dm via Digitalmars-d-learn
Hi. Is it possible to write in D something like this? ``` abstract class MyClass(T) { public: @property const(T) value(){return _value;} @property void value(T val){_value = val;} ... private: T _value; ... } ... class MyClassFloat: MyClass!float ... class MyClassInt: MyClass!int

Re: [sword-devel] Does Eloquent use only the core library of SWORD or more than that? e.g. the clucene library, zlib, etc.

2016-11-25 Thread DM Smith
Your iPhone The developer of this app needs to update it to improve its compatibility. OK In Him, DM > On Nov 25, 2016, at 7:07 PM, Timothy Shen-McCullough > <outofthec...@icloud.com> wrote: > > Thank you for the info including regardin

[visualization-api] Invert left y-axis of dual axis chart

2016-11-25 Thread DM
Hi folks, Is it possible to change the direction of the left hand y axis in a dual axis chart? I've been trying variations of stuff like this: vAxes: { 0: {direction: -1}, 1: {} } None of it works. Any help appreciated. -- You received this message because you

[users@httpd] Re: Need help in checking a property value inside cookie and then resetting it

2016-11-22 Thread Raul DM
Subject: Need help in checking a property value inside cookie and then resetting it Hi All, I have the below use case: 1) We are using Apache HTTPD as load balancer and dispatcher which also takes care of caching of static content. 2) We are using Tomcat as application server. So request

[Playerstage-commit] [SPAM] Necesitas mas ventas ? aca tenes la solucion ...!!!

2016-11-12 Thread DM
Hace clic aqui si no ves la imagen...AQUI https://www.youtube.com/watch?v=c366VjNN234 Muchas gracias y disculpa las molestias...Para desuscribirse haga click aquí -- Developer Access Program for Intel Xeon Phi

Re: [sword-devel] Let's Encrypt certificate for crosswire.org

2016-11-04 Thread DM Smith
Done. There was a problem on the server that prevented it from auto renewing. We’ll see whether it works next time. — DM > On Nov 4, 2016, at 8:34 PM, DM Smith <dmsm...@crosswire.org> wrote: > > I’ve been working on it. > >> On Nov 4, 2016, at 6:18 AM, David Hasla

Re: [sword-devel] Let's Encrypt certificate for crosswire.org

2016-11-04 Thread DM Smith
I’ve been working on it. > On Nov 4, 2016, at 6:18 AM, David Haslam <dfh...@googlemail.com> wrote: > > FYI. > > Our certificate just expired. I've already emailed DM with details. > > Up-to-date browsers will not permit https connection, e.g. to our > devel

Re: [sword-devel] #include in xzcomprs.cpp - is this a bug or ?

2016-11-03 Thread DM Smith
, me to JSword and osis2mod. I’m not sure in what way they are experimental. AFAICT, they are complete and work. DM > On Nov 3, 2016, at 3:57 AM, Jaak Ristioja <j...@ristioja.ee> wrote: > > Thanks you, Peter! Ok, so XzCompress is experimental and the most common > ZipComp

Re: How to kill whole application if child thread raises an exception?

2016-10-28 Thread dm via Digitalmars-d-learn
On Thursday, 27 October 2016 at 13:37:29 UTC, Steven Schveighoffer wrote: Hm... what about: import std.traits: Parameters; auto mySpawn(F)(F func, Parameters!F params) { static auto callIt(F func, Parameters!F params) { try { return func(params); }

Re: How to kill whole application if child thread raises an exception?

2016-10-27 Thread dm via Digitalmars-d-learn
I found http://arsdnet.net/this-week-in-d/2016-aug-07.html Maybe it's helps me.

Re: How to kill whole application if child thread raises an exception?

2016-10-27 Thread dm via Digitalmars-d-learn
On Friday, 28 October 2016 at 03:38:05 UTC, dm wrote: On Thursday, 27 October 2016 at 13:37:29 UTC, Steven Schveighoffer wrote: Hm... what about: ... Main thread still running. Actually it's depends on compiler. With ldc2 main thread doesn't stop, but with dmd seems all ok: root@proxytest

Re: How to kill whole application if child thread raises an exception?

2016-10-27 Thread dm via Digitalmars-d-learn
On Thursday, 27 October 2016 at 13:37:29 UTC, Steven Schveighoffer wrote: Hm... what about: ... Main thread still running.

How to kill whole application if child thread raises an exception?

2016-10-26 Thread dm via Digitalmars-d-learn
Thanks all. I gues I must rewrote my app to send exeptions to other threads, use non blocking io, etc, etc.

[JIRA] (JENKINS-27722) upgrade to the release plugin has left the plugin broken

2016-10-26 Thread dm...@java.net (JIRA)
Title: Message Title dma_k commented on

Re: How to kill whole application if child thread raises an exception?

2016-10-26 Thread dm via Digitalmars-d-learn
On Wednesday, 26 October 2016 at 10:09:05 UTC, rikki cattermole wrote: If you throw an error it should crash the entire application. But really you need to set up sync points within your application to allow it to die gracefully. I tried throw new Error... But main thread still working. Tried

Re: How to kill whole application if child thread raises an exception?

2016-10-26 Thread dm via Digitalmars-d-learn
On Wednesday, 26 October 2016 at 09:43:10 UTC, rikki cattermole wrote: ```D void entryPoint(alias func)() { try { func(); } catch (Exception e) { import std.stdio; writeln(e.toString()); } } void main() { auto tid =

Re: How to kill whole application if child thread raises an exception?

2016-10-26 Thread dm via Digitalmars-d-learn
On Wednesday, 26 October 2016 at 08:53:13 UTC, rikki cattermole wrote: Simple, handle the exceptions on each thread. I don't want handle exceptions. I want my application crash with exception description. Can you change my code above to show how it can be made?

How to kill whole application if child thread raises an exception?

2016-10-26 Thread dm via Digitalmars-d-learn
Hi. I tried code below: import std.concurrency; import std.stdio; void func() { throw new Exception("I'm an exception"); } void main() { auto tID = spawn(); foreach(line; stdin.byLine) send(tID, ""); } I expect my application will die immediatly, but main thread still

[JIRA] (JENKINS-27722) upgrade to the release plugin has left the plugin broken

2016-10-25 Thread dm...@java.net (JIRA)
Title: Message Title dma_k commented on

[Linux-sunucu] Re: L3-L7 seviyesinde trafik analizi için Linux yazılımı veya Linux sürümü hk.

2016-10-10 Thread O Dm
Pfsense denemenizi tavsiye ederim.. ___ Linux-sunucu E-Posta Listesi Linux-sunucu@liste.linux.org.tr Liste kurallarını http://liste.linux.org.tr/kurallar.php bağlantısından okuyabilirsiniz; Bu Listede neden bulunduğunuzu bilmiyorsanız veya artık bu

[android-developers] Android studio ide issues?

2016-10-07 Thread Jerm Dm
Im new to coding and ive decided to start with java. So far its going ok except.. Ive spent hours and hours dealing with issues from android studio. Everything from failure to run adb to UI Editing in xml panel to android studio not reading my methods when i apply them to a button via Onclick

[go-nuts] Getting error back after executing a shell script via Golang

2016-09-29 Thread DM
Cross-posting this from stackoverflow :- I have a simple shell script (named copy.sh) which looks like below:- #! /bin/sh cp $1 $2 I did chmod 777 copy.sh. I have a golang code which

[go-nuts] Re: [Open sourced] Workflow based REST Api framework - "florest"

2016-09-27 Thread DM
It seems there is a typo in the README Try:- go get github.com/jabong/florest-core/*src*/examples On Tuesday, 27 September 2016 20:17:18 UTC+5:30, parais...@gmail.com wrote: > > Reading the doc , trying to reproduce the instructions : > > go get -u github.com/jabong/florest-core/examples >

Re: [sword-devel] Announcing Sword++

2016-09-27 Thread DM Smith
> On Sep 27, 2016, at 7:52 AM, Matěj Cepl wrote: > > On 2016-09-26, 21:10 GMT, DM Smith wrote: >> A fork of the CrossWire library (SWORD or JSword) may or may >> not be seen by the copyright holders to be mechanism of >> distribution and access that they are willin

Re: [sword-devel] Announcing Sword++

2016-09-26 Thread DM Smith
to be mechanism of distribution and access that they are willing to license their work. I know of one publisher of a popular module in particular that would not. Troy is suggesting a cooperative way forward. In His Service, DM Smith > On Sep 26, 2016, at 2:30 PM, Jaak Ristioja

[go-nuts] Adding a title in godoc

2016-09-23 Thread DM
I am trying to add a title in my godoc. I have referred godoctricks . My godoc looks like below:- // Package hello-world provides a helloworld example // // Pre-requisites // // * Go 1.5+ // * Linux or MacOS // *

[go-nuts] Timeout using Select from "Go Design Pattern"

2016-09-23 Thread DM
I was going through the *"Go Design Pattern"* talk by Rob Pike. Can some one explain me the doubt I am having in the slide Timeout using Select . In the the video this is the location where it is

Re: [sword-devel] MiTM

2016-09-18 Thread DM Smith
to configure SFTP to use it. I think that we should move toward SSL by default, e.g. redirect HTTP to HTTPS, FTP to SFTP, …. DM Smith > On Sep 18, 2016, at 2:02 PM, Jaak Ristioja <j...@ristioja.ee> wrote: > > Looking at the source it looks more like its used for FTP instea

Re: [sword-devel] MiTM

2016-09-18 Thread DM Smith
I'll look into it. > On Sep 18, 2016, at 11:20 AM, Jaak Ristioja wrote: > > Hi! > > In src/mgr/curlhttpt.cpp: > >/* Disable checking host certificate */ >curl_easy_setopt(session, CURLOPT_SSL_VERIFYPEER, false); > > Why? Afaik this allows the use of self-signed

[JIRA] (JENKINS-35511) Drupal developer plugin doesn't work on master/slave configuration

2016-09-13 Thread dm...@madrid.org (JIRA)
Title: Message Title daniel mozo started

[go-nuts] Continous Inspection of Go Code Quality

2016-08-26 Thread DM
Is there any tool available in GoLang for the Continuous Inspection of code quality something similar to SonarQube ? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving

[UAI] Submission deadline extended for ICDM 2016 workshop on Data Mining for the Internet of Things

2016-08-15 Thread Srinivasan Soundar (G1/PJ-DM)
New submission deadline: August 19th, 2016 DMIoT 2016 : The First Workshop on Data Mining for Internet of Things December 12, 2016 (part of ICDM 2016), Barcelona, Spain Call For Papers With more low-cost sensors and devices connected to the internet, huge amounts of data are being collected

[UAI] Submission deadline extended for ICDM 2016 workshop on Data Mining for the Internet of Things

2016-08-08 Thread Srinivasan Soundar (G1/PJ-DM)
New submission deadline: August 12th, 2016 DMIoT 2016 : The First Workshop on Data Mining for Internet of Things December 12, 2016 (part of ICDM 2016), Barcelona, Spain Call For Papers With more low-cost sensors and devices connected to the internet, huge amounts of data are being collected

Re: [sword-devel] Crosswire.org HTTP certificate expiration

2016-08-05 Thread DM Smith
I'll fix it in the morning. And automate it. Cent from my fone so theer mite be tipos. ;) > On Aug 5, 2016, at 5:34 PM, ad...@bible.salterrae.net wrote: > > See the instructions at https://certbot.eff.org/docs/using.html#renewal . > >> I think DM was experimenting with som

[go-nuts] SetSafe default value in mgo session

2016-08-04 Thread DM
Can someone explain me the difference between the default value of SetSafe() which is {}and SetSafe(nil)? As per the mgo godoc :- If the safe parameter is nil, the session is put in unsafe mode, and writes become fire-and-forget, without

[Linux-sunucu] Re: Python script, crontab ile çalışmıyor

2016-07-23 Thread O Dm
On Fri, Jul 22, 2016 at 02:50:00PM +0300, O Dm wrote: > > script içerisinde herhangi bir mail ifadesi bulunmuyor. bir sunucuya > > bağlanıp parse edip düzenlediği bilgileri .txt şeklinde çıktı veriyor > > scripti calistirirken olusan hatalar da email ile gelir. Email atamayan &

[Linux-sunucu] Re: [Linux-programlama] Python script, crontab ile çalışmıyor

2016-07-22 Thread O Dm
ZTURK <gur...@gurcanozturk.com> > yazdı: > > Crontab default olarak ciktilari/hatalari root'a mail atmaya calisir. Eger >> bunu istemiyorsaniz, >> >> crontab satirlarinizin sonuna > /dev/null ekleyebilirsiniz bu durumda >> olusan hatalar mail yerine /dev/nul

[Linux-sunucu] Re: [Linux-programlama] Python script, crontab ile çalışmıyor

2016-07-22 Thread O Dm
/sbin/cron -f od 11434 0.0 0.0 22696 1036 pts/2S+ 14:54 0:00 grep --color=auto cron 22 Temmuz 2016 14:53 tarihinde Emrah Atalay <atalay.em...@gmail.com> yazdı: > Son bir kontrolde, > > ps aux|grep cron > > Olabilir > > > 22 Temmuz 2016 Cuma tarihinde,

[Linux-sunucu] Re: Python script, crontab ile çalışmıyor

2016-07-22 Thread O Dm
script içerisinde herhangi bir mail ifadesi bulunmuyor. bir sunucuya bağlanıp parse edip düzenlediği bilgileri .txt şeklinde çıktı veriyor 22 Temmuz 2016 14:43 tarihinde Eray Aslan <er...@a21an.org> yazdı: > On Fri, Jul 22, 2016 at 11:18:56AM +0300, O Dm wrote: > > ekledim g

[Linux-programlama] Re: Python script, crontab ile çalışmıyor

2016-07-22 Thread O Dm
thon /home/od/Desktop/object.py > > > Birde akabinde grep crontab /var/log/syslog ciktisini > > > 22 Temmuz 2016 Cuma tarihinde, O Dm <duyo...@gmail.com> yazdı: > >> >>> *od@od:~$ sudo ls -lah /var/spool/cron/crontabs*total 12K >>> drwx-wx--T 2 root

[Linux-programlama] Re: Python script, crontab ile çalışmıyor

2016-07-22 Thread O Dm
pool/cron/crontabs > sudo cat /var/spool/cron/crontabs/$USER > > Komutlarının çıktılarını gönderebilir misiniz? > > Bu arada cronjobları nasıl editliyorsunuz? > > > 22 Temmuz 2016 Cuma tarihinde, O Dm <duyo...@gmail.com> yazdı: > > Malesef. Çalışmıyor. *'ları h

[Linux-programlama] Re: Python script, crontab ile çalışmıyor

2016-07-22 Thread O Dm
Malesef. Çalışmıyor. *'ları hemen aksiyon alabilmek için koydum 22 Temmuz 2016 13:00 tarihinde Aytekin Aygün <aytekinay...@gmail.com> yazdı: > 22-07-2016 11:18 tarihinde O Dm yazdı: > > >> * * * * * python /home/od/Desktop/Object.py >> >> * * * * * /home/od/Des

[Linux-sunucu] Python script, crontab ile çalışmıyor

2016-07-22 Thread O Dm
Script'imi schedule etmeye çalışıyorum. Ancak bir türlü bunu başaramadım. Araştırdığım ve bulduğum tüm komutları crontab dosyasına satır olarak ekledim genede sonuç yok. İzinleri verdim. Farklı path'lerde denedim. Sorun nerede? Selamlar.. *od@od:~/Desktop$ crontab -l* > >

[Linux-programlama] Python script, crontab ile çalışmıyor

2016-07-22 Thread O Dm
Script'imi schedule etmeye çalışıyorum. Ancak bir türlü bunu başaramadım. Araştırdığım ve bulduğum tüm komutları crontab dosyasına satır olarak ekledim genede sonuç yok. İzinleri verdim. Farklı path'lerde denedim. Sorun nerede? Selamlar.. *od@od:~/Desktop$ crontab -l* > >

[UAI] Call for Papers: ICDM 2016 workshop on Data Mining for the Internet of Things

2016-07-20 Thread Srinivasan Soundar (G1/PJ-DM)
DMIoT 2016 : The First Workshop on Data Mining for Internet of Things December 12, 2016 (part of ICDM 2016), Barcelona, Spain Call For Papers With more low-cost sensors and devices connected to the internet, huge amounts of data are being collected and analyzed. This has opened up a plethora

[go-nuts] Connection pooling with xorm and go-mysql

2016-07-20 Thread DM
Just cross-posting this from stackoverflow and github :- I am using xorm 0.4.3 with go-mysql . We are on Golang 1.4. We

[go-nuts] Re: xorm - 4.3 - panic: gob: registering duplicate names

2016-07-17 Thread DM
No. Is this something related to the below issue:- https://groups.google.com/forum/#!topic/golang-nuts/VnFs2Cv0_UY If yes how can I get around this problem in xorm? On Saturday, 16 July 2016 00:09:45 UTC+5:30, DM wrote: > > I am getting the below exception with xorm - 4.3 and golang 1.4.

[go-nuts] net/http: request canceled while waiting for connection

2016-07-12 Thread DM
Hi We making some http PUT calls to a web server using net/http. Some time in the log we are seeing the below errors:- {"level":"error","message":"Put http://blitz:2196/cache/api/v1/buckets/styloko/entities/product-xlarge-multi-sku-de898wa73oooindfas : *read tcp **172.16.84.112:2196*

Re: [volt-nuts] Thermal EMF - more results

2016-07-03 Thread DM
Wikipedia cites SN10 PB88 AG02 as having low thermal EMF properties. There are several listings for it on Ebay at the moment. Although not the same as Sn18 solder, it's pretty close. I'd think that the thermal properties would be pretty close as well. Dave M - Original Message -

caching issues with nginx as reverse-proxy

2016-06-29 Thread dm
Hi community, currently I am serving files with a size about 1,5G (static without dynamic content) using a hand full of nodes and nginx in reverse proxy setup. Caching works, ..but not as expected. During the requests nginx creates a lot of temp caching files that grow up to the size of the

Re: [sword-devel] Issues discovered updating old IBT modules

2016-06-27 Thread DM Smith
I’ve had family visting this weekend. I’d like to look at it more closely. The code tries to be very careful in how it handles titles before the first verse of a chapter. The patches certainly solve a bug where it appends NT intros to the OT. DM > On Jun 25, 2016, at 9:16 AM, T

[go-nuts] go get failing In Mac 10.11.4

2016-06-21 Thread DM
Hi On Mac OS X 10.11.4 *go get* is failing with the below error. jabongs-MacBook-Pro-4:florest debraj$ go get ./... go install github.com/jabong/florest/src/common/config: open /var/folders/lp /3q9_2mn51hd9s4yj_jcf3jxmgp/T/go-build823644730/github.com/jabong/ florest/src/common/config.a: no

Re: [sword-devel] Lack of French translation for deutero-canonical books

2016-06-17 Thread DM Smith
Please do! Directly is fine too. Cent from my fone so theer mite be tipos. ;) > On Jun 17, 2016, at 4:59 AM, Fr Cyrille <lafricai...@gmail.com> wrote: > > > If it's useful for you I send you the new translation of fr-utf8.conf. > > > Le 12/06/2016 11:13, DM Smith

[sword-devel] Bugs in GBF Modules, Words of Christ and Strong's Numbers

2016-06-12 Thread DM Smith
spending much time fixing bugs, I’d recommend that these are re-done in a different format. In Him, DM ___ sword-devel mailing list: sword-devel@crosswire.org http://www.crosswire.org/mailman/listinfo/sword-devel Instructions to unsubscribe/change

Re: [sword-devel] OSIS to USFM conversion?

2016-06-12 Thread DM Smith
I’m pretty sure that round trip may not produce the same quality of OSIS except in the simplest of cases. In Him, DM > On Jun 12, 2016, at 3:17 AM, Matěj Cepl <mc...@cepl.eu> wrote: > > On 2016-06-11, 21:41 GMT, Kahunapule Michael Johnson wrote: >> I'm start

Re: [sword-devel] Lack of French translation for deutero-canonical books

2016-06-12 Thread DM Smith
AndBible uses JSword, which has its own translation files for Bible book names. These are at GitHub. Cent from my fone so theer mite be tipos. ;) > On Jun 12, 2016, at 3:58 AM, Fr Cyrille wrote: > > Ok thank you! > > Le 12/06/2016 07:16, Peter von Kaehne a écrit : >>

[JIRA] [drupal-developer-plugin] (JENKINS-35511) Drupal developer plugin doesn't work on master/slave configuration

2016-06-09 Thread dm...@madrid.org (JIRA)
Title: Message Title daniel mozo created an issue

Re: [sword-devel] Missing verse in AndBible

2016-05-21 Thread DM Smith
there will be no differences in the numbers. There will be lots of other differences, but the verse per chapter counts will be the same. This is more likely an off by one error. What is confusing to me is why it only shows up in one module and in one chapter. In Him, DM > On May 21, 2016, at 6:26 AM, T

Re: [sword-devel] The Bible Tool - missing modules?

2016-05-02 Thread DM Smith
As noted SwordWeb has its own copy of the repository. Troy maintains that copy. — DM > On May 2, 2016, at 1:08 PM, David Haslam <dfh...@googlemail.com> wrote: > > Now that Greg has identified the cause, might it be possible for someone to > make these modules available for

Re: [sword-devel] CzeBKR has unusual language code

2016-05-01 Thread DM Smith
2 character code if it exists. I’ve changed the conf, rebuilt mods.d.tar.gz and the zip for the module. (Chris, glad to have you back!) In Him, DM ___ sword-devel mailing list: sword-devel@crosswire.org http://www.crosswire.org/mailman/listinfo/sword-

[lfs-support] IPv6 init scripts

2016-04-04 Thread DM
Heya all, I started some months ago my journey to IPv6 and I wanted to ask if there are already made scripts for IPv6 in regards to /lib/lsb/ (ipv6_static and ipv6_static_route)? Cheers, Daniel -- http://lists.linuxfromscratch.org/listinfo/lfs-support FAQ:

Re: [sword-devel] French versification schemes

2016-03-21 Thread DM Smith
Thank you so much! I’ve checked these into JSword. In Him, DM Smith > On Mar 16, 2016, at 5:38 PM, Dominique Corbex <domini...@corbex.org> wrote: > > On Sat, 12 Mar 2016 21:02:05 +0100 > Dominique Corbex <domini...@corbex.org> wrote: > >> I identifie

Re: [sword-devel] git

2016-03-19 Thread DM Smith
Thanks! > On Mar 19, 2016, at 6:26 PM, Matěj Cepl <mc...@cepl.eu> wrote: > > On 2016-03-19, 19:10 GMT, DM Smith wrote: >> I don’t use my yahoo account anymore. Too much spam. I’m using this one now >> for git. > > Fixed in my repo. > > Matěj > >

Re: [sword-devel] git

2016-03-19 Thread DM Smith
I don’t use my yahoo account anymore. Too much spam. I’m using this one now for git. — DM > On Mar 19, 2016, at 2:33 PM, Matěj Cepl <mc...@cepl.eu> wrote: > > On 2016-03-19, 08:29 GMT, Jaak Ristioja wrote: >> Thanks, Matěj! I actually thought about doing that myself, bu

Re: [sword-devel] Front-ends that can display external web-pages?

2016-03-19 Thread DM Smith
No module should use this capability. A module has to work across a broad set of renderers, some of which are HTML. SwordWEB has this capability as well and calls out to other services based upon Strong’s numbers and such. It is an add on. In Him, DM > On Mar 19, 2016, at 1:21

Re: [sword-devel] Front-ends that can display external web-pages?

2016-03-19 Thread DM Smith
STEP should be able to do that. After all it runs a local web server and shows the results in the user’s browser. — DM > On Mar 19, 2016, at 12:07 PM, David Haslam <dfh...@googlemail.com> wrote: > > This might seem like a peculiar question, but it's not as daft as it seems. >

[Playerstage-commit] [SPAM] Envia mas de 10.000 emails por minuto con nuestro programa de envios masivos...

2016-03-18 Thread DM
Tenes pocas ventas ? Envia mas de 10.000 Emails por minuto con tu publicidad con este programa... Miralo en accion en este video que subi a Youtube.. https://www.youtube.com/watch?v=c366VjNN234 Mas de 500.000 emails por dia podes mandar y sin complicaciones de configuracion, ya que ya viene

Re: [sword-devel] tei2mod is confused about uncompressed modules

2016-03-15 Thread DM Smith
Thanks! Silly bug: else if (compType = "XZ") { I’ll check in a fix. > On Mar 15, 2016, at 6:55 AM, Karl Kleinpaste wrote: > > $ tei2mod > -z use compression (default: none) > > $ tei2mod . /dev/null > You are running tei2mod: $Rev: 3092 $ >

[Linux] Re: linuxtan windows dosyalarıma erişememe

2016-03-14 Thread O Dm
Windows, hibernated durumuna geçmeden önce mevcut durumunu "hiberfil.sys" dosyasına kaydeder ve oluşturduğu bayrak ile diğer işletim sistemlerini uyarır. NTFS bağlayıcı bu bayrağı görünce doğal olarak açmıyor. Sanıyorum read-only modda bağlayarak windowsa erişebilirsiniz 14 Mart 2016 14:14

Re: [sword-devel] French versification schemes

2016-03-12 Thread DM Smith
Konstantin, I’ll be adding such mappings to JSword. I’ll do my best to comment them well so that they can be used as a basis for the SWORD mappings. Unfortunately, there is little resemblance between the two formats. Below is an example for the Vulgate. Working together in Christ, DM Smith

Re: [sword-devel] 1.8, French versifications, modules

2016-03-12 Thread DM Smith
Of course that is possible. The embedded files are no longer available at the website. I’ve used what was in the email, but I’ll verify once the files are checked into SWORD lib. That is actually quite easy now. In Him, DM > On Mar 12, 2016, at 4:15 AM, David Haslam &

Re: [sword-devel] French versification schemes

2016-03-12 Thread DM Smith
enough that they can be helpful to creating the SWORD mappings. None of the links to dom.corbex.org <http://dom.corbex.org/> that are mentioned below are current. Most give a 404 — Not Found error. In His Service, DM > On Aug 26, 2015, at 3:50 PM, domcox <dominique.cor...@gmai

Re: [sword-devel] 1.8, French versifications, modules

2016-03-12 Thread DM Smith
Those aren’t canon_*.h files. Those are analysis of them. I went to domcox’s website and couldn’t find them there. In Him, DM > On Mar 12, 2016, at 4:17 AM, David Haslam <dfh...@googlemail.com> wrote: > > i.e. In the thre pages linked from here > > https

Re: [sword-devel] 1.8, French versifications, modules

2016-03-11 Thread DM Smith
Found them attached in an earlier email. There are 3 canon files, segond, darbyfr and calvin. Are we doing all 3? I'm working on adding them to JSword. In Him, DM > On Mar 11, 2016, at 8:22 PM, DM Smith <dmsm...@crosswire.org> wrote: > > Where can I find the canon_*.h fil

Re: [sword-devel] 1.8, French versifications, modules

2016-03-11 Thread DM Smith
Where can I find the canon_*.h files? In Him, DM > On Mar 11, 2016, at 3:00 AM, Peter von Kaehne <ref...@gmx.net> wrote: > > This is just to say as no one has voiced any objections to domcox' s French > versifications i will now actively use these if suitable module

Re: [sword-devel] Help with CzeCEP update (av11n)

2016-03-10 Thread DM Smith
source that was used, ... and have a very minor change needed. In Him, DM ___ sword-devel mailing list: sword-devel@crosswire.org http://www.crosswire.org/mailman/listinfo/sword-devel Instructions to unsubscribe/change your settings at above page

Re: [sword-devel] Help with CzeCEP update (av11n)

2016-03-10 Thread DM Smith
er. One thing that has not changed is our mission is Kingdom focused. We need to keep that in mind as we go forward. In Him, DM Smith ___ sword-devel mailing list: sword-devel@crosswire.org http://www.crosswire.org/mailman/listinfo/sword-devel Instructions to unsubscribe/change your settings at above page

[Ops-developers] Envia mas de 10.000 emails por minuto con nuestro programa de envios masivos...

2016-03-09 Thread DM
Tenes pocas ventas ? Envia mas de 10.000 Emails por minuto con tu publicidad con este programa... Miralo en accion en este video que subi a Youtube.. https://www.youtube.com/watch?v=c366VjNN234 Mas de 500.000 emails por dia podes mandar y sin complicaciones de configuracion, ya que ya viene

[SPAM] Envia mas de 10.000 emails por minuto con nuestro programa de envios masivos...

2016-03-08 Thread DM
Tenes pocas ventas ? Envia mas de 10.000 Emails por minuto con tu publicidad con este programa... Miralo en accion en este video que subi a Youtube.. https://www.youtube.com/watch?v=c366VjNN234 Mas de 500.000 emails por dia podes mandar y sin complicaciones de configuracion, ya que ya viene

Re: [sword-devel] Song of Solomon missing from ChiNCVt

2016-03-08 Thread DM Smith
think we should convert the About to UTF-8. In Him, DM Smith > On Mar 8, 2016, at 3:30 PM, David Haslam <dfh...@googlemail.com> wrote: > > I just installed both modules ChiNCVt and ChiNCVs (in response to Martin's > email). > > It's conceivable that the source text

Re: [sword-devel] Query about wiki documentation

2016-03-04 Thread DM Smith
Its been fixed for a long time. In Him, DM > On Mar 4, 2016, at 9:28 AM, David Haslam <dfh...@googlemail.com> wrote: > > Is this still true, or should I delete it? > > "A quirk of the SWORD compilation process is that the only kind of content > which relia

[Ubuntu-phone] Browser audio will stop if screen is locked or app is switched

2016-03-02 Thread François DM
Dear all, I am having an annoying issue with my BQ Aquaris E5 HD. Basically whenever I listen to podcasts through the browser (soundcloud.com, franceculture.fr, etc.) I have to let the browser as the activated app. Otherwise, if I either lock the screen of the phone or switch to another app it

Re: [sword-devel] Chinese ideographic script and OSIS transChange?

2016-02-19 Thread DM Smith
JSword does not. SWORD conf allows a CSS file to be used along with the xhtml filters. That would be the appropriate place for such a difference. I don’t know if any module uses that or if any frontend does either. In His Service, DM > On Feb 19, 2016, at 4:14 AM, David Haslam &

[sword-devel] Interlinear English Greek

2016-02-16 Thread DM Smith
I’ve put up an example of how to display an interlinear of English, original Greek, Strong’s numbers, Greek root words, and morphology. It should work in any browser from that is IE 9 or better. That means FireFox, Safari, Opera, Chrome, …. You can see the page here:

Re: [sword-devel] Firefox 44.0.2 and self-signed certs

2016-02-15 Thread DM Smith
I tried to fix this the other day, and will shortly. But the server locked up twice in that day. So I’ve backed out my changes (a one-liner for this issue) and am doing them one at a time. I hope to have that solved within a week. In Him, DM > On Feb 15, 2016, at 3:44 PM, Jaak Risti

Re: [sword-devel] Firefox 44.0.2 and self-signed certs

2016-02-15 Thread DM Smith
Ownership info is not easy to fix. It requires a paid certificate and much hoops to obtain. — DM > On Feb 15, 2016, at 2:56 PM, David Haslam <dfh...@googlemail.com> wrote: > > Yep! I inspected the lock icon in Firefox and confirmed that it's now using > Lets Encrypt. >

Re: [sword-devel] Firefox 44.0.2 and self-signed certs

2016-02-15 Thread DM Smith
Went with LetsEncrypt. It should be proper for the entire crosswire.org <http://crosswire.org/> web. If you see a problem or have a question, let me know. In Him, DM Smith > On Feb 12, 2016, at 5:30 PM, Matěj Cepl <mc...@cepl.eu> wrote: > > On 2016-02-12, 19:28 GM

Re: [sword-devel] Wiki Maintenance

2016-02-13 Thread DM Smith
It’s back… > On Feb 13, 2016, at 3:07 PM, Martin Denham wrote: > > I think the whole site is down. > > Martin > > On 13 February 2016 at 19:29, David Haslam > wrote: > My connection to the wiki has become unresponsive

Re: [sword-devel] Module FreGBM - dictionary or glossary?

2016-02-12 Thread DM Smith
Right, in SWORD lingo, a glossary is between two languages. This one is right. Glossary is merely part of the name. All of them are exactly the same kind of module. So to change from one to the other is merely a conf change. > On Feb 12, 2016, at 8:23 AM, Dominique Corbex

Re: [sword-devel] Firefox 44.0.2 and self-signed certs

2016-02-12 Thread DM Smith
Thanks. I’m looking into that. In Him, DM > On Feb 12, 2016, at 5:22 PM, Kahunapule Michael Johnson > <kahunap...@ebible.org> wrote: > > Note: you can get FREE proper SSL certificates from > https://www.startssl.com/, good for one year at a time. > > On 2/

Re: [sword-devel] CrossWire Tracker status?

2016-02-11 Thread DM Smith
It is down. I’ll have to work on it later. It shouldn’t be related. Perhaps it is that both reside in the same database. I’ll have to work on it after work. DM > On Feb 11, 2016, at 12:21 PM, David Haslam <dfh...@googlemail.com> wrote: > > The tracker seems to be down. >

Re: [sword-devel] Wiki Maintenance

2016-02-11 Thread DM Smith
Still working on it. If you look, it is really ugly (need to add “skin”) and doesn’t allow editing (this is deliberate). — DM > On Feb 10, 2016, at 8:09 PM, DM Smith <dmsm...@crosswire.org> wrote: > > I’ll be working on upgrading the wiki to a more recent version. When I do,

Re: [sword-devel] Wiki Maintenance

2016-02-11 Thread DM Smith
Wiki is back. Upgraded to 1.26. Looking to make login secure. Manually use HTTPS for now. Let me know if you see problems. In Him, DM > On Feb 11, 2016, at 9:02 AM, DM Smith <dmsm...@crosswire.org> wrote: > > Still working on it. If you look, it is really ugly (ne

Re: [sword-devel] IMP format for Daily Devotionals?

2016-02-10 Thread DM Smith
. In Him, DM > On Feb 10, 2016, at 9:56 AM, Peter von Kaehne <ref...@gmx.net> wrote: > > David is right though, a intro would be a suitable thing in so many way and > many use it. E.g. the Herrnhuther Losungen come with a year's losung and a > month's one and a mon

Re: [sword-devel] IMP format for Daily Devotionals?

2016-02-10 Thread DM Smith
. But many have it. DM > On Feb 10, 2016, at 9:20 AM, David Haslam <dfh...@googlemail.com> wrote: > > So would the solution to include month headings (etc.) be to go to a proper > OSIS XML source file, rather than to use IMP with either ThML or OSIS > fragments? > > I

Re: [sword-devel] IMP format for Daily Devotionals?

2016-02-10 Thread DM Smith
> On Feb 10, 2016, at 9:00 AM, Karl Kleinpaste wrote: > > On 02/10/2016 08:27 AM, David Haslam wrote: >> Are month heading keys valid with the key $$$mm.00 ? > A daily.dev is a dictionary module with odd keys. You can encode $$$mm.00 if > you wish, and if you display that

<    1   2   3   4   5   6   7   8   9   10   >