Planio Support (English)

Total Page:16

File Type:pdf, Size:1020Kb

Planio Support (English) Planio Support (english) How To Guides Contact Forms with Planio Create a custom workflow for recurring tasks Get productive with Planio in 10 Minutes Going Agile with Planio Import contacts into Planio via CSV files Import issues into Planio via CSV files Import Planio Backup into Redmine Import time entries into Planio via CSV files Learn all about issues Make Redmine Projects Public on Planio Set up Your Help Desk App Store Website Chat Logs from Userlike in Planio Help Desk Synchronize Files using Planio Storage The Product Manager’s Guide to Planio The Redmine Guide Issue Tracking in Redmine Use Planios Git repositories with Eclipse Using Team Chat in Planio Set up Team Chat on Windows using Pidgin Set Up Team Chat on Your Android Device using AndroIRC Set up Team Chat on Your iOS device using Colloquy Set up Team Chat on Your Mac using Colloquy Using the Redmine REST API with OAuth2 at Planio 09/30/2021 1/92 Set Up a Contact Form on your own Website with the Planio Help Desk The Planio Help Desk App in Planio enables you to handle customer inquiries right from within Planio using all the Planio issue tracking features you love. Normally, this is done via email. In this guide, however, we will look at setting up a customizable online form on your own website that sends your customer's messages directly to Planio where they'll appear as issues. {{>toc}} Benefits Reply to website inquiries directly from Planio using the Help Desk App. Don't let inquiries slip through the cracks in your overloaded email inbox. Work as a team on customer support. Become more efficient by using auto-replies and Help Desk templates. No need for server-side scripting to handle the contact form submissions. HTML Form You can send HTML form requests directly to Planio, as Planio will accept an unauthenticated POST request with application/x-www-form-urlencoded form data. Therefore, we’re going to build a simple form with an action attribute that submits the form to Planio via the HTTP POST method. <form action="https://example.plan.io/helpdesk" method="POST"> You will have to replace example.plan.io with your own Planio domain. Then, we’ll add input fields for a name, email, email subject, and the description: <label for="name">Your name:</label> <input name="name" id="name" type="text" /> <label for="mail">Your email address:</label> <input name="mail" id="mail" type="email" /> <label for="subject">Subject:</label> <input name="subject" id="subject" type="text" /> <label for="description">Your message:</label> <textarea name="description" id="description"></textarea> A Planio account can have multiple projects, so we need a way to assign this message to a particular project in Planio. Therefore, we’ll add a hidden input field with the value set to the identifier of the project you want to forward the issue: <input name="project" type="hidden" value="example-project" /> Please note: The field needs to be set to the project identifier, not the project name (e.g. help-desk instead of "Help Desk"). Then, we add a submit button: <input type="submit" value="Submit request" /> Add a Honeypot Field Forms are frequently the target of spambots that send messages to any form they can find online. One strategy for dealing with spam bots is to add an additional input field to the form called a honeypot field. Then, you hide the form field using CSS. If that input field is filled out, which spambots usually do, then the message is discarded as spam - hence the name honeypot field. Here’s the honeypot field along with some CSS: <style type="text/css">#url { display:none; }</style> <input name="url" id="url" type="text" /> 09/30/2021 2/92 Using a honeypot field is optional but we highly recommend it to avoid spam. Submit the form using Ajax After receiving your contact form data, Planio will redirect back to the page it came from. This works nicely in many cases, but you might want to display a short "Thank you" message to your users once the form is submitted instead and make the form appear a little more snappy. Here's one way to achieve that with an Ajax call using jQuery: <p class="thanks" style="display:none;">Thank you for getting in touch.</p> <p class="error" style="display:none;">Something went wrong. Please try again.</p> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script type="text/javascript"> $(function() { $('form').submit(function() { $.ajax({ url: $(this).attr('action') + '.json', method: 'post', dataType: 'json', data: $(this).serialize(), success: function () { $('form').hide(); $('.thanks').show(); }, error: function () { $('.error').show(); } }); return false; }); }); </script> A Practical Example So, pulling it all together, a full HTML page including our form would look like this: <!doctype html> <html lang="en"> <head> <title>Contact us!</title> <style type="text/css"> body { font-family: sans-serif; margin: 2em; } label, input, textarea { width: 15em; float: left; margin-bottom: 1em; font-size: 1.2em; } label, input[type=submit] { width: 10em; clear: left; } #url, .thanks, .error { display: none; } </style> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script type="text/javascript"> $(function() { $('form').submit(function() { $.ajax({ url: $(this).attr('action') + '.json', method: 'post', dataType: 'json', data: $(this).serialize(), success: function () { 09/30/2021 3/92 $('form').hide(); $('.thanks').show(); }, error: function () { $('.error').show(); } }); return false; }); }); </script> </head> <body> <h1>Contact us!</h1> <form action="https://example.plan.io/helpdesk" method="POST"> <p class="error">Something went wrong. Please try again.</p> <label for="name">Your name:</label> <input name="name" id="name" type="text" /> <label for="mail">Your email address:</label> <input name="mail" id="mail" type="email" /> <label for="subject">Subject:</label> <input name="subject" id="subject" type="text" /> <label for="description">Your message:</label> <textarea name="description" id="description"></textarea> <input name="project" type="hidden" value="example-project" /> <input name="url" id="url" type="text" /> <input type="submit" value="Submit request" /> </form> <p class="thanks">Thank you for getting in touch.</p> </body> </html> You can download the entire HTML page here:contact-us.html. When someone fills out this form, the message will show up in Planio as an issue as you can see here: 09/30/2021 4/92 A contact form message appears as issue in Planio That’s just one of the examples of how you can use the Redmine API at Planio to streamline your processes. You’ll find more examples and documentation, including how to add your own custom fields to your contact forms, in our Redmine API documentation. Files [email protected] 122 KB 11/20/2016 Jan Schulz-Hofen contact-us.html 1.83 KB 05/28/2018 Gregor Schmidt 09/30/2021 5/92 Create a custom workflow for recurring tasks Planio is not only great for one-off projects. It really shines when it comes to recurring tasks that follow a certain workflow within your organization. Follow along this guide to create a simple vacation approval workflow for your team members - and apply what you've learned to create your own custom workflows. {{>toc}} Planio workflow basics In Planio, every issue must belong to a tracker which defines its workflow. Let's look at this in more detail: Trackers We'd like to see trackers as special issue types. An issue must belong to exactly one tracker. Task, Support incident, Software bug, or -- you guessed it -- Vacation request would be great examples for a tracker. Issue statuses Issue statuses describe the different states, that an issue in Planio can have at any given moment. For instance, an issue can be Open, In progress, Waiting for review, or Closed. An issue will always have exactly one status and the status will likely change over time as people work on the issue. Roles Users in Planio have their own user account using which they take part in projects using one or more roles: While some users may take part as Manager, others may be regular Staff or e.g. Client. The role defines what a user can and cannot see or do in a given project. It also defines the user's workflow. Workflows The workflow brings it all together: A workflow defines for every possible combination of tracker and role which issue statuses are available. It defines for all its tracker's issues which status changes are allowed and which issue properties are visible and/or changeable. Say what!? This is arguably the most complex (and powerful) part of Planio, but don't worry -- we will walk you through it and you will be a workflow expert in no time! Technicalities of going on a vacation We knew you would love this section. Dreaming of that deserted beach in the Caribbean? Let's request some vacation days and off we go. In many companies, taking a vacation requires approval by a manager. Employees must submit a request mentioning the start and end date of the requested vacation and managers will approve or disapprove the request. Upon approval, the dates of that vacation can not be altered, and the vacation request is final. If disapproved, employees can alter their requested dates and re-request approval until -- hopefully -- they will be allowed their well-deserved days in the Caribbean. We will now build this workflow in Planio allowing for actual vacation requests being made and approved. We will also show you how to visualise them on Planio's calendar, so you can get a great overview on who is on vacation at which point in time.
Recommended publications
  • There Are Two Dedicated Dspace IRC (Internet Relay Chat) Channels (I.E
    IRC Code of Conduct All DSpace support channels, mailing lists and meetings follow the LYRASIS Code of Conduct. We ask you to remain respectful in all discussions. We also encourage you to report any violations of the code of conduct to LYRASIS (see the Code of Conduct for more details). DSpace chat has moved to Slack Our old IRC channels are essentially unmonitored these days. Instead, we recommend joining our DSpace.org Slack for any chat-based support. You are also welcome to email your question to the dspace-tech Mailing List as an alternative, or choose one of the other DSpace Sup port options. There are two dedicated DSpace IRC (internet relay chat) channels (i.e. "rooms") on the irc.freenode.net server: #dspace (irc://irc.freenode.net/dspace) - all DSpace discussions and live Q & A. This channel is unlogged. #duraspace (irc://irc.freenode.net/duraspace) - Old duraspace community channel (no longer used). As of July 2018, this channel is unlogged. Pri or years logs are still available/archived. If you do not have access to an IRC client, or are new to IRC, the following web interfaces are very easy way to get started: Login to #dspace IRC at: http://webchat.freenode.net?channels=dspace Enter in a nickname of your choice (e.g. firstName_lastName) & click "Connect" Login to #duraspace IRC at: http://webchat.freenode.net?channels=duraspace Enter in a nickname of your choice (e.g. firstName_lastName) & click "Connect" Or you can login to both IRC channels at the same time: http://webchat.freenode.net?channels=duraspace,dspace For a list of IRC client software, see: http://en.wikipedia.org/wiki/Comparison_of_Internet_Relay_Chat_clients Many current Instant Messaging (IM) clients also support IRC.
    [Show full text]
  • Instant Messaging Video Converter, Iphone Converter Application
    Web Browsing Mozilla Firefox The premier free, open-source browser. Tabs, pop-up blocking, themes, and extensions. Considered by many to be the world's best browser. Download Page Video Player, Torrents, Podcasting Miro Beautiful interface. Plays any video type (much more than quicktime). Subscribe to video RSS, download, and watch all in one. Torrent support. Search and download from YouTube and others. Download Page IM - Instant Messaging Adium Connect to multiple IM accounts simultaneously in a single app, including: AOL IM, MSN, and Jabber. Beautiful, themable interface. Download Page Video Converter, iPhone Converter Miro Video Converter Convert any type of video to mp4 or theora. Convert any video for use with iPhone, iPod, Android, etc. Very clean, easy to use interface. Download Page Application Launching Quicksilver Quicksilver lets you start applications (and do just about everything) with a few quick taps of your fingers. Warning: start using Quicksilver and you won't be able to imagine using a Mac without it. Download Page Email Mozilla Thunderbird Powerful spam filtering, solid interface, and all the features you need. Download Page Utilities The Unarchiver Uncompress RAR, 7zip, tar, and bz2 files on your Mac. Many new Mac users will be puzzled the first time they download a RAR file. Do them a favor and download UnRarX for them! Download Page DVD Ripping Handbrake DVD ripper and MPEG-4 / H.264 encoding. Very simple to use. Download Page RSS Vienna Very nice, native RSS client. Download Page RSSOwl Solid cross-platform RSS client. Download Page Peer-to-Peer Filesharing Cabos A simple, easy to use filesharing program.
    [Show full text]
  • National Catholic Educational Association
    SEMINARY JOURNAL VOlUme eighteeN NUmber ONe SPriNg 2012 Theme: Evangelization From the Desk of the Executive Director Msgr. Jeremiah McCarthy The New Evangelization and the Formation of Priests for Today Most Rev. Edward W. Clark, S.T.D. A Worldly Priest: Evangelization and the Diocesan Priesthood Rev. Matthew Ramsay For I Was a Stranger and You Welcomed Me Cardinal Roger Mahony Teaching Catechesis to Seminarians: A Fusion of Knowledge and Pedagogy Jim Rigg, Ph.D. International Priests in the United States: An Update Rev. Aniedi Okure, O.P. Emphasizing Relationality in Distance Learning: Looking toward Human and Spiritual Formation Online Dr. Sebastian Mahfood, O.P., and Sr. Paule Pierre Barbeau, O.S.B., Ph.D. Pastoral Ministry: Receiving Even While Giving Deacon James Keating, Ph.D. On a Dominican Vision of Theological Education Ann M. Garrido, D.Min. Priest as Catechetical Leader Diana Dudoit Raiche, Ph.D. Mountain Men: Preparing Seminarians for the Spiritual Trek Sr. Mary Carroll, S.S.S.F. Virtual Reality Requiring Real Virtue Msgr. Anthony J. Ireland, S.T.D. The Heart of the Matter Most Rev. Edward Rice Catholic Ministry Formation Enrollment: Statistical Overview for 2011-2012 Mary Gautier, Ph.D. BOOK REVIEW Life and Lessons from a Warzone: A Memoir of Dr. Robert Nyeko Obol by Robert Obol Reviewed by Dr. Sebastian Mahfood, O.P., Ph.D. National Catholic Educational Association The logo depicts a sower of seed and reminds us of the derivation of the word “seminary” from the Latin word “seminarium,” meaning “a seed plot” or “a place where seedlings are nurtured and grow.” SEMINARY JOURNAL VOLUME 18 NUMBER ONE SPRING 2012 Note: Due to leadership changes in the Seminary Department, this volume was actually published in April 2013.
    [Show full text]
  • COLLOQUY Text Theory Critique
    COLLOQUY text theory critique issue 20, december 2010 Editorial Committee: Editorial Board: Nathaniel Avery Bill Ashcroft Geoff Berry Andrew Benjamin David Blencowe Andriana Cavarero Conall Cash Joy Damousi Timothy Chandler Alex Düttmann Sam Cuff Jürgen Fohrmann Gene Flenady Sneja Gunew Rachel Funari Kevin Hart Ohad Kozminsky Susan K. Martin Eleonora Morelli Steven Muecke Isabella Ofner Paul Patton Stephen Palmer Georg Stanitzek Catherine Ryan Terry Threadgold Sophie Suelzle Advisory Board: Axel Fliethmann Brett Hutchins Alison Ross COLLOQUY text theory critique 20 (2010). © Monash University. www.colloquy.monash.edu.au/issue20.pdf ISSN: 13259490 Issue 20, December 2010 Editorial 2 ARTICLES Not a Bush Flâneur? The Convergent Topographies of Recreational Bushwalking, Floristic Appreciation and Human Embodiment in the Southwest of Western Australia John Ryan 5 Fear and Loathing in the Australian Bush: Gothic Landscapes in Bush Studies and Picnic at Hanging Rock Kathleen Steele 33 Yves Klein and Hysterical Marks of Authority Oliver Watts 57 Monstrous Fairytales: Towards an Écriture Queer Dallas J Baker 79 The Times They Are A-Changin’: The Passage of Time as an Agent of Change in Zack Snyder’s Film Adaptation of Watchmen Daniel Wood 104 The Hearing Trumpet: Leonora Carrington’s Feminist Magical Realism Gabriel García Ochoa 121 POETRY Blood John Ryan 145 BOOK REVIEWS Simon During. Exit Capitalism: Literary Culture, Theory, and Post-Secular Modernity. London: Routledge, 2010. Mark Fisher. Capitalist Realism: Is There No Alternative? Ropley, UK: Zer0 Books, 2010. Conall Cash 148 COLLOQUY text theory critique 20 (2010). © Monash University. www.colloquy.monash.edu.au/issue20/contents.pdf Editorial Issue 20 of Colloquy: text, theory, critique is a general issue, which pre- sents research on a diverse selection of themes.
    [Show full text]
  • DMK BO2K8.Pdf
    Black Ops 2008: It’s The End Of The Cache As We Know It Or: “64K Should Be Good Enough For Anyone” Dan Kaminsky Director of Penetration Testing IOActive, Inc. copyright IOActive, Inc. 2006, all rights reserved. Introduction • Hi! I’m Dan Kaminsky – This is my 9th talk here at Black Hat – I look for interesting design elements – new ways to manipulate old systems, old ways to manipulate new systems – Career thus far spent in Fortune 500 • Consulting now – I found a really bad bug a while ago. • You might have heard about it. • There was a rather coordinated patching effort. • I went out on a very shaky limb, to try to keep the details quiet – Asked people not to publicly speculate » Totally unreasonable request » Had to try. – Said they’d be congratulated here Thanks to the community • First finder: Pieter de Boer – Michael Gersten – 51 hours later – Mike Christian • Best Paper • Left the lists – Bernard Mueller, sec- – Paul Schmehl consult.com – Troy XYZ – Five days later, but had full – Others info/repro • Thanks • Interesting thinking (got close, – Jen Grannick (she contacted kept off lists) me) – Andre Ludwig – DNSStuff (they taught me – Nicholas Weaver LDNS, and reimplemented – “Max”/@skst (got really really my code better) close) – Everyone else (people know – Zeev Rabinovich who they are, and know I owe them a beer). Obviously thanks to the Summit Members • Paul Vixie • People have really been • David Dagon incredible with this. – Georgia Tech – thanks for • What did we accomplish? the net/compute nodes • Florian Weimer • Wouter Wijngaards • Andreas Gustaffon • Microsoft • Nominum • OpenDNS • ISC • Neustar • CERT There are numbers and are there are numbers • 120,000,000 – The number of users protected by Nominum’s carrier patching operation – They’re not the Internet’s most popular server! • That’s BIND, and we saw LOTS of BIND patching – They’re not the only server that got lots of updates • Microsoft’s Automatic Updates swept through lots and lots of users • Do not underestimate MSDNS behind the firewall.
    [Show full text]
  • Syntactic Architecture and Its Consequences I
    Syntactic architecture and its consequences I Syntax inside the grammar Edited by András Bárány Theresa Biberauer Jamie Douglas Sten Vikner language Open Generative Syntax 9 science press Open Generative Syntax Editors: Elena Anagnostopoulou, Mark Baker, Roberta D’Alessandro, David Pesetsky, Susi Wurmbrand In this series: 1. Bailey, Laura R. & Michelle Sheehan (eds.). Order and structure in syntax I: Word order and syntactic structure. 2. Sheehan, Michelle & Laura R. Bailey (eds.). Order and structure in syntax II: Subjecthood and argument structure. 3. Bacskai-Atkari, Julia. Deletion phenomena in comparative constructions: English comparatives in a cross-linguistic perspective. 4. Franco, Ludovico, Mihaela Marchis Moreno & Matthew Reeve (eds.). Agreement, case and locality in the nominal and verbal domains. 5. Bross, Fabian. The clausal syntax of German Sign Language: A cartographic approach. 6. Smith, Peter W., Johannes Mursell & Katharina Hartmann (eds.). Agree to Agree: Agreement in the Minimalist Programme. 7. Pineda, Anna & Jaume Mateu (eds.). Dative constructions in Romance and beyond. 8. Kastner, Itamar. Voice at the interfaces: The syntax, semantics, and morphology of the Hebrew verb. 9. Bárány, András, Theresa Biberauer, Jamie Douglas & Sten Vikner (eds.). Syntactic architecture and its consequences I: Syntax inside the grammar. ISSN: 2568-7336 Syntactic architecture and its consequences I Syntax inside the grammar Edited by András Bárány Theresa Biberauer Jamie Douglas Sten Vikner language science press Bárány, András, Theresa
    [Show full text]
  • U.S. Government Publishing Office Style Manual
    Style Manual An official guide to the form and style of Federal Government publishing | 2016 Keeping America Informed | OFFICIAL | DIGITAL | SECURE [email protected] Production and Distribution Notes This publication was typeset electronically using Helvetica and Minion Pro typefaces. It was printed using vegetable oil-based ink on recycled paper containing 30% post consumer waste. The GPO Style Manual will be distributed to libraries in the Federal Depository Library Program. To find a depository library near you, please go to the Federal depository library directory at http://catalog.gpo.gov/fdlpdir/public.jsp. The electronic text of this publication is available for public use free of charge at https://www.govinfo.gov/gpo-style-manual. Library of Congress Cataloging-in-Publication Data Names: United States. Government Publishing Office, author. Title: Style manual : an official guide to the form and style of federal government publications / U.S. Government Publishing Office. Other titles: Official guide to the form and style of federal government publications | Also known as: GPO style manual Description: 2016; official U.S. Government edition. | Washington, DC : U.S. Government Publishing Office, 2016. | Includes index. Identifiers: LCCN 2016055634| ISBN 9780160936029 (cloth) | ISBN 0160936020 (cloth) | ISBN 9780160936012 (paper) | ISBN 0160936012 (paper) Subjects: LCSH: Printing—United States—Style manuals. | Printing, Public—United States—Handbooks, manuals, etc. | Publishers and publishing—United States—Handbooks, manuals, etc. | Authorship—Style manuals. | Editing—Handbooks, manuals, etc. Classification: LCC Z253 .U58 2016 | DDC 808/.02—dc23 | SUDOC GP 1.23/4:ST 9/2016 LC record available at https://lccn.loc.gov/2016055634 Use of ISBN Prefix This is the official U.S.
    [Show full text]
  • UC Riverside UC Riverside Electronic Theses and Dissertations
    UC Riverside UC Riverside Electronic Theses and Dissertations Title Extracting Actionable Information From Bug Reports Permalink https://escholarship.org/uc/item/4tf0c5x4 Author Zhou, Bo Publication Date 2016 Peer reviewed|Thesis/dissertation eScholarship.org Powered by the California Digital Library University of California UNIVERSITY OF CALIFORNIA RIVERSIDE Extracting Actionable Information From Bug Reports A Dissertation submitted in partial satisfaction of the requirements for the degree of Doctor of Philosophy in Computer Science by Bo Zhou December 2016 Dissertation Committee: Dr. Rajiv Gupta, Chairperson Dr. Iulian Neamtiu Dr. Zhiyun Qian Dr. Zhijia Zhao Copyright by Bo Zhou 2016 The Dissertation of Bo Zhou is approved: Committee Chairperson University of California, Riverside Acknowledgments This dissertation would not have been possible without all people who have helped me during my Ph.D. study and my life. Foremost, I would like to express my sincere gratitude to my advisor Dr. Iulian Neamtiu for the continuous support of my PhD study and research, for his patience, moti- vation, enthusiasm, and immense knowledge. I will never forget he is the person that went through my papers tens of times overnight with me for accuracy. His guidance helped me in all the time of research and writing of this dissertation. I could not have imagined having a better advisor and mentor for my PhD study. Thanks, Dr. Neamtiu! I am also deeply indebted to my co-advisor Dr. Rajiv Gupta for the collaboration over the years, guidance and help for making me not only a good researcher, but also a good person. His attitude towards research has influenced me immensely in the past and in the future.
    [Show full text]
  • GC Software List 2012 1 APPLICATION DESCRIPTION KEY
    APPLICATION DESCRIPTION KEY WORDS LOCATION Available for WIN MAC LINUX CITRIX 1st Bayer° Public WIN Space ActivePerl Perl, sometimes referred to as Computer Public WIN Practical Extraction and Science, Space Reporting Language, is an Programming interpreted programming language with a huge number of uses, libraries and resources. Arguably one of the most discussed and used languages on the internet, it is often referred to as the swiss army knife, or duct tape, of the web. Perl is a great first language for people with no programming experience. ActivePerl is a distribution - or pre-configured, ready-to-install package - of Perl. Adobe Acrobat Adobe® Acrobat® X Pro PDF Public WIN CITRIX Prof software lets you deliver highly Space professional PDF communications. Create and edit PDF files with rich media included, share information more securely, and gather team feedback more efficiently. ° Programs program. More information is highlighted in required. yellow indicate that information could not be found for this GC Software List 2012 1 APPLICATION DESCRIPTION FIELDS LOCATION WIN MAC LINUX CITRIX Adobe Creative Adobe® Creative Suite® 5.5 App development Public MAC Suite software keeps you ahead of the Space rapid proliferation of mobile devices. Develop rich interactive apps for Android™, BlackBerry®, and iOS. Design engaging browser content in HTML5, and create immersive digital magazines. Mobilize your creative vision with the suite edition that's right for you. Adobe Web Adobe® Creative Suite® 5.5 Website Public WIN Premium Web Premium software development Space provides everything you need to create and deliver standards- based websites with HTML5, jQuery Mobile, and CSS3 support.
    [Show full text]
  • Themenabend SILC
    Themenabend SILC Blick auf Jabber <<</>> Themenabend SILC: Blick auf Jabber Instant Messaging != „Chat” (1) Presence <<</>> Themenabend SILC: Blick auf Jabber Instant Messaging != „Chat” (2) /query <<</>> Themenabend SILC: Blick auf Jabber Instant Messaging != „Chat” (3) Viele Erweiterungen <<</>> Themenabend SILC: Blick auf Jabber Globale Adressierung (1) domain <<</>> Themenabend SILC: Blick auf Jabber Globale Adressierung (2) user@domain (Bare Jabber-ID) <<</>> Themenabend SILC: Blick auf Jabber Globale Adressierung (3) user@domain/resource (Full Jabber-ID) <<</>> Themenabend SILC: Blick auf Jabber Globale Adressierung (4) domain/resource <<</>> Themenabend SILC: Blick auf Jabber Standardisierung XMPP SILC • RFC 3920: XML streams, SASL, TLS, • White Paper stringprep profiles, stanza semantics • draft-riikonen-silc-spec-09 • RFC 3921: XMPP extensions • draft-riikonen-silc-pp-09 for basic instant messaging and • draft-riikonen-silc-ke-auth-09 presence • draft-riikonen-silc-commands-07 • RFC 3922: Mapping XMPP to the • draft-riikonen-silc-flags-payloads-04 IETF's CPIM specifications • draft-riikonen-silc-multimedia- • RFC 3923: End-to-end signing and session-00 object encryption for XMPP • draft-riikonen-presence-attrs-04 • RFC 4622: A Uniform Resource Identifier (URI) scheme for XMPP • RFC 4854: A Uniform Resource Name (URN) tree for use in XMPP extensions • RFC 4979: IANA registration of an Enumservice for XMPP • 228 XMPP Enhancement Proposals <<</>> Themenabend SILC: Blick auf Jabber Implementationen Jabber Clients SILC Clients Adium
    [Show full text]
  • Decentralized Collaboration with Open Source Tools: Technical and Cultural Implementation
    Decentralized Collaboration with Open Source Tools: Technical and Cultural Implementation Presented by Robyn Bergeron Fedora Program Manager @robynbergeron Today's Topics 1. Who is Robyn? 2. What on earth is “decentralized collaboration?” 3. And what the heck is “cultural and technical implementation” supposed to mean? 4. Let's find out! But First! We might as put some words into action, right? Go here, now! http://piratepad.net/scaletalk Who's Robyn? I'm a Fedora Contributor. I'm also a Red Hat employee. Decentralized Collaboration About this talk This is a recurring Fedora Classroom talk. Modularity. We're going to be talking about tools that are Free and Open Source software, that also just happen to be great tools for communities. The tools are simple – but the magic is in how you apply them, and how you can use them together. Decentralized Collaboration This is the intertoobz age! But seriously: Decentralized collaboration is a description for how you can get like-minded folks together to DO STUFF, without having to meet in person, or always meet at the same time – in other words, synchronous and asynchronous forms of communication. These are the tools from which great communities are born. Technical and Cultural Implementation Sounds very Marketing-y. In simple terms, we're going to talk about these various tools in two ways: What they are and how to use them “technically” AKA: ZOMG, how do I get a etherpad of my own? Where do I find more information? What these tools can do for your project culture. Culture We hear a lot of catch-phrases at conferences like this.
    [Show full text]
  • What Is Drupal, Anyway? That Are Defined in the Glossary
    Visual QuickStart Guide Drupal 7 Tom Geller Peachpit Press 1249 Eighth Street Berkeley, CA 94710 510/524-2178 510/524-2221 (fax) Find us on the Web at: www.peachpit.com To report errors, please send a note to: [email protected] Peachpit Press is a division of Pearson Education. Copyright © 2011 by Tom Geller Project Editor: Nancy Peterson Development Editor: Robyn G. Thomas Copyeditors: Darren Meiss and Scout Festa Technical Editor: Emma Jane Hogbin Production Coordinator: Myrna Vladic Compositor: David Van Ness Indexer: Joy Dean Lee Cover Design: Peachpit Press Interior Design: Peachpit Press Notice of Rights All rights reserved. No part of this book may be reproduced or transmitted in any form by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the publisher. For information on getting permission for reprints and excerpts, contact [email protected]. Notice of Liability The information in this book is distributed on an “As Is” basis, without warranty. While every precaution has been taken in the preparation of the book, neither the author nor Peachpit Press shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the instructions contained in this book or by the computer software and hardware products described in it. Author photo courtesy Michel Chagall. All rights reserved. Trademarks Visual QuickStart Guide is a registered trademark of Peachpit Press, a division of Pearson Education. Drupal is a registered trademark of Dries Buytaert. Macintosh and Mac OS X are registered trademarks of Apple, Inc.
    [Show full text]