Macanese Library Login

Aqui estão sites sobre Macau e os Macaenses.

Here are websites on Macau and the Macanese.

Cultura, história

Clique aqui para informações históricas e culturais estão disponíveis publicamente no site “Macanese Library”.

Culture, history

Click here for cultural and historical information is publicly available on the Macanese Library website.

Genealogia

O site “Macanese Families”, que contém informações adicionais sobre cerca de 65.000 pessoas, é privado; o acesso pode ser dado a macaenses (ou seja, a pessoas com um antepassado português de Macau ).

Genealogy

The Macanese Families website, which contains in addition information on some 65,000 people, is private; access to it may be given to Macanese (that is, to people with a Portuguese ancestor from Macau).

Clique aqui para se registrar.

Clique aqui para efetuar o login. Tenha cuidado ao digitar seu nome de usuário e senha, pois após três tentativas erradas consecutivas, o sistema o bloqueará por 24 horas. 

 

Click here to register.

Click here to login if you have already registered. Please take care when entering your username and password because after three consecutive wrong attempts the system will block you for 24 hours. 

1 function special_tooltip_shortcode($atts) { // Default attributes $atts = shortcode_atts(array( 'keyword' => 'Test Tooltip', 'id' => '123', 'items' => '', ), $atts); // Escape output $keyword = esc_html($atts['keyword']); $id = (int) $atts['id']; // Clean items: remove empty lines $lines = preg_split('/\r\n|\r|\n/', $atts['items']); $clean_lines = array_filter(array_map('trim', $lines)); // Trim each line, remove empty $items = ''; foreach ($clean_lines as $line) { $items .= esc_html($line) . '
'; } // Fixed base URL $url = "https://www.macaneselibrary.org/macfams/priv/english/"; // Build output $output = "
{$keyword} #{$id}
{$keyword} #{$id} {$items} Details are in the private website: Already logged in?
Register or login?
"; return $output; } add_shortcode('specialtooltip', 'special_tooltip_shortcode');