• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

色々な作業をスクリプト(Awk,Perl,Ruby,bash等)で実現するコード群


Commit MetaInfo

Revision3a9d9e07e16cb1280cf35f99e4cc4041a56d846b (tree)
Zeit2017-06-25 15:05:27
Autorstingll <jostingll@gmai...>
Commiterstingll

Log Message

top1()情報を追加

Ändern Zusammenfassung

Diff

--- a/PHP/Mantis.txt
+++ b/PHP/Mantis.txt
@@ -61,6 +61,15 @@
6161 各ユーザか全体でのバグフィルタ情報を取得する。
6262 4)filter_ensure_valid_filter
6363
64+ html_page_top1()
65+ ・HTML ヘッダ部分の表記
66+ ・CSSファイルの読込み
67+ ・HTMLコンテントタイプの設定
68+ ・meta_include_file の読込み
69+ ・rssファイルの設定
70+ ・HTMLページタイトルの設定
71+ ・javaスクリプト設定
72+
6473 html_page_top2()
6574 html_api.php で定義。 print_menu() で、タグ「メイン」「マイビュー」〜を表示する機能。
6675 print_recently_visited();で表示か?
@@ -90,6 +99,13 @@
9099 で取得している。
91100
92101 ※バグリストにリンクされるバグIDのHTMLを作成するところは以下
93- string_api.php string_get_bug_view_link
102+ string_api.php 500: string_get_bug_view_link
103+ columns_api.php 401: function print_column_edit( $p_row, $p_columns_target = COLUMNS_TARGET_VIEW_PAGE ) {
104+ echo '<a href="' . string_get_bug_update_url( $p_row['id'] ) . '">';
105+
106+ 588 string_api.php
107+ function string_get_bug_update_link( $p_bug_id, $p_user_id = null ) {
108+ $t_summary = string_attribute( bug_get_field( $p_bug_id, 'summary' ) );
109+ return '<a href="' . string_get_bug_update_url( $p_bug_id, $p_user_id ) . '" title="' . $t_summary . '">' . bug_format_id( $p_bug_id ) . '</a>';
94110
95111