Skip to content

lrrfantasy/alfred-feedback-xml-generation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Alfred Workflow Feedback XML Generation

This is to help workflow developers to fast generate formatted XML which outputs to Alfred feedback.

Python
PHP
Nodejs
Shell
Ruby

##Python Library: Feedback.py
Author: Peter Okma
Source :https://github.com/peteokma/alfred-workflows
Modifier: Ruoran Liu

python sample.ph

Import

from Feedback import Feedback

Initialization

fb = Feedback()

Adding item

fb.add_item(title="Title", subtitle="Item description", arg="Value return to workflow", valid="yes", autocomplete="Description", icon="public.jpeg", filetype="file", icontype="filetype")

Outputting XML

print fb

##PHP Library: workflows.php
Author: David Ferguson
Source: http://dferg.us/workflows-class/

php -f sample.php

Import

include_once('workflows.php');

Initialization

$w = new Workflows();

Adding item (using result)

$w->result('itemuid', 'itemarg', 'Some Item Title', 'Some item subtitle', 'icon.png', 'yes', 'autocomplete');

Outputting XML (using result)

echo $w->toxml();

Adding item (using array)

$results = array();
$temp = array(
'uid' => 'itemuid',
'arg' => 'itemarg',
'title' => 'Some Item Title',
'subtitle' => 'Some item subtitle',
'icon' => 'icon.png',
'valid' => 'yes',
'autocomplete' => 'autocomplete'
);
array_push($results, $temp);

Outputting XML (using array)

echo $w->toxml($results);

##Nodejs Library: Feedback.js
Author: Qiu Wang
Blog: http://ishouldbeageek.me

node sample.js

Import

var Feedback = require('./Feedback');

Initialization & adding item (using function)

var feedback = new Feedback();
feedback.addItem({ 
  uid : 'youruid', 
  arg : 'yourarg', 
  title : 'yourtitle',
  subtitle : 'your subtitle',
  icon : {
    type : 'youricontype',
    value : 'youricon'
  }
});

Initialization & adding item (using constructor)

var feedback = new Feedback({ 
  uid : 'youruid', 
  arg : 'yourarg', 
  title : 'yourtitle',
  subtitle : 'your subtitle',
  icon : {
    type : 'youricontype',
    value : 'youricon'
  }
});

Initialization & adding item (using array)

item = { 
  uid : 'youruid', 
  arg : 'yourarg', 
  title : 'yourtitle',
  subtitle : 'your subtitle',
  icon : {
    type : 'youricontype',
    value : 'youricon'
  }
}
var feedback = new Feedback([item/*, item2 */]);

Outputting XML

console.log(feedback.toString());

##Shell Library: feedback.sh
Author: Ruoran Liu

./sample.sh

Import

source feedback.sh

Adding item

item1=$(add_item "id1" "Title" "Subtitle" "arg")
item2=$(add_item "id2" "Test" "This is the description" "returned value" "yes" "autocomplete" "public.jpeg" "file" "filetype")

Outputting XML

output_xml "$item1" "$item2"

##Ruby Library: alfred_feedback.rb

ruby sample.rb

Import

load 'alfred_feedback.rb'

Initialization

feedback = Feedback.new

Adding item

feedback.add_item({:title => "Title", :subtitle => "Description", :arg => "Value", :uid => "ID", :icon => {:type => "filetype", :name => "public.jpeg"}})

Outputting XML

puts feedback.to_xml

##Reference XML format explained: http://www.alfredforum.com/topic/5-generating-feedback-in-workflows/

About

Alfred Feedback XML Generation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published