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 void value(T val){_value = val;}
 ...
   private:
T _value;
 ...
}

MyClassInt and float inherits from MyClassImpl
```

And use it like:

```
void main() {
   MyClass[] objs;
   objs ~= new MyClassFloat();
   objs ~= new MyClassInt();
}
```


Yes, but anyway you need to downcast if(MyClassBlahBlah subclass 
= cast(MyClassBlahBlah)obj)...

So it's not much sense to have base class or interface MyClass.


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 I must use some stub class or interface and override all 
methods...
But I so like D templates, as a result it's a small and easy to 
understand code.


Or actually it's maybe a XY problem. I'm trying to implement 
OpenGL material manager and for OpenGL uniforms I tried to write:

```
abstract class Uniform(T)
@property ...
@property ...
T _val;...
void method()...
...
class FloatUniform: Uniform!float
...
override void method()...

And in material class
class Material
...
Texture[] textures;
Uniform[] uniforms;
...
```
Maybe i'm totally wrong and better just use glUniformXXX... in my 
main app instead of

```
auto uniform = new SomeTypeUniform...
...
uniform.value = someValue;
```
?


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, they 
exist in the assembly and are unique. Unlike Java who did the 
implementation rather wrong.


I'm tried to use Object[], but got error
Error: no property 'value' for type 'object.Object'
I guess I must cast() to MyClassInt or MyClassFloat, but how can 
I do it?


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
...

void main()
{
  MyClass[] someArray;
  someArray ~= new MyClassFloat();
...

  someArray ~= new MyClassInt();
...

  foreach(myClass; someArray)
   if(typeid(myClass) == typeid(MyClassInt))
myClass.value = 999;
   else
myClass.value = 123.45f;
...

}
```
When I trying to compile code like above I got
Error: class MyClass(T) is used as a type.



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
Regarding 32 vs 64 bit, don’t get hung up over the warnings. The biggest 
problem with the warnings is that they can hide real problems. But most of the 
reports will be of the kind where an intermediate storage size of a computation 
is wider than its destination. So basically something like int x = 8 * 4 will 
complain that int is not long because the operation is done so that it can be 
larger than the storage required by its parts.

The computations within SWORD are largely to compute indexes into an array. 
Those arrays are far smaller than a 32-bit number can index. Ensuring that the 
computation doesn’t produce a warning won’t help.

I’d suggest working on getting PocketSword to compile without error, getting it 
to work and submit it to the app store.

I’m now getting a warning on starting the program, where a dialog pops up 
stating:

 “PocketSword” May Slow
  Down 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 regarding that iOS can use frameworks. I 
> knew that iOS could use frameworks, but I didn't know that only iOS 8 and up 
> could use it. 
> 
> So, if I'm understanding you correctly you are able to take the download of 
> SWORD (along with the 3rd party libraries that come with it) and convert it 
> into an Xcode framework without having to edit any of the code?
> 
> -TS
> 
> --Sent from phone--
> 
>> On Nov 23, 2016, at 11:03 PM, Manfred Bergmann <manfred.bergm...@me.com> 
>> wrote:
>> 
>> Hi TS.
>> 
>> It uses the zlib which is bundled with SWORD.
>> It also uses clucene, but only to create index files to be used for 
>> PocketSword.
>> Otherwise Eloquent uses Apple Spotlight for indexing and searching.
>> 
>> The framework is built from the project and sources in bindings/objc.
>> Btw: iOS from version 8 can also use frameworks now.
>> 
>> 
>> Manfred
>> 
>> 
>>> Am 24.11.2016 um 01:30 schrieb TS <outofthec...@icloud.com>:
>>> 
>>> Does Eloquent use only the core library of SWORD or more than that? e.g. 
>>> the clucene library, zlib, etc. 
>>> 
>>> I took a look at its source code, but the Sword code is pre-bundled into 
>>> what Apple defines as a framework for Xcode and this seems to hide away 
>>> everything except for header files. 
>>> 
>>> I'm interested in finding this info out because of the recent 64 bit issues 
>>> I've written earlier about and because, for example, it seems that nether 
>>> the clucene code nor zlib code is being maintained anymore. Since I've been 
>>> trying to work on the PocketSword code, I'm curious as to how its desktop 
>>> counterpart handles tasks. Does it use the same libraries of code that 
>>> comes with the SWORD code or if not, which ones are used and which ones are 
>>> not?
>>> 
>>> zlib btw is somewhat odd on iOS. It is not plug and play. A file needs to 
>>> be modified in zlib folder in order for it to work. However, when 
>>> troubleshooting the issues on the internet, a lot of people with similar 
>>> problems got replies back that zlib already comes in one of Apple's 
>>> libraries. 
>>> 
>>> -TS
>>> 
>>> --Sent from phone--
>>> ___
>>> 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
>> 
>> 
>> ___
>> 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
> 
> ___
> 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


___
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

[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 are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/bdfcf881-01f1-4de9-b7cd-783d674df529%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 comes to Apache HTTPD 
and it forwards the request to Tomcat.

3) We are setting a Session Cookie in Java code with a property ExpiryTime when 
user logs in (Cookie will also have other relevant properties).

4) Value of ExpiryTime property would be "CurrentTimeInMilliseconds + 15 
minutes in milliseconds".

5) Now we want to set up a rule in the Apache HTTPD server to check the value 
of this Cookie Property and compare it with CurrentTimeStamp.

6) If the property value is less than CurrentTimeStamp delete the Cookie and 
redirect user to Log In page (Session Time out) else reset the value of this 
Cookie property to "CurrentTimeInMilliseconds + 15 minutes in milliseconds" 
(Renew session timeout).


Can you please help me figuring out a way to configure this conditional rule in 
Apache HTTPD server.

I cannot put this condition check in my Tomcat or Java code, because I am 
serving lot of my cached pages from Apache HTTPD server itself.


The above use case is to handle User Session management using Cookie only 
(Without HTTP Session)


Please help!


Thanks,

Rahul



[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 Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi___
Playerstage-commit mailing list
Playerstage-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/playerstage-commit


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 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
>> developers' wiki.
>> 
>> Best regards,
>> 
>> David
>> 
>> 
>> 
>> --
>> View this message in context: 
>> http://sword-dev.350566.n4.nabble.com/Let-s-Encrypt-certificate-for-crosswire-org-tp4656550.html
>> Sent from the SWORD Dev mailing list archive at Nabble.com.
>> 
>> ___
>> 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
> 
> 
> ___
> 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


___
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] 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
> developers' wiki.
> 
> Best regards,
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/Let-s-Encrypt-certificate-for-crosswire-org-tp4656550.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] #include in xzcomprs.cpp - is this a bug or ?

2016-11-03 Thread DM Smith
lzss is an early compression supported by SWORD and JSword. There is no need, 
other than policy, to refrain from using it.

xz and bzip2 are fully supported by JSword. But not all frontends in the wild 
have it.

I worked with Chris Little on both xz and bzip2 support. Him adding it to SWORD 
lib, 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
> ZipCompress is considered stable. But what about LZSSCompress and
> Bzip2Compress?
> 
> Will the experimental compression methods be removed from stable Sword
> releases in the future?
> 
> J
> 
> On 03.11.2016 09:45, Peter von Kaehne wrote:
>> I can categorically say that there are no released CW modules using any 
>> compression other than zip. There might be some in our experimental repo. 
>> But they would not be released so.
>> 
>> I would think the same can be confirmed rapidly with all other official 
>> repos, Xiphos, IBT and eBible. I am convinced they will say the same.
>> 
>> It is unlikely that anyone else has done so, but who knows? I would not 
>> worry about it. 
>> 
>> Peter
>> 
>> Sent from my phone. Apologies for brevity and typos.On 3 Nov 2016 07:31, 
>> Jaak Ristioja <j...@ristioja.ee> wrote:
>>> 
>>> I just tried `./configure && make` Sword 1.7.4 and it did compile in
>>> xzcomprs.cpp. So I guess the stable releases DO include the experimental
>>> code.
>>> 
>>> Usually it helps when experimental features have their own feature
>>> branches or similar. This not being a common practice in the Sword
>>> project, is probably one cause for other experimental code reaching
>>> trunk as well (see the "Infinite loop in SWModule multilemma window
>>> search" thread on this mailing list).
>>> 
>>> Anyway, are you saying that removing/disabling this code will not break
>>> anything for end-users? Because there are no (known?) modules which have
>>> XZ compression? I think there's a risk it has already been used for
>>> production. Can you please elaborate?
>>> 
>>> Best regards,
>>> J
>>> 
>>> PS: Unrelated to the issue at hand, but this article might be of
>>> interest to the Sword project: "Xz format inadequate for long-term
>>> archiving" http://www.nongnu.org/lzip/xz_inadequate.html
>>> 
>>> On 03.11.2016 08:51, Peter von Kaehne wrote:
>>>> Leaving aside the question of a bug, xzcompress.cpp is experimental code. 
>>>> It is not included in any releases so far AFAIK and should not be compiled 
>>>> into releases or used by frontends. 
>>>> 
>>>> At least under autotools you need to ask to include it. 
>>>> 
>>>> We have no modules created with it and would currently not allow any 
>>>> either. The only currently used and acceptable compression is zip.
>>>> 
>>>> HTH
>>>> 
>>>> Peter
>>>> Sent from my phone. Apologies for brevity and typos.On 3 Nov 2016 02:50, 
>>>> TS <outofthec...@icloud.com> wrote:
>>>>> 
>>>>> In xzcomprs.cpp, at line 30, there’s the code:
>>>>> 
>>>>> #include 
>>>>> 
>>>>> Xcode was not happy about this since there is no header named this. It 
>>>>> seems that in the previous version of PocketSword, the fix was just to 
>>>>> set Xcode as to not include this file when compiling so that’s what I’m 
>>>>> doing too. Since the SWORD framework does not include lzma.h as a file, 
>>>>> this seems like a bug to me, but perhaps there's a reason for it?
>>>>> 
>>>>> I couldn’t find any reference regarding this matter in specific in the 
>>>>> wiki or mailing list.
>>>>> 
>>>>> 
>>>>> -TS
>>>> ___
>>>> 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
>>>> 
>>> 
>>> ___
>>> 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
>> ___
>> 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
>> 
> 
> 
> ___
> 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


___
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: 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);
}
catch(Throwable t)
{
// print the exception/error, e.g.:
import std.writeln;
writeln(e.toString());
// terminate program
import core.stdc.stdlib : exit;
exit(1);
}
}

return spawn(, func, params);
}

void main()
{
auto tID = mySpawn();
...
}

-Steve


I found the solution which works with dmd and ldc2:

...
import core.stdc.stdlib: _Exit;
_Exit(exitcode);
...



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:~# ./newthread
object.Exception@newthread.d(30): Everything is bad.

??:? void newthread.func() [0x451f52]
??:? void newthread.mySpawn!(void function()*).mySpawn(void 
function()*).callIt(void function()*) [0x452037]
??:? void std.concurrency._spawn!(void function(void 
function()*)*, void function()*)._spawn(bool, void function(void 
function()*)*, void function()*).exec() [0x4529f4]

??:? void core.thread.Thread.run() [0x46f1f1]
??:? thread_entryPoint [0x46ef1b]
??:? [0x42d00a3]
uncaught exception
dwarfeh(224) fatal error
Aborted



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  JENKINS-27722  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: upgrade to the release plugin has left the plugin broken   
 

  
 
 
 
 

 
 Daniel Beck: The situation is that I have installed Jenkins from scratch yesterday and installed Release Plugin on that fresh Jenkins instance. Of course I have restarted it to activate the plugin (among others), but this was not the upgrade of the plugin. This is what /jenkins/whoAmI shows: 

 

org.acegisecurity.providers.UsernamePasswordAuthenticationToken@23075750: Username: dma_k; Password: [PROTECTED]; Authenticated: true; Details: null; Granted Authorities: authenticated
 

  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 with dmd v2.071.2 and ldc2 0.17.2. OS - Linux.


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 = spawn(!someFunc);
// ...

}
```


Well... This code shows me:
object.Exception@thread.d(6): I'm an exception


But my main thread still working :(
Why so strange default behavior do not kill other threads in case 
some of threads raise exception?

But thanks anyway.


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 running and I don't see any errors.

I want to kill all my threads if it is unhandled exception.
How can I do that?


[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  JENKINS-27722  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: upgrade to the release plugin has left the plugin broken   
 

  
 
 
 
 

 
 I have the same issue with Release Plugin v2.6.1. I use "Logged-in users can do anything" authorization mode and "Matrix-based security" is not an option for me. Richard Otter: What is the workaround? Enable matrix and tick all checkboxes, save, and then switch back to "Logged-in users can do anything"?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 listeden gelen 
e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1 
dakika içinde üyeliğinizi sonlandırabilirsiniz.
https://liste.linux.org.tr/mailman/listinfo/linux-sunucu


[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 in 
the xml editor. I spend so much time looking at android studio thinking 
what?!?!? than i do when i look at php, or xml or java! Im really agitated 
at this ide right now, its been a huge set back and multiple points and 
considering it is made by google i dont understand why it doesnt reflect 
their normal AAA +++ product/service reputation.

I get that im new to coding and to android studio ide, i get there will be 
a set back to learn the ide.. But some things just make no sense to me at 
all, and i try to look it all up and read about it and try to understand 
whats what but i end up wasting so much time doing that for every single 
damn issue i have with this ide and i still dont get the answers!! Its 
really annoying. I try to set the buttons down with the xml editor because 
i prefer it, but when i set the buttons and try to resize them, itll throw 
all my buttons around and even resize other buttons i didnt even select, 
and if i try to change the back ground transparency on a button itll resize 
the button! wtf?!?! I changed the color, why are you resizing!!?!? SO 
annoying.. Again with my methods now, i write intent, blah blah 
startActivity intent etc works fine, i go to link it to a button via the 
xml editor and it doesnt work. If i even touch the Onclick dropdown on the 
xml editor it unsets the method from the button and even when i reset it, 
it will not tie it to the button, itll show i chose that method but on the 
.class file the method remains uncalled and at runtime i crash upon 
pressing the button.. 

I dont get it because ive done this before, before all the updates and it 
worked fine, i try again now and it wont work. I would just like to work on 
my app and learning java without having to deal with this ide's bs!

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d5e58910-f236-4f53-a844-41829893e771%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 executes the above shell code:-

package main
import (
"fmt"
"os/exec")

func main() {
_, err := exec.Command("/Users/debraj/copy.sh", "/Users/debraj/temp.txt", 
"/Users/debraj/gotest/").Output()
if err != nil {
fmt.Println("Failed to execute command " + err.Error())
return
}
fmt.Printf("\nCopy Successful - %v")}

The above code is showing be the below output:-

jabongs-MacBook-Pro-4:src debraj$ go run copyerr.go Failed to execute command 
exit status 1
jabongs-MacBook-Pro-4:src debraj$ 

But the error I receive from shell script looks like below:-

jabongs-MacBook-Pro-4:~ debraj$ ./copy.sh /Users/debraj/temp.txt 
/Users/debraj/gotest/
cp: /Users/debraj/gotest/temp.txt: Permission denied 

Can someone let me know how how can I get the same error message that is 
returned by the shell script?

If I don;t do chmod 777 copy.sh and the file has permission as below:-

jabongs-MacBook-Pro-4:~ debraj$ ls -la copy.sh -rw-r--r--  1 debraj  staff  21 
Sep 29 13:28 copy.sh

Then the golang code gives the output as given by the shell script. Can 
some also let me know why this is behaving like this?

I am on

   - Golang 1.7
   - Mac OS X 10.11.4

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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
> package github.com/jabong/florest-core/examples: cannot find package "
> github.com/jabong/florest-core/examples" in any o
>
>
> But that package isn't go gettable at first place anyway. 
>
>
> Le mardi 27 septembre 2016 12:12:48 UTC+2, suba...@gmail.com a écrit :
>>
>> Hi All,
>> Please check this https://github.com/jabong/florest-core.
>>
>> Thanks.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 willing to license their 
>> work. I know of one publisher of a popular module in 
>> particular that would not.
> 
> Of course, this is yet another example of the complete mess 
> about the Biblical modules. Is there somewhere a list of all 
> modules with their appropriate licenses under they are 
> distributed, or are all of them (except for the three 
> I maintain) proprietary? Which modules are explicitly permitted 
> to be used only with the code you control?
> 
> I would like to know so that I can file a bug against SwordJS, 
> that it must eliminate some modules to comply.
> 
See DistributionLicense in https://crosswire.org/wiki/DevTools:conf_Files 
<https://crosswire.org/wiki/DevTools:conf_Files>.
Basically if it says:
Copyrighted; Permission to distribute granted to CrossWire
then it is specific to CrossWire.
Note, compare this as case insensitive, allowing whitespace and variations in 
punctuation. In one instance it has “CrossWire Bible Society”. In another it 
has a couple extra words after copyrighted.
Our wiki says it should be verbatim which is meant to allow simple filtering.

Modules from other repositories might have a different company name.
I’d suggest the following regexp:
m/.*permission\s+to\s+distribute\s+granted\s+to.*/i

If it merely says:
Copyrighted
then we haven’t stated any further distribution restrictions, but it’d probably 
be best to exclude as well unless the conf says elsewhere it is ok. We try not 
to use this string, but it is present in 5 modules.

Hope this helps.

In His Service,
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

Re: [sword-devel] Announcing Sword++

2016-09-26 Thread DM Smith
Jaak,

Many of our copyrighted modules are licensed only to CrossWire for their 
distribution. This has nothing to do with GPL or other software licenses. When 
we negotiate for rights we try to be clear that CrossWire's software libraries 
(SWORD and JSword) are used by many front-ends on many platforms and that they 
are licensing their modules for all front-ends based upon that software. We’ve 
tried to maintain the modules' confs to help in distinguishing between these 
modules and others.

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 
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 <j...@ristioja.ee> wrote:
> 
> Thank you, Troy!
> 
> On 26.09.2016 20:29, Troy A. Griffitts wrote:
>> I can foresee a few problems for Bibletime not basing development on
>> libsword, one primarily being that the software will need to discern the
>> distribution rights of the module repository, if you still plan to point
>> Bibletime to CrossWire to obtain modules.  I'd like to support you the
>> best we can and that probably means that we need to release a lower
>> level bundle of possibly C-only code which can access our binary format
>> and let you base your development on that.  This will still, in name,
>> allow you to say you are using the SWORD library and still have legal
>> access to modules which have distribution rights granted to CrossWire. 
>> We should spend the time to do this for you; otherwise, your software
>> will need to be aware of which modules are freely distributable and you
>> are certainly welcome to have your users download those from our server.
> 
> Can you please elaborate more on these restrictions, please? I'm no
> lawyer and I'm a bit confused. Because on one hand, the software is
> licensed under the GNU GPL2, which means that anyone can modify and
> build upon it, rename it etc etc, and IMHO there is not much Crosswire
> can do to prevent anyone from doing so, except perhaps when you release
> the software under some other license and implement some form of DRM
> (but I guess you need the consent of all developers who have contributed
> GPL-2 code to the code?). Factually, the distribution point of the
> modules seems to be the web server, which you control anyway. So as far
> as I know, one can download the modules using a web browser. I don't
> understand how anyone outside of Crosswire is legally bound to "using
> the SWORD library" for that. But if that still holds, I don't think one
> could bar anyone from calling Sword++ a patched version of the SWORD
> library. I guess distros may also be using patched versions of SWORD.
> 
> Many blessings,
> J
> 
> ___
> 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


___
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

[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 
//  * https://onsi.github.io/ginkgo/ for executing the tests 
// 
// 
package hello_world


But the godoc is showing up as below with Pre-requisites not as title:-








Can someone let me know what is going wrong?

Environment:-


   - Go 1.7
   - Mac OSX El Capitan

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 explained.

The code in the slide returns if there is nothing returned by boring for 1 
second.

Is my below understanding correct:-

So when the program starts let say the below code is executed 

case <- time.After(1 * time.Second)

fmt.Println("You're too slow.") 

return 

before the below:-

case s := <- c
fmt.Println(s) 


So a timer is started for 1 second. Before 1 second is over let's say boring 
writes something to channel c then case s := <- c will be executed. The 
moment somthing is written on channel c the timer that was started gets 
garbage collected and therefore it never returns the current time on the 
channel after 1 second?

I am pasting the code below:-

func boring(msg string) <-chan string { // Returns receive-only channel of 
strings.

c := make(chan string)
go func() { // We launch the goroutine from inside the function.
for i := 0; ; i++ {
c <- fmt.Sprintf("%s %d", msg, i)
time.Sleep(time.Duration(rand.Intn(1e3)) * time.Millisecond)
}
}()
return c // Return the channel to the caller.
}


func main() {
c := boring("Joe")
for {
select {
case s := <-c:
fmt.Println(s)
case <-time.After(1 * time.Second):
fmt.Println("You're too slow.")
return
}
}
}

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [sword-devel] MiTM

2016-09-18 Thread DM Smith
We are now using a good cert for the CrossWire server, but I don’t know if all 
SSL services use it yet. I’d be interested if a client has that changed from 
false to true would properly work. It shouldn’t allow a self signed cert, which 
is what we used to do.

If it doesn’t work, then I’d have 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 instead :)
> 
> https://github.com/bibletime/crosswire-sword-mirror/blob/trunk/src/mgr/curlhttpt.cpp
> 
> J
> 
> On 18.09.2016 20:55, Greg Hellings wrote:
>> https://curl.haxx.se/libcurl/c/CURLOPT_SSL_VERIFYPEER.html
>> 
>> Is curlhttpt.c used for HTTPS? I don't have the source in front of me,
>> but that name suggests it is only for the raw HTTP connection.
>> 
>> --Greg
>> 
>> 
>> On Sep 18, 2016 12:05 PM, "DM Smith" <dmsm...@crosswire.org
>> <mailto:dmsm...@crosswire.org>> wrote:
>> 
>>I'll look into it. 
>> 
>> 
>>On Sep 18, 2016, at 11:20 AM, Jaak Ristioja <j...@ristioja.ee
>><mailto:j...@ristioja.ee>> 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 certificates for MiTM.
>>> 
>>>Best regards,
>>>J
>>> 
>>>___
>>>sword-devel mailing list: sword-devel@crosswire.org
>>><mailto:sword-devel@crosswire.org>
>>>http://www.crosswire.org/mailman/listinfo/sword-devel
>>><http://www.crosswire.org/mailman/listinfo/sword-devel>
>>>Instructions to unsubscribe/change your settings at above page
>> 
>>___
>>sword-devel mailing list: sword-devel@crosswire.org
>><mailto:sword-devel@crosswire.org>
>>http://www.crosswire.org/mailman/listinfo/sword-devel
>><http://www.crosswire.org/mailman/listinfo/sword-devel>
>>Instructions to unsubscribe/change your settings at above page
>> 
>> 
>> 
>> ___
>> 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
>> 
> 
> 
> ___
> 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


___
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] 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 certificates for MiTM.
> 
> Best regards,
> J
> 
> ___
> 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
___
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

[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 work on  JENKINS-35511  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 daniel mozo  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 and analyzed. This has opened up a plethora of 
interesting research questions and applications in (but not limited to) data 
collection, data integration, data understanding, data mining, knowledge 
discovery, causality detection and data mining. The aim of this workshop is to 
bring together leading practitioners and researchers from the industry, 
academia, and government to discuss significant opportunities for data mining 
and machine learning research in Internet of Things (IoT) and new applications 
with IoT-generated data.

Topics of Interest

Infrastructure and data integration:
Hardware and software for data collection process
Architectures for mining big IoT data
Database and data integration
Data mining use cases
Data mining application in healthcare, automotive, advanced manufacturing, 
smart cities, smart homes, and others
Data mining in optimizing industrial process
Visualization of IoT data
Data mining for safety improvement
Data security and preserving privacy
Multiple data source mining
Data mining methods for IoT
Mining and analysis of spatial or temporal data
Data mining methods on large scale learning
Event detection methodologies
Handling of uncertain/noisy data
Real-time data mining
Knowledge discovery in streaming data

IMPORTANT DATES
Submission deadline: August 5, 2016. August 19, 2016
Notification Due: September 13, 2016.
Final Version Due : September 20, 2016.

Submissions
Paper submissions should be limited to a maximum of 8 pages in the standard 
IEEE 2-column 
format,
 including the bibliography and any possible appendices.
All papers must be formatted according to the IEEE Computer Society proceedings 
manuscript style, following IEEE ICDM 2016 submission guidelines available at 
http://icdm2016.eurecat.org/.
Papers should be submitted in PDF format, electronically, using the IEEE ICDM 
CyberChair 
system.

Best Paper Award (a cash award and certificate) will be announced during the 
DMIoT workshop.

DMIoT 2016 website: 
www.bosch-analytics.com/ICDM16IoT/





___
uai mailing list
uai@ENGR.ORST.EDU
https://secure.engr.oregonstate.edu/mailman/listinfo/uai


[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 and analyzed. This has opened up a plethora of 
interesting research questions and applications in (but not limited to) data 
collection, data integration, data understanding, data mining, knowledge 
discovery, causality detection and data mining. The aim of this workshop is to 
bring together leading practitioners and researchers from the industry, 
academia, and government to discuss significant opportunities for data mining 
and machine learning research in Internet of Things (IoT) and new applications 
with IoT-generated data.

Topics of Interest

Infrastructure and data integration:
Hardware and software for data collection process
Architectures for mining big IoT data
Database and data integration
Data mining use cases
Data mining application in healthcare, automotive, advanced manufacturing, 
smart cities, smart homes, and others
Data mining in optimizing industrial process
Visualization of IoT data
Data mining for safety improvement
Data security and preserving privacy
Multiple data source mining
Data mining methods for IoT
Mining and analysis of spatial or temporal data
Data mining methods on large scale learning
Event detection methodologies
Handling of uncertain/noisy data
Real-time data mining
Knowledge discovery in streaming data

IMPORTANT DATES
Submission deadline: August 5, 2016. August 12, 2016
Notification Due: September 13, 2016.
Final Version Due : September 20, 2016.

Submissions
Paper submissions should be limited to a maximum of 8 pages in the standard 
IEEE 2-column 
format,
 including the bibliography and any possible appendices.
All papers must be formatted according to the IEEE Computer Society proceedings 
manuscript style, following IEEE ICDM 2016 submission guidelines available at 
http://icdm2016.eurecat.org/.
Papers should be submitted in PDF format, electronically, using the IEEE ICDM 
CyberChair 
system.

Best Paper Award (a cash award and certificate) will be announced during the 
DMIoT workshop.

DMIoT 2016 website: 
www.bosch-analytics.com/ICDM16IoT/





___
uai mailing list
uai@ENGR.ORST.EDU
https://secure.engr.oregonstate.edu/mailman/listinfo/uai


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 some new cert signing technology which
>> expires frequently but that we can renew without paying-- if I remember
>> correctly and I'm sure other will know what I'm speaking of.  Is this
>> something we can automate?  How has it worked out?
>> 
>> Troy
>> 
>> 
>> 
>>> On 08/05/2016 04:43 PM, Jaak Ristioja wrote:
>>> Hi!
>>> 
>>> The HTTPS certificate for crosswire.org seems to have expired and needs
>>> to be updated for the Wiki, SVN etc to be properly accessible.
>>> 
>>> God bless!
>>> J
>>> 
>>> ___
>>> 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
>> 
>> 
>> ___
>> 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
> 
> -- 
> ad...@bible.salterrae.net
> 
> ___
> 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

___
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


[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 error checking. The unsafe mode is faster since 
operations won't hold on waiting for a confirmation.

If the safe parameter is not nil, any changing query (insert, update, ...) will 
be followed by a getLastError command with the specified parameters, to ensure 
the request was correctly processed.

The default is {}, meaning check for errors and use the default behavior 
for all fields.

Looking at the code 
 it 
seems it will call getLastError with values j:false, w:0, wtimeout:0. This 
means it will not return any error from mongo and the behavior seems to be 
similar while calling SetSafe(nil).

Then what error I am expected to receive while calling mongo with 
SetSafe({})?

I am on Mongo 3.0.9.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2016-07-23 Thread O Dm
Betikte ve görevde herhangi bir değişiklik yapılmamasına rağmen betiğin
çalıştığını gördüm. log'lara baktığımda cihaz elektrik kesintisinden dolayı
reboot etmiş gözüküyor. mail kutularınızı gereksiz işgal ettiğim için özür
dilerim.

Yine de yazayım en azından bilmeyen arkadaşlara yararı olur. Bu hatanın
çözümü sırasında karşılaştığım ve sıkça yaşanan sorunlara çözüm olarak 3
farktöre dikkat edilmeli.


   - Hatalı crontab yazım formatı
   - Eksik izinler
   - Betiğin çalışacağı ortamın düzgün belirtilmemesi



22 Temmuz 2016 17:18 tarihinde Eray Aslan <er...@a21an.org> yazdı:
>
> 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
> bir makinada cron calistirmak hata.  Distro'nun izin vermiyor olmasi
> gerekirdi.
>
> --
> Eray
> ___
> 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 listeden gelen
e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1
dakika içinde üyeliğinizi sonlandırabilirsiniz.
> https://liste.linux.org.tr/mailman/listinfo/linux-sunucu
___
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 listeden gelen 
e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1 
dakika içinde üyeliğinizi sonlandırabilirsiniz.
https://liste.linux.org.tr/mailman/listinfo/linux-sunucu


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

2016-07-22 Thread O Dm
Farklı dağıtımlarda çalıştırdım. Malesef değişen birşey yok. Çözüm bulmaya
çalışacağım. Halledince buraya yazarım. Teşekkürler ilginiz için.

22 Temmuz 2016 15:11 tarihinde Emrah Atalay <atalay.em...@gmail.com> yazdı:

> Kullanmakta oldugunuz dagitimi bilmemekle beraber cron programinin neden
> servis altında degil de foreground da calistiginin uzerine gidebilirsiniz
> ama her kosulda, tetiklenmesi gerekir. Dedigim gibi syslog dosyasinin tum
> icerigini gonderirseniz, belki birseyler yakalayabiliriz
>
> Kolayliklar
>
> 22 Temmuz 2016 Cuma tarihinde, A.Gurcan OZTURK <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/null 'a gidecektir.
>>
>>
>>
>>
>>
>> 2016-07-22 11:18 GMT+03:00 O Dm <duyo...@gmail.com>:
>>
>>> 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*
>>>>
>>>> PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
>>>>
>>>> PYTHONPATH=/usr/bin/python
>>>>
>>>> * * * * * python /home/od/Desktop/Object.py
>>>>
>>>> * * * * * /home/od/Desktop/Object.py
>>>>
>>>> * * * * * od /home/od/Desktop/Object.py
>>>>
>>>> * * * * * od /usr/bin/python /home/od/Desktop/Object.py
>>>>
>>>> * * * * * /usr/bin/python /home/od/Desktop/Object.py
>>>>
>>>> * * * * * python /home/od/Desktop/Object.py
>>>>
>>>> * * * * * python /home/od/Desktop/Group.py
>>>>
>>>> * * * * * root python /home/od/Desktop/Group.py
>>>>
>>>> * * * * * od python /home/od/Desktop/Group.py
>>>>
>>>>
>>>
>>>> *service cron status çıktısı*Tem 22 10:37:01 od CRON[7552]:
>>>> pam_unix(cron:session): session opened for user o
>>>> Tem 22 10:37:01 od CRON[7566]: (od) CMD (python
>>>> /home/od/Desktop/Object-Uso
>>>> Tem 22 10:37:01 od CRON[7567]: (od) CMD (od
>>>> /home/od/Desktop/Object-Usom.py
>>>> Tem 22 10:37:01 od CRON[7550]: (CRON) info (No MTA installed,
>>>> discarding output)
>>>> Tem 22 10:37:01 od CRON[7550]: pam_unix(cron:session): session closed
>>>> for user o
>>>> Tem 22 10:37:01 od CRON[7551]: pam_unix(cron:session): session closed
>>>> for user o
>>>> Tem 22 10:37:01 od CRON[7548]: pam_unix(cron:session): session closed
>>>> for user o
>>>> Tem 22 10:37:02 od CRON[7546]: pam_unix(cron:session): session closed
>>>> for user o
>>>> Tem 22 10:37:02 od CRON[7549]: (CRON) info (No MTA installed,
>>>> discarding output)
>>>> Tem 22 10:37:02 od CRON[7549]: pam_unix(cron:session): session closed
>>>> for user o
>>>>
>>>
>>>
>>>> *Scriptimin başlığı *
>>>
>>> #!/usr/bin/env python
>>>
>>> # -*- coding: utf-8 -*-
>>>
>>> #PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
>>>
>>> import re
>>>
>>> import os
>>>
>>> import random
>>>
>>> import sys
>>>
>>> import urllib2
>>>
>>>
>>> ___
>>> 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 listeden
>>> gelen e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini
>>> kullanarak 1 dakika içinde üyeliğinizi sonlandırabilirsiniz.
>>> https://liste.linux.org.tr/mailman/listinfo/linux-sunucu
>>>
>>>
>>
> ___
> 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 listeden gelen
> e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1
> dakika içinde üyeliğinizi sonlandırabilirsiniz.
> https://liste.linux.org.tr/mailman/listinfo/linux-sunucu
>
>
___
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 listeden gelen 
e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1 
dakika içinde üyeliğinizi sonlandırabilirsiniz.
https://liste.linux.org.tr/mailman/listinfo/linux-sunucu


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

2016-07-22 Thread O Dm
*od@od:~$ sudo ls -lah /var/spool/cron/crontabs*
total 12K
drwx-wx--T 2 root crontab 4,0K Tem 22 14:37 .
drwxr-xr-x 3 root root4,0K Nis 21 01:08 ..
-rw--- 1 od   crontab  299 Tem 22 14:37 od
*od@od:~$ ps aux|grep cron*
root  2853  0.0  0.0  37480  3296 ?Ss   11:52   0:00
/usr/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, O Dm <duyo...@gmail.com> yazdı:
>
>> 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 genede sonuç yok. İzinleri verdim. Farklı path'lerde denedim.
>>> Sorun
>>> > nerede?
>>>
>>> > > Tem 22 10:37:01 od CRON[7550]: (CRON) info (No MTA installed,
>>> discarding
>>>
>>> Bunu duzeltin.  Gelen email hatayi tahminen anlatacaktir.
>>>
>>> --
>>> Eray
>>> ___
>>> 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 listeden
>>> gelen e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini
>>> kullanarak 1 dakika içinde üyeliğinizi sonlandırabilirsiniz.
>>> https://liste.linux.org.tr/mailman/listinfo/linux-sunucu
>>>
>>
>>
> ___
> 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 listeden gelen
> e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1
> dakika içinde üyeliğinizi sonlandırabilirsiniz.
> https://liste.linux.org.tr/mailman/listinfo/linux-sunucu
>
>
___
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 listeden gelen 
e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1 
dakika içinde üyeliğinizi sonlandırabilirsiniz.
https://liste.linux.org.tr/mailman/listinfo/linux-sunucu


[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 genede sonuç yok. İzinleri verdim. Farklı path'lerde denedim.
> Sorun
> > nerede?
>
> > > Tem 22 10:37:01 od CRON[7550]: (CRON) info (No MTA installed,
> discarding
>
> Bunu duzeltin.  Gelen email hatayi tahminen anlatacaktir.
>
> --
> Eray
> ___
> 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 listeden gelen
> e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1
> dakika içinde üyeliğinizi sonlandırabilirsiniz.
> https://liste.linux.org.tr/mailman/listinfo/linux-sunucu
>
___
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 listeden gelen 
e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1 
dakika içinde üyeliğinizi sonlandırabilirsiniz.
https://liste.linux.org.tr/mailman/listinfo/linux-sunucu


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

2016-07-22 Thread O Dm
>
> Jul 22 14:30:01 od cron[2853]: (od) RELOAD (crontabs/od)
> Jul 22 14:35:19 od crontab[10585]: (od) BEGIN EDIT (od)
> Jul 22 14:36:01 od crontab[10585]: (od) REPLACE (od)
> Jul 22 14:36:01 od crontab[10585]: (od) END EDIT (od)
> Jul 22 14:36:06 od crontab[10608]: (od) LIST (od)
> Jul 22 14:36:48 od crontab[10636]: (od) LIST (od)
> Jul 22 14:37:01 od cron[2853]: (od) RELOAD (crontabs/od)
> Jul 22 14:37:06 od crontab[10645]: (od) BEGIN EDIT (od)
> Jul 22 14:37:33 od crontab[10645]: (od) REPLACE (od)
> Jul 22 14:37:33 od crontab[10645]: (od) END EDIT (od)
> Jul 22 14:38:01 od cron[2853]: (od) RELOAD (crontabs/od)


onu çoktan denemiştim, çalışmıyor


22 Temmuz 2016 14:24 tarihinde Emrah Atalay <atalay.em...@gmail.com> yazdı:

> Aa PATH ve PYTHONPATH satırlarını ucurup
>
> Su sekilde deneyebilir misiniz
>
> * * * * * /usr/bin/python /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 crontab 4,0K Tem 22 14:11 .
>>> drwxr-xr-x 3 root root4,0K Nis 21 01:08 ..
>>> -rw--- 1 od   crontab  379 Tem 22 14:11 od
>>>
>>> *od@od:~$ sudo cat /var/spool/cron/crontabs/$USER*# DO NOT EDIT THIS
>>> FILE - edit the master and reinstall.
>>> # (/tmp/crontab.FdQ6Kt/crontab installed on Fri Jul 22 14:11:23 2016)
>>> # (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $)
>>>
>>> PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
>>> PYTHONPATH=/usr/bin/python
>>> * * * * * od python /home/od/Desktop/object.py
>>
>>
>> crontab -e ile editliyorum
>>
>>
>> 22 Temmuz 2016 13:58 tarihinde Emrah Atalay <atalay.em...@gmail.com>
>> yazdı:
>>
>>> /var/spool/cron/crontables dizininde neler var?
>>>
>>> sudo ls -lah /var/spool/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ı 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/Desktop/Object.py
>>>>>>
>>>>>> * * * * * od /home/od/Desktop/Object.py
>>>>>>
>>>>>> * * * * * od /usr/bin/python /home/od/Desktop/Object.py
>>>>>>
>>>>>> * * * * * /usr/bin/python /home/od/Desktop/Object.py
>>>>>>
>>>>>> * * * * * python /home/od/Desktop/Object.py
>>>>>>
>>>>>> * * * * * python /home/od/Desktop/Group.py
>>>>>>
>>>>>> * * * * * root python /home/od/Desktop/Group.py
>>>>>>
>>>>>> * * * * * od python /home/od/Desktop/Group.py
>>>>>>
>>>>>>
>>>>> Bir de şu *'ların bolluğu dikkatimi çekti. Hepsini yıldız yapmışsınız.
>>>>>
>>>>> --
>>>>> Saygılar,
>>>>> Aytekin Aygün
>>>>>
>>>>>
>>>>> ___
>>>>> Linux-programlama mailing list
>>>>> Linux-programlama@liste.linux.org.tr
>>>>> https://liste.linux.org.tr/mailman/listinfo/linux-programlama
>>>>> Liste kurallari: http://liste.linux.org.tr/kurallar.php
>>>>>
>>>>>
>>>>
>>> ___
>>> Linux-programlama mailing list
>>> Linux-programlama@liste.linux.org.tr
>>> https://liste.linux.org.tr/mailman/listinfo/linux-programlama
>>> Liste kurallari: http://liste.linux.org.tr/kurallar.php
>>>
>>>
>>
> ___
> Linux-programlama mailing list
> Linux-programlama@liste.linux.org.tr
> https://liste.linux.org.tr/mailman/listinfo/linux-programlama
> Liste kurallari: http://liste.linux.org.tr/kurallar.php
>
>
___
Linux-programlama mailing list
Linux-programlama@liste.linux.org.tr
https://liste.linux.org.tr/mailman/listinfo/linux-programlama
Liste kurallari: http://liste.linux.org.tr/kurallar.php


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

2016-07-22 Thread O Dm
>
>
> *od@od:~$ sudo ls -lah /var/spool/cron/crontabs*total 12K
> drwx-wx--T 2 root crontab 4,0K Tem 22 14:11 .
> drwxr-xr-x 3 root root4,0K Nis 21 01:08 ..
> -rw--- 1 od   crontab  379 Tem 22 14:11 od
>
> *od@od:~$ sudo cat /var/spool/cron/crontabs/$USER*# DO NOT EDIT THIS FILE
> - edit the master and reinstall.
> # (/tmp/crontab.FdQ6Kt/crontab installed on Fri Jul 22 14:11:23 2016)
> # (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $)
>
> PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
> PYTHONPATH=/usr/bin/python
> * * * * * od python /home/od/Desktop/object.py


crontab -e ile editliyorum


22 Temmuz 2016 13:58 tarihinde Emrah Atalay <atalay.em...@gmail.com> yazdı:

> /var/spool/cron/crontables dizininde neler var?
>
> sudo ls -lah /var/spool/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ı 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/Desktop/Object.py
>>>>
>>>> * * * * * od /home/od/Desktop/Object.py
>>>>
>>>> * * * * * od /usr/bin/python /home/od/Desktop/Object.py
>>>>
>>>> * * * * * /usr/bin/python /home/od/Desktop/Object.py
>>>>
>>>> * * * * * python /home/od/Desktop/Object.py
>>>>
>>>> * * * * * python /home/od/Desktop/Group.py
>>>>
>>>> * * * * * root python /home/od/Desktop/Group.py
>>>>
>>>> * * * * * od python /home/od/Desktop/Group.py
>>>>
>>>>
>>> Bir de şu *'ların bolluğu dikkatimi çekti. Hepsini yıldız yapmışsınız.
>>>
>>> --
>>> Saygılar,
>>> Aytekin Aygün
>>>
>>>
>>> ___
>>> Linux-programlama mailing list
>>> Linux-programlama@liste.linux.org.tr
>>> https://liste.linux.org.tr/mailman/listinfo/linux-programlama
>>> Liste kurallari: http://liste.linux.org.tr/kurallar.php
>>>
>>>
>>
> ___
> Linux-programlama mailing list
> Linux-programlama@liste.linux.org.tr
> https://liste.linux.org.tr/mailman/listinfo/linux-programlama
> Liste kurallari: http://liste.linux.org.tr/kurallar.php
>
>
___
Linux-programlama mailing list
Linux-programlama@liste.linux.org.tr
https://liste.linux.org.tr/mailman/listinfo/linux-programlama
Liste kurallari: http://liste.linux.org.tr/kurallar.php


[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/Desktop/Object.py
>>
>> * * * * * od /home/od/Desktop/Object.py
>>
>> * * * * * od /usr/bin/python /home/od/Desktop/Object.py
>>
>> * * * * * /usr/bin/python /home/od/Desktop/Object.py
>>
>> * * * * * python /home/od/Desktop/Object.py
>>
>> * * * * * python /home/od/Desktop/Group.py
>>
>> * * * * * root python /home/od/Desktop/Group.py
>>
>> * * * * * od python /home/od/Desktop/Group.py
>>
>>
> Bir de şu *'ların bolluğu dikkatimi çekti. Hepsini yıldız yapmışsınız.
>
> --
> Saygılar,
> Aytekin Aygün
>
>
> ___
> Linux-programlama mailing list
> Linux-programlama@liste.linux.org.tr
> https://liste.linux.org.tr/mailman/listinfo/linux-programlama
> Liste kurallari: http://liste.linux.org.tr/kurallar.php
>
>
___
Linux-programlama mailing list
Linux-programlama@liste.linux.org.tr
https://liste.linux.org.tr/mailman/listinfo/linux-programlama
Liste kurallari: http://liste.linux.org.tr/kurallar.php


[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*
>
> PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
>
> PYTHONPATH=/usr/bin/python
>
> * * * * * python /home/od/Desktop/Object.py
>
> * * * * * /home/od/Desktop/Object.py
>
> * * * * * od /home/od/Desktop/Object.py
>
> * * * * * od /usr/bin/python /home/od/Desktop/Object.py
>
> * * * * * /usr/bin/python /home/od/Desktop/Object.py
>
> * * * * * python /home/od/Desktop/Object.py
>
> * * * * * python /home/od/Desktop/Group.py
>
> * * * * * root python /home/od/Desktop/Group.py
>
> * * * * * od python /home/od/Desktop/Group.py
>
>

> *service cron status çıktısı*Tem 22 10:37:01 od CRON[7552]:
> pam_unix(cron:session): session opened for user o
> Tem 22 10:37:01 od CRON[7566]: (od) CMD (python /home/od/Desktop/Object-Uso
> Tem 22 10:37:01 od CRON[7567]: (od) CMD (od /home/od/Desktop/Object-Usom.py
> Tem 22 10:37:01 od CRON[7550]: (CRON) info (No MTA installed, discarding
> output)
> Tem 22 10:37:01 od CRON[7550]: pam_unix(cron:session): session closed for
> user o
> Tem 22 10:37:01 od CRON[7551]: pam_unix(cron:session): session closed for
> user o
> Tem 22 10:37:01 od CRON[7548]: pam_unix(cron:session): session closed for
> user o
> Tem 22 10:37:02 od CRON[7546]: pam_unix(cron:session): session closed for
> user o
> Tem 22 10:37:02 od CRON[7549]: (CRON) info (No MTA installed, discarding
> output)
> Tem 22 10:37:02 od CRON[7549]: pam_unix(cron:session): session closed for
> user o
>


> *Scriptimin başlığı *

#!/usr/bin/env python

# -*- coding: utf-8 -*-

#PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin

import re

import os

import random

import sys

import urllib2
___
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 listeden gelen 
e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1 
dakika içinde üyeliğinizi sonlandırabilirsiniz.
https://liste.linux.org.tr/mailman/listinfo/linux-sunucu


[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*
>
> PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
>
> PYTHONPATH=/usr/bin/python
>
> * * * * * python /home/od/Desktop/Object.py
>
> * * * * * /home/od/Desktop/Object.py
>
> * * * * * od /home/od/Desktop/Object.py
>
> * * * * * od /usr/bin/python /home/od/Desktop/Object.py
>
> * * * * * /usr/bin/python /home/od/Desktop/Object.py
>
> * * * * * python /home/od/Desktop/Object.py
>
> * * * * * python /home/od/Desktop/Group.py
>
> * * * * * root python /home/od/Desktop/Group.py
>
> * * * * * od python /home/od/Desktop/Group.py
>
>

> *service cron status çıktısı*Tem 22 10:37:01 od CRON[7552]:
> pam_unix(cron:session): session opened for user o
> Tem 22 10:37:01 od CRON[7566]: (od) CMD (python /home/od/Desktop/Object-Uso
> Tem 22 10:37:01 od CRON[7567]: (od) CMD (od /home/od/Desktop/Object-Usom.py
> Tem 22 10:37:01 od CRON[7550]: (CRON) info (No MTA installed, discarding
> output)
> Tem 22 10:37:01 od CRON[7550]: pam_unix(cron:session): session closed for
> user o
> Tem 22 10:37:01 od CRON[7551]: pam_unix(cron:session): session closed for
> user o
> Tem 22 10:37:01 od CRON[7548]: pam_unix(cron:session): session closed for
> user o
> Tem 22 10:37:02 od CRON[7546]: pam_unix(cron:session): session closed for
> user o
> Tem 22 10:37:02 od CRON[7549]: (CRON) info (No MTA installed, discarding
> output)
> Tem 22 10:37:02 od CRON[7549]: pam_unix(cron:session): session closed for
> user o
>


> *Scriptimin başlığı *

#!/usr/bin/env python

# -*- coding: utf-8 -*-

#PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin

import re

import os

import random

import sys

import urllib2
___
Linux-programlama mailing list
Linux-programlama@liste.linux.org.tr
https://liste.linux.org.tr/mailman/listinfo/linux-programlama
Liste kurallari: http://liste.linux.org.tr/kurallar.php


[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 of 
interesting research questions and applications in (but not limited to) data 
collection, data integration, data understanding, data mining, knowledge 
discovery, causality detection and data mining. The aim of this workshop is to 
bring together leading practitioners and researchers from the industry, 
academia, and government to discuss significant opportunities for data mining 
and machine learning research in Internet of Things (IoT) and new applications 
with IoT-generated data.

Topics of Interest

Infrastructure and data integration:
Hardware and software for data collection process
Architectures for mining big IoT data
Database and data integration
Data mining use cases
Data mining application in healthcare, automotive, advanced manufacturing, 
smart cities, smart homes, and others
Data mining in optimizing industrial process
Visualization of IoT data
Data mining for safety improvement
Data security and preserving privacy
Multiple data source mining
Data mining methods for IoT
Mining and analysis of spatial or temporal data
Data mining methods on large scale learning
Event detection methodologies
Handling of uncertain/noisy data
Real-time data mining
Knowledge discovery in streaming data

IMPORTANT DATES
Submission deadline: August 5, 2016.
Notification Due: September 13, 2016.
Final Version Due : September 20, 2016.

Submissions
Paper submissions should be limited to a maximum of 8 pages in the standard 
IEEE 2-column 
format,
 including the bibliography and any possible appendices.
All papers must be formatted according to the IEEE Computer Society proceedings 
manuscript style, following IEEE ICDM 2016 submission guidelines available at 
http://icdm2016.eurecat.org/.
Papers should be submitted in PDF format, electronically, using the IEEE ICDM 
CyberChair 
system.

Best Paper Award (a cash award and certificate) will be announced during the 
DMIoT workshop.

DMIoT 2016 website: 
www.bosch-analytics.com/ICDM16IoT/





___
uai mailing list
uai@ENGR.ORST.EDU
https://secure.engr.oregonstate.edu/mailman/listinfo/uai


[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 have specified maxIdleConnetions and maxOpenConnections in xorm as 
below:-

var orm *xorm.Engine
...
orm.SetMaxOpenConns(50)
orm.SetMaxIdleConns(5)

And we are using the same single xorm instance to query Mysql.

But still we are seeing lot of connections in TCP Connection Establised state 
which is way over the numbers I have configured in maxIdleConnetions and 
maxOpenConnections state when we lsof:-

app 8747 10568 sandeshsharma 16u IPv4 691032 0t0 TCP 
127.0.0.1:57337->127.0.0.1:mysql (ESTABLISHED)

We have also observed that even if we stop the MySQL, the connection 
numbers still remain fixed but in the CLOSED_WAIT state. If we shutdown the 
app then all connections go away.

app 8747 10844 sandeshsharma 38u IPv4 505058 0t0 TCP 
127.0.0.1:54160->127.0.0.1:mysql (CLOSE_WAIT)

However in mysql process list it is showing the correct number of 
connections as I have specified in maxIdleConnetions and maxOpenConnections.

Can some one please explain me this behaviour? Why are we observing so much 
TCP connections even though we have specified maxIdleConnetions and 
maxOpenConnections to 5 & 50 respectively?




-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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.2. Any 
> idea what could be going wrong? Is this some known issue xorm - 4.3 or 
> some thing other going wrong?
>
> panic: gob: registering duplicate names for models.SalesOrderItemAttribute: 
> "*models.SalesOrderItemAttribute" != 
> "order-subscriber/models.SalesOrderItemAttribute"
>
> goroutine 71 [running]:
> encoding/gob.RegisterName(0xc208120750, 0x2f, 0x9d0cc0, 0xc2084dafc0)
> /usr/local/go/src/encoding/gob/type.go:832 +0x568
> encoding/gob.Register(0x9d0cc0, 0xc2084dafc0)
> /usr/local/go/src/encoding/gob/type.go:884 
> +0x20fgithub.com/go-xorm/xorm.(*Engine).GobRegister(0xc20856e3f0, 0x9d0cc0, 
> 0xc2084dafc0, 0x9d0cc0)
> /home/jabong-release/go/src/github.com/go-xorm/xorm/engine.go:679 
> +0x32github.com/go-xorm/xorm.(*Engine).autoMapType(0xc20856e3f0, 0x9d0cc0, 
> 0xc2084dafc0, 0x59, 0x59)
> /home/jabong-release/go/src/github.com/go-xorm/xorm/engine.go:670 
> +0x290github.com/go-xorm/xorm.(*Session).innerInsertMulti(0xc208606fc0, 
> 0x86d0c0, 0xc2081f5e80, 0x8, 0x0, 0x0)
> /home/jabong-release/go/src/github.com/go-xorm/xorm/session.go:2071 
> +0x30cgithub.com/go-xorm/xorm.(*Session).Insert(0xc208606fc0, 0xc2086153a0, 
> 0x1, 0x1, 0x0, 0x0, 0x0)
> /home/jabong-release/go/src/github.com/go-xorm/xorm/session.go:2034 
> +0x260github.com/go-xorm/xorm.(*Engine).Insert(0xc20856e3f0, 0xc2086153a0, 
> 0x1, 0x1, 0x0, 0x0, 0x0)
> /home/jabong-release/go/src/github.com/go-xorm/xorm/engine.go:1284 +0x99
> order-subscriber/dao.InsertItemAttributes(0xc208223180, 0x8, 0xa, 0x0, 0x0, 
> 0xd5a938, 0x0, 0xd5a938, 0x0, 0xd5a938, ...)
> 
> /var/lib/jenkins/jobs/CI_order-subscriber_pkg_creation/workspace/src/order-subscriber/dao/dao.go:236
>  +0x35d
>
> The code that is throwing that error looks something like below:-
>
> func InsertItemAttributes(data []Model.SalesOrderItemAttribute, rc 
> utilhttp.RequestContext, logKey string) error {
> prf := logger.NewProfiler()
> dataDogAgent := monitor.GetInstance()
> logger.StartProfile(prf, "insert_order_item_attributes")
> xEngine, _ := utils.GetInstance().Orm(true)
> //  xEngine.ShowSQL = true
>
> logger.InfoSpecific(logKey, "Trying to insert item attributes : ", data)
> _, err := xEngine.Insert()
> ...
>
> The structure SalesOrderItemAttribute looks something like below:-
>
> type SalesOrderItemAttribute struct {
> IdSalesOrderItemAttribute int   `xorm:"not null pk autoincr INT(10)"`
> FkSalesOrderAttributeSet  int   `xorm:"not null index INT(10)"`
> FkSalesOrderItem  int   `xorm:"not null index INT(10)"`
> Value string`xorm:"not null VARCHAR(255)"`
> CreatedAt time.Time `xorm:"index DATETIME"`
> UpdatedAt time.Time `xorm:"not null default 
> 'CURRENT_TIMESTAMP' TIMESTAMP"`
> }
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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* *:* *use of 
closed network connection"*,"stackTraces":["/var/lib/jenkins/jobs/CI_
styloko_pkg_creation/workspace/styloko/src/amenities/products/common/
cache_manager.go(295)","/var/lib/jenkins/jobs/CI_styloko_
pkg_creation/workspace/styloko/src/amenities/products/get/search/
exactquery/node_response.go(127)","/usr/local/go/src/
runtime/asm_amd64.s(2232)"],"timestamp":"2016-07-11T19:30:29+05:30"}

{"level":"error","message":"Put 
http://blitz:2196/cache/api/v1/buckets/styloko/entities/product-xlarge-multi-sku-mi162bg58vblindfas
: *net/http: request canceled while waiting for connection"*
,"stackTraces":["/var/lib/jenkins/jobs/CI_styloko_pkg_creation/
workspace/styloko/src/amenities/products/common/
cache_manager.go(295)","/var/lib/jenkins/jobs/CI_styloko_
pkg_creation/workspace/styloko/src/amenities/products/get/search/
exactquery/node_response.go(127)","/usr/local/go/src/
runtime/asm_amd64.s(2232)"],"timestamp":"2016-07-11T19:30:32+05:30"}

Can some one please let me know when does the error "Use of closed network 
connection", "request canceled while waiting for connection" can come?

I am using go 1.5 on Debian 8 64 Bit.

Thanks,
D

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 -

From: "Andreas Jahn"  
To: volt-nuts@febo.com 
Sent: Sunday, July 3, 2016 10:14:16 AM 
Subject: Re: [volt-nuts] Thermal EMF - more results 

Hello, 

I do not know exactly how the Seebeck coefficients are "mixed" within a 
alloy. 
Silver and copper have near equal coefficients. 
Sn should be similar to Pb on the same side of Cu. 
On the other side of Cu there are Cd (no longer allowed for ROHS) and Sb 
(Antimony) and Ge (Germanium). 
So I would go for Sb or Ge doped Tin solders if you do not want to have 
100% Ag + Cu 

With best regards 

Andreas 

Am 03.07.2016 um 12:33 schrieb Andrea Baldoni: 
> Hello. 
> I repeated the experiment with a better setup, I also added some alloys 
> that are already arrived. So far, a really "low" EMF solder hasn't been 
> identified. 
> 
> Measurements have been done between water ice point and boiling point with 
> Agilent 34401A. 
> I don't expect the curves be linear, but here it's assumed they are. 
> 
> Copper - Sn96.5/Ag3/Cu0.5 -> 3.35uV/K 
> Copper - Sn95.5/Ag3.8/Cu0.7 -> 3.22uV/K 
> Copper - Sn60/Pb40 -> 3.34uV/K 
> Copper - Pb92.5/Sn5/Ag2.5 -> 3.02uV/K 
> 
> Copper - Brass -> 3.30uV/K 
> 
> I am waiting for Sn96/Ag4, Sn99/Cu1. 
> 
> Best regards, 
> Andrea Baldoni 
istinfo/volt-nuts 
and follow the instructions there. 

___
volt-nuts mailing list -- volt-nuts@febo.com
To unsubscribe, go to https://www.febo.com/cgi-bin/mailman/listinfo/volt-nuts
and follow the instructions there.


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 origin file 
delivered from backend server. It's kinda weird that even if the 
inactive caching time out is not reached, the file is randomly 
downloaded again from backend.


I guess that I just simply got blind by the configure that affects that.

## /etc/nginx/nginx.conf ##
proxy_cache_path /var/tmp/nginx-cache/rproxy levels=1:2 
keys_zone=rproxy:260m max_size=5g inactive=260m use_temp_path=off;

proxy_cache_key "$scheme$request_method$host$request_uri$is_args$args";
proxy_cache_valid 200 302 45m;
proxy_cache_valid 404 1m;

## /etc/nginx/sites-available/domain.tld ##
server {
listen 80;# default_server;
listen [::]:80;# default_server;

server_name domain.tld;

location / {
return 301 https://$host$request_uri;
}

}

server {

listen 443 ssl http2; #default_server;
listen [::]:443 ssl http2; #default_server;

ssl on;
ssl_certificate /etc/letsencrypt/live/domain.tld/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/domain.tld/privkey.pem;

server_name domain.tld;

location / {
#   proxy_buffering on;
proxy_cache_revalidate on;
proxy_cache_lock on;
proxy_cache rproxy;
	proxy_cache_use_stale error timeout http_500 http_502 http_503 
http_504;

proxy_pass https://rproxy;
}

}


Nginx 1.11.1 is used. And the frontends got only 1gb ram and 10 gb of 
disk space.


I am looking forward for any advice that could bring me some steps 
forward to the right configuration :-)


Thanks in advance!

Best regards,
Daniel



___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx


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, Troy A. Griffitts <scr...@crosswire.org> wrote:
> 
> Dear John,
> 
> I've applied your osisheadings patch mentioned below.  Thank you!
> 
> DM, do you have any comments on the osis2mod patches?  You have been the 
> pumpkin holder for that tool for a while now.  I am happy to apply the 
> patches but, of course, want to defer to you first.
> 
> Troy
> 
> 
> On 06/13/2016 07:35 PM, John Austin wrote:
>> I'm updating old modules in IBT's repository to use CrossWire best practice 
>> OSIS, using usfm2osis.py. So these OSIS files are CrossWire standard, but 
>> the corner cases are revealing some bugs to fix. I've reported these on 
>> Jira, along with patches, but mention them here in case there is discussion 
>> to be had. 
>> 
>> osisheadings.cpp: 
>> - Canonical pre-verse Psalm titles are being filtered out by the 
>> osis-headings filter (like Psalm 10 in SynodalProt which has a canonical 
>> title before verse 1). 
>> 
>> osis2mod.cpp: 
>> - Currently New Testament introductory material is appended to the end of 
>> Malachi rather than being prepended to Matthew's introduction. 
>> 
>> - A majorSection osis2mod.cpp patch from Dec 2014 causes new problems. 
>> Introduction text is now lost when majorSection titles appear in the Bible 
>> or Testament introduction. I believe both the original issue and the new 
>> issues can be fixed by treating majorSection titles (and subSection titles 
>> for good measure) as regular section divs in terms of pre-verse content. 
>> Testing has shown this to work perfectly on IBT's new UZV module which uses 
>> majorTitles in many places (Bible & Testament introductions, Proverbs, and 
>> Daniel). 
>> 
>> -john 
>> 
>> ___ 
>> sword-devel mailing list: sword-devel@crosswire.org 
>> <mailto:sword-devel@crosswire.org> 
>> http://www.crosswire.org/mailman/listinfo/sword-devel 
>> <http://www.crosswire.org/mailman/listinfo/sword-devel> 
>> Instructions to unsubscribe/change your settings at above page 
> 
> ___
> 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

___
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

[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 such file or directory
go install github.com/jabong/florest/src/common/utils/responseheaders: open 
/var/folders/lp/3q9_2mn51hd9s4yj_jcf3jxmgp/T/go-build823644730/github.
com/jabong/florest/src/common/utils/responseheaders.a: no such file or 
directory
go install github.com/jabong/florest/src/service: open /var/folders/lp/
3q9_2mn51hd9s4yj_jcf3jxmgp/T/go-build823644730/github.com/jabong/florest
/src/service.a: no such file or directory


Can some one let me know why this is failing? This is working perfectly 
fine on Ubuntu.

   - Go Lang Version - 1.6.1


-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 a écrit :
>> 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 <lafricai...@gmail.com> wrote:
>>> 
>>> Ok thank you!
>>> 
>>> Le 12/06/2016 07:16, Peter von Kaehne a écrit :
>>>> Cyrille,
>>>> 
>>>> The files you are looking for are in the locale folder within libsword. 
>>>> Fr-utf8.conf
>>>> 
>>>> The Xiphos stuff is in xiphos' source in the po file directory.
>>>> 
>>>> Peter
>>>> Sent from my phone. Apologies for brevity and typos.On 11 Jun 2016 8:20 
>>>> pm, Matěj Cepl <mc...@cepl.eu> wrote:
>>>>>> On 2016-06-11, 09:56 GMT, Fr Cyrille wrote:
>>>>>> I notice a lack of translation for the deutero-canonical books
>>>>>> in Xiphos. I think it's not a lack of translation from xiphos,
>>>>>> but from sword. I would like to help if possible to improve
>>>>>> it. But I don't know how to download the sword .po file (if it
>>>>>> is a .po file I need).
>>>>> There is some confusion going on here. Are we talking about
>>>>> problems with missing deuterocanonical (aka apocryphal) books in
>>>>> the French Bibles, or do you talk about problems of translation
>>>>> menus of the Xiphos Bible program? .po files are used for the
>>>>> latter, and they have absolutely nothing to do with the former.
>>>>> 
>>>>> Blessings,
>>>>> 
>>>>> Matěj
>>>>> 
>>>>> -- 
>>>>> https://matej.ceplovi.cz/blog/, Jabber: mc...@ceplovi.cz
>>>>> GPG Finger: 3C76 A027 CA45 AD70 98B5  BC1D 7920 5802 880B C9D8
>>>>> 
>>>>> http://xkcd.com/743/ … enough said.
>>>>> 
>>>>> ___
>>>>> 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
>>>> ___
>>>> 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
>>> -- 
>>> L'Africain
>>> 
>>> 
>>> ___
>>> 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
>> 
>> ___
>> 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
> 
> -- 
> L'Africain
> 
> 
> ___
> 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


___
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

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

2016-06-12 Thread DM Smith
We have a report that RusVZh does not display Red Letter Text or Strong’s 
Numbers in Eloquent. I have confirmed that is a problem.
Checking The SWORD Project for Windows, it can display either WoC in red or 
Strong’s Numbers.
In Xiphos, it displays WoC in red and shows Strong’s Numbers, but when both are 
selected together it has a few words that are not handled properly. E.g. Matt 
5:7 last word.
BibleDesktop 1.6 is really bad (The WoC are in blue!). BibleDesktop 2.0 has the 
color right, but doesn’t properly handle Strong’s Numbers on the WoC whether 
colored or not.

I also checked Chamorro which has words of Christ and RWebster which has 
Strong’s Numbers and they have the same problem, in Eloquent.

These are the only GBF modules that have WoC or Strong’s Numbers. There are 26 
other modules. 5 of these have footnotes. None of the others have filters or 
features.

Rather than 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 your settings at above page

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 starting to work on a OSIS to USFX converter. Once in 
>> USFX, Haiola can convert it to USFM.
> 
> If you want one rather concise test case, then you may try my 
> CzeCSP file 
> (https://gitlab.com/bible_sword/CzeKMS/raw/master/bible.xml).  
> You get quite a coverage if you can translate without loss that 
> ;).
> 
> Blessings,
> 
> Matěj
> 
> -- 
> https://matej.ceplovi.cz/blog/, Jabber: mc...@ceplovi.cz
> GPG Finger: 3C76 A027 CA45 AD70 98B5  BC1D 7920 5802 880B C9D8
> 
> For a successful technology, reality must take precedence over
> public relations, for nature cannot be fooled.
>-- R. P. Feynman's concluding sentence
>   in his appendix to the Challenger Report
> 
> 
> ___
> 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


___
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] 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 :
>> Cyrille,
>> 
>> The files you are looking for are in the locale folder within libsword. 
>> Fr-utf8.conf
>> 
>> The Xiphos stuff is in xiphos' source in the po file directory.
>> 
>> Peter
>> Sent from my phone. Apologies for brevity and typos.On 11 Jun 2016 8:20 pm, 
>> Matěj Cepl  wrote:
 On 2016-06-11, 09:56 GMT, Fr Cyrille wrote:
 I notice a lack of translation for the deutero-canonical books
 in Xiphos. I think it's not a lack of translation from xiphos,
 but from sword. I would like to help if possible to improve
 it. But I don't know how to download the sword .po file (if it
 is a .po file I need).
>>> There is some confusion going on here. Are we talking about
>>> problems with missing deuterocanonical (aka apocryphal) books in
>>> the French Bibles, or do you talk about problems of translation
>>> menus of the Xiphos Bible program? .po files are used for the
>>> latter, and they have absolutely nothing to do with the former.
>>> 
>>> Blessings,
>>> 
>>> Matěj
>>> 
>>> -- 
>>> https://matej.ceplovi.cz/blog/, Jabber: mc...@ceplovi.cz
>>> GPG Finger: 3C76 A027 CA45 AD70 98B5  BC1D 7920 5802 880B C9D8
>>> 
>>> http://xkcd.com/743/ … enough said.
>>> 
>>> ___
>>> 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
>> ___
>> 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
> 
> -- 
> L'Africain
> 
> 
> ___
> 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


___
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

[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 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-35511 
 
 
 
  Drupal developer plugin doesn't work on master/slave configuration  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Feng Tan 
 
 
 

Components:
 

 drupal-developer-plugin 
 
 
 

Created:
 

 2016/Jun/09 6:56 PM 
 
 
 

Environment:
 

 Linux 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 daniel mozo 
 
 
 
 
 
 
 
 
 
 
In a master/slave configuration, with the drupal developer plugin, if you configure a jenkins slave to execute a job that perform a revision on code it fails with a directory not found thought the directory exits and is writeable in the slave.  
The problem is the slave pulls the code from git repository and executes drush commands, but when writes coder-review.xml, it does in the master node workspace instead in the slave node workspace that perform the job. If you create the same directory in the master, the jobs works ok, but results aren't published to checkstyle. If you copy the coder-review.xml to the slave workspace logs directory, then you can see that results are readed from the workspace of the slave.  
Drush coder review -> writes to the master workspace  Checkstyle results -> read from slave workspace  
As a workaround, workspace in a nfs share does the trick.  
 
 
 

Re: [sword-devel] Missing verse in AndBible

2016-05-21 Thread DM Smith
Yesterday, I double checked Wisdom in all the versifications and chapter 16 had 
no problems. They all had 29 for the value.

If any v11n in JSword has a difference, it will be seen in all verses in the 
same “testament” after that point. (The apocrypha is placed not in it’s own 
testament but in either the OT or the NT. No examples today where it is in the 
NT, but it is allowed in the software.) There was no problem reported that 
Wisdom 17 was off. Or anything else subsequent in the OT.

BTW, If you diff the corresponding canon*h and System*.java, ignoring 
whitespace 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, Troy A. Griffitts <scr...@crosswire.org> wrote:
> 
> This is just a guess, but I know AndBible uses JSword and Xiphos uses SWORD 
> (C++), so could there be a difference in the versification scheme between 
> SWORD and JSword? What v11n is the module using?
> 
> On May 21, 2016 1:35:30 AM GMT+02:00, Kahunapule Michael Johnson 
> <kahunap...@ebible.org <mailto:kahunap...@ebible.org>> wrote:
> See below:
> 
> On 05/20/2016 11:11 AM, Matěj Cepl wrote:
>  a) Please, do not send HTML-only messages to the list. In 
>  Thunderbird go to Account Settings/Composition & Addressing and 
>  unclick "Compose messages in HTML format, please", or at least 
>  in the Composer window set in Options / Delivery Format / HTML 
>  & Plain Text.
> 
> I think I successfully set up delivery to crosswire.org 
> <http://crosswire.org/> addresses of both HTML and plain text alternate 
> formats in email. In the year 2016, insisting that only plain text messages 
> be sent to you is not a realistic expectation. All modern email clients send 
> HTML messages by default, and receive them without problems. Enough said.
> 
>  b) Concerning Wisdom 16:29, I don't understand it. I thought 
>  that AndBible intentionally doesn't support 
>  deuterocanonical/apocryphal books 
>  (http://thread.gmane.org/gmane.comp.literature.sword.devel/25943 
> <http://thread.gmane.org/gmane.comp.literature.sword.devel/25943>).  
>  Or did the author of AndBible gave up and it supports 
>  non-canonical books as well?
> 
> AndBible displays Deuterocanonical/Apocryphal books. There is a "+" icon to 
> get to them in the book selection screen. I'm not interested in a theological 
> debate about canonicity in this forum, since we serve and are represented by 
> a wide variety of church traditions. My question is why the last verse of 
> Wisdom 16 would be missing in AndBible, but not in other Sword front ends, 
> and what can be done to prevent that and similar omissions.
> 
> -- 
> Sent from my Android device with K-9 Mail. Please excuse my 
> brevity.___
> sword-devel mailing list: sword-devel@crosswire.org 
> <mailto:sword-devel@crosswire.org>
> http://www.crosswire.org/mailman/listinfo/sword-devel 
> <http://www.crosswire.org/mailman/listinfo/sword-devel>
> Instructions to unsubscribe/change your settings at above page

___
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] 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 use with The Bible Tool on our server?
> 
> Best regards,
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/The-Bible-Tool-missing-modules-tp4656282p4656286.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] CzeBKR has unusual language code

2016-05-01 Thread DM Smith

> On May 1, 2016, at 7:03 PM, Chris Little <chris...@crosswire.org> wrote:
> 
> On 04/23/2016 04:55 AM, David Haslam wrote:
>> Both are valid - refer to the info panel in
>> https://en.wikipedia.org/wiki/Czech_language
>> 
>> David
>> 
> 
> This is entirely false. Only 'cs' is valid.
> 
> Go read BCP 47 or the .conf docs (which refer to BCP 47 and restate the 
> relevant parts). Shorter subtags always have priority over longer. There is 
> no ambiguity.

Our wiki for the conf states that one follows BCP 47, using a 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-devel
Instructions to unsubscribe/change your settings at above page

[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: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style


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 identified 1487 verses to be remapped from canon_segond.h to KJV. Based on 
>> the Vulgate example, I may write the mapping for JSword
> 
> Please, find attached the mappings for Jsword, from canon_segond.h to KJV.
> 
> -- 
> domcox <domini...@corbex.org>
> ___
> 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


___
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] 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
> 
> -- 
> https://matej.ceplovi.cz/blog/, Jabber: mc...@ceplovi.cz
> GPG Finger: 89EF 4BC6 288A BF43 1BAB  25C3 E09F EF25 D964 84AC
> 
> A conclusion is simply the place where someone got tired of
> thinking.
> 
> 
> ___
> 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


___
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] 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, but 
>> decided to drop the idea. I think I will still include the 
>> authors.txt in the wiki thou, if you permit?
> 
> Do as you like it.
> 
> Matěj
> 
> -- 
> https://matej.ceplovi.cz/blog/, Jabber: mc...@ceplovi.cz
> GPG Finger: 89EF 4BC6 288A BF43 1BAB  25C3 E09F EF25 D964 84AC
> 
> Reality is merely an illusion, albeit a very persistent one.
>  -- Albert Einstein
> 
> 
> ___
> 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


___
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] 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 PM, David Haslam <dfh...@googlemail.com> wrote:
> 
> Thanks for responses.
> 
> I've added a row to this table:
> 
> https://crosswire.org/wiki/Choosing_a_SWORD_program#Windowing_and_Text_Display
> 
> Keep them coming.
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/Front-ends-that-can-display-external-web-pages-tp4656232p4656235.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] 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.
> 
> Are there any front-ends that have the [undocumented] feature of being able
> to display remote web-pages?
> 
> i.e. In effect, with a built-in browser?
> 
> Best regards,
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/Front-ends-that-can-display-external-web-pages-tp4656232.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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

[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 configurado y cargado con una 
base de mas
de 3.000.000 de contactos de Argentina de alta calidad...

dmanc...@outlook.com
SI ESTAS EN CAPITAL,TE HACEMOS LA INSTALACION DEL PROGRAMA SIN 
CARGO

15-22711069
Es Movistar, por si tenes llamadas libres

Te mando un abrazo y disculpa si te moleste con este 
ofrecimiento...

--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785231=/4140
___
Playerstage-commit mailing list
Playerstage-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/playerstage-commit


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 $
> path: . teiDoc: /dev/null compressType: XZ ldType: RawLD4 normalize: 1
> [and offered config suggestion including CompressType=XZ]
> 
> It created dict.dat and dict.idx.
> 
> ___
> 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

___
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

[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 tarihinde Mehmet Recep Turkoglu 
yazdı:

> Merhaba
>
> Windows eğer hibernate modunda ya da beklenmedik bir şekilde kapanırsa
> windowstaki dosyalarıma linux mint ten erişemiyorum. Linux neden bu şekilde
> erişime izin vermiyor riskli olduğu için mi? Peki nasıl erişirim?
>
> ___
> Linux E-Posta Listesi
> Linux@liste.linux.org.tr
> Liste kurallari: http://liste.linux.org.tr/kurallar.php
>
> Bu Listede neden bulunduğunuzu bilmiyorsanız veya artık bu listeden gelen
> e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1
> dakika içinde üyeliğinizi sonlandırabilirsiniz.
> https://liste.linux.org.tr/mailman/listinfo/linux
>
>
___
Linux E-Posta Listesi
Linux@liste.linux.org.tr
Liste kurallari: http://liste.linux.org.tr/kurallar.php

Bu Listede neden bulunduğunuzu bilmiyorsanız veya artık bu listeden gelen 
e-postaları almak istemiyorsanız aşağıdaki bağlantı adresini kullanarak 1 
dakika içinde üyeliğinizi sonlandırabilirsiniz.
https://liste.linux.org.tr/mailman/listinfo/linux


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

# Vulgate => KJV
# pv=canonical title; v=verse; a,b etc = part verses.
# created by TyndaleSTEP at gmail dot com DIB 2013
# updated by DM Smith

# KJV's verse is split in two
Ps.2.12=Ps.2.12!a
Ps.2.13=Ps.2.12!b

# Has canonical title in KJV that is separate verse
Ps.3.1=Ps.3.1!pv
Ps.3.2=Ps.3.1!v
Ps.3.3-Ps.3.9=Ps.3.2-Ps.3.8

# Has canonical title in KJV that is separate verse
Ps.4.1=Ps.4.1!pv
Ps.4.2=Ps.4.1!v
Ps.4.3-Ps.4.8=Ps.4.2-Ps.4.7
# KJV's verse is split in two
Ps.4.9=Ps.4.8!a
Ps.4.10=Ps.4.8!b

# Has canonical title in KJV that is separate verse
Ps.5.1=Ps.5.1!pv
Ps.5.2=Ps.5.1!v
Ps.5.3-Ps.5.13=Ps.5.2-Ps.5.12

# Has canonical title in KJV that is separate verse
Ps.6.1=Ps.6.1!pv
Ps.6.2=Ps.6.1!v
Ps.6.3-Ps.6.11=Ps.6.2-Ps.6.10

# Has canonical title in KJV that is separate verse
Ps.7.1=Ps.7.1!pv
Ps.7.2=Ps.7.1!v
Ps.7.3-Ps.7.18=Ps.7.2-Ps.7.17

# Has canonical title in KJV that is separate verse
Ps.8.1=Ps.8.1!pv
Ps.8.2=Ps.8.1!v
Ps.8.3-Ps.8.10=Ps.8.2-Ps.8.9

# Has canonical title in KJV that is separate verse
Ps.9.1=Ps.9.1!pv
Ps.9.2=Ps.9.1!v
Ps.9.3-Ps.9.21=Ps.9.2-Ps.9.20
# Vulgate's Ps 9 contains KJV's Psalm 10. Following chapters shifted from here
# Need to explicitly map verse 0 for chapter shifts
# Here we want it to be shown at the same point as verse 1
Ps.9.22=Ps.10.0
Ps.9.22=Ps.10.1
Ps.9.23-Ps.9.39=Ps.10.2-Ps.10.18

# Has canonical title in KJV that is separate verse
# First full chapter shift in Psalms
Ps.10.0=Ps.11.0
Ps.10.1=Ps.11.1!pv
Ps.10.2=Ps.11.1!v
Ps.10.3-Ps.10.8=Ps.11.2-Ps.11.7

# Has canonical title in KJV that is separate verse
Ps.11.0=Ps.12.0
Ps.11.1=Ps.12.1!pv
Ps.11.2=Ps.12.1!v
Ps.11.3-Ps.11.9=Ps.12.2-Ps.12.8

# Has canonical title in KJV; Wholly in verse 1
Ps.12.0-Ps.12.6=Ps.13.0-Ps.13.6

# Has canonical title in KJV; Wholly in verse 1
Ps.13.0-Ps.13.7=Ps.14.0-Ps.14.7

# Has canonical title in KJV; Wholly in verse 1
Ps.14.0-Ps.14.5=Ps.15.0-Ps.15.5

# Has canonical title in KJV; Wholly in verse 1
Ps.15.0-Ps.15.9=Ps.16.0-Ps.16.9
Ps.15.10!a=Ps.16.10
Ps.15.10!b=Ps.16.11

# Has canonical title in KJV; Wholly in verse 1
Ps.16.0-Ps.16.15=Ps.17.0-Ps.17.15

# Has canonical title in KJV that is separate verse
Ps.17.0=Ps.18.0
Ps.17.1=Ps.18.1!pv
Ps.17.2=Ps.18.1!v
Ps.17.3-Ps.17.51=Ps.18.2-Ps.18.50

# Has canonical title in KJV that is separate verse
Ps.18.0=Ps.19.0
Ps.18.1=Ps.19.1!pv
Ps.18.2=Ps.19.1!v
Ps.18.3-Ps.18.15=Ps.19.2-Ps.19.16

# Has canonical title in KJV that is separate verse
Ps.19.0=Ps.20.0
Ps.19.1=Ps.20.1!pv
Ps.19.2=Ps.20.1!v
Ps.19.3-Ps.19.10=Ps.20.2-Ps.20.9

# Has canonical title in KJV that is separate verse
Ps.20.0=Ps.21.0
Ps.20.1=Ps.21.1!pv
Ps.20.2=Ps.21.1!v
Ps.20.3-Ps.20.14=Ps.21.2-Ps.21.13

# Has canonical title in KJV that is separate verse
Ps.21.0=Ps.22.0
Ps.21.1=Ps.22.1!pv
Ps.21.2=Ps.22.1!v
Ps.21.3-Ps.21.32=Ps.22.2-Ps.22.31

# Has canonical title in KJV; Wholly in verse 1
Ps.22.0-Ps.22.6=Ps.23.0-Ps.23.6

# Has canonical title in KJV; Wholly in verse 1
Ps.23.0-Ps.23.10=Ps.24.0-Ps.24.10

# Has canonical title in KJV; Wholly in verse 1
Ps.24.0-Ps.24.22=Ps.25.0-Ps.25.22

# Has canonical title in KJV; Wholly in verse 1
Ps.25.0-Ps.25.12=Ps.26.0-Ps.26.12

# Has canonical title in KJV; Wholly in verse 1
Ps.26.0-Ps.26.14=Ps.27.0-Ps.27.14

# Has canonical title in KJV; Wholly in verse 1
Ps.27.0-Ps.27.9=Ps.28.0-Ps.28.9

# Has canonical title in KJV; Wholly in verse 1
Ps.28.0-Ps.28.11=Ps.29.0-Ps.29.11

# Has canonical title in KJV that is separate verse
Ps.29.0=Ps.30.0
Ps.29.1=Ps.30.1!pv
Ps.29.2=Ps.30.1!v
Ps.29.3-Ps.29.13=Ps.30.2-Ps.30.12

# Has canonical title in KJV that is separate verse
Ps.30.0=Ps.31.0
Ps.30.1=Ps.31.1!pv
Ps.30.2=Ps.31.1!v
Ps.30.3-Ps.30.25=Ps.31.2-Ps.31.24

# Has canonical title in KJV; Wholly in verse 1
Ps.31.0-Ps.31.11=Ps.32.0-Ps.32.11

# Has no canonical title in KJV
Ps.32.0-Ps.32.22=Ps.33.0-Ps.33.22

# Has canonical title in KJV that is separate verse
Ps.33.0=Ps.34.0
Ps.33.1=Ps.34.1!pv
Ps.33.2=Ps.34.1!v
Ps.33.3-Ps.33.23=Ps.34.2-Ps.34.22

# Has canonical title in KJV; Wholly in verse 1
Ps.34.0-Ps.34.28=Ps.35.0-Ps.35.28

# Has canonical title in KJV that is separate verse
Ps.35.0=Ps.36.0
Ps.35.1=Ps.36.1!pv
Ps.35.2=Ps.36.1!v
Ps.35.3-Ps.35.13=Ps.36.2-Ps.36.12

# Has canonical title in KJV; Wholly in verse 1
Ps.36.0-Ps.36.40=Ps.37.0-Ps.37.40

# Has canonical title in KJV that is separate verse
Ps.37.0=Ps.38.0
Ps.37.1=Ps.38.1!pv
Ps.37.2=Ps.38.1!v
Ps.37.3-Ps.37.23=Ps.38.2-Ps.38.22

# Has canonical title in KJV that is separate verse
Ps.38.0=Ps.39.0
Ps.38.1=Ps.39.1!pv
Ps.38.2=Ps.39.1!v
Ps.38.3-Ps.38.14=Ps.39.2-Ps.39.13

# Has canonical title in KJV that is separate verse
Ps.39.0=Ps.40.0
Ps.39.1=Ps.40.1!pv
Ps.39.2=Ps.40.1!v
Ps.39.3-Ps.39.18=Ps.40.2-Ps.40.17

# Has canonical title in 

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 <dfh...@googlemail.com> wrote:
> 
> Please don't assume that the canon.h files attached to an old email are up to
> date.
> 
> There were one or two edits done to the files embedded in the wiki pages
> after DomCox first announced this activity.
> 
> The wiki pages should have the most up to date content.
> 
> Best regards,
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/1-8-French-versifications-modules-tp4656199p4656212.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] French versification schemes

2016-03-12 Thread DM Smith
In anticipation of these versifications being added to SWORD lib, I’ve added 
them to JSword. If these are not current, I’ll update them with whatever is 
checked into SWORD.

We still need to add mapping files to and from the KJV for JSword. (Somebody 
will need to do that for SWORD too!) That’ll take a few hours apiece, but is 
not too hard. (I hope.) Doing so takes analysis of Psalm titles, figuring out 
which verses are split, merged or otherwise not present in one or the other. 
The format that JSword and SWORD uses is significantly different. I’ll comment 
the JSword mappings well 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...@gmail.com> wrote:
> 
> 
> As I mailed on Sunday, 23rd, I created 3 new versification schemes for French 
> Bibles in Sword:
> * Calvin for the original Bible d'Olivétan and followers, 1560+ Bible de 
> Genève, 1707-1855 Bible David Martin, 1744-1996 Bible Jean-Frederic Ostervald 
> and so on
> * DarbyFR for the French J.N. Darby Bible and revisions
> * Segond for the Louis Segond Bible and modern revisions, 1910, 1978, 2002 
> (NBS), 2007 (SG21)
> For more details, see: 
> http://www.crosswire.org/wiki/Survey_of_versification_schemes_in_French_Bibles
>  
> 
> Attached are the corresponding files canon_calvin.h, canon_darbyfr.h, 
> canon_segond.h, as well as a patch to apply to src/mgr/versificatiomgr.cpp.
> These files can also be downloaded from my website: 
> http://dom.corbex.org
> 
> Packages of Sword and Xiphos for Debian stable (Jessie 8),arch=amd64, based 
> on Sword-1.7.5a1 and including these 3 new versification schemes can be 
> downloaded from the same location:
> http://dom.corbex.org/pkg. 
> Please note that you'll have to remove your existing libsword before 
> installing these packages.
> 
> Verifications:
> 
> For verification and functional tests, I used or made 3 Bibles in OSIS 
> format. A Darby Bible made with the tools developped by Sebastien Koechlin 
> from http://koocotte.org/darby, a D. Martin Bible from 
> http://www.martin1707.com and a L. Segond Bible from 
> http://www.richardlemay.com/AUD/BIB/LSG/Index.htm. 
> Scripts for downloading and importing those Bibles are available at my 
> website: 
> http://dom.corbex.org/scripts
> as well as modules ready to use : 
> http://dom.corbex.org/sword 
> 
> osis2mod was used to convert each Bible into a Sword module, then emptyvss 
> was run to detect empty verses. Verses causing problems with the previous 
> versification schemes were checked with either Diatheke or Xiphos.
> 
> #1. Martin 1707 (canon Calvin):
> osis2mod reports Acts.19.41 as a supplemental verse. That's correct, 
> Acts.19.40 is split in 2 verses in the source file, although it is not in the 
> printed Bible. Emptyvss does not detect any empty verses.
> 
> #2. Darby 1975 (canon DarbyFR)
> osis2mod run without errors. Emptyvss reports 3 empty verses. That's correct, 
> those 3 verses are also empty in the printed Bible, a footnote informs that 
> they are only present in the Textus Receptus.
> 
> #3. Segond 1910 (canon Segond)
> osis2mod reports Mark.10.53 as a supplemental verse. Depending of the 
> revision of the Segond 1910, Mark.10.52 is divided in 2 verses or not, it is 
> here. Emptyvss reports 4 empty verses from 2Tim.3.14 to 2.Tim.3.17, certainly 
> a glitch in the digitization process, the 4 verses, although present in the 
> printed Bible, are not in the source file.
> 
> --Dominique
> 
> domcox <dominique.cor...@gmail.com>
> ___
> 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

___
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] 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://crosswire.org/wiki/Survey_of_versification_schemes_in_French_Bibles#Canons_proposals_for_The_Sword_Project
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/1-8-French-versifications-modules-tp4656199p4656213.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] 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 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 modules are 
>> submitted.
>> 
>> These will be marked as requiring version 1.8 which quite clearly is not yet 
>> released, but i think is stable enough dossing about in svn. 
>> 
>> So while current frontends would be unable to make use of such modules, at 
>> least we would have asap compatible modules out there, maybe increasing the 
>> pressure to release. 
>> 
>> I have no specific texts in mind but simply notify that any new texts will 
>> be considered this way.
>> 
>> Peter
>> 
>> Peter
>> 
>> Sent from my phone. Apologies for brevity and typos.
>> ___
>> 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
> 
> 
> ___
> 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

___
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] 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 modules are 
> submitted.
> 
> These will be marked as requiring version 1.8 which quite clearly is not yet 
> released, but i think is stable enough dossing about in svn. 
> 
> So while current frontends would be unable to make use of such modules, at 
> least we would have asap compatible modules out there, maybe increasing the 
> pressure to release. 
> 
> I have no specific texts in mind but simply notify that any new texts will be 
> considered this way.
> 
> Peter
> 
> Peter
> 
> Sent from my phone. Apologies for brevity and typos.
> ___
> 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


___
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

> On Mar 10, 2016, at 8:28 AM, Matěj Cepl <mc...@cepl.eu> wrote:
> 
> On 2016-03-10, 10:45 GMT, Peter von Kaehne wrote:
>> By finding the source and starting from scratch
> 
> There is no source, unless you have it. The module is from 
> 2003-03-21.
> 
> And we are talking here about s/y/i/ in one word.
> 
> What is the best decompiler of mod files to see what all 
> functionality outside of plain text is used? I believe there is 
> none, but I would like to be certain.

If a module has linked verses (e.g. commentaries may have one entry that spans 
several verses) or verses outside of the versification, then there is no 
lossless return to module input.

mod2imp drops the linking.

mod2imp does not unwind the appended verses to a bad versification.

osis2mod transforms the input to something that SWORD lib filters and renderers 
can handle. No tool unwinds these changes.

Still mod2imp may be the best course to create a good input going forward.

But…. stay tuned.

I’m trying to work out something for modules that are old, having no current 
maintainer, no prior maintainer available for consultation, no available 
source, no clear 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

> On Mar 10, 2016, at 8:57 AM, Karl Kleinpaste <k...@kleinpaste.org> wrote:
> 
> On 03/10/2016 02:58 AM, Matěj Cepl wrote:
>> On 2016-03-10, 04:52 GMT, Peter von Kaehne wrote:
>>> A module created this way would not be accepted for new import.
>> Sorry, which way? What’s wrong? Do you mean, because of using 
>> mod2imp? I will gladly use any better sources I will be pointed 
>> to, or contact the module maintainer, but I am afraid there is 
>> none and nobody.
> It is absurdity of the first order that two facts are combined, first, that 
> there isn't locally-maintained access to a module source, and second, that 
> the loss of the remote source means that the module can never be repaired or 
> updated.  Essentially, "you don't have it now, and you can't have it again.  
> Ever."
> 
> Matěj, if you wish, and can make your fix by whatever means, let me get a 
> copy and it will go into Xiphos repo within a day.
> 
> This kind of situation is exactly why I started my own repo in 2007 (now 
> known as the Xiphos repo)... because there are far too many situations where 
> forward progress becomes impossible, from simple catatonia of module 
> management lasting literally years, to policy catch-22, to desire not to be 
> hamstrung by procedure.

Let’s not go there yet. I’m trying to hammer out policy changes that hamper 
module updates. Stay tuned. It shouldn’t be much longer.

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 configurado y cargado con una 
base de mas
de 3.000.000 de contactos de Argentina de alta calidad...

dmanc...@outlook.com

15-22711069
Es Movistar, por si tenes llamadas libres

Te mando un abrazo y disculpa si te moleste con este 
ofrecimiento...

--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785111=/4140
___
ops-developers mailing list
ops-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ops-developers


[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 configurado y cargado con una 
base de mas
de 3.000.000 de contactos de Argentina de alta calidad...

dmanc...@outlook.com

15-22711069
Es Movistar, por si tenes llamadas libres

Te mando un abrazo y disculpa si te moleste con este 
ofrecimiento...

--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785111=/4140
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


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

2016-03-08 Thread DM Smith
Regarding the escaped RTF tags. The SWORD Project for Windows (BibleCS) and 
JSword frontends properly display the RTF. However, if it is replaced with 
UTF-8, then BibleCS shows ugliness. We have a good number of sources with UTF-8 
in the About field, that BibleCS does not handle properly.

I 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 for one of these modules was derived
> from the source text for the other.  cf. It is feasible to convert
> Traditional Chinese to Simplified (and vice versa).
> 
> Observations:
> 1. Both are very early modules dated 2002-01-01
> 2. There is no DistributionLicense entry in the conf files, even though
> these are copyrighted works.
>(c) 2002 The Worldwide Bible Society Ltd. All rights reserved.
> 3. The About key text is made up of escaped RTF tags for Chinese Unicode.
> Front-ends such as Xiphos do not display these as Chinese ideograms. Worse
> still, 73 of the 284 tags are improperly formed by having a hyphen/minus
> after the \u. The line needs correcting and converting to proper UTF-8
> characters. We could at least implement this, and update the module conf
> files.
> 4. Song of Solomon is missing from ChiNCVt but not from ChiNCVs.
> 5. There are further 28 missing verses in both modules, as detected by the
> utility emptyvss.
> 
> Ideally, if we still have any links with the publisher, both these modules
> ought to be rebuilt from a fresh copy of the source text files.
> 
> Best regards,
> 
> David Haslam
> 
> 
> 
> 
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/Song-of-Solomon-missing-from-ChiNCVt-tp4656171p4656172.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] 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 reliably displays outside of verse elements are titles."
> 
> See note 4 in https://crosswire.org/wiki/OSIS_Bibles#Body
> 
> Best regards,
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/Query-about-wiki-documentation-tp4656168.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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


[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 stops rendering the audio (acts as a pause). This is a very annoying
limitation.

Is anyone having the same issue?

Thank you!
François
-- 
Mailing list: https://launchpad.net/~ubuntu-phone
Post to : ubuntu-phone@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phone
More help   : https://help.launchpad.net/ListHelp


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 <dfh...@googlemail.com> wrote:
> 
> For the scripts most of us are used to, text marked using transChange is
> rendered using italics.
> 
> For Chinese ideographic script, the text highlighting should be by dotted
> underline.
> 
> Is this implemented in SWORD or JSword?
> 
> Best regards,
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/Chinese-ideographic-script-and-OSIS-transChange-tp4656150.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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

[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:
www.crosswire.org/~dmsmith/interlinear.html 


In His Service,
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] 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 Ristioja <j...@ristioja.ee> wrote:
> 
> The Qualys SSL Labs SSL Server test gives crosswire.org 
> <http://crosswire.org/> a C rating
> mainly due to supporting SSLv3 and the RC4 cipher.
> 
> https://www.ssllabs.com/ssltest/analyze.html?d=crosswire.org=on 
> <https://www.ssllabs.com/ssltest/analyze.html?d=crosswire.org=on>
> 
> Blessings,
> Jaak
> 
> On 15.02.2016 20:11, DM Smith wrote:
>> Went with LetsEncrypt. It should be proper for the entire crosswire.org 
>> <http://crosswire.org/>
>> <http://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 
>>> <mailto:mc...@cepl.eu>
>>> <mailto:mc...@cepl.eu <mailto:mc...@cepl.eu>>> wrote:
>>> 
>>> On 2016-02-12, 19:28 GMT, David Haslam wrote:
>>>> Even so, this is the way browsers are moving!
>>>> 
>>>> The sooner we can move away from self signed the better.
>>> 
>>> Certainly, I see two ways out:
>>> 
>>>   * https://letsencrypt.org/ … I have never tried it, so
>>> I am not sure how really difficult it is, but it is
>>> supposed to be the free way how to get working and
>>> supported certificate for a website
>>> 
>>>   * I use personally certificate from
>>> https://www.startssl.com/ For me the price is US$60/two
>>> year certificate, not sure whether the company would be
>>> willing to give some discount for non-profit/religious
>>> organization, or we would be satisfied with the free
>>> certificate (one domain only, no wildcard).
>>> 
>>> Best,
>>> 
>>> Matěj
>>> 
>>> -- 
>>> https://matej.ceplovi.cz/blog/ <https://matej.ceplovi.cz/blog/>, Jabber: 
>>> mc...@ceplovi.cz <mailto:mc...@ceplovi.cz>
>>> <mailto:mc...@ceplovi.cz <mailto:mc...@ceplovi.cz>>
>>> GPG Finger: 89EF 4BC6 288A BF43 1BAB  25C3 E09F EF25 D964 84AC
>>> 
>>> [...] a superior pilot uses his superior judgment to avoid having to
>>> exercise
>>> his superior skill.
>>> --
>>> http://www.jwz.org/blog/2009/09/that-duct-tape-silliness/#comment-10653 
>>> <http://www.jwz.org/blog/2009/09/that-duct-tape-silliness/#comment-10653>
>>> 
>>> 
>>> ___
>>> sword-devel mailing list: sword-devel@crosswire.org 
>>> <mailto:sword-devel@crosswire.org>
>>> <mailto:sword-devel@crosswire.org <mailto:sword-devel@crosswire.org>>
>>> http://www.crosswire.org/mailman/listinfo/sword-devel 
>>> <http://www.crosswire.org/mailman/listinfo/sword-devel>
>>> Instructions to unsubscribe/change your settings at above page
>> 
>> 
>> 
>> ___
>> sword-devel mailing list: sword-devel@crosswire.org 
>> <mailto:sword-devel@crosswire.org>
>> http://www.crosswire.org/mailman/listinfo/sword-devel 
>> <http://www.crosswire.org/mailman/listinfo/sword-devel>
>> Instructions to unsubscribe/change your settings at above page
>> 
> 
> 
> ___
> sword-devel mailing list: sword-devel@crosswire.org 
> <mailto:sword-devel@crosswire.org>
> http://www.crosswire.org/mailman/listinfo/sword-devel 
> <http://www.crosswire.org/mailman/listinfo/sword-devel>
> Instructions to unsubscribe/change your settings at above page

___
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] 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.
> 
> Further information... See 
> 
> https://www.dropbox.com/s/mhjxbme20uts5ec/Screenshot%202016-02-15%2020.20.56.png?dl=0
> 
> "This web site does not supply ownership information."
> 
> Would that be easy to fix?
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/Firefox-44-0-2-and-self-signed-certs-tp4656120p4656140.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] 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 GMT, David Haslam wrote:
>> Even so, this is the way browsers are moving!
>> 
>> The sooner we can move away from self signed the better.
> 
> Certainly, I see two ways out:
> 
>* https://letsencrypt.org/ … I have never tried it, so 
>  I am not sure how really difficult it is, but it is 
>  supposed to be the free way how to get working and 
>  supported certificate for a website
> 
>* I use personally certificate from 
>  https://www.startssl.com/ For me the price is US$60/two 
>  year certificate, not sure whether the company would be 
>  willing to give some discount for non-profit/religious 
>  organization, or we would be satisfied with the free 
>  certificate (one domain only, no wildcard).
> 
> Best,
> 
> Matěj
> 
> -- 
> https://matej.ceplovi.cz/blog/, Jabber: mc...@ceplovi.cz
> GPG Finger: 89EF 4BC6 288A BF43 1BAB  25C3 E09F EF25 D964 84AC
> 
> [...] a superior pilot uses his superior judgment to avoid having to exercise
> his superior skill.
>  -- http://www.jwz.org/blog/2009/09/that-duct-tape-silliness/#comment-10653
> 
> 
> ___
> 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

___
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] 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 - several hours later.
> 
> Any ideas what might be causing this?
> 
> Connection to other sites is OK, but a browser refresh on crosswire.org 
>  is
> also still "Connecting .."
> 
> Looks like we have a server problem.
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/Wiki-Maintenance-tp4656096p4656131.html 
> 
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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
> 
> ___
> 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

___
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] 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  wrote:
> 
> On Fri, 12 Feb 2016 02:03:14 -0800 (PST)
> David Haslam  wrote:
> 
>> Should it be rebuilt as a Glossary?
> 
> I think it shouldn't.
> 
> When I did this module, I think it's still true, dictionaries were classified 
> in this way:
> - biblical languages: lexica
> - modern languages: dictionaries
> - between two languages: glossaries (e.g. English to Latin)
> 
> -- 
> domcox 
> 
> ___
> 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


___
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] 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/12/16 9:28 AM, David Haslam wrote:
>> I just selected a different tab in my browser and it complained about the
>> self-signed cert.
>> 
>> I've added an exception for crosswire.org for now.
>> 
>> Even so, this is the way browsers are moving!
>> 
>> The sooner we can move away from self signed the better.
>> 
>> David
>> 
>> 
>> 
>> --
>> View this message in context: 
>> http://sword-dev.350566.n4.nabble.com/Firefox-44-0-2-and-self-signed-certs-tp4656120.html
>> Sent from the SWORD Dev mailing list archive at Nabble.com.
>> 
>> ___
>> 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
> 
> 
> ___
> 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


___
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] 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.
> 
> Is this related to the wiki maintenance work?
> 
> http://www.crosswire.org/tracker/
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/CrossWire-Tracker-status-tp4656104.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] 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, 
> it’ll be down and/or locked. I’ll try to keep it to a minimum.
> 
> Hopefully when it is done, login will require HTTPS.
> 
> 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


___
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] 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 (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, 
>> it’ll be down and/or locked. I’ll try to keep it to a minimum.
>> 
>> Hopefully when it is done, login will require HTTPS.
>> 
>> 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
> 
> 
> ___
> 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


___
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] IMP format for Daily Devotionals?

2016-02-10 Thread DM Smith
If it is added, how would the front-end use it?

Bible Desktop automatically goes to the current date in the user’s default 
daily devotional upon startup. Would it show the intro on the first of the 
month? With every day of the month?

Having it in the first day entry ensures that it is seen.

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 monthly psalm., So using the chapter/verses 0 logic from 
> bibles does make sense.
> 
> Sent from my phone. Apologies for brevity and typos.On 10 Feb 2016 14:31, DM 
> Smith <dmsm...@crosswire.org> wrote:
>> 
>> 
>>> On Feb 10, 2016, at 9:00 AM, Karl Kleinpaste <k...@kleinpaste.org> 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 daily.dev in an app's usual dictionary 
>> pane, you can surely navigate to mm.00.  But I'm completely sure that no 
>> Sword app has any sensitivity to looking for mm.00 in any automated use, 
>> such as Xiphos' startup display, or detection of daily.dev status on 
>> dictionary module open; in both cases, Xiphos simply keys today's date.
>> 
>> Regarding JSword:
>> 
>> I’m pretty sure that using a value other than 01-12 for mm will break. It 
>> takes that value and converts it to a localized month.
>> 
>> Having a value 00 will be treated the same as any other DD value. 99 will 
>> work, too. It show without 0 padding.
>> 
>> Like Karl said, you can only browse to it. There is no semantic meaning 
>> otherwise.
> ___
> 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


___
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] IMP format for Daily Devotionals?

2016-02-10 Thread DM Smith
Simple enough:
One would put a month heading in mm.01 as a heading using the proper markup for 
the module whether ThML, TEI, OSIS, …

Every dictionary supports a module introduction. It is an unsorted first entry. 
I have no idea how one specifies that the first key of the module is an intro. 
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'm thinking of the original twelve subtitles, such as 
> 
> JANUARY
> THIS IS MY BELOVED SON, IN WHOM I AM WELL PLEASED. HEAR YE HIM.
> 
> (M'Cheyne's Daily Bread).
> 
> How might one ensure that such titles be displayed?
> 
> Best regards,
> 
> David
> 
> 
> 
> --
> View this message in context: 
> http://sword-dev.350566.n4.nabble.com/IMP-format-for-Daily-Devotionals-tp4656074p4656077.html
> Sent from the SWORD Dev mailing list archive at Nabble.com.
> 
> ___
> 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


___
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] 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 daily.dev in an app's usual dictionary 
> pane, you can surely navigate to mm.00.  But I'm completely sure that no 
> Sword app has any sensitivity to looking for mm.00 in any automated use, such 
> as Xiphos' startup display, or detection of daily.dev status on dictionary 
> module open; in both cases, Xiphos simply keys today's date.

Regarding JSword:

I’m pretty sure that using a value other than 01-12 for mm will break. It takes 
that value and converts it to a localized month.

Having a value 00 will be treated the same as any other DD value. 99 will work, 
too. It show without 0 padding.

Like Karl said, you can only browse to it. There is no semantic meaning 
otherwise.___
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

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