'From Pharo5.0 of 16 April 2015 [Latest update: #50760] on 15 June 2016 at 6:30:41.548596 pm'! Object subclass: #Trello instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'Trello-Core'! !Trello methodsFor: 'as yet unclassified' stamp: 'chicoary 6/15/2016 18:26'! token ^ '6ec16020585b4147cb94a189aabcdd2b071f83f5c00fd7bacd1518d13db2962f'! ! !Trello methodsFor: 'as yet unclassified' stamp: 'chicoary 6/15/2016 17:48'! apiUrl ^ 'https://api.trello.com/1'! ! !Trello methodsFor: 'as yet unclassified' stamp: 'chicoary 6/15/2016 18:26'! apiKey ^ 'db9e904fa729a15bc39adb5a1fbf8bae'! ! !Trello methodsFor: 'as yet unclassified' stamp: 'chicoary 6/15/2016 18:04'! urlListNamesFromBoardHash: aBoardHashString ^ '{1}/boards/{2}?lists=open&key={3}&token={4}' format: {self apiUrl. aBoardHashString. self apiKey. self token}! ! !Trello methodsFor: 'as yet unclassified' stamp: 'chicoary 6/15/2016 18:29'! getListNamesFromBoard: aBoardHashString "Lists of the board GTD" ^ ((STON fromString: (ZnEasy get: (self urlListNamesFromBoardHash: aBoardHashString)) contents) at: #lists) collect: [ :each | each at: #name ]! ! "-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- "! Trello class instanceVariableNames: ''! !Trello class methodsFor: 'as yet unclassified' stamp: 'chicoary 6/15/2016 17:32'! getListNamesFromBoard: aBoardHashString ^ self new getListNamesFromBoard: aBoardHashString! ! !Trello class methodsFor: 'as yet unclassified' stamp: 'chicoary 6/15/2016 18:26'! example (Trello getListNamesFromBoard: '5jpDK47q' "GTD board hash") inspect ! !