Changes for page Sandbox


on 2022-11-01 04:57


on 2022-11-01 05:01
Summary
Details
- Page properties
-
- Content
-
... ... @@ -17,6 +17,55 @@ 17 17 {{/groovy}} 18 18 19 19 20 +{{groovy}} 21 +import groovy.util.logging.* 22 +import org.xwiki.observation.* 23 +import org.xwiki.observation.event.* 24 +import org.xwiki.rendering.transformation.linkchecker.* 25 +import com.xpn.xwiki.web.* 26 +import com.xpn.xwiki.* 27 + 28 +@Log 29 +class MyLinkListener implements EventListener 30 +{ 31 + def xwiki 32 + def context 33 + 34 + MyLinkListener(xwiki, context) 35 + { 36 + this.xwiki = xwiki 37 + this.context = context 38 + } 39 + 40 + String getName() 41 + { 42 + return "myLinkListener" 43 + } 44 + 45 + List<Event> getEvents() 46 + { 47 + return Arrays.asList(new InvalidURLEvent()) 48 + } 49 + 50 + void onEvent(Event event, Object eventSource, Object data) 51 + { 52 + def url = eventSource.get("url") 53 + def source = eventSource.get("source") 54 + def state = eventSource.get("state") 55 + 56 + log.info("Error for {url} in ${source} - Response code: ${state.getResponseCode()} - Checked: ${String.format('%tF %<tT', state.getLastCheckedTime())}") 57 + } 58 +} 59 + 60 +// Register against the Observation Manager 61 +def observation = Utils.getComponent(ObservationManager.class) 62 +observation.removeListener("myLinkListener") 63 +def listener = new MyLinkListener(xwiki, xcontext) 64 +observation.addListener(listener) 65 +{{/groovy}} 66 + 67 + 68 + 20 20 The sandbox is a part of your wiki that you can freely modify. It's meant to let you practice editing. You will discover how page editing works and create new pages. Simply click on **Edit** to get started! 21 21 22 22 {{info}}