Camillo look at this one :)
I took the auto documentation way up to the generator :)

Title: Truc

1. Missing Meta Data

ConfigurationOfOrderPreservingDictionary does not have catalog meta data.Please add the class side methods:

  • repositoryUrlString,
  • catalogDescription as well as
  • a nice class comment containing expressions to load the projects and its history.

The text can use the pier syntax Add URLhere .

2. Example of meta data

Define one method named repositoryUrlString (and you can also use it in your configuration)

MyConfiguration class>>repositoryUrlString
    ^ 'http://www.smalltalkhub.com/mc/PharoExtras/Soup/main'        
Define a method catalogDescription which returns a string having the following section. Keep the annotation to structure the sections. Have a look at the Soup catalog entry available at .
MyConfiguration class>>catalogDescription

^ 
'!! Soup 
Soup is a frameworks for scrapping HTML. It offers a simplified query mechanism to abstract over the XML and HTML structures of a document. 
	
		
!!! Keywords
		
web query XML HTML scrapping
					
!!! Implementation notes
		
It is composed of some keys classes: 
		
- ==SoupElement== is the root of elements that are extracted during - ==Soup== is the main class and offers the main API

An example

Tests of the ==Soup== class are the place to start to learn the API.
[[[ 
	Soup fromString: 'http://www.bedetheque.com/album-105582-BD-Atomium-Express.html' 
	    asUrl retrieveContents        

]]]

Reply via email to