Commentary: ISO should kick OOXML off the standards bus


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Commentary: ISO should kick OOXML off the standards bus
# 1  
Old 01-26-2008
Commentary: ISO should kick OOXML off the standards bus

Sat, 26 Jan 2008 14:00:00 GMT
ECMA, the international IT standards association, recently published its responses to comments of the ISO National Bodies in response to Microsoft's Office Open XML application for ISO standardization (the actual 2,293-page response is closed to the public). The ECMA proposals will be discussed at a Ballot Resolution Meeting (BRM) in Geneva after which the National Bodies may reconsider their original vote. Microsoft's responses make clear that within one year, it will have four different OOXML specifications to implement and interoperate with, and each of those specs will be closed. Under no circumstances should such a flawed specification become an international standard.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Crontab does not kick at the given time

I have crontab set to be triggered daily @ 8 am and 8:20 am server time. 00 08 * * * /web/scripts/check.sh 20 08 * * * /web/scripts/check.shuname -a Linux mymac 3.10.0-327.36.3.el7.x86_64 #1 SMP Thu Oct 20 04:56:07 EDT 2016 x86_64 x86_64 x86_64 GNU/Linux ls -ltr /web/scripts/check.sh... (9 Replies)
Discussion started by: mohtashims
9 Replies

2. Red Hat

How to make boot.iso image from rhel6 installation dvd iso ?

Hello Everyone, Can anyone let me know how to make minimal boot.iso from rhl6 installation dvd iso image. I have a dvd image with me but i want to make just a minimal boot media. Somehow it is not shipped with dvd iso. I know we can download boot.iso from redhat site but is there any anyway we... (5 Replies)
Discussion started by: Rohit Bhanot
5 Replies

3. Red Hat

how to re-create kick start bootable ISO

Hi All, I want to create kick start bootable ISO file. I have Centos 5.4 ISO and customized ks.cfg file. Now I need to recreate ISO with ks.cfg and content of existing ISO. During installation, it automatically should pick the kick start file and need to proceed with the installation. ... (0 Replies)
Discussion started by: kalpeer
0 Replies
Login or Register to Ask a Question
setsid(2)							System Calls Manual							 setsid(2)

NAME
setsid - Sets the process group ID SYNOPSIS
#include <unistd.h> pid_t setsid( void ); Application developers may want to specify an #include statement for <sys/types.h> before the one for <unistd.h> if programs are being developed for multiple platforms. The additional #include statement is not required on Tru64 UNIX systems or by ISO or X/Open standards, but may be required on other vendors' systems that conform to these standards. STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: setsid(): XPG4, XPG4-UNIX Refer to the standards(5) reference page for more information about industry standards and associated tags. DESCRIPTION
The setsid() function creates a new session when the calling process is not a process group leader. The calling process then becomes the session leader of this session, becomes the process leader of the new process group, and has no controlling terminal. The process group ID of the calling process is set equal to its process ID. The calling process becomes the only process in the new process group and the only process in the new session. RETURN VALUES
Upon successful completion, the setsid function returns the value of the new process group ID. Otherwise, a value of (pid_t)-1 is returned and errno is set to indicate the error. ERRORS
The setsid() function sets errno to the specified values for the following conditions: The calling process is already the process group leader, or the process group ID of another process matches the process ID of the calling process. RELATED INFORMATION
Functions: getpid(2), getsid(2), setpgid(2) Standards: standards(5) delim off setsid(2)