User Tools

Site Tools


forum:inews

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

forum:inews [2007/03/26 09:14]
andreas
forum:inews [2023/11/19 22:46] (current)
Line 2: Line 2:
 This area is a collection of tips and hints to [[http://​www.avid.com|Avid'​s]] newsroom system iNEWS. This area is a collection of tips and hints to [[http://​www.avid.com|Avid'​s]] newsroom system iNEWS.
  
-There is no dedicated order of topicsNevertheless ​new chapters should be added on bottom. Use the search function to find some useful elements.+Topics are ordered by most recent commentsnew topic creates a new wiki page.
  
- +{{threads>[forum:inews]}}
-===== Maximize Search Pane ===== +
-== Question == +
-Is it possible to maximize the search window? +
-== Answer == +
-The search panel is not a full window. It is a toolbar. Therefore it doesn'​t contain the functionality to maximize or minimize itself. Inside the iNEWS window you can resize it only by dragging the edges. +
- +
-But it is possible to undock and resize the search window like a Adobe Photoshop(tm) palette. To do this: +
-  - Double click on the heading area (beside the Refine field) inside the search toolbar. +
-  - The search panel then is a separate free window. +
-  - Drag the edges to resize the window as you like. +
- +
-Finally a double click beside the refine field toggles between the maximized and docked view of your search window. Of course Ctrl+R will open/close the search view. +
- +
-Unfortunately you have to reset the undocked size of your search window (step 3.) each time you start an iNEWS session. +
- +
-== Further hints == +
-Only an undocked search panel can be dragged and dropped to another edge of the iNEWS window. +
- +
- +
- +
-===== More Mailboxed Servers On A Single Queue ===== +
-== Question == +
-Is it possible to activate more than one actionserver by the same queue? +
-== Answer == +
-Of course. You are limited to one mailbox per queue but you can assign more than one server to a mailbox. +
-In example to monitor a rundown and forward the rundown to another place via actionserver/​txnet. +
- +
-Edit the /​site/​config file. Each "​mailbox-able"​ server contains two numbers in its declaration. The first one is the device number and the second one is the mailbox number. Simply use the same mailbox for two (or more) servers. +
- +
-<​code>​ +
-... +
-server ​      ​350 ​         monitor ​       350  -       ; monitor +
-... +
-special ​     480        0          txnet   ​350 ​    ​- ​     ; +
-... +
-</​code>​ +
-As you see the monitor server 350 and the txnetserver 480 have the same mailbox. On a rundown queue the mailbox 350 is assigned and so you can monitor this queue for CA or MOS as well as mirror the stories on a external system, e.g. a web server. +
- +
-== Further hints == +
-Never edit your config with a windows based editor. Only use vi or ed! +
- +
- +
- +
- +
-===== Video IDs ===== +
-== Question == +
-Can we create video-ids automatically?​ +
-== Answer == +
-Yes, but not with built-in components of iNEWS. You need a combination of a Linux shell script and a macro inside iNEWS. +
-  - The shell script is started via crontab once a day very early morning. It generates a list of new video-ids (for that day) in a hidden place of the iNEWS database. +
-  - The macro moves the next entry out of this list and paste it into the video-id field of the current story. An already assigned video id will not be overwritten by the macro. +
-So this solution take care about: +
-  - The video id is unique. Whenever a user picks up a video id out of the list this id is immediately removed from the list. No chance to take the same id twice. +
-  - The video id for a given story is fix. The macro keeps an already assigned id in the target story. It's not possible to change the id after working with (at least not with our macro) +
-=== Setup === +
-  - Create the video-id queue +
-    * Create a new folder ''​hidden''​ in iNEWS database. +
-    * Inside create a new queue ''​video-ids''​. +
-    * Set readgroup for the folder to ''​nobody''​. +
-    * Set readgroup **and** writegroup for the queue to ''​!none''​ or the group which is allowed to assign video-ids. +
-  - Script - all steps have to be done as user root (su) on **both** machines - inews-a and inews-b, respectively. +
-    * Create a directory ''/​site/​scripts/​video-ids''​ +
-    * Create a directory ''/​site/​scripts/​video-ids/​data''​ +
-    * Inside ''/​site/​scripts''​ create a file ''​yes2''​ with following content:<​code>​ +
-+
-+
-</​code>​ +
- +
-    * Inside ''/​site/​scripts/​video-ids''​ create a file ''​video-ids.sh''​ with following content:<​code bash> +
-#! /bin/bash +
-+
-# creates video-ids +
-# runs every morning at (via crontab) +
-+
- +
-LOGDIR=/​var/​log/​iNEWS +
-DATE=$(date +%c) +
-ID=1 +
-DIGIT=00 +
- +
-/​exc/​dbpurge hidden.video-ids 0 < /​site/​scripts/​yes2 > /dev/null +
-rm /​site/​scripts/​video-ids/​data/​ids +
- +
-while test $ID -le 300 +
-do +
-    if test $ID -ge 10 +
-    then +
-        DIGIT="​0"​ +
-    fi +
-    if test $ID -ge 100 +
-    then +
-        DIGIT=""​ +
-    fi +
-    echo "​$(date +%d%m)-$DIGIT$ID"​ >> /​site/​scripts/​video-ids/​data/​ids +
-    ID=$(expr $ID + 1) +
-done +
- +
-/exc/doc -pu hidden.video-ids /​site/​scripts/​video-ids/​data/​ids +
-echo "​creating video IDs for" $DATE >> $LOGDIR/​video-ids +
-</​code>​ +
- +
-    * Set permissions for video-ids.sh with<​code bash> +
-chmod 744 /​site/​scripts/​video-ids/​video-ids.sh +
-</​code>​ +
-    * Test the script. If you get no error messages at the terminal but a story with video-ids inside the ''​hidden.video-ids''​ queue, your script works properly. To run the script type:<​code bash> +
-/​site/​scripts/​video-ids/​video-ids.sh +
-</​code>​ +
-  - Macro +
-    * In a keyboard story of your choice (normally the producer keyboard) assign the following macro to a key.\\ +
-English version:<​code>​ +
-{alt wo}hidden.video-ids{enter} {alt {right}{right}} {ctrl {home}} {shift {end}{left}} {ctrl x} {delete} {ctrl se} {alt wc} {alt {right}{right}{left}} {alt vuf}typ-q{enter} {home} {tab} {f2} {space}{backspace} {ctrl v} {shift {end}} {ctrl x} {shift {home}} {ctrl v} {ctrl se} {alt vun} {home} {tab}{tab} +
-</code>\\ +
-German version:<​code>​ +
-{alt fa}hidden.video-ids{enter{alt {right}{right}} {ctrl {home}} {shift {end}{left}} {ctrl x} {delete} {ctrl se} {alt fs} {alt {right}{right}{left}} {alt abf}typ-q{enter} {home} {tab} {f2} {space}{backspace} {ctrl v} {shift {end}} {ctrl x} {shift {home}} {ctrl v} {ctrl se} {alt abn} {home} {tab}{tab} +
-</​code>​\\ +
-French version:<​code>​ +
-{alt no}hidden.video-ids{enter} {alt {right}{right}} {ctrl {home}} {shift {end}{left}} {ctrl x} {delete} {ctrl se} {alt nf} {alt {right}{right}{left}} {alt hum}typ-q{enter} {home} {tab} {f2} {space}{backspace} {ctrl v} {shift {end}} {ctrl x} {shift {home}} {ctrl v} {ctrl se} {alt hun} {home} {tab}{tab} +
-</​code>​+
forum/inews.1174900475.txt.gz · Last modified: 2023/11/19 22:45 (external edit)